/* ============================================================
   TOWN PAGE — editorial profile
   ============================================================ */

/* ── Breadcrumb ── */
.town-breadcrumb {
  background: var(--parchment);
  border-bottom: 1px solid var(--rule);
}
.town-breadcrumb-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-mute);
}
.town-breadcrumb-inner a { color: var(--ink-mute); text-decoration: none; transition: color .15s; }
.town-breadcrumb-inner a:hover { color: var(--brass); }
.town-breadcrumb-inner .sep { color: var(--ink-faint); }
.town-breadcrumb-inner .cur { color: var(--ink); }
.town-breadcrumb-inner .spacer { flex: 1; }
.town-breadcrumb-inner .small { font-size: 9.5px; color: var(--ink-faint); }

/* ============================================================
   HERO
   ============================================================ */
.town-hero {
  position: relative;
  min-height: 720px;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--rule);
}
.th-frame {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 0;
}
.town-hero[data-season="spring"] .th-frame-spring,
.town-hero[data-season="summer"] .th-frame-summer,
.town-hero[data-season="fall"] .th-frame-fall,
.town-hero[data-season="winter"] .th-frame-winter { opacity: 1; }

.th-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(27,24,19,0.55) 0%,
      rgba(27,24,19,0.10) 24%,
      rgba(27,24,19,0.18) 50%,
      rgba(27,24,19,0.78) 100%),
    linear-gradient(90deg,
      rgba(27,24,19,0.50) 0%,
      rgba(27,24,19,0.0) 50%);
}

.th-inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px var(--gutter) 160px;
  color: var(--shell);
  min-height: 720px;
  display: flex; flex-direction: column; justify-content: center;
}
.th-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.th-eyebrow .tick { display: block; width: 32px; height: 1px; background: var(--brass-bright); }
.th-eyebrow .eyebrow { color: var(--brass-bright); }

.th-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(72px, 11vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  color: var(--shell);
  margin-bottom: 24px;
  text-shadow: 0 2px 36px rgba(0,0,0,0.35);
}
.th-title .it { font-style: italic; color: var(--brass-bright); }

.th-tag {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 22px; line-height: 1.4; color: rgba(250,246,236,0.82);
  margin-bottom: 56px; max-width: 640px;
}

.th-meta {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(250,246,236,0.18);
  max-width: 900px;
}
.th-meta-row {
  display: flex; flex-direction: column; gap: 8px;
}
.th-meta .label-cap { color: rgba(250,246,236,0.5); }
.th-meta .num {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 32px; color: var(--shell); line-height: 1;
}

/* Season scrubber */
.th-season {
  position: absolute; bottom: 28px; left: 0; right: 0; z-index: 3;
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.th-season-track {
  display: flex; border: 1px solid rgba(250,246,236,0.30);
  background: rgba(27,24,19,0.45);
  backdrop-filter: blur(8px);
}
.th-sn {
  padding: 10px 22px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none; border: none; color: rgba(250,246,236,0.55);
  cursor: pointer; border-right: 1px solid rgba(250,246,236,0.18);
  transition: all .15s;
}
.th-sn:last-child { border-right: none; }
.th-sn:hover { color: var(--shell); }
.th-sn-on { background: var(--brass-bright); color: var(--ink); }
.th-season-quote {
  flex: 1; min-width: 260px;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 17px; line-height: 1.4; color: rgba(250,246,236,0.78);
}
.th-season-quote em { color: var(--brass-bright); font-style: italic; }

/* ============================================================
   JUMP RAIL
   ============================================================ */
.town-jump {
  background: var(--ink); color: var(--shell);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(250,246,236,0.10);
}
.town-jump-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; gap: 0; flex-wrap: wrap;
}
.town-jump a {
  padding: 16px 22px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,246,236,0.55);
  text-decoration: none;
  border-right: 1px solid rgba(250,246,236,0.08);
  transition: all .15s;
}
.town-jump a:first-child { border-left: 1px solid rgba(250,246,236,0.08); }
.town-jump a:hover { color: var(--brass-bright); background: rgba(250,246,236,0.04); }
.town-jump a.jump-on { color: var(--brass-bright); background: rgba(201,158,90,0.10); }

