/* ============================================
   ITALIA 2026 — DESIGN SYSTEM
   Warm. Italian. Editorial. Pompeii-inspired.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT,WONK@0,9..144,300..900,0..100,0..1;1,9..144,300..900,0..100,0..1&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

:root {
  /* Base — flat warm off-white. No textures, no overlays. */
  --parchment: #f7f1e3;
  --parchment-deep: #eee5cf;
  --cream: #fbf6ea;
  --espresso: #2a1810;
  --espresso-soft: #3d2a1f;
  --ink-muted: color-mix(in srgb, var(--espresso) 60%, transparent);

  /* Original warm accents */
  --terracotta: #b65440;
  --terracotta-deep: #8a3d2c;
  --olive: #6b7754;
  --olive-deep: #4a5439;
  --cypress: #3a5a3f;
  --cypress-deep: #2a4530;
  --gold: #c99560;
  --rose: #d4856a;

  /* New — richer Italian accents */
  --wine: #6e1f25;
  --wine-deep: #4a1418;
  --tyrrhenian: #3a6e7c;
  --tyrrhenian-deep: #234852;
  --fresco-pink: #d9a892;
  --pompeii-yellow: #d4a13e;
  --fresco-bg: #e8d4b8;

  --shadow-warm: rgba(42, 24, 16, 0.1);
  --shadow-deep: rgba(42, 24, 16, 0.18);

  --display: 'Fraunces', 'Times New Roman', serif;
  --body: 'Lora', 'Georgia', serif;

  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.5rem; --s-6: 2rem; --s-7: 3rem; --s-8: 4rem;
  --s-9: 6rem; --s-10: 8rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--espresso);
  background: var(--parchment);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

main, header, footer, nav, section { position: relative; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--espresso);
}
h1 { font-size: clamp(3rem, 9vw, 7.5rem); font-variation-settings: 'opsz' 144, 'SOFT' 50, 'wght' 350; }
h2 { font-size: clamp(2rem, 5vw, 3.75rem); font-variation-settings: 'opsz' 96, 'SOFT' 40, 'wght' 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); font-variation-settings: 'opsz' 36, 'SOFT' 30, 'wght' 500; line-height: 1.15; }
h4 { font-size: 1.05rem; font-variation-settings: 'opsz' 14, 'wght' 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--wine); }

em, .italic { font-style: italic; }

.eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--wine);
  font-variation-settings: 'opsz' 14, 'wght' 400;
  letter-spacing: 0.02em;
}
.smallcaps {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cypress);
  font-weight: 600;
}

a {
  color: var(--wine);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: all 0.2s ease;
}
a:hover { color: var(--wine-deep); border-bottom-color: var(--wine); }

/* Drop cap intentionally removed from .lead — was appearing on every lede on
   every page, which is the "amateur editorial" tic. The per-entry drop cap
   in .entry:first-of-type .entry-body p:first-of-type::first-letter remains
   so each long feature still gets one drop cap at its true opener. */

/* LAYOUT */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--s-5);
}
@media (min-width: 768px) { .container { padding: 0 var(--s-7); } }
section { padding: var(--s-9) 0; }

/* NAV */
.nav {
  padding: var(--s-5) 0;
  border-bottom: 1px solid rgba(42, 24, 16, 0.12);
  background: var(--parchment);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
}
.nav-brand {
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'wght' 500;
  color: var(--espresso);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-brand span { font-style: normal; color: var(--wine); }
.nav-brand svg { color: var(--wine); width: 22px; height: 22px; }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  list-style: none;
}
.nav-links a {
  font-family: var(--body);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--espresso-soft);
  border: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { border-bottom-color: var(--wine); color: var(--wine); }
.nav-links a.active { color: var(--wine); border-bottom-color: var(--wine); }

/* HERO */
.hero {
  padding-top: var(--s-10);
  padding-bottom: var(--s-9);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 70%;
  background: radial-gradient(ellipse 100% 70% at 50% 100%, rgba(110, 31, 37, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: start;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-8);
  }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.hero-eyebrow::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--wine);
}
.hero h1 { margin-bottom: var(--s-5); }
.hero h1 .accent {
  font-style: italic;
  color: var(--wine);
  font-variation-settings: 'opsz' 144, 'SOFT' 80, 'wght' 350;
}
.hero-lede {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--espresso-soft);
  max-width: 38ch;
}
/* hero-flourish (grape glyph + lines-on-either-side under each hero title)
   was the last ornament tic. Hidden — kept as no-op class so markup
   doesn't need touching across every page. */
.hero-flourish { display: none; }
.hero-meta {
  border-top: 1px solid rgba(42, 24, 16, 0.18);
  padding-top: var(--s-5);
  margin-top: var(--s-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
.hero-meta dt {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-deep);
  font-weight: 600;
  margin-bottom: var(--s-2);
}
.hero-meta dd {
  font-family: var(--display);
  font-size: 1.25rem;
  font-variation-settings: 'opsz' 24, 'wght' 400;
  color: var(--espresso);
}
.hero-meta dd em { font-style: italic; color: var(--wine); }

/* Hero image — establishing shot of the page's place pulled into the hero's
   right column. Sits opposite the lede + distance stats and sets the tone
   without competing for headline weight. */
.hero-image {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--parchment-deep);
}
.hero-image > a {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}
.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .hero-image { aspect-ratio: 4 / 3; }
}

/* Section dividers — replaced ornaments with pure whitespace.
   .ornament and .meander-divider kept as no-op classes so existing markup
   doesn't break, but they render nothing. */
.ornament { display: none; }
.meander-divider { display: none; }

/* SECTION HEAD */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
  align-items: end;
}
@media (min-width: 900px) {
  .section-head {
    grid-template-columns: auto 1fr;
    gap: var(--s-8);
  }
}
/* Old i./ii./iii. tic — replaced by a tracked uppercase kicker.
   Class kept as no-op so existing markup doesn't 404 visually. */
.section-number { display: none; }

/* Kicker — tracked, all-caps sans label that sits above each section
   headline. The single "magazine kicker" move shared by CN Traveler, NYT,
   BBC, Nat Geo, T+L, Atlas Obscura, Time Out, The Infatuation. */
.kicker {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: var(--s-4);
}
.section-head h2 .accent { font-style: italic; color: var(--wine); }
.section-head p {
  font-size: 1.05rem;
  color: var(--espresso-soft);
  max-width: 50ch;
  line-height: 1.6;
}

/* AIRBNB CARD */
.airbnb-card {
  background: var(--cream);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  position: relative;
}
@media (min-width: 768px) {
  .airbnb-card { grid-template-columns: 1.3fr 1fr; padding: 0; gap: var(--s-7); }
}
.airbnb-label {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: var(--s-3);
}
.airbnb-card h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-variation-settings: 'opsz' 60, 'SOFT' 40, 'wght' 450;
  margin-bottom: var(--s-4);
  line-height: 1.1;
}
.airbnb-card h3 em { font-style: italic; color: var(--wine); }
.airbnb-address {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--espresso-soft);
  margin-bottom: var(--s-5);
  line-height: 1.5;
}
.airbnb-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4) var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px dashed rgba(42, 24, 16, 0.2);
}
.airbnb-facts dt {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-deep);
  font-weight: 600;
  margin-bottom: var(--s-1);
}
.airbnb-facts dd {
  font-family: var(--display);
  font-size: 1.05rem;
  font-variation-settings: 'opsz' 14, 'wght' 400;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.75rem 1.4rem;
  background: var(--wine);
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: none;
}
.btn:hover { background: var(--wine-deep); color: var(--cream); border-bottom: none; }
.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--espresso);
}
.btn-ghost:hover { background: var(--espresso); color: var(--cream); }
.btn svg { width: 14px; height: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-5); }

/* MAP — static OpenStreetMap tile composite. Replaces the old wireframe
   placeholder that was the single most amateur element on the home page. */
.map-block {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--parchment-deep);
}
.map-tile {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Slight desaturation + warm tint pulls OSM into the page palette. */
  filter: saturate(0.75) sepia(0.06);
}
.map-marker {
  position: absolute;
  /* Marker baked at 37% / 41.5% by the tile-stitch script. */
  left: 37%;
  top: 41.5%;
  width: 18px;
  height: 18px;
  background: var(--wine);
  border: 3px solid var(--cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 16px -4px rgba(0,0,0,0.4);
  z-index: 2;
}
.map-caption {
  position: absolute;
  left: var(--s-4);
  bottom: var(--s-4);
  z-index: 3;
  background: color-mix(in srgb, var(--cream) 94%, transparent);
  padding: var(--s-3) var(--s-4);
  backdrop-filter: blur(4px);
  max-width: calc(100% - 2 * var(--s-4));
}
.map-caption-label {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--espresso);
  display: block;
}
.map-caption-coords {
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-deep);
  display: block;
  margin-top: 2px;
}

/* ESSENTIALS — quiet panel. No fresco background, no noise texture.
   Sits on the page's flat parchment and lets the cards speak. */
.essentials {
  padding: var(--s-9) 0;
  position: relative;
}

.essential-group { margin-bottom: var(--s-8); }
.essential-group:last-child { margin-bottom: 0; }
.essential-group-head {
  display: flex;
  align-items: baseline;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
  flex-wrap: wrap;
}
.essential-group-head h3 {
  font-style: italic;
  font-variation-settings: 'opsz' 60, 'SOFT' 50, 'wght' 400;
  color: var(--espresso);
}
.essential-group-head .count {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cypress);
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 600px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: transparent;
  border: none;
  padding: var(--s-5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--espresso) 12%, transparent);
}
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-3);
}
.card h4 {
  font-family: var(--display);
  font-size: 1.25rem;
  text-transform: none;
  letter-spacing: -0.005em;
  color: var(--espresso);
  font-variation-settings: 'opsz' 24, 'wght' 500;
  line-height: 1.2;
}
.card-tag {
  font-family: var(--body);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  background: transparent;
  padding: 0;
  font-weight: 600;
  white-space: nowrap;
}
.card-address {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.45;
}
.card-meta {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-top: var(--s-2);
}
/* Was: bold inline "Hours:" labels — the database-printout tic.
   Now: tracked uppercase mini-labels that read as captions, not form fields. */
