@font-face{font-family:"Cormorant Garamond";font-style:normal;font-weight:300;font-display:swap;src:url(fonts/cormorant-garamond-latin-300-normal.woff2) format("woff2");}
@font-face{font-family:"Cormorant Garamond";font-style:normal;font-weight:400;font-display:swap;src:url(fonts/cormorant-garamond-latin-400-normal.woff2) format("woff2");}
@font-face{font-family:"Cormorant Garamond";font-style:normal;font-weight:500;font-display:swap;src:url(fonts/cormorant-garamond-latin-500-normal.woff2) format("woff2");}
@font-face{font-family:"Montserrat";font-style:normal;font-weight:400;font-display:swap;src:url(fonts/montserrat-latin-400-normal.woff2) format("woff2");}
@font-face{font-family:"Montserrat";font-style:normal;font-weight:500;font-display:swap;src:url(fonts/montserrat-latin-500-normal.woff2) format("woff2");}
@font-face{font-family:"Montserrat";font-style:normal;font-weight:600;font-display:swap;src:url(fonts/montserrat-latin-600-normal.woff2) format("woff2");}

/* ─── Desa Hay guest directory ─────────────────────────────────────────────
   Palette, type and spacing derive from DesaHay_BrandGuidelines v1.0 (2021).
   Cormorant Garamond substitutes for Cambon; Montserrat for TT Norms — both
   named in the guide as the approved web substitutes.                            */