/* ============================================================
   STORY
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 60px;
}
.story-body p {
  font-size: 15px; line-height: 1.85; color: var(--ink-soft);
  margin-bottom: 18px;
}
.story-body p.lede {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 26px; line-height: 1.4; color: var(--ink);
  margin-bottom: 26px;
}

/* Fit cards */
.fit-strip { display: flex; flex-direction: column; gap: 28px; }
.fit-h .label-cap { color: var(--brass); }
.fit-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.fit-card {
  background: var(--shell);
  padding: 34px 30px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .2s;
}
.fit-card:hover { background: var(--linen); }
.fit-num {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 36px; color: var(--brass); line-height: 1;
}
.fit-card h4 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 24px; color: var(--ink); line-height: 1.1; margin: 0;
}
.fit-card p { font-size: 13px; line-height: 1.65; color: var(--ink-soft); }

/* ============================================================
   VITALS
   ============================================================ */
.vitals-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.vitals-card {
  background: var(--shell);
  padding: 28px 28px 24px;
  grid-column: span 2;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 200px;
}
.vitals-card-wide { grid-column: span 6; min-height: 280px; }
.vitals-card-meta { grid-column: span 2; }

.vc-head { display: flex; justify-content: space-between; align-items: center; }
.vc-head .label-cap { color: var(--brass); }
.vc-trend {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.10em;
  padding: 3px 10px; font-weight: 500;
}
.vc-trend.up { background: rgba(74,106,61,0.14); color: var(--positive); }
.vc-trend.dn { background: rgba(139,58,42,0.14); color: var(--negative); }

.vc-num {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 64px; line-height: 1; color: var(--ink);
  margin-top: 4px;
}
.vc-num.small { font-size: 48px; }
.vc-num .suffix { font-size: 26px; color: var(--ink-mute); margin-left: 2px; }

.vc-sub {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.10em;
  color: var(--ink-mute);
}
.chg { font-weight: 500; }
.chg.up { color: var(--positive); }
.chg.dn { color: var(--negative); }

.vc-spark {
  width: 100%; height: 110px; margin-top: 16px;
  display: block;
}
.vc-axis {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.10em;
  color: var(--ink-faint); margin-top: 6px;
}

.dot-rule {
  position: relative;
  height: 14px; margin-top: 14px;
  background: linear-gradient(to right, var(--rule-soft), var(--rule-soft));
  background-size: 100% 1px; background-repeat: no-repeat; background-position: center;
}
.dot-rule span {
  position: absolute; top: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink-faint); transform: translate(-50%, -50%);
}

.bar-rule {
  position: relative;
  height: 6px; margin-top: 18px;
  background: var(--rule-soft);
}
.bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--brass);
}

.dial {
  margin-top: 12px; margin-bottom: -6px;
}
.dial svg { width: 100%; max-width: 140px; }

.origin { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.origin-row {
  display: grid;
  grid-template-columns: 90px 1fr 36px;
  gap: 12px; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.origin-row .ob {
  height: 5px; background: var(--rule-soft); position: relative;
}
.origin-row .ob span {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--brass);
}
.origin-row .op { text-align: right; color: var(--ink); font-weight: 500; }

.live-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 12px; color: var(--ink-soft);
}
.live-row:last-child { border-bottom: none; }
.live-row .dots { display: inline-flex; gap: 4px; }
.live-row .dots i {
  display: block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--brass);
}
.live-row .dots i.off { background: var(--rule); }

/* ============================================================
   MAIN STREET
   ============================================================ */
.mainst-filters {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-bottom: 28px;
  border: 1px solid var(--rule);
  background: var(--shell);
  max-width: max-content;
}
.ms-filter {
  padding: 12px 22px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: none; border: none;
  border-right: 1px solid var(--rule);
  color: var(--ink-mute);
  cursor: pointer;
  transition: all .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.ms-filter:last-child { border-right: none; }
.ms-filter:hover { color: var(--brass); }
.ms-filter.ms-on { background: var(--ink); color: var(--shell); }
.ms-filter .ct {
  font-size: 9px; opacity: 0.55; font-weight: 500;
}

.mainst-board {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--shell);
  min-height: 600px;
}

.mainst-map {
  position: relative;
  border-right: 1px solid var(--rule);
  overflow: hidden;
}
.mainst-map svg { display: block; width: 100%; height: 100%; }

.ms-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  background: none; border: none; padding: 0; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
}
.ms-pin-dot {
  width: 26px; height: 26px;
  background: var(--shell);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  color: var(--ink); letter-spacing: 0;
  box-shadow: 0 4px 10px -4px rgba(27,24,19,0.35);
  transition: all .18s;
}
.ms-pin[data-cat="wine"] .ms-pin-dot { background: var(--brass); color: var(--shell); border-color: var(--brass); }
.ms-pin[data-cat="eat"] .ms-pin-dot { background: var(--oxblood); color: var(--shell); border-color: var(--oxblood); }
.ms-pin[data-cat="stay"] .ms-pin-dot { background: var(--ink); color: var(--shell); }
.ms-pin[data-cat="shop"] .ms-pin-dot { background: var(--moss); color: var(--shell); border-color: var(--moss); }
.ms-pin[data-cat="do"]   .ms-pin-dot { background: var(--shell); color: var(--ink); }