.card-meta strong {
  display: inline;
  color: color-mix(in srgb, var(--espresso) 45%, transparent);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-right: 0.25rem;
}
.card-actions {
  display: flex;
  gap: var(--s-2);
  margin-top: auto;
  padding-top: var(--s-3);
}
.card-link {
  border: none;
  color: var(--wine);
  padding: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  background: transparent;
  transition: color 0.2s ease;
  cursor: pointer;
}
.card-link + .card-link::before {
  content: '·';
  color: color-mix(in srgb, var(--espresso) 25%, transparent);
  margin-right: var(--s-2);
}
.card-link:hover { color: var(--wine-deep); }
.card-img {
  display: block;
  width: calc(100% + 2 * var(--s-5));
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: calc(-1 * var(--s-5)) calc(-1 * var(--s-5)) var(--s-3);
  background: var(--parchment-deep);
}
.card.alert {
  background: linear-gradient(135deg, #f5e0c8, #f0d4b3);
  border-color: var(--wine);
}
.card-alert-note {
  background: rgba(110, 31, 37, 0.08);
  border-left: 3px solid var(--wine);
  padding: var(--s-3);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.5;
}

/* MENU PREVIEW */
.menu-preview { padding: var(--s-9) 0; }
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin-top: var(--s-7);
}
@media (min-width: 700px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.menu-tile {
  position: relative;
  display: block;
  padding: var(--s-6) var(--s-5);
  background: var(--cream);
  border: 1px solid rgba(42, 24, 16, 0.12);
  text-decoration: none;
  border-bottom: 1px solid rgba(42, 24, 16, 0.12);
  transition: all 0.3s ease;
  overflow: hidden;
}
.menu-tile::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--cypress));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.menu-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px var(--shadow-deep); }
.menu-tile:hover::after { transform: scaleX(1); }
.menu-tile .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--wine);
  margin-bottom: var(--s-3);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.menu-tile .num svg { width: 12px; height: 12px; }
.menu-tile h3 {
  font-family: var(--display);
  font-size: 1.65rem;
  margin-bottom: var(--s-2);
  color: var(--espresso);
  font-variation-settings: 'opsz' 36, 'SOFT' 40, 'wght' 450;
}
.menu-tile h3 em { font-style: italic; color: var(--wine); }
.menu-tile p {
  font-size: 0.92rem;
  color: var(--espresso-soft);
  line-height: 1.55;
}
.menu-tile .arrow {
  position: absolute;
  top: var(--s-5);
  right: var(--s-5);
  color: var(--wine);
  font-style: italic;
  font-family: var(--display);
  transition: transform 0.25s ease;
}
.menu-tile:hover .arrow { transform: translate(4px, -4px); }
.menu-tile.coming { opacity: 0.72; pointer-events: none; }
.menu-tile.coming::before {
  content: 'in costruzione';
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  font-family: var(--body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-deep);
  background: var(--parchment-deep);
  padding: 0.25rem 0.5rem;
}
.menu-tile.coming .arrow { display: none; }

/* FOOTER */
.footer {
  background: var(--espresso);
  color: var(--cream);
  padding: var(--s-7) 0 var(--s-6);
  margin-top: var(--s-8);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wine) 0%, var(--gold) 50%, var(--cypress) 100%);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: center;
}
@media (min-width: 700px) { .footer-inner { grid-template-columns: auto 1fr auto; } }
.footer h4 {
  color: var(--gold);
  font-family: var(--display);
  font-style: italic;
  text-transform: none;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 24, 'wght' 400;
}
.footer p {
  font-size: 0.92rem;
  color: rgba(250, 243, 226, 0.7);
  font-style: italic;
}
.footer-family { font-family: var(--display); font-size: 0.95rem; color: var(--gold); }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
}
.footer-brand svg { color: var(--gold); }
.footer-meta {
  font-family: var(--body);
  font-size: 0.82rem;
  color: rgba(250, 243, 226, 0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
}
.footer-meta em { font-style: italic; color: var(--gold); text-transform: none; letter-spacing: 0; }

.hidden-mobile { display: none; }
@media (min-width: 768px) { .hidden-mobile { display: initial; } }

/* === EDITORIAL ENTRY PATTERN ===
   Destination-agnostic structure for menu pages.
   The Italy/Campania application reuses the :root tokens defined
   above (--parchment, --espresso, --wine, --cypress, --gold,
   --display, --body). Re-skinning for another destination means
   changing those tokens, not these rules. All pattern declarations
   reference var() — never hardcode color or font values here. */

.entry {
  max-width: 640px;
  margin: 0 auto var(--s-8);
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* --- side-by-side entry variants ---
   When an entry has a paired inline image, it spreads wider and runs as a
   two-column grid (text + image). Image side defaults to right; `--image-left`
   reverses. Below 768px the columns stack vertically. */

.entry--with-image {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-areas: "text image";
  gap: var(--s-7);
  align-items: start;
}

.entry--with-image.entry--image-left {
  grid-template-columns: 1fr 1.4fr;
  grid-template-areas: "image text";
}

/* Entry with only a placeholder image (no accepted gallery): keep the
   side-by-side grid, but force text to the left column and leave the
   right column visibly empty (no decorative tile). This preserves the
   page's visual rhythm — text always starts at the left margin — while
   the right side breathes where the image would normally sit. */
.entry--with-image:not(:has(figure.entry-image:not(.entry-image--placeholder))) {
  grid-template-columns: 1.4fr 1fr;
  grid-template-areas: "text image";
}
.entry--with-image:not(:has(figure.entry-image:not(.entry-image--placeholder))) .entry-image--placeholder {
  visibility: hidden;
}

.entry--with-image .entry-text { grid-area: text; min-width: 0; }
.entry--with-image .entry-image,
.entry--with-image .entry-image--placeholder { grid-area: image; }

/* Feature entries: a couple of tentpole entries get a wider, cinematic
   treatment with the image stacked above the text. */
.entry--feature {
  max-width: 1200px;
  display: block;
}
.entry--feature .entry-image,
.entry--feature .entry-image--placeholder {
  margin-bottom: var(--s-6);
}
.entry--feature .entry-image img,
.entry--feature .entry-image--placeholder {
  aspect-ratio: 21 / 9;
}
.entry--feature .entry-text {
  max-width: 740px;
  margin: 0 auto;
}

/* The image cell. Real image fills via object-fit; placeholder figure shows a
   parchment-textured ornament when no image was accepted for the slot. */
.entry-image {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--parchment-deep);
  overflow: hidden;
}
.entry-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-image--placeholder {
  margin: 0;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201, 149, 96, 0.18), transparent 60%),
    linear-gradient(135deg, var(--parchment-deep), var(--parchment));
  border: 1px solid rgba(42, 24, 16, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wine);
  opacity: 0.85;
}
.entry-image--placeholder svg {
  width: 32%;
  height: auto;
  max-width: 110px;
  opacity: 0.55;
}

/* Hide the placeholder when a real image figure exists in the same entry. */
.entry:has(figure.entry-image:not(.entry-image--placeholder)) .entry-image--placeholder {
  display: none;
}

@media (max-width: 767px) {
  .entry--with-image,
  .entry--with-image.entry--image-left {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "text";
    gap: var(--s-5);
  }
  .entry-image,
  .entry-image--placeholder,
  .entry--feature .entry-image img,
  .entry--feature .entry-image--placeholder {
    aspect-ratio: 4 / 3;
  }
}

/* The drop cap on the first entry's first paragraph also needs to apply when
   the first entry has been wrapped in `.entry-text`. */
.entry:first-of-type .entry-text .entry-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'SOFT' 60, 'wght' 600;
  font-size: 3.5rem;
  line-height: 0.85;
  float: left;
  margin: 0.45rem 0.6rem 0 0;
  color: var(--wine);
}
@media (max-width: 600px) {
  .entry:first-of-type .entry-text .entry-body p:first-of-type::first-letter {
    font-size: 2.5rem;
    margin: 0.3rem 0.4rem 0 0;
  }
}

.entry-header {
  display: flex;
  align-items: baseline;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
  flex-wrap: nowrap;
}

.entry-numeral {
  font-family: var(--display);
  font-size: clamp(1.9rem, 5vw, 2.5rem);
  font-variation-settings: 'opsz' 60, 'wght' 600;
  color: var(--wine);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.entry-name {
  font-family: var(--display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-variation-settings: 'opsz' 60, 'wght' 600;
  color: var(--espresso);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: none;
}

.entry-body {
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--espresso);
}

.entry-body p + p { margin-top: 1rem; }
.entry-body em { font-style: italic; }

.entry:first-of-type .entry-body p:first-of-type::first-letter {
  font-family: var(--display);
  font-variation-settings: 'opsz' 144, 'SOFT' 60, 'wght' 600;
  font-size: 3.5rem;
  line-height: 0.85;
  float: left;
  margin: 0.45rem 0.6rem 0 0;
  color: var(--wine);
}

@media (max-width: 600px) {
  .entry:first-of-type .entry-body p:first-of-type::first-letter {
    font-size: 2.5rem;
    margin: 0.3rem 0.4rem 0 0;
  }
}

/* Was a Greek-key glyph between entries — now pure whitespace. */
.entry-divider {
  width: 100%;
  height: 1px;
  margin: var(--s-8) auto;
  background: color-mix(in srgb, var(--espresso) 10%, transparent);
  max-width: 80px;
}

/* --- meta block ---
   Sits at the foot of an entry, prose-form with middle-dot separators.
   Used only when an entry refers to a specific destination with
   practical data (address, hours, phone, website, map). Experiential
   entries omit the block entirely. */

/* Entry tags — small "amenities" pills below the header. Airbnb-style:
   icon + short label, low-contrast on a parchment-deep chip. Sits inside
   .entry-text so it stays left-aligned in both side-by-side and centered
   collapsed-entry layouts. */
.entry-tags {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-items: center;
}
.entry-tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--ink-muted);
  white-space: nowrap;
  padding: 0;
  background: none;
  border: none;
}
.entry-tags li:not(:last-child)::after {
  content: '·';
  margin-left: 0.6rem;
  color: color-mix(in srgb, var(--espresso) 25%, transparent);
}
.entry-tags .tag-icon {
  width: 12px;
  height: 12px;
  color: var(--wine);
  flex-shrink: 0;
  opacity: 0.7;
}