:root {
  /* brand */
  --brown:  #5D5348;
  --beige:  #E0D1BC;
  --gold:   #BA9262;
  --forest: #354A44;
  --sage:   #90A187;
  --black:  #1C1B1A;

  /* surfaces — warm neutrals biased toward the beige, never a flat grey */
  --paper:      #F2EBDF;
  --paper-2:    #E9E0D1;
  --card:       #FFFFFF;
  --panel:      #FFFFFF;
  --pill:       #F4EEE4;
  --header:     #26362F;   /* a deeper green than the rail, so the two don't merge */
  --ink:        #26221E;
  --ink-soft:   #6B6157;
  --ink-faint:  #94897C;
  --rule:       rgba(93, 83, 72, .18);
  --rule-soft:  rgba(93, 83, 72, .10);
  --accent:     #9A7444;
  --shadow:     0 1px 2px rgba(60, 50, 40, .05), 0 8px 28px -18px rgba(60, 50, 40, .38);

  /* dark-on-image surfaces stay constant across themes */
  --on-dark:      #F6F1E8;
  --on-dark-soft: rgba(246, 241, 232, .74);

  color-scheme: light;

  --shell: 1180px;
  --rail: 292px;
  --r: 3px;

  --step--1: clamp(.72rem, .70rem + .10vw, .78rem);
  --step-0:  clamp(.94rem, .90rem + .16vw, 1.02rem);
  --step-1:  clamp(1.06rem, 1.00rem + .26vw, 1.18rem);
  --step-2:  clamp(1.5rem, 1.32rem + .82vw, 2.05rem);
  --step-3:  clamp(2.1rem, 1.62rem + 2.2vw, 3.5rem);
  --step-4:  clamp(2.8rem, 1.9rem + 4.1vw, 5.4rem);
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", ui-sans-serif, system-ui, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--beige); color: var(--black); }

:where(a, button, input, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── type primitives ──────────────────────────────────────────────────── */

.display {
  font-family: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  font-weight: 300;
  letter-spacing: .005em;
  line-height: 1.06;
  text-wrap: balance;
  margin: 0;
}

.label {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.prose { max-width: 62ch; }
.prose p { margin: 0 0 .85em; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { font-weight: 600; color: var(--ink); }
.prose a { color: var(--accent); text-underline-offset: .22em; text-decoration-thickness: 1px; }

/* ─── shell ────────────────────────────────────────────────────────────── */

.app { display: block; }

/* mobile / tablet top bar */
.topbar {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.topbar__logo { height: 34px; width: auto; flex: none; }
.topbar__spacer { flex: 1 1 auto; }

.iconbtn {
  appearance: none; border: 1px solid var(--rule);
  background: transparent; color: var(--ink);
  width: 40px; height: 40px; border-radius: 999px;
  display: grid; place-items: center; cursor: pointer; flex: none;
  transition: background .18s ease, border-color .18s ease;
}
.iconbtn:hover { background: var(--pill); border-color: var(--accent); }
.iconbtn svg { width: 19px; height: 19px; }

.wabtn {
  appearance: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px; border-radius: 999px; border: 0;
  background: var(--gold); color: #22201D;
  font-family: inherit; font-size: var(--step--1);
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: transform .18s ease, filter .18s ease;
}
.wabtn:hover { filter: brightness(1.07); transform: translateY(-1px); }
.wabtn svg { width: 17px; height: 17px; }

/* ── navigation: one component, two presentations ──────────────────────
   Below 1060px it is a drawer behind the hamburger; above, a fixed side
   rail. Same markup, same links, so nothing can drift between them.      */

.rail {
  display: flex; flex-direction: column; gap: 22px;
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 80;
  width: min(322px, 80vw);
  padding: 24px 20px 30px;
  background: var(--forest); color: var(--on-dark);
  overflow: auto; overscroll-behavior: contain;
  transform: translateX(-102%);
  visibility: hidden;
  transition: transform .28s cubic-bezier(.4, 0, .2, 1), visibility .28s;
  box-shadow: 0 0 40px rgba(28, 27, 26, .35);
}
.rail.is-open { transform: none; visibility: visible; }

.scrim {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(28, 27, 26, .55);
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.scrim.is-on { opacity: 1; pointer-events: auto; }
body.is-locked { overflow: hidden; }

.rail__logo { width: 138px; margin: 0 auto 2px; }
.rail__nav { display: flex; flex-direction: column; gap: 1px; }
.rail__nav a {
  display: flex; align-items: baseline; gap: 10px;
  padding: 10px 12px; border-radius: var(--r);
  text-decoration: none; color: var(--on-dark-soft);
  font-size: var(--step--1); font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  transition: background .16s ease, color .16s ease;
}
.rail__nav a::before {
  content: ""; width: 14px; height: 1px; flex: none;
  background: currentColor; opacity: .5;
  transform: translateY(-.28em);
  transition: width .2s ease;
}
.rail__nav a:hover { color: var(--on-dark); background: rgba(246, 241, 232, .07); }
.rail__nav a.is-active { color: var(--beige); background: rgba(246, 241, 232, .1); }
.rail__nav a.is-active::before { width: 26px; opacity: 1; }
.rail__foot {
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid rgba(246, 241, 232, .18);
  font-size: var(--step--1); color: var(--on-dark-soft); line-height: 1.7;
}
.rail__foot a { color: var(--beige); text-decoration: none; }
.rail__foot a:hover { text-decoration: underline; }

@media (min-width: 1060px) {
  .topbar, .scrim { display: none; }
  .app { display: grid; grid-template-columns: var(--rail) minmax(0, 1fr); }
  .rail {
    position: sticky; top: 0; bottom: auto; align-self: start;
    height: 100dvh; width: auto; z-index: 1;
    padding: 34px 26px 26px; gap: 26px;
    transform: none; visibility: visible; box-shadow: none;
  }
  .rail__logo { width: 152px; }
  body.is-locked { overflow: auto; }
}

/* ─── search ───────────────────────────────────────────────────────────── */

.search { position: relative; }
.search svg {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; opacity: .55; pointer-events: none;
}
.search input {
  width: 100%; padding: 11px 34px 11px 38px;
  border-radius: 999px; border: 1px solid rgba(246, 241, 232, .3);
  background: rgba(246, 241, 232, .08); color: var(--on-dark);
  font: inherit; font-size: var(--step--1); letter-spacing: .04em;
}
.search input::placeholder { color: rgba(246, 241, 232, .55); }
.search input:focus { outline: none; border-color: var(--beige); background: rgba(246, 241, 232, .14); }
.search__clear {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border: 0; border-radius: 999px; cursor: pointer;
  background: rgba(246, 241, 232, .18); color: var(--on-dark);
  display: none; place-items: center; font-size: 14px; line-height: 1;
}
.search.has-value .search__clear { display: grid; }

/* search results panel */
.results {
  position: absolute; z-index: 70; left: 0; right: 0; top: calc(100% + 8px);
  background: var(--card); color: var(--ink);
  border: 1px solid var(--rule); border-radius: var(--r);
  box-shadow: var(--shadow); overflow: hidden auto; max-height: 60vh; display: none;
}
.results.is-open { display: block; }
.results__empty { padding: 18px 16px; color: var(--ink-soft); font-size: var(--step--1); }
.results a {
  display: block; padding: 11px 16px; text-decoration: none;
  border-bottom: 1px solid var(--rule-soft);
}
.results a:last-child { border-bottom: 0; }
.results a:hover, .results a:focus-visible { background: var(--paper-2); }
.results__sec { font-size: 10px; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-faint); }
.results__title { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.22rem; line-height: 1.2; }

/* ─── hero ─────────────────────────────────────────────────────────────── */
/* A compact brand band, not a picture. The photography starts at the first
   section, so the page opens on the wordmark and gets to the content fast. */

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--paper); color: var(--ink);
  display: grid; place-items: center;
  padding: clamp(26px, 4.4vw, 40px) 24px clamp(30px, 4.6vw, 44px);
  text-align: center;
}
.hero__inner { display: grid; justify-items: center; gap: 12px; max-width: 620px; position: relative; }
.hero__logo { width: clamp(112px, 17vw, 150px); }
.hero__eyebrow { color: var(--accent); font-size: var(--step--1); margin: 0; }
.hero__title { font-size: clamp(1.7rem, 1.25rem + 2vw, 2.6rem); color: var(--ink); margin-top: 2px; }
.hero__body {
  max-width: 56ch; color: var(--ink-soft); margin: 0;
  font-size: var(--step-0); line-height: 1.6;
}

/* ─── quick actions ────────────────────────────────────────────────────── */

.wrap { max-width: var(--shell); margin: 0 auto; padding: 0 20px; }
@media (min-width: 700px) { .wrap { padding: 0 40px; } }

.quick {
  display: grid; gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  margin: 30px 0 0;
  position: relative; z-index: 5;
  box-shadow: var(--shadow);
}
@media (min-width: 620px) { .quick { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .quick { grid-template-columns: repeat(6, 1fr); } }

.quick button, .quick a {
  appearance: none; border: 0; cursor: pointer; text-align: left; text-decoration: none;
  background: var(--panel); color: var(--ink);
  font: inherit; padding: 16px 15px 15px;
  display: grid; gap: 7px; align-content: start;
  transition: background .16s ease;
}
.quick button:hover, .quick a:hover { background: var(--pill); }
.quick svg { width: 20px; height: 20px; color: var(--accent); }
.quick .qa-label { font-size: var(--step--1); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.quick .qa-sub { font-size: var(--step--1); color: var(--ink-soft); letter-spacing: .01em; text-transform: none; font-weight: 400; }

/* ─── today ────────────────────────────────────────────────────────────── */

.today {
  margin: clamp(26px, 3.4vw, 48px) 0 0;
  background: var(--forest); color: var(--on-dark);
  border-radius: 6px; overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.today__head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px;
  padding: 22px 24px 4px;
}
.today__head .label { color: var(--beige); }
.today__date { font-size: var(--step--1); color: var(--on-dark-soft); letter-spacing: .06em; }
.today__grid { display: grid; gap: 1px; background: rgba(246, 241, 232, .16); margin-top: 18px; }
@media (min-width: 760px) { .today__grid { grid-template-columns: 1.15fr 1fr; } }

.today__col { background: var(--forest); padding: 22px 24px 26px; }
.today__col h3 {
  margin: 0 0 14px; font-size: var(--step--1); font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase; color: var(--beige);
}
.sched { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.sched li { display: grid; grid-template-columns: 8.6em 1fr; gap: 4px 16px; align-items: baseline; }
.sched time {
  font-size: var(--step--1); letter-spacing: .04em; color: var(--beige);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.sched b { font-weight: 500; font-size: var(--step-0); }
.sched small { grid-column: 2; display: block; color: var(--on-dark-soft); font-size: var(--step--1); line-height: 1.5; }
@media (max-width: 480px) {
  .sched li { grid-template-columns: 1fr; }
  .sched small { grid-column: 1; }
}

.class-card { display: grid; gap: 8px; }
.class-card__day { font-size: var(--step--1); letter-spacing: .14em; text-transform: uppercase; color: var(--sage); }
.class-card__title { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 400; font-size: var(--step-2); line-height: 1.1; margin: 0; }
.class-card__time { font-size: var(--step--1); color: var(--beige); letter-spacing: .05em; font-variant-numeric: tabular-nums; }
.class-card__desc { color: var(--on-dark-soft); margin: 0; font-size: var(--step-0); }
.class-card__note { margin: 4px 0 0; font-size: var(--step--1); color: rgba(246, 241, 232, .6); line-height: 1.55; }

/* ─── section bands ────────────────────────────────────────────────────── */

.band {
  position: relative; isolation: isolate; overflow: hidden;
  margin-top: 0;
  min-height: clamp(215px, 30vw, 320px);
  display: grid; align-items: end;
  color: var(--on-dark);
}
.band img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28, 27, 26, .10) 0%, rgba(28, 27, 26, .34) 42%, rgba(28, 27, 26, .86) 100%);
}
.band__inner { padding: 26px clamp(20px, 3.4vw, 36px) 22px; display: grid; gap: 4px; text-shadow: 0 1px 14px rgba(28, 27, 26, .45); }
.band__kicker { color: var(--beige); font-size: var(--step--1); letter-spacing: .13em; text-transform: uppercase; }
.band__title { font-size: var(--step-3); color: var(--on-dark); }

/* ─── section body: editorial index ────────────────────────────────────── */

.section {
  scroll-margin-top: 74px;
  margin-top: clamp(26px, 3.4vw, 48px);
  background: var(--panel);
  border: 1px solid var(--rule-soft);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
@media (min-width: 1060px) { .section { scroll-margin-top: 24px; } }

.entries { padding: 4px clamp(20px, 3.4vw, 36px) 10px; }
.entry {
  display: grid; gap: 6px 40px;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: start;
}
.entry:last-child { border-bottom: 0; }
@media (min-width: 860px) { .entry { grid-template-columns: 15.5rem minmax(0, 1fr); } }

.entry__head { display: grid; gap: 6px; align-content: start; }
.entry__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500; font-size: var(--step-2); line-height: 1.12; margin: 0;
  text-wrap: balance;
}
.entry__meta {
  display: inline-flex; align-self: start; align-items: center;
  padding: 4px 10px; border-radius: 999px;
  background: var(--pill); border: 1px solid var(--rule-soft);
  color: var(--accent);
  font-size: var(--step--1); font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
}
.entry__body { color: var(--ink-soft); }
.entry__body .prose { color: var(--ink-soft); }

.linkrow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chiplink {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--rule); background: transparent; color: var(--ink);
  text-decoration: none; font-size: var(--step--1); font-weight: 500; letter-spacing: .04em;
  transition: border-color .16s ease, background .16s ease;
}
.chiplink:hover { border-color: var(--accent); background: var(--pill); }
.chiplink svg { width: 13px; height: 13px; opacity: .6; }

/* place list (restaurants, beach clubs, emergency numbers) */
.places { display: grid; gap: 0; margin-top: 6px; border-top: 1px solid var(--rule-soft); }
.place {
  display: grid; gap: 3px 20px; padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
}
@media (min-width: 640px) { .place { grid-template-columns: minmax(0, 1fr) minmax(0, 15rem); align-items: baseline; } }
.place__name { font-weight: 600; color: var(--ink); letter-spacing: .01em; }
.place__area {
  font-size: var(--step--1); color: var(--ink-faint);
  letter-spacing: .13em; text-transform: uppercase; margin-left: 9px;
}
.place__desc { grid-column: 1; color: var(--ink-soft); font-size: var(--step--1); line-height: 1.6; }
.place__perk {
  font-size: var(--step--1); font-weight: 600; color: var(--accent);
  letter-spacing: .03em; font-variant-numeric: tabular-nums; line-height: 1.45;
}
@media (min-width: 640px) { .place__perk { text-align: right; } }
@media (max-width: 639px) { .place__perk { grid-column: 1; } }

/* ─── footer ───────────────────────────────────────────────────────────── */

.footer {
  margin-top: 86px; position: relative; isolation: isolate;
  color: var(--on-dark); overflow: hidden;
}
.footer img.footer__img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.footer::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28, 27, 26, .70), rgba(28, 27, 26, .90));
}
.footer__grid {
  display: grid; gap: 34px; padding: 60px 0 26px;
}
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 44px; } }
.footer__logo { width: 158px; margin-bottom: 16px; }
.footer h4 { margin: 0 0 12px; font-size: var(--step--1); font-weight: 600; letter-spacing: .17em; text-transform: uppercase; color: var(--beige); }
.footer p, .footer a { color: var(--on-dark-soft); font-size: var(--step-0); }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--on-dark); text-decoration: underline; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer__legal {
  border-top: 1px solid rgba(246, 241, 232, .18);
  padding: 18px 0 34px; display: flex; flex-wrap: wrap; gap: 8px 20px;
  justify-content: space-between;
  font-size: var(--step--1); color: rgba(246, 241, 232, .55); letter-spacing: .05em;
}