.ms-pin-tip {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ink); color: var(--shell);
  padding: 4px 9px;
  opacity: 0; transform: translateX(-4px);
  transition: all .18s;
  white-space: nowrap; pointer-events: none;
}
.ms-pin:hover .ms-pin-dot,
.ms-pin.ms-pin-on .ms-pin-dot { transform: scale(1.18); }
.ms-pin:hover .ms-pin-tip,
.ms-pin.ms-pin-on .ms-pin-tip { opacity: 1; transform: translateX(0); }

.ms-pin.ms-pin-dim .ms-pin-dot {
  opacity: 0.18; filter: grayscale(1);
}
.ms-pin.ms-pin-dim { pointer-events: none; }

/* Rail */
.mainst-rail {
  padding: 28px 32px;
  display: flex; flex-direction: column;
  background: var(--shell);
}
.ms-rail-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px; border-bottom: 1px solid var(--rule);
  margin-bottom: 22px;
}
.ms-rail-head .label-cap { color: var(--brass); }
.ms-rail-tag {
  display: inline-block;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 14px;
}
.ms-rail-name {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 32px; line-height: 1.1; color: var(--ink);
  margin-bottom: 18px;
}
.ms-rail-desc { font-size: 13.5px; line-height: 1.7; color: var(--ink-soft); }
.ms-rail-list { list-style: none; padding: 0; margin: 18px 0 0; }
.ms-rail-list li {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 8px 0; border-bottom: 1px solid var(--rule-soft);
  display: flex; align-items: center; gap: 10px;
}
.ms-rail-list li::before {
  content: ''; display: block;
  width: 6px; height: 6px; background: var(--brass);
}

/* ============================================================
   WINE
   ============================================================ */
.wine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(250,246,236,0.12);
  border: 1px solid rgba(250,246,236,0.12);
}
.wine-card {
  background: var(--ink);
  padding: 36px 32px 28px;
  position: relative;
  transition: background .2s;
}
.wine-card:hover { background: rgba(201,158,90,0.06); }
.wine-letter {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 56px; line-height: 1; color: var(--brass-bright);
  opacity: 0.9; margin-bottom: 14px;
}
.wine-name {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 32px; color: var(--shell); line-height: 1.05;
}
.wine-house {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brass-bright);
  margin-top: 6px;
}
.wine-flight {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(250,246,236,0.10);
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--serif); font-size: 14.5px;
  color: rgba(250,246,236,0.7);
}
.wine-flight span::before { content: '◇  '; color: var(--brass-bright); font-size: 8px; vertical-align: 2px; margin-right: 2px; }
.wine-foot {
  margin-top: 22px; padding-top: 14px;
  border-top: 1px dotted rgba(250,246,236,0.16);
  display: flex; gap: 10px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  color: rgba(250,246,236,0.5);
}

.wine-foot-strip {
  margin-top: 36px;
  padding: 28px 36px;
  background: rgba(250,246,236,0.04);
  border: 1px solid rgba(250,246,236,0.10);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.wine-foot-strip > div {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.wf-stat {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 26px; color: var(--shell);
  display: inline-flex; align-items: baseline; gap: 8px;
}
.wf-stat em {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; font-style: normal;
  color: rgba(250,246,236,0.5); font-weight: 500;
}

/* ============================================================
   PICKS
   ============================================================ */
.picks-tabs {
  display: flex;
  border: 1px solid var(--rule);
  background: var(--shell);
  max-width: max-content;
  margin-bottom: 28px;
}
.pick-tab {
  padding: 14px 28px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: none; border: none;
  border-right: 1px solid var(--rule);
  color: var(--ink-mute); cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .15s;
}
.pick-tab:last-child { border-right: none; }
.pick-tab .ct { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-faint); letter-spacing: 0; }
.pick-tab:hover { color: var(--brass); }
.pick-tab-on { background: var(--ink); color: var(--shell); }
.pick-tab-on .ct { color: var(--brass-bright); }

.picks-board {
  border: 1px solid var(--rule);
  background: var(--shell);
}
.pick-pane { display: none; }
.pick-pane-on { display: block; }
.pick-row {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 32px;
  padding: 32px 36px;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  transition: background .15s;
}
.pick-row:last-child { border-bottom: none; }
.pick-row:hover { background: var(--linen); }
.pick-num {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 48px; color: var(--brass); line-height: 1;
}
.pick-body h4 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 26px; color: var(--ink); margin-bottom: 8px;
}
.pick-body p { font-size: 14px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 14px; }
.pick-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.pick-tags span {
  padding: 4px 10px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--vellum); color: var(--ink-mute);
}
.pick-cap {
  text-align: right;
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--mono); font-size: 12px; color: var(--ink-soft);
  padding-top: 6px;
}
.pick-cap .label-cap { color: var(--brass); }