.entry-meta {
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid color-mix(in srgb, var(--espresso) 8%, transparent);
}

.entry-meta p {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--espresso) 70%, transparent);
}

.entry-meta a {
  color: var(--wine);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  border-bottom: none;
}

.entry-meta a:hover {
  color: var(--wine-deep);
  text-decoration-thickness: 2px;
  border-bottom: none;
}

@media (max-width: 600px) {
  .entry-meta p { font-size: 0.8125rem; }
}

/* Feature image slots — placeholders until the page-level vision-gate
   pass fills them. Slots are HTML comments until then; the rules
   below define behavior for when image elements are rendered into
   them. Filled slot expects: <div class="feature-image-slot
   feature-image-slot--<variant>"><img …></div>. */

.feature-image-slot {
  margin: var(--s-8) auto;
  display: block;
}

.feature-image-slot img,
.feature-image-slot picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-image-slot--page-hero {
  width: 100%;
  max-width: 1240px;
  aspect-ratio: 16 / 9;
}

.feature-image-slot--between-entries {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 4 / 3;
}

.feature-image-slot--full-bleed-divider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 30vh;
}

@media (min-width: 768px) {
  .feature-image-slot--full-bleed-divider { height: 50vh; }
}

.feature-image-slot--pull-quote-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  max-width: 960px;
  align-items: center;
}

.feature-image-slot--pull-quote-with-image > blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  line-height: 1.3;
  color: var(--wine);
  border-left: 2px solid var(--gold);
  padding-left: var(--s-4);
}

.feature-image-slot--pull-quote-with-image > figure,
.feature-image-slot--pull-quote-with-image > .image {
  aspect-ratio: 4 / 5;
}

@media (min-width: 768px) {
  .feature-image-slot--pull-quote-with-image {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-7);
  }
}

/* --- map slot ---
   Page-level embedded Google Maps frame for orienting the reader to
   the region. Generic across destinations — Italy/Campania application
   only via the iframe src and caption text. */

.feature-image-slot--map {
  margin: var(--s-8) auto;
}

.feature-image-slot--map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 1px solid var(--gold);
  box-shadow: 0 8px 24px -12px var(--shadow-deep);
}

.feature-image-slot--map .map-caption {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
  margin-top: var(--s-3);
  color: color-mix(in srgb, var(--espresso) 70%, transparent);
}

.feature-image-slot--map .map-caption a {
  color: var(--wine);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  border-bottom: none;
}

.feature-image-slot--map .map-caption a:hover {
  color: var(--wine-deep);
  text-decoration-thickness: 2px;
  border-bottom: none;
}

@media (max-width: 767px) {
  .feature-image-slot--map iframe { height: 280px; }
}

/* --- pull-quote slot (no image) ---
   Big typographic break, pulled sentence from a nearby entry. */

.feature-image-slot--pull-quote {
  max-width: 720px;
  margin: var(--s-9) auto;
  padding: 0;
}

.feature-image-slot--pull-quote blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 96, 'SOFT' 50, 'wght' 400;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.3;
  color: var(--wine);
  padding: 0 var(--s-6);
  text-align: center;
}

.feature-image-slot--pull-quote .attribution {
  display: block;
  font-family: var(--body);
  font-style: normal;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--espresso) 70%, transparent);
  margin-top: var(--s-5);
}

@media (max-width: 767px) {
  .feature-image-slot--pull-quote {
    margin: var(--s-7) auto;
  }
  .feature-image-slot--pull-quote blockquote {
    padding: 0 var(--s-4);
  }
}

/* === IMAGE-GATE LIGHTBOX ===
   Vanilla-JS modal for full-quality image view + per-entry galleries.
   Page-shared: a single .lightbox element is appended once per page by
   the image-gate's HTML writer and reused for every image click.
   Inline image cells become buttons via cursor: zoom-in; the depth-
   signal indicator pill in the bottom-right marks multi-image entries. */

.entry-image img,
.feature-image-slot img {
  cursor: zoom-in;
}

.image-count-indicator {
  position: absolute;
  right: var(--s-3);
  bottom: var(--s-3);
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.55rem;
  color: var(--cream);
  background: color-mix(in srgb, var(--espresso) 70%, transparent);
  backdrop-filter: blur(2px);
  pointer-events: none;
  z-index: 2;
  user-select: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-5);
  background: color-mix(in srgb, var(--espresso) 88%, transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  max-width: 92vw;
  max-height: 92vh;
}

.lightbox-image {
  display: block;
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  background: var(--espresso);
}

.lightbox-meta {
  font-family: var(--body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--cream);
  text-align: center;
  max-width: 70ch;
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  padding: var(--s-2) var(--s-3);
}

.lightbox-caption {
  font-style: italic;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--cream);
  font-variation-settings: 'opsz' 24, 'wght' 400;
}

.lightbox-caption:empty { display: none; }

.lightbox-attribution {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--cream) 75%, transparent);
}

.lightbox-attribution a {
  color: var(--cream);
  border-bottom: 1px solid color-mix(in srgb, var(--cream) 40%, transparent);
}

.lightbox-attribution a:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

.lightbox-position {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--cream) 60%, transparent);
  margin-top: var(--s-1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: color-mix(in srgb, var(--espresso) 70%, transparent);
  color: var(--cream);
  border: 1px solid color-mix(in srgb, var(--cream) 25%, transparent);
  font-family: var(--display);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  border-radius: 0;
}

.lightbox-close {
  top: var(--s-4);
  right: var(--s-4);
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 64px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-prev { left: var(--s-4); }
.lightbox-next { right: var(--s-4); }

.lightbox-prev[hidden],
.lightbox-next[hidden],
.lightbox-position[hidden] {
  display: none;
}

.lightbox-close:hover,
.lightbox-prev:not(:disabled):hover,
.lightbox-next:not(:disabled):hover {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
  opacity: 0.3;
  cursor: default;
}

@media (max-width: 600px) {
  .lightbox { padding: var(--s-3); }
  .lightbox-image { max-height: 70vh; }
  .lightbox-close {
    top: var(--s-2);
    right: var(--s-2);
    width: 40px;
    height: 40px;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 56px;
    font-size: 1.6rem;
  }
  .lightbox-prev { left: var(--s-2); }
  .lightbox-next { right: var(--s-2); }
  .lightbox-meta {
    font-size: 0.84rem;
  }
}

/* Image credits — appended by image-gate script */
.image-credits {
  max-width: 640px;
  margin: var(--s-7) auto var(--s-8);
  padding-top: var(--s-5);
  border-top: 1px solid color-mix(in srgb, var(--espresso) 12%, transparent);
}
.image-credits h3 {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cypress);
  font-weight: 600;
  margin-bottom: var(--s-4);
}
.image-credits ul { list-style: none; }
.image-credits li {
  font-family: var(--body);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--espresso) 65%, transparent);
}
.image-credits li + li { margin-top: var(--s-2); }
.image-credits-note {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.78rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--espresso) 55%, transparent);
  margin-top: var(--s-3);
}
.image-credits em { font-style: italic; }
.image-credits a {
  color: var(--wine);
  border-bottom: 1px solid color-mix(in srgb, var(--wine) 30%, transparent);
}
.image-credits a:hover {
  color: var(--wine-deep);
  border-bottom-color: var(--wine);
}

/* ============================================================
   LISTING-STYLE LAYOUT (home page rebuild)
   Inspired by Airbnb's listing page: sticky nav with primary CTA,
   photo-gallery hero, two-column main with sticky booking sidebar.
   Used by index.html only. Inner pages keep their feature-spread
   layout.
   ============================================================ */

/* --- Sticky top nav (replaces the simple .nav for listing pages) --- */
.listing-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--parchment) 96%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
}
.listing-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  padding: var(--s-4) 0;
}
.listing-nav .brand {
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--espresso);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.listing-nav .brand span { font-style: normal; color: var(--wine); }
.listing-nav .brand svg { color: var(--wine); width: 20px; height: 20px; }

/* Breadcrumb on inner pages — sits beside the brand with a hairline separator */
.breadcrumb-current {
  font-family: var(--body);
  font-size: 0.88rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  margin-left: var(--s-4);
  padding-left: var(--s-4);
  border-left: 1px solid color-mix(in srgb, var(--espresso) 18%, transparent);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .breadcrumb-current { display: none; }
}

/* ============================================================
   TWO-TIER TRIP NAV (applies to all Italy pages)
   Tier 1 — global Wayfare bar (thin, brand back to /)
   Tier 2 — trip-specific bar (Italia '26 + section tabs + booking CTA)
   ============================================================ */