/* ─── dialog ───────────────────────────────────────────────────────────── */

dialog.sheet {
  border: 0; padding: 0; border-radius: 6px;
  background: var(--forest); color: var(--on-dark);
  max-width: 400px; width: calc(100% - 32px);
  box-shadow: 0 24px 70px -20px rgba(28, 27, 26, .5);
}
dialog.sheet::backdrop { background: rgba(28, 27, 26, .55); backdrop-filter: blur(2px); }
.sheet__body { padding: 26px 26px 22px; display: grid; gap: 14px; }
.sheet__title { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; font-size: var(--step-2); margin: 0; color: var(--on-dark); }
.cred {
  display: grid; gap: 4px; padding: 14px 16px; border-radius: 4px;
  background: rgba(246, 241, 232, .10); border: 1px solid rgba(246, 241, 232, .16);
}
.cred span { font-size: var(--step--1); letter-spacing: .15em; text-transform: uppercase; color: var(--beige); }
.cred b { font-size: var(--step-1); font-weight: 500; letter-spacing: .02em; word-break: break-all; color: var(--on-dark); }
.sheet__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn {
  appearance: none; cursor: pointer; font: inherit;
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid rgba(246, 241, 232, .35);
  background: transparent; color: var(--on-dark);
  font-size: var(--step--1); font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.btn:hover { background: rgba(246, 241, 232, .12); }
.btn--primary { background: var(--gold); border-color: var(--gold); color: #22201D; }
.btn--primary:hover { filter: brightness(1.07); background: var(--gold); }

.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 18px);
  background: var(--black); color: var(--on-dark);
  padding: 11px 20px; border-radius: 999px; font-size: var(--step--1); letter-spacing: .06em;
  opacity: 0; pointer-events: none; transition: opacity .22s ease, transform .22s ease; z-index: 90;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ─── main column & mobile search ──────────────────────────────────────── */

.main { min-width: 0; }





/* ─── small-screen tuning ──────────────────────────────────────────────── */

@media (max-width: 619px) {
  .quick { margin-top: 22px; }
  .band__inner { padding: 20px 18px 17px; }
  .band__kicker { font-size: 11px; letter-spacing: .11em; }
  .entry { padding: 22px 0; }
}

/* On desktop the side rail already carries the wordmark, so the header keeps
   only the eyebrow, headline and welcome — nothing repeated, nothing tall. */
@media (min-width: 1060px) {
  .hero { padding: 34px 24px 36px; }
  .hero__logo { display: none; }
  .hero__inner { gap: 10px; }
}

/* ─── the week ahead ───────────────────────────────────────────────────── */
/* Rotated to start on today, so the first row is always what's on now and
   the rest read forward — the point is planning, not a wall calendar. */

.week {
  padding: 4px clamp(20px, 3.4vw, 36px) 28px;
  border-top: 1px solid var(--rule);
}
.week__head { margin: 22px 0 4px; color: var(--ink-soft); }
.week__rows { display: grid; }

.week__row {
  display: grid; gap: 2px 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.week__row:last-child { border-bottom: 0; }
@media (min-width: 720px) {
  .week__row { grid-template-columns: 8.5rem minmax(0, 1fr) 8.5rem; align-items: baseline; }
  .week__desc { grid-column: 2 / 4; }
  .week__time { text-align: right; }
}

.week__day {
  font-size: var(--step--1); font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink-faint);
}
.week__row.is-today .week__day { color: var(--accent); }
.week__row.is-today .week__name { font-weight: 600; }

.week__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--step-1); line-height: 1.25; color: var(--ink);
}
.week__time {
  font-size: var(--step--1); color: var(--ink-soft);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.week__desc { margin: 2px 0 0; color: var(--ink-soft); font-size: var(--step--1); line-height: 1.6; }
.week__note { margin: 16px 0 0; color: var(--ink-faint); font-size: var(--step--1); line-height: 1.6; }