/* ============================================================
   LISTINGS GRID
   ============================================================ */
.list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ============================================================
   LETTER
   ============================================================ */
.letter-card {
  background: var(--shell);
  border: 1px solid var(--rule);
  padding: 56px 64px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.letter-card::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1px solid var(--rule-soft);
  pointer-events: none;
}
.letter-head { margin-bottom: 36px; }
.letter-head .hairline-brass { margin-bottom: 14px; }

.letter-grid {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 48px; align-items: start;
}
.letter-photo {
  position: relative;
}
.letter-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: sepia(0.1) contrast(1.02);
}
.letter-stamp {
  margin-top: 18px;
  display: flex; align-items: center; gap: 12px;
}
.ls-cir {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--brass);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 16px; color: var(--brass);
}
.ls-lbl {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute); line-height: 1.4;
}

.letter-body p {
  font-size: 15px; line-height: 1.85; color: var(--ink-soft);
  margin-bottom: 18px;
}
.letter-body p em { color: var(--brass); font-style: italic; }
.letter-open {
  font-family: var(--serif); font-style: italic;
  font-size: 24px !important; color: var(--ink) !important;
  margin-bottom: 24px !important;
}
.letter-sign {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 26px; color: var(--ink); margin-top: 8px; margin-bottom: 0 !important;
}

.letter-contact {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; gap: 32px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
}
.letter-contact a {
  text-decoration: none;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
  transition: color .15s;
}
.letter-contact a:hover { color: var(--brass); }
.letter-contact .glyph { color: var(--brass); }

/* ============================================================
   NEARBY TOWNS
   ============================================================ */
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.nearby-card {
  text-decoration: none; color: inherit;
  background: var(--shell);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.nearby-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -16px rgba(27,24,19,0.2);
}
.nb-img {
  height: 160px;
  background-size: cover; background-position: center;
  border-bottom: 1px solid var(--rule);
}
.nb-body {
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.nb-dist {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brass);
}
.nb-body h4 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 24px; color: var(--ink); line-height: 1; margin: 2px 0;
}
.nb-body p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.4; }

/* ============================================================
   CTA (reused)
   ============================================================ */
.cta {
  text-align: center; padding: 130px var(--gutter);
  background: var(--ink); color: var(--shell);
  border-top: 1px solid rgba(250,246,236,0.10);
}
.cta-h {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(60px, 8vw, 112px); line-height: 0.96;
  color: var(--shell); margin-bottom: 24px;
}
.cta-h em { color: var(--brass-bright); }
.cta-sub {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 22px; color: rgba(250,246,236,0.7); margin-bottom: 40px;
}
.cta-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn-ink { background: var(--brass); color: var(--shell); }
.cta .btn-ink:hover { background: var(--brass-bright); color: var(--ink); }
.cta .btn-ghost { border-color: rgba(250,246,236,0.30); color: var(--shell); }
.cta .btn-ghost:hover { border-color: var(--shell); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .vitals-grid { grid-template-columns: repeat(4, 1fr); }
  .vitals-card { grid-column: span 2; }
  .vitals-card-wide { grid-column: span 4; }
  .vitals-card-meta { grid-column: span 4; }
  .fit-cards { grid-template-columns: repeat(2, 1fr); }
  .nearby-grid { grid-template-columns: repeat(3, 1fr); }
  .wine-grid { grid-template-columns: repeat(2, 1fr); }
  .list-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .th-meta { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .fit-cards { grid-template-columns: 1fr; }
  .mainst-board { grid-template-columns: 1fr; }
  .mainst-map { aspect-ratio: 5/3; }
  .vitals-grid { grid-template-columns: 1fr 1fr; }
  .vitals-card { grid-column: span 2; }
  .letter-grid { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: 1fr 1fr; }
  .wine-grid { grid-template-columns: 1fr; }
  .list-grid { grid-template-columns: 1fr; }
  .pick-row { grid-template-columns: 60px 1fr; }
  .pick-cap { grid-column: 1 / -1; text-align: left; padding-top: 0; }
}