.trip-nav {
  position: sticky;
  top: 0;
  z-index: 50;
}
.trip-nav-wayfare {
  background: var(--espresso);
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trip-nav-wayfare-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-2) 0;
}
.wayfare-brand--small .wayfare-wordmark {
  font-size: 1rem;
}
.wayfare-brand--small .wayfare-mark {
  font-size: 0.95rem;
  width: 24px;
  height: 24px;
}
.trip-nav-wayfare .wayfare-brand { color: var(--cream); }
.trip-nav-wayfare .wayfare-brand:hover { color: var(--cream); }
.trip-nav-wayfare .wayfare-wordmark { color: var(--cream); }
.trip-nav-wayfare .wayfare-mark { background: var(--gold); color: var(--espresso); }
.wayfare-mini-links {
  display: none;
  gap: var(--s-5);
}
@media (min-width: 800px) { .wayfare-mini-links { display: flex; } }
.wayfare-mini-links a {
  font-family: var(--body);
  font-size: 0.78rem;
  color: rgba(250, 243, 226, 0.75);
  border: none;
  letter-spacing: 0.04em;
}
.wayfare-mini-links a:hover { color: var(--gold); border: none; }
.wayfare-signin--small {
  font-size: 0.7rem;
  padding: 0.4rem 0.8rem;
  letter-spacing: 0.16em;
  border-color: rgba(250, 243, 226, 0.4);
  color: var(--cream);
}
.wayfare-signin--small:hover { background: var(--cream); color: var(--espresso); border-color: var(--cream); }

.trip-nav-section {
  background: color-mix(in srgb, var(--parchment) 96%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 12%, transparent);
}
.trip-nav-section-inner {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-3) 0;
}
.trip-brand {
  font-family: var(--display);
  font-size: 1.15rem;
  font-variation-settings: 'opsz' 24, 'wght' 500;
  color: var(--espresso);
  border: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.trip-brand em { font-style: italic; color: var(--wine); }
.trip-brand:hover { border: none; color: var(--wine); }
.trip-section-nav {
  display: flex;
  gap: var(--s-4);
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.trip-section-nav::-webkit-scrollbar { display: none; }
.trip-section-link {
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--ink-muted);
  border: none;
  letter-spacing: 0.02em;
  padding: 0.4rem 0;
  position: relative;
  white-space: nowrap;
}
.trip-section-link:hover { color: var(--wine); border: none; }
.trip-section-link--active {
  color: var(--espresso);
  font-weight: 600;
}
.trip-section-link--active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--wine);
}
.primary-cta--compact {
  padding: 0.55rem 0.95rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .trip-brand { display: none; }
  .primary-cta--compact { font-size: 0.7rem; padding: 0.5rem 0.7rem; }
}
.anchor-nav {
  display: none;
  gap: var(--s-5);
}
@media (min-width: 900px) {
  .anchor-nav { display: flex; }
}
.anchor-nav a {
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--ink-muted);
  border: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.anchor-nav a:hover { color: var(--wine); }
.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 1.1rem;
  border: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.primary-cta:hover { background: var(--wine-deep); color: var(--cream); border: none; }

/* --- Photo gallery hero: 1 big + 4 thumbs grid --- */
.gallery-hero { padding: var(--s-6) 0 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, 22vw);
  gap: 6px;
  max-height: 64vh;
}
.gallery-primary {
  grid-column: 1;
  grid-row: 1 / -1;
  display: block;
  overflow: hidden;
  border: none;
  background: var(--parchment-deep);
}
.gallery-thumb {
  display: none;
  overflow: hidden;
  border: none;
  background: var(--parchment-deep);
  position: relative;
}
.gallery-primary img,
.gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-primary:hover img,
.gallery-thumb:hover img { transform: scale(1.03); }
@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 64vh;
    max-height: 720px;
  }
  .gallery-primary { grid-column: 1; grid-row: 1 / -1; }
  .gallery-thumb { display: block; }
  .gallery-thumb:nth-of-type(1) { grid-column: 2; grid-row: 1; }
  .gallery-thumb:nth-of-type(2) { grid-column: 3; grid-row: 1; }
  .gallery-thumb:nth-of-type(3) { grid-column: 2; grid-row: 2; }
  .gallery-thumb:nth-of-type(4) { grid-column: 3; grid-row: 2; }
}
.gallery-thumb--more::after {
  content: 'Show all photos';
  position: absolute;
  right: var(--s-3);
  bottom: var(--s-3);
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--espresso);
  pointer-events: none;
}

/* --- Title block (under gallery, above two-column) --- */
.listing-title { padding: var(--s-7) 0 var(--s-5); }
.listing-eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  display: block;
  margin-bottom: var(--s-4);
}
.listing-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'wght' 400;
  margin-bottom: var(--s-3);
  line-height: 1.0;
}
.listing-headline em {
  font-style: italic;
  color: var(--wine);
}
.listing-subtitle {
  font-size: 1.2rem;
  color: var(--ink-muted);
  max-width: 56ch;
  line-height: 1.5;
  margin-bottom: var(--s-6);
}
.listing-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4) var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid color-mix(in srgb, var(--espresso) 12%, transparent);
}
@media (min-width: 700px) {
  .listing-facts { grid-template-columns: repeat(4, 1fr); }
}
.listing-facts dt {
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.listing-facts dd {
  font-family: var(--display);
  font-size: 1.05rem;
  font-variation-settings: 'opsz' 18, 'wght' 450;
  color: var(--espresso);
  line-height: 1.3;
}
.listing-facts dd em { font-style: italic; color: var(--wine); }

/* --- Two-column main layout --- */
.listing-main { padding: var(--s-6) 0 var(--s-9); }
.listing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
@media (min-width: 1000px) {
  .listing-grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    gap: var(--s-8);
    align-items: start;
  }
}
.listing-content { min-width: 0; }
.listing-section { padding: var(--s-6) 0; }
.listing-section:first-child { padding-top: 0; }
.listing-section h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-variation-settings: 'opsz' 60, 'SOFT' 30, 'wght' 450;
  margin-bottom: var(--s-3);
  line-height: 1.15;
}
.listing-section .section-lede {
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin-bottom: var(--s-5);
  max-width: 56ch;
  line-height: 1.55;
}
.listing-section p { max-width: 62ch; }
.listing-section p + p { margin-top: var(--s-4); }
.listing-hr {
  border: none;
  border-top: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
  margin: var(--s-4) 0;
}

/* --- Experience grid (cards linking to inner pages) --- */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 600px) {
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .experience-grid { grid-template-columns: repeat(3, 1fr); }
}
.exp-card {
  display: block;
  border: none;
  background: transparent;
  text-decoration: none;
  color: var(--espresso);
}
.exp-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: var(--s-4);
  background: var(--parchment-deep);
}
.exp-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.exp-card:hover .exp-card-img img { transform: scale(1.04); }
.exp-card h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-variation-settings: 'opsz' 36, 'wght' 500;
  margin-bottom: var(--s-2);
  line-height: 1.2;
  color: var(--espresso);
  border: none;
}
.exp-card h3::after {
  content: ' →';
  color: var(--wine);
  font-style: normal;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.exp-card:hover h3::after { opacity: 1; transform: translateX(4px); }
.exp-card p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.5;
  max-width: none;
}

/* --- Day-by-day compact preview --- */
.day-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
}
.day-list li {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
  padding: var(--s-4) 0;
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
}
@media (min-width: 700px) {
  .day-list li {
    grid-template-columns: 180px 1fr;
    gap: var(--s-5);
    align-items: baseline;
  }
}
.day-name {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--espresso) 35%, transparent);
}
.day-name--fixed {
  color: var(--wine);
}
.day-name--fixed::before {
  content: '●';
  font-size: 0.5rem;
  vertical-align: 2px;
  margin-right: 0.5rem;
  color: var(--wine);
  letter-spacing: 0;
}
.day-summary {
  font-family: var(--display);
  font-size: 1.1rem;
  font-variation-settings: 'opsz' 24, 'wght' 450;
  color: var(--espresso);
  line-height: 1.35;
}
.day-summary em { font-style: italic; color: var(--wine); }
.see-all-link {
  display: inline-block;
  margin-top: var(--s-5);
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  border: none;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--wine);
}
.see-all-link:hover { color: var(--wine-deep); border-bottom-color: var(--wine-deep); }

/* --- Full-width container for sections that drop out of the 2-col grid --- */
.listing-full {
  margin-top: var(--s-7);
}
.listing-full > .listing-section:first-child { padding-top: 0; }

/* --- experience-grid 4-col variant (for new schema's 4 universal sections) --- */
.experience-grid--4 {
  grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .experience-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .experience-grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* --- Dailies grid (4-col on big screens, image-on-top cards) --- */
.adv-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 600px)  { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .adv-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1300px) { .adv-grid { grid-template-columns: repeat(4, 1fr); } }
.adv-grid li { list-style: none; }
.adv-grid-card {
  display: flex;
  flex-direction: column;
  border: none;
  color: var(--espresso);
  text-decoration: none;
}
.adv-grid-card:hover { border: none; color: var(--espresso); }
.adv-grid-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: var(--s-3);
  background: var(--parchment-deep);
}
.adv-grid-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.adv-grid-card:hover .adv-grid-thumb img { transform: scale(1.04); }
.adv-grid-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.adv-grid-name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-variation-settings: 'opsz' 24, 'wght' 500;
  margin: 0;
  line-height: 1.2;
  color: var(--espresso);
  border: none;
}
.adv-grid-name em { font-style: italic; color: var(--wine); }
.adv-grid-blurb {
  font-family: var(--body);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0;
  max-width: none;
}
.adv-grid-blurb strong { font-weight: 600; color: var(--wine); }
.adv-tag {
  display: inline-block;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cypress);
  margin-left: 0.25rem;
  padding: 1px 6px;
  background: color-mix(in srgb, var(--cypress) 12%, transparent);
  border-radius: 3px;
  vertical-align: 1px;
}

/* --- Daily adventures cards (replaces .day-list) --- */
.adv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
}
.adv-list li {
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
}
.adv-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--s-4);
  padding: var(--s-3) 0;
  align-items: center;
  border: none;
  color: var(--espresso);
  text-decoration: none;
  transition: background 0.2s ease, padding 0.2s ease;
}
@media (min-width: 700px) {
  .adv-card { grid-template-columns: 120px 1fr; gap: var(--s-5); padding: var(--s-4) 0; }
}
.adv-card:hover {
  border: none;
  color: var(--espresso);
  background: color-mix(in srgb, var(--cream) 50%, transparent);
  padding-left: var(--s-3);
  padding-right: var(--s-3);
}
.adv-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--parchment-deep);
}
.adv-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.adv-card:hover .adv-thumb img { transform: scale(1.04); }
.adv-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.adv-name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-variation-settings: 'opsz' 24, 'wght' 500;
  margin: 0;
  line-height: 1.2;
  color: var(--espresso);
  border: none;
}
.adv-name em { font-style: italic; color: var(--wine); }
.adv-card:hover .adv-name em { color: var(--wine-deep); }
.adv-name::after {
  content: ' →';
  color: var(--wine);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: inline-block;
  font-style: normal;
}
.adv-card:hover .adv-name::after { opacity: 1; transform: translateX(2px); }
.adv-blurb {
  font-family: var(--body);
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.4;
  margin: 0;
  max-width: 56ch;
}
.adv-blurb strong {
  font-weight: 600;
  color: var(--wine);
}

/* --- Essentials compact (reused inside listing-main) --- */
.essentials-compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 700px) {
  .essentials-compact { grid-template-columns: repeat(2, 1fr); }
}
.ess-group h3 {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 12%, transparent);
}
.ess-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ess-list li {
  padding: var(--s-3) 0;
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 8%, transparent);
}
.ess-list li:last-child { border-bottom: none; }
.ess-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-variation-settings: 'opsz' 18, 'wght' 500;
  display: block;
  color: var(--espresso);
}
.ess-detail {
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--ink-muted);
  display: block;
  margin-top: 2px;
  line-height: 1.45;
}

/* --- Things to know grid --- */
.know-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 700px) {
  .know-grid { grid-template-columns: repeat(2, 1fr); }
}
.know-grid h4 {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: var(--s-2);
}
.know-grid p {
  font-size: 0.95rem;
  color: var(--espresso);
  line-height: 1.55;
  max-width: none;
}

/* --- Sticky booking sidebar --- */
.listing-sidebar {
  align-self: start;
}
@media (min-width: 1000px) {
  .listing-sidebar {
    position: sticky;
    top: calc(var(--s-7) + 60px);
  }
}
.booking-card {
  background: var(--cream);
  padding: var(--s-6);
  border-top: 3px solid var(--wine);
  position: relative;
}
.booking-eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  display: block;
  margin-bottom: var(--s-2);
}
.booking-card h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-variation-settings: 'opsz' 30, 'wght' 500;
  line-height: 1.15;
  margin-bottom: var(--s-4);
}
.booking-map {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0 calc(-1 * var(--s-6)) var(--s-5);
  background: var(--parchment-deep);
}
.booking-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) sepia(0.06);
}
.booking-map .map-marker {
  position: absolute;
  left: 37%;
  top: 41.5%;
}
.booking-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3) var(--s-4);
  padding: var(--s-4) 0;
  border-top: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
  margin-bottom: var(--s-5);
}
.booking-facts dt {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2px;
}
.booking-facts dd {
  font-family: var(--display);
  font-size: 1rem;
  font-variation-settings: 'opsz' 18, 'wght' 450;
  color: var(--espresso);
}
.booking-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--wine);
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 1.2rem;
  border: none;
  text-align: center;
  width: 100%;
  transition: background 0.2s ease;
}
.booking-cta:hover { background: var(--wine-deep); color: var(--cream); border: none; }
.booking-note {
  font-family: var(--body);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink-muted);
  text-align: center;
  margin-top: var(--s-3);
}
.booking-note a {
  color: var(--wine);
  border: none;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

/* ============================================================
   LISTING — additional sections
   Who-this-is-for · Reviews · More-destinations
   ============================================================ */

/* --- Who this is for (single-column, content-focused) --- */
.fit-list {
  list-style: none;
  padding: 0;
  margin: var(--s-4) 0 0;
}
.fit-list li {
  position: relative;
  padding: var(--s-3) 0 var(--s-3) var(--s-5);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--espresso);
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 8%, transparent);
  max-width: 62ch;
}
.fit-list li:last-child { border-bottom: none; }
.fit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(var(--s-3) + 0.5em);
  width: 14px;
  height: 1px;
  background: var(--wine);
}

/* --- Reviews block --- */
.reviews-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 12%, transparent);
}
@media (min-width: 700px) {
  .reviews-header { grid-template-columns: 0.7fr 1.3fr; gap: var(--s-7); align-items: center; }
}
.reviews-score {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
}
.reviews-score-number {
  font-family: var(--display);
  font-size: 3.5rem;
  font-variation-settings: 'opsz' 96, 'wght' 400;
  color: var(--espresso);
  line-height: 1;
}
.reviews-score-stars {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.reviews-score-count {
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 4px;
  display: block;
}
.reviews-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3) var(--s-5);
}
.reviews-breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-2) 0;
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 6%, transparent);
}
.reviews-breakdown-label {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.reviews-breakdown-score {
  font-family: var(--display);
  font-size: 0.95rem;
  font-variation-settings: 'opsz' 14, 'wght' 500;
  color: var(--espresso);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 700px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}
.review {
  padding: var(--s-4) 0;
}
.review-head {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--parchment-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--wine);
  font-variation-settings: 'opsz' 24, 'wght' 500;
  flex-shrink: 0;
}
.review-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.review-name {
  font-family: var(--display);
  font-size: 1rem;
  font-variation-settings: 'opsz' 18, 'wght' 500;
  color: var(--espresso);
}
.review-detail {
  font-family: var(--body);
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.review-body {
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--espresso);
  margin: 0;
  max-width: none;
}
.review-body::before {
  content: '“';
  font-family: var(--display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--wine);
  margin-right: 0.1em;
  line-height: 0;
  vertical-align: -0.15em;
}
.review-placeholder-note {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px dashed color-mix(in srgb, var(--espresso) 15%, transparent);
}

/* --- More destinations (placeholder tiles, vintage-poster style) --- */
.destinations-section { padding-top: var(--s-7); }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
@media (min-width: 900px) {
  .destinations-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
}
.dest-tile {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  text-decoration: none;
  border: none;
  padding: var(--s-5);
  color: var(--cream);
  transition: transform 0.4s ease;
}
.dest-tile:hover { transform: translateY(-4px); border: none; }
.dest-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dest-tile-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dest-region {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.dest-name {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 0.95;
  font-variation-settings: 'opsz' 96, 'SOFT' 50, 'wght' 350;
  margin-top: auto;
  margin-bottom: var(--s-3);
}
.dest-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  align-self: flex-start;
}
.dest-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}
/* Per-destination warm posterized palettes */
.dest-tile--greece::before {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.18), transparent 50%),
    linear-gradient(135deg, #234852 0%, #3a6e7c 100%);
}
.dest-tile--tokyo::before {
  background:
    radial-gradient(ellipse at 30% 80%, rgba(255,255,255,0.15), transparent 50%),
    linear-gradient(135deg, #6e1f25 0%, #b65440 100%);
}
.dest-tile--provence::before {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.2), transparent 50%),
    linear-gradient(135deg, #5b4a6e 0%, #8a7aa0 100%);
}
.dest-tile--puglia::before {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.1), transparent 60%),
    linear-gradient(135deg, #c99560 0%, #d9a892 100%);
}
.dest-tile--puglia { color: var(--espresso); }
.dest-tile--puglia .dest-status {
  background: rgba(42, 24, 16, 0.08);
  border-color: rgba(42, 24, 16, 0.2);
}

/* "Have a question?" hint at very bottom — points at future agentic chat */
.ask-curator {
  margin-top: var(--s-7);
  padding: var(--s-6);
  background: color-mix(in srgb, var(--cream) 70%, transparent);
  border-top: 3px solid var(--wine);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  align-items: center;
}
@media (min-width: 700px) {
  .ask-curator { grid-template-columns: 1fr auto; gap: var(--s-5); }
}
.ask-curator h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-variation-settings: 'opsz' 30, 'wght' 450;
  line-height: 1.2;
}
.ask-curator p {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin-top: var(--s-2);
  max-width: 56ch;
  line-height: 1.5;
}
.ask-curator-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid var(--espresso);
  color: var(--espresso);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem 1.3rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  align-self: start;
}
.ask-curator-cta:hover {
  background: var(--espresso);
  color: var(--cream);
  border: 1px solid var(--espresso);
}

/* ============================================================
   WAYFARE — parent product landing page
   Surrounds individual destination listings. Houses the brand,
   the browse grid, how-it-works, create-yours, and the floating
   curator-chat affordance.
   ============================================================ */

body.wayfare { background: var(--parchment); }

/* --- Top nav --- */
.wayfare-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--parchment) 96%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
}
.wayfare-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  padding: var(--s-4) 0;
}
.wayfare-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: none;
  color: var(--espresso);
}
.wayfare-brand:hover { border: none; color: var(--espresso); }
.wayfare-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  font-variation-settings: 'opsz' 24, 'wght' 500;
  color: var(--cream);
  background: var(--wine);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  letter-spacing: -0.02em;
}
.wayfare-wordmark {
  font-family: var(--display);
  font-size: 1.4rem;
  font-variation-settings: 'opsz' 24, 'wght' 500;
  color: var(--espresso);
  letter-spacing: -0.015em;
}
.wayfare-nav-links {
  display: none;
  gap: var(--s-6);
}
@media (min-width: 800px) { .wayfare-nav-links { display: flex; } }
.wayfare-nav-links a {
  font-family: var(--body);
  font-size: 0.92rem;
  color: var(--espresso);
  border: none;
  letter-spacing: 0.01em;
}
.wayfare-nav-links a:hover { color: var(--wine); border: none; }
.wayfare-signin {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso);
  border: 1px solid var(--espresso);
  padding: 0.6rem 1rem;
  transition: all 0.2s ease;
}
.wayfare-signin:hover { background: var(--espresso); color: var(--cream); border: 1px solid var(--espresso); }
.wayfare-signin[aria-disabled="true"] { opacity: 0.4; pointer-events: none; }

/* --- Hero --- */
.wayfare-hero { padding: var(--s-9) 0 var(--s-8); }
.wayfare-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: end;
}
@media (min-width: 900px) {
  .wayfare-hero-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: var(--s-9);
  }
}
.wayfare-eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: var(--s-5);
}
.wayfare-headline {
  font-size: clamp(3rem, 8vw, 6rem);
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'wght' 380;
  line-height: 0.95;
  margin-bottom: var(--s-5);
  letter-spacing: -0.02em;
}
.wayfare-headline em {
  font-style: italic;
  color: var(--wine);
  font-variation-settings: 'opsz' 144, 'SOFT' 70, 'wght' 350;
}
.wayfare-subhead {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 52ch;
  margin-bottom: var(--s-6);
}
.wayfare-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 1.4rem;
  border: 1px solid var(--espresso);
  cursor: pointer;
  transition: all 0.2s ease;
}
.cta-primary:hover { background: var(--wine-deep); border-color: var(--wine-deep); color: var(--cream); }
.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--espresso);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 1.4rem;
  border: 1px solid var(--espresso);
  cursor: pointer;
  transition: all 0.2s ease;
}
.cta-ghost:hover { background: var(--espresso); color: var(--cream); }
.wayfare-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4) var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid color-mix(in srgb, var(--espresso) 12%, transparent);
}
.hero-stat dt {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.hero-stat dd {
  font-family: var(--display);
  font-size: 1.05rem;
  font-variation-settings: 'opsz' 18, 'wght' 450;
  color: var(--espresso);
  line-height: 1.3;
}
.hero-stat dd em { font-style: italic; color: var(--wine); }

/* --- Featured destinations --- */
.featured-section { padding: var(--s-9) 0; }
.featured-head { margin-bottom: var(--s-7); max-width: 70ch; }
.featured-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-variation-settings: 'opsz' 96, 'SOFT' 40, 'wght' 400;
  line-height: 1.05;
  margin-bottom: var(--s-3);
}
.featured-head p {
  font-size: 1.1rem;
  color: var(--ink-muted);
  line-height: 1.55;
}
.featured-subhead {
  margin-top: var(--s-9);
  margin-bottom: var(--s-5);
}
.featured-subhead h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-variation-settings: 'opsz' 60, 'wght' 420;
  line-height: 1.15;
  margin-top: var(--s-2);
}

/* Featured lead card — Italy 2026 */
.dest-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: none;
  text-decoration: none;
  color: var(--espresso);
  background: var(--cream);
  margin-bottom: var(--s-6);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
@media (min-width: 900px) {
  .dest-featured { grid-template-columns: 1.2fr 1fr; }
}
.dest-featured:hover {
  border: none;
  transform: translateY(-2px);
  box-shadow: 0 24px 60px -30px var(--shadow-deep);
}
.dest-featured-img {
  position: relative;
  overflow: hidden;
  background: var(--parchment-deep);
  min-height: 420px;
}
.dest-featured-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-featured:hover .dest-featured-img img { transform: scale(1.03); }
.dest-featured-body { padding: var(--s-7); display: flex; flex-direction: column; }
@media (min-width: 900px) { .dest-featured-body { padding: var(--s-8); } }
.dest-featured-region {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: var(--s-4);
}
.dest-featured-name {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'wght' 400;
  line-height: 0.95;
  margin-bottom: var(--s-5);
  letter-spacing: -0.015em;
  color: var(--espresso);
  border: none;
}
.dest-featured-name em { font-style: italic; color: var(--wine); }
.dest-featured-blurb {
  font-size: 1.02rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: var(--s-5);
  max-width: 48ch;
}
.dest-featured-meta {
  list-style: none;
  padding: var(--s-5) 0 0;
  margin: 0 0 var(--s-5);
  border-top: 1px solid color-mix(in srgb, var(--espresso) 12%, transparent);
}
.dest-featured-meta li {
  font-family: var(--body);
  font-size: 0.92rem;
  color: var(--ink-muted);
  padding: var(--s-2) 0;
  line-height: 1.4;
}
.dest-featured-meta strong {
  color: var(--espresso);
  font-weight: 600;
}
.dest-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine);
  margin-top: auto;
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--wine);
}

/* Override the landing destinations-grid to use 4 cols on big screens */
.destinations-grid--landing {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
  .destinations-grid--landing { grid-template-columns: repeat(4, 1fr); }
}

/* --- How it works --- */
.how-section {
  padding: var(--s-9) 0;
  background: var(--cream);
  border-top: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
}
.how-head { margin-bottom: var(--s-7); max-width: 70ch; }
.how-head h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-variation-settings: 'opsz' 96, 'wght' 420;
  line-height: 1.1;
  margin-top: var(--s-2);
}
.how-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 800px) {
  .how-steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-7); }
}
.how-step {
  padding-top: var(--s-5);
  border-top: 2px solid var(--wine);
}
.how-step-number {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  font-variation-settings: 'opsz' 14, 'wght' 400;
  color: var(--wine);
  display: block;
  margin-bottom: var(--s-3);
  letter-spacing: 0.05em;
}
.how-step h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-variation-settings: 'opsz' 36, 'wght' 450;
  line-height: 1.2;
  margin-bottom: var(--s-3);
  color: var(--espresso);
}
.how-step p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 38ch;
}

/* --- Create yours --- */
.create-section { padding: var(--s-9) 0; }
.create-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: start;
}
@media (min-width: 800px) {
  .create-grid { grid-template-columns: 1fr 1fr; gap: var(--s-9); align-items: center; }
}
.create-grid h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-variation-settings: 'opsz' 96, 'wght' 400;
  line-height: 1.0;
  margin-top: var(--s-2);
}
.create-grid p {
  font-size: 1.1rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: var(--s-5);
  max-width: 48ch;
}

/* --- Wayfare footer --- */
.wayfare-footer {
  background: var(--espresso);
  color: var(--cream);
  padding: var(--s-8) 0 var(--s-6);
  position: relative;
}
.wayfare-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--cypress));
}
.wayfare-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-5);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgba(250, 243, 226, 0.15);
}
.wayfare-footer .wayfare-brand .wayfare-mark { background: var(--gold); color: var(--espresso); }
.wayfare-footer .wayfare-wordmark { color: var(--cream); }
.wayfare-footer-nav { display: flex; flex-wrap: wrap; gap: var(--s-5); }
.wayfare-footer-nav a {
  font-family: var(--body);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: rgba(250, 243, 226, 0.7);
  border: none;
}
.wayfare-footer-nav a:hover { color: var(--gold); border: none; }
.wayfare-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-3);
  padding-top: var(--s-5);
}
.wayfare-footer-bottom p {
  font-family: var(--body);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(250, 243, 226, 0.55);
}

/* ============================================================
   TABLE — atmospheric hero + menu-style cards
   ============================================================ */
.table-hero {
  position: relative;
  height: 60vh;
  min-height: 480px;
  max-height: 640px;
  overflow: hidden;
  margin-bottom: var(--s-7);
}
.table-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}
.table-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--s-8);
  color: var(--cream);
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(42, 24, 16, 0.55) 100%);
}
.table-hero-eyebrow {
  color: var(--gold);
  margin-bottom: var(--s-3);
}
.table-title {
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-variation-settings: 'opsz' 144, 'SOFT' 60, 'wght' 380;
  line-height: 0.92;
  margin-bottom: var(--s-5);
  letter-spacing: -0.02em;
  color: var(--cream);
}
.table-title em {
  font-style: italic;
  color: var(--gold);
}
.table-lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(250, 246, 234, 0.92);
  max-width: 62ch;
  margin-bottom: var(--s-5);
}
.table-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
}
.table-anchor-nav a {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 246, 234, 0.85);
  border: none;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(250, 246, 234, 0.4);
  transition: all 0.2s ease;
}
.table-anchor-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.table-main { padding: 0 0 var(--s-9); }

.menu-section {
  padding: var(--s-8) 0;
  scroll-margin-top: 120px;
}
.menu-section + .menu-section {
  border-top: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
}
.menu-section-head {
  max-width: 70ch;
  margin-bottom: var(--s-7);
}
.menu-section-kicker {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: var(--s-3);
}
.menu-section-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-variation-settings: 'opsz' 96, 'SOFT' 40, 'wght' 400;
  line-height: 1.0;
  margin: 0 0 var(--s-3);
  letter-spacing: -0.015em;
}
.menu-section-lede {
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-muted);
}
.menu-section-lede em { font-style: italic; color: var(--wine); }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 700px)  { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.menu-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -25px var(--shadow-deep);
}
.menu-thumb {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--parchment-deep);
}
.menu-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-thumb img { transform: scale(1.04); }

.menu-card-body {
  display: flex;
  flex-direction: column;
  padding: var(--s-5);
  gap: var(--s-3);
  flex: 1;
}
.menu-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s-3);
}
.menu-card-name {
  font-family: var(--display);
  font-size: 1.3rem;
  font-variation-settings: 'opsz' 30, 'wght' 500;
  line-height: 1.15;
  margin: 0;
  color: var(--espresso);
}
.menu-card-price {
  font-family: var(--display);
  font-size: 1.1rem;
  font-variation-settings: 'opsz' 24, 'wght' 500;
  color: var(--wine);
  flex-shrink: 0;
  letter-spacing: 0.06em;
}
.menu-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}
.menu-card-meta span:not(:last-child)::after {
  content: '·';
  margin-left: var(--s-3);
  color: color-mix(in srgb, var(--espresso) 25%, transparent);
}
.menu-card-blurb {
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--espresso);
  margin: 0;
  max-width: none;
}
.menu-card-blurb em { font-style: italic; color: var(--wine); }
.menu-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: auto;
}
.menu-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--wine);
  color: var(--cream);
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
}
.menu-tag svg { color: var(--cream); flex-shrink: 0; }
.menu-tag--soft {
  background: transparent;
  color: var(--ink-muted);
  border: 1px solid color-mix(in srgb, var(--espresso) 18%, transparent);
}
.menu-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px dashed color-mix(in srgb, var(--espresso) 12%, transparent);
}
.menu-action {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  border: none;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--wine);
}
.menu-action:hover { color: var(--wine-deep); border-bottom-color: var(--wine-deep); }

/* ============================================================
   DAILIES — page hero + overview strip + deep sections
   ============================================================ */
.dailies-hero { padding: var(--s-8) 0 var(--s-5); }
.dailies-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'wght' 380;
  line-height: 0.95;
  margin-bottom: var(--s-5);
  letter-spacing: -0.02em;
}
.dailies-title em { font-style: italic; color: var(--wine); }
.dailies-lede {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 62ch;
}
.dailies-lede em { font-style: italic; color: var(--wine); }

/* Overview strip — 8 small cards, in-page anchors */
.dailies-overview {
  padding: var(--s-6) 0 var(--s-7);
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
}
.dailies-overview-title {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--s-4);
}
.dailies-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
@media (min-width: 600px)  { .dailies-overview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .dailies-overview-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1300px) { .dailies-overview-grid { grid-template-columns: repeat(4, 1fr); } }
.dailies-overview-card {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-2);
  border: 1px solid color-mix(in srgb, var(--espresso) 12%, transparent);
  background: var(--cream);
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--espresso);
}
.dailies-overview-card:hover {
  border-color: var(--wine);
  transform: translateY(-2px);
  color: var(--espresso);
}
.dailies-overview-thumb {
  display: block;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--parchment-deep);
}
.dailies-overview-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dailies-overview-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.dailies-overview-numeral {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--wine);
  letter-spacing: 0.05em;
}
.dailies-overview-name {
  font-family: var(--display);
  font-size: 1rem;
  font-variation-settings: 'opsz' 18, 'wght' 500;
  line-height: 1.2;
  margin: 0;
  color: var(--espresso);
}
.dailies-overview-meta {
  font-family: var(--body);
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.3;
}
.dailies-overview-meta em {
  font-style: normal;
  font-weight: 600;
  color: var(--wine);
}

/* Deep sections — one per Daily */
.dailies-deep { padding: var(--s-7) 0 var(--s-9); }
.daily {
  padding: var(--s-9) 0;
  border-top: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
  scroll-margin-top: 120px;  /* offset for the sticky nav when anchor-scrolling */
}
.daily:first-child { border-top: none; padding-top: var(--s-5); }
.daily-header {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
  max-width: 70ch;
}
.daily-numeral {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
}
.daily-name {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-variation-settings: 'opsz' 96, 'SOFT' 40, 'wght' 380;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--espresso);
}
.daily-when {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  margin: 0;
}
.daily-locked {
  font-style: normal;
  background: var(--wine);
  color: var(--cream);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-left: 0.5rem;
}
.daily-hero {
  margin: 0 0 var(--s-6);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--parchment-deep);
}
.daily-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.daily-prose {
  margin-bottom: var(--s-6);
  max-width: 65ch;
}
.daily-prose p {
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--espresso);
  max-width: none;
}
.daily-prose p + p { margin-top: var(--s-4); }
.daily-prose em { font-style: italic; color: var(--wine); }

/* Places-you'll-visit chips — small horizontal cards with thumb + label */
.daily-places {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
@media (min-width: 600px) { .daily-places { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .daily-places { grid-template-columns: repeat(3, 1fr); } }
.daily-place-chip {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-2);
  border: 1px solid color-mix(in srgb, var(--espresso) 12%, transparent);
  background: var(--cream);
  text-decoration: none;
  color: var(--espresso);
  transition: all 0.2s ease;
}
.daily-place-chip:hover {
  border-color: var(--wine);
  color: var(--espresso);
  transform: translateY(-1px);
}
.daily-place-thumb {
  display: block;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--parchment-deep);
}
.daily-place-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.daily-place-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.daily-place-body strong {
  font-family: var(--display);
  font-size: 0.98rem;
  font-variation-settings: 'opsz' 18, 'wght' 500;
  color: var(--espresso);
  line-height: 1.2;
}
.daily-place-body span {
  font-family: var(--body);
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.daily-shape-block .daily-shape {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--espresso);
  max-width: 65ch;
  font-variation-settings: 'opsz' 18, 'wght' 400;
}

/* ============================================================
   PLACES — gallery library with category filters + modal
   ============================================================ */
.places-hero { padding: var(--s-8) 0 var(--s-6); }
.places-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'wght' 380;
  line-height: 0.95;
  margin-bottom: var(--s-5);
  letter-spacing: -0.02em;
}
.places-title em { font-style: italic; color: var(--wine); }
.places-lede {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 62ch;
}
.gem-inline,
.gem-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--wine);
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  vertical-align: 2px;
  white-space: nowrap;
}
.gem-inline { background: var(--wine); padding: 0.25rem 0.5rem; }
.gem-inline svg, .gem-badge svg { color: var(--cream); flex-shrink: 0; }

/* ============================================================
   FILTER BAR (replaces sticky chip panel)
   Non-sticky. Dropdown + range slider + checkboxes. Compact.
   ============================================================ */
.filter-bar-wrap {
  padding: var(--s-4) 0 var(--s-3);
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
}
.filter-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  align-items: end;
}
@media (min-width: 800px) {
  .filter-bar {
    grid-template-columns:
      minmax(180px, 1fr)   /* category dropdown */
      minmax(240px, 1.6fr) /* distance slider */
      minmax(220px, 1fr)   /* time checks */
      minmax(220px, 1fr)   /* filters checks */
      auto;                /* clear button */
    gap: var(--s-5);
  }
}
.filter-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.filter-field-label {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-2);
}
.filter-field-value {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--espresso);
}
.filter-select {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--espresso);
  background: var(--cream);
  border: 1px solid color-mix(in srgb, var(--espresso) 20%, transparent);
  padding: 0.6rem 2.2rem 0.6rem 0.85rem;
  border-radius: 4px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1L6 6L11 1' fill='none' stroke='%232a1810' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  width: 100%;
}
.filter-select:focus {
  outline: 2px solid color-mix(in srgb, var(--wine) 40%, transparent);
  outline-offset: 1px;
}

/* Range slider — custom-styled to match warm palette */
.filter-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: color-mix(in srgb, var(--espresso) 15%, transparent);
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  margin: 0.5rem 0;
}
.filter-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--wine);
  border: 3px solid var(--cream);
  box-shadow: 0 2px 8px -2px rgba(42, 24, 16, 0.3);
  cursor: grab;
  transition: transform 0.15s ease;
}
.filter-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.filter-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(0.95); }
.filter-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--wine);
  border: 3px solid var(--cream);
  box-shadow: 0 2px 8px -2px rgba(42, 24, 16, 0.3);
  cursor: grab;
}

/* Checkbox group */
.filter-checks {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  padding-top: 4px;
}
.filter-check {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--body);
  font-size: 0.88rem;
  color: var(--espresso);
  cursor: pointer;
  user-select: none;
}
.filter-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid color-mix(in srgb, var(--espresso) 30%, transparent);
  border-radius: 3px;
  background: var(--cream);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.15s ease;
}
.filter-check input[type="checkbox"]:checked {
  background: var(--wine);
  border-color: var(--wine);
}
.filter-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid var(--cream);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.filter-check:hover input[type="checkbox"] {
  border-color: var(--wine);
}

.filter-clear-btn {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--espresso) 20%, transparent);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0.65rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  align-self: end;
  height: fit-content;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.filter-clear-btn:hover { color: var(--wine); border-color: var(--wine); }

.filter-summary-line {
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px dashed color-mix(in srgb, var(--espresso) 12%, transparent);
}
.filter-summary-line span {
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

/* Hide old sticky filter panel CSS */
.filter-panel-wrap { display: none; }
.places-filters-wrap { display: none; }

/* legacy classes kept for compat (no-op) */
.places-filter-panel-wrap-legacy {
  position: sticky;
  top: calc(64px + 50px);
  z-index: 40;
  background: color-mix(in srgb, var(--parchment) 96%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
}
.filter-panel {
  padding: var(--s-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.filter-group {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--s-3);
  align-items: start;
}
@media (max-width: 700px) {
  .filter-group { grid-template-columns: 1fr; gap: 4px; }
}
.filter-group-label {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
  padding-top: 8px;
}
.filter-chips {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--espresso) 18%, transparent);
  color: var(--espresso);
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.filter-chip:hover { background: color-mix(in srgb, var(--espresso) 6%, transparent); }
.filter-chip--active {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.filter-chip--quality {
  color: var(--ink-muted);
}
.filter-chip--quality svg { color: var(--wine); }
.filter-chip--quality.filter-chip--active { color: var(--cream); }
.filter-chip--quality.filter-chip--active svg { color: var(--gold); }
.filter-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding-top: var(--s-2);
  border-top: 1px dashed color-mix(in srgb, var(--espresso) 12%, transparent);
}
.filter-summary span {
  font-family: var(--body);
  font-size: 0.82rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.filter-clear {
  background: transparent;
  border: none;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  cursor: pointer;
}
.filter-clear:hover { color: var(--wine-deep); }
/* legacy classes kept for compat */
.places-filters-wrap { display: none; }

.places-section { padding: var(--s-7) 0 var(--s-9); }
.places-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6) var(--s-5);
}
@media (min-width: 600px)  { .places-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .places-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .places-grid { grid-template-columns: repeat(4, 1fr); } }

.place-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  transition: transform 0.25s ease;
}
.place-card:hover { transform: translateY(-3px); }
.place-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: var(--s-3);
  background: var(--parchment-deep);
}
.place-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.place-card:hover .place-thumb img { transform: scale(1.04); }
.place-body { display: flex; flex-direction: column; gap: 2px; }
.place-category {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.place-name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-variation-settings: 'opsz' 24, 'wght' 500;
  line-height: 1.2;
  color: var(--espresso);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.place-blurb {
  font-family: var(--body);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0;
  max-width: none;
}
.places-empty {
  text-align: center;
  color: var(--ink-muted);
  font-style: italic;
  padding: var(--s-8) 0;
}

/* Place detail modal */
.place-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: var(--s-4);
}
.place-modal--open {
  visibility: visible;
  opacity: 1;
}
.place-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 24, 16, 0.6);
  backdrop-filter: blur(3px);
}
.place-modal-window {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 2 * var(--s-4));
  background: var(--cream);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 0 32px 80px -16px rgba(0, 0, 0, 0.4);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.place-modal--open .place-modal-window { transform: translateY(0); }
.place-modal-close {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  z-index: 2;
  background: var(--cream);
  color: var(--espresso);
  border: 1px solid color-mix(in srgb, var(--espresso) 15%, transparent);
  cursor: pointer;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.place-modal-close:hover { background: var(--parchment-deep); }
.place-modal-hero {
  aspect-ratio: 16 / 9;
  background: var(--parchment-deep);
  overflow: hidden;
}
.place-modal-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.place-modal-body { padding: var(--s-6); }
.place-modal-category {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  display: block;
  margin-bottom: var(--s-3);
}
.place-modal-title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-variation-settings: 'opsz' 60, 'wght' 450;
  line-height: 1.1;
  margin-bottom: var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.place-modal-blurb {
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--espresso);
  margin-bottom: var(--s-4);
  max-width: none;
}
.place-modal-note {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-muted);
  padding-top: var(--s-4);
  border-top: 1px dashed color-mix(in srgb, var(--espresso) 18%, transparent);
  max-width: none;
}

/* === HERO IMAGE CAROUSEL (multi-image, prev/next, dots, counter) === */
.hero-carousel {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--parchment-deep);
  width: 100%;
}
.hero-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250, 246, 234, 0.92);
  border: none;
  color: var(--espresso);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 12px -2px rgba(42, 24, 16, 0.25);
}
.carousel-arrow:hover {
  background: var(--cream);
  transform: translateY(-50%) scale(1.05);
}
.carousel-arrow--prev { left: var(--s-3); }
.carousel-arrow--next { right: var(--s-3); }
.carousel-counter {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  z-index: 2;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cream);
  background: rgba(42, 24, 16, 0.55);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.carousel-dots {
  position: absolute;
  bottom: var(--s-3);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(250, 246, 234, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}
.dot:hover { background: rgba(250, 246, 234, 0.8); }
.dot--active {
  background: var(--cream);
  width: 28px;
  border-radius: 4px;
}

/* === RICH MODAL — adds head row, prose, qualities, fit, photos, actions === */
.place-modal-window--rich { max-width: 820px; }
.place-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}
.place-modal-head .gem-badge { flex-shrink: 0; margin-top: var(--s-2); }
.place-modal-prose {
  margin-bottom: var(--s-6);
}
.place-modal-prose p {
  font-family: var(--body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--espresso);
  max-width: none;
}
.place-modal-prose p + p { margin-top: var(--s-4); }
.place-modal-prose em { font-style: italic; color: var(--wine); }

.modal-block {
  padding-top: var(--s-5);
  margin-top: var(--s-5);
  border-top: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
}
.modal-block-label {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: var(--s-4);
}

/* Qualities (icon + label) — 2-col grid on desktop */
.qualities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3) var(--s-5);
}
@media (min-width: 600px) {
  .qualities-list { grid-template-columns: 1fr 1fr; }
}
.quality {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--espresso);
  line-height: 1.4;
}
.quality-icon {
  color: var(--wine);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Fit score rows */
.fit-rows { display: flex; flex-direction: column; gap: var(--s-4); }
.fit-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-4);
  align-items: center;
}
.fit-row-label { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.fit-row-label strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-variation-settings: 'opsz' 18, 'wght' 500;
  color: var(--espresso);
}
.fit-row-label span,
.fit-row-label a {
  font-family: var(--body);
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.3;
}
.fit-row-label a {
  color: var(--wine);
  border: none;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
.fit-row-value {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  white-space: nowrap;
}
.fit-row-value strong {
  font-family: var(--display);
  font-size: 1.4rem;
  font-variation-settings: 'opsz' 36, 'wght' 500;
  color: var(--espresso);
}
.fit-row-max {
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.fit-bar {
  position: relative;
  display: inline-block;
  width: 140px;
  height: 8px;
  background: color-mix(in srgb, var(--espresso) 10%, transparent);
  border-radius: 999px;
  overflow: hidden;
}
.fit-bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  border-radius: 999px;
  transition: width 0.4s ease;
}
.fit-row--locked .fit-row-value { opacity: 0.65; }
.fit-locked-link {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  border: 1px solid color-mix(in srgb, var(--wine) 35%, transparent);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
}
.fit-locked-link[aria-disabled="true"] { pointer-events: none; opacity: 0.6; }

/* Single score block — public score with progress bar + locked personalized */
.score-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 700px) {
  .score-card { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}
.score-card-main {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.score-card-label {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--espresso);
}
.score-card-row {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.score-card-row strong {
  font-family: var(--display);
  font-size: 2rem;
  font-variation-settings: 'opsz' 48, 'wght' 500;
  color: var(--espresso);
  line-height: 1;
}
.score-card-row .fit-bar { width: 160px; }
.score-card-source {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin: 0;
  max-width: none;
}
.score-card-locked {
  padding: var(--s-4);
  background: color-mix(in srgb, var(--parchment-deep) 30%, transparent);
  border-left: 3px solid color-mix(in srgb, var(--wine) 40%, transparent);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.score-card-locked strong {
  font-family: var(--display);
  font-size: 1rem;
  font-variation-settings: 'opsz' 18, 'wght' 500;
  color: var(--espresso);
}
.score-card-locked span {
  font-family: var(--body);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-muted);
}
.score-card-locked .fit-locked-link {
  align-self: flex-start;
  margin-top: var(--s-2);
}

/* More photos block (kept for compat but no longer used by default) */
.modal-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
@media (min-width: 600px) {
  .modal-photos { grid-template-columns: 1fr 1fr; }
}
.modal-photos img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.place-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid color-mix(in srgb, var(--espresso) 10%, transparent);
}
.place-modal-actions .primary-cta,
.place-modal-actions .cta-ghost {
  flex: 1;
  justify-content: center;
  min-width: 200px;
}

/* ============================================================
   WAYFARE CHAT — always-on docked at the bottom of every page.
   Default state: semi-transparent input only.
   Hover: opacity up.
   Click / focus: full opacity, history panel slides up from above.
   Click outside: fades back to transparent, history collapses,
                  input value + DOM history preserved.
   ============================================================ */
.wayfare-chat {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  padding: 0 var(--s-4) var(--s-4);
}
.wayfare-chat-inner {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  opacity: 0.55;
  transition: opacity 0.25s ease;
}
.wayfare-chat-inner:hover { opacity: 0.9; }
.wayfare-chat--active .wayfare-chat-inner { opacity: 1; }

/* Conversation panel (history) — collapsed by default, slides up on activate */
.wayfare-chat-history {
  background: var(--cream);
  border: 1px solid color-mix(in srgb, var(--espresso) 15%, transparent);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  max-height: 0;
  overflow-y: auto;
  padding: 0 var(--s-5);
  box-shadow: 0 -24px 60px -24px rgba(42, 24, 16, 0.25);
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--espresso) 25%, transparent) transparent;
}
.wayfare-chat--active .wayfare-chat-history {
  max-height: 52vh;
  padding: var(--s-5);
}
.wayfare-chat-history::-webkit-scrollbar { width: 6px; }
.wayfare-chat-history::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--espresso) 20%, transparent);
  border-radius: 3px;
}

/* Messages */
.wayfare-chat-message {
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.55;
  padding: var(--s-3) var(--s-4);
  border-radius: 16px;
  background: var(--parchment);
  color: var(--espresso);
  max-width: 85%;
}
.wayfare-chat-message p { margin: 0; max-width: none; }
.wayfare-chat-message p + p { margin-top: var(--s-2); }
.wayfare-chat-message--bot {
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.wayfare-chat-message--user {
  background: var(--wine);
  color: var(--cream);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Quick-prompt chips shown alongside the first bot message */
.wayfare-chat-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-self: flex-start;
  max-width: 100%;
}
.wayfare-chat-prompt {
  font-family: var(--body);
  font-size: 0.82rem;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--espresso) 18%, transparent);
  color: var(--espresso);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.wayfare-chat-prompt:hover {
  background: var(--wine);
  color: var(--cream);
  border-color: var(--wine);
}

/* Input row — always visible at the bottom */
.wayfare-chat-input-row {
  display: flex;
  gap: var(--s-2);
  background: var(--cream);
  border: 1px solid color-mix(in srgb, var(--espresso) 18%, transparent);
  border-radius: 16px;
  padding: 6px 6px 6px var(--s-4);
  align-items: center;
  box-shadow: 0 -12px 32px -12px rgba(42, 24, 16, 0.2);
}
.wayfare-chat--active .wayfare-chat-input-row {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.wayfare-chat-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--espresso);
  padding: 0.7rem 0.2rem;
  min-width: 0;
}
.wayfare-chat-input:focus { outline: none; }
.wayfare-chat-input::placeholder { color: var(--ink-muted); }
.wayfare-chat-send {
  background: var(--wine);
  color: var(--cream);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}
.wayfare-chat-send:hover { background: var(--wine-deep); transform: translateX(1px); }
.wayfare-chat-send:disabled { background: color-mix(in srgb, var(--espresso) 25%, transparent); cursor: not-allowed; transform: none; }

.wayfare-chat-disclaimer {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.72rem;
  color: var(--ink-muted);
  text-align: center;
  margin-top: var(--s-2);
  opacity: 0;
  transition: opacity 0.25s ease 0.05s;
}
.wayfare-chat--active .wayfare-chat-disclaimer { opacity: 1; }

/* Add bottom padding to body so chat doesn't overlap content on every page */
body { padding-bottom: 100px; }
@media (min-width: 700px) { body { padding-bottom: 110px; } }
