/* ============================================
   SICILY 2026 — Site styles
   Built on the Stroud Family design system tokens.
   ============================================ */

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

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--ff-body); font-size: var(--fs-body); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img, svg { max-width: 100%; display: block; }

/* ============ LAYOUT ============ */
.wrap        { max-width: 1440px; margin: 0 auto; padding: 0 56px; }
.wrap-narrow { max-width: 1100px; margin: 0 auto; padding: 0 56px; }
.full-bleed  { width: 100%; }

@media (max-width: 720px) {
  .wrap, .wrap-narrow { padding: 0 22px; }
}

/* ============ TOP NAV ============ */
/* z-index above Leaflet (panes go up to 700) */
.nav-top {
  position: sticky; top: 0; z-index: 1000;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.nav-top .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 56px;
  gap: 24px;
}
.nav-top .brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 144, 'wght' 800, 'WONK' 1;
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  white-space: nowrap;
  text-decoration: none;
  color: var(--ink);
}
.nav-top .brand .mark {
  width: 36px; height: 36px; background: var(--cobalt); color: var(--cream);
  display: grid; place-items: center; border-radius: 50%;
  font-style: italic; font-size: 22px;
  font-variation-settings: 'opsz' 144, 'wght' 800, 'SOFT' 100, 'WONK' 1;
}
.nav-top .brand .sub {
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--fg-muted); font-weight: 500;
  display: block; margin-top: 2px;
}
.nav-top ul { list-style: none; display: flex; gap: 28px; flex-wrap: wrap; }
.nav-top ul a {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; padding: 6px 0;
  border-bottom: 2px solid transparent; transition: border-color 150ms;
}
.nav-top ul a:hover { border-bottom-color: var(--magenta); }
.nav-top ul a.active { border-bottom-color: var(--ink); color: var(--ink); }

@media (max-width: 900px) {
  .nav-top .row { padding: 14px 22px; flex-wrap: wrap; }
  .nav-top ul { gap: 18px; width: 100%; padding-top: 4px; }
}

/* day-pill row (only on day pages) */
.day-pills {
  border-top: 1px solid var(--rule);
  display: flex; gap: 8px; padding: 12px 56px;
  overflow-x: auto;
  background: var(--cream);
}
.day-pills a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  border: 1.5px solid var(--ink);
  background: var(--cream); color: var(--ink);
  border-radius: 999px;
  white-space: nowrap;
  transition: background 120ms, color 120ms;
}
.day-pills a:hover { background: var(--ink); color: var(--cream); }
.day-pills a.active { background: var(--cobalt); color: #fff; border-color: var(--cobalt-deep); }
.day-pills a.active .dow { color: var(--marigold); }
.day-pills .dow { color: var(--fg-muted); font-weight: 500; }
@media (max-width: 720px) { .day-pills { padding: 10px 22px; } }

/* ============ HERO (overview) ============ */
.hero {
  padding: 80px 56px 90px;
  display: grid; grid-template-columns: 7fr 5fr; gap: 48px;
  align-items: end;
  border-bottom: 2px solid var(--ink);
}
.hero .eyebrow {
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.hero .eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 2px; background: var(--magenta);
}
.hero h1 {
  font-family: var(--ff-poster);
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.86; letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero h1 .yr { color: var(--cobalt); }
.hero h1 .dot { color: var(--magenta); }
.hero .lead {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 24, 'wght' 400, 'SOFT' 50;
  font-size: 22px; line-height: 1.4; color: var(--ink-soft);
  text-wrap: pretty;
  border-left: 2px solid var(--ink); padding-left: 24px;
}
.hero .lead .meta {
  display: block; margin-top: 14px;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fg-muted);
}

@media (max-width: 900px) {
  .hero { padding: 48px 22px 56px; grid-template-columns: 1fr; gap: 28px; }
}

/* ============ VIBE PILLS (marquee row) ============ */
.vibe-pills {
  margin-top: 48px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase;
}
.vibe-pills .pill { border: 1.5px solid var(--ink); padding: 6px 14px; border-radius: 999px; }
.vibe-pills .pill.cob { background: var(--cobalt); color: #fff; border-color: var(--cobalt-deep); }
.vibe-pills .pill.mar { background: var(--marigold); color: var(--ink); }
.vibe-pills .pill.mag { background: var(--magenta); color: #fff; border-color: var(--magenta-deep); }
.vibe-pills .pill.leaf { background: var(--leaf); color: #fff; border-color: var(--leaf-deep); }
.vibe-pills .dot { color: var(--ink); opacity: 0.4; }

/* ============ HERO (day pages) ============ */
.hero-day {
  padding: 56px 56px 72px;
  border-bottom: 2px solid var(--ink);
  display: grid; grid-template-columns: minmax(0, 38%) 1fr; gap: 56px;
  align-items: end;
}
.hero-day > * { min-width: 0; }   /* prevent overflow into next column */
.hero-day .num {
  font-family: var(--ff-poster);
  font-size: clamp(120px, 22vw, 260px);
  line-height: 0.85; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  overflow-wrap: break-word; word-break: break-word;
}

/* Section-page hero variant — for word-mark headings like "PLANNING", "TRAVEL".
   Smaller numerals so multi-letter words don't overflow into the right column. */
.hero-day.is-section-hero .num {
  font-size: clamp(56px, 9vw, 116px);
  line-height: 0.9;
}
.hero-day.is-section-hero {
  grid-template-columns: minmax(0, 32%) 1fr;
}
.hero-day .num .day {
  display: block;
  font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.22em;
  color: var(--magenta); font-weight: 600; margin-bottom: 8px;
}
.hero-day .num .dot { color: var(--cobalt); }
.hero-day .meta {
  display: flex; flex-direction: column; gap: 18px;
}
.hero-day .meta .date {
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--fg-muted);
}
.hero-day h1 {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 144, 'wght' 800, 'WONK' 1;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95; letter-spacing: -0.025em;
}
.hero-day h1 em {
  font-style: italic; font-weight: 400; color: var(--cobalt);
  font-variation-settings: 'opsz' 144, 'wght' 400, 'SOFT' 100, 'WONK' 1;
}
.hero-day .theme {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 24, 'wght' 400, 'SOFT' 50;
  font-size: 22px; line-height: 1.4; color: var(--ink-soft);
  border-left: 2px solid var(--ink); padding-left: 20px;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .hero-day { padding: 40px 22px 48px; grid-template-columns: 1fr; gap: 24px; }
  .hero-day .num { font-size: clamp(96px, 28vw, 160px); }
}

/* ============ AT-A-GLANCE STRIP ============ */
.glance {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-bottom: 2px solid var(--ink);
}
.glance .cell {
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--rule);
}
.glance .cell:last-child { border-right: 0; }
.glance .lbl {
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fg-muted);
}
.glance .val {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 60, 'wght' 700, 'WONK' 1;
  font-size: 22px; letter-spacing: -0.01em; color: var(--ink);
}
@media (max-width: 900px) {
  .glance { grid-template-columns: repeat(2, 1fr); }
  .glance .cell:nth-child(odd) { border-right: 1px solid var(--rule); }
  .glance .cell { border-bottom: 1px solid var(--rule); }
}

/* ============ SECTION HEADS ============ */
.section-head {
  padding: 64px 56px 18px;
  display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: end;
  border-bottom: 2px solid var(--ink); margin-bottom: 32px;
}
.section-head .num {
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink);
}
.section-head .num strong {
  display: block; font-family: var(--ff-display); font-size: 56px; font-weight: 800;
  color: var(--magenta); margin-top: 4px; line-height: 1;
  font-variation-settings: 'opsz' 144, 'wght' 800, 'WONK' 1;
}
.section-head h2 {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 144, 'wght' 700, 'WONK' 1;
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 700; line-height: 0.95; letter-spacing: -0.025em;
}
.section-head h2 em {
  font-style: italic; font-weight: 400; color: var(--cobalt);
  font-variation-settings: 'opsz' 144, 'wght' 400, 'SOFT' 100, 'WONK' 1;
}
.section-head .note {
  grid-column: 2 / -1;
  font-family: var(--ff-display); font-style: italic;
  font-variation-settings: 'opsz' 24, 'wght' 400, 'SOFT' 50;
  font-size: 17px; color: var(--ink-soft); margin-top: 8px;
  text-wrap: pretty; max-width: 720px;
}

@media (max-width: 720px) {
  .section-head { padding: 40px 22px 14px; grid-template-columns: 1fr; gap: 12px; }
  .section-head .num strong { font-size: 36px; }
  .section-head .note { grid-column: 1; }
}

/* ============ SECTION BODY ============ */
.section { padding: 0 56px 64px; }
@media (max-width: 720px) { .section { padding: 0 22px 40px; } }

.section.cobalt {
  background: var(--cobalt); color: var(--cream);
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  padding: 64px 56px 72px; margin: 0;
}
.section.cobalt .section-head { padding: 0 0 18px; border-color: rgba(255,255,255,0.25); margin-bottom: 32px; }
.section.cobalt .section-head h2 { color: var(--cream); }
.section.cobalt .section-head h2 em { color: var(--marigold); }
.section.cobalt .section-head .num,
.section.cobalt .section-head .num strong { color: var(--cream); }
.section.cobalt .section-head .num strong { color: var(--marigold); }

.section.ink {
  background: var(--ink); color: var(--cream);
  padding: 64px 56px 72px;
}
.section.ink .section-head h2 { color: var(--cream); }
.section.ink .section-head h2 em { color: var(--marigold); }
.section.ink .section-head .num,
.section.ink .section-head .num strong { color: var(--cream); }
.section.ink .section-head .num strong { color: var(--marigold); }

/* ============ DAY GRID (overview) ============ */
.day-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 1000px) { .day-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .day-grid { grid-template-columns: 1fr; } }

.day-card {
  border: 2px solid var(--ink); background: var(--paper);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 280px;
  text-decoration: none; color: var(--ink);
  transition: transform 120ms ease, box-shadow 120ms ease;
  box-shadow: 6px 6px 0 var(--ink);
}
.day-card:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.day-card .top {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--rule); padding-bottom: 10px;
}
.day-card .num {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 144, 'wght' 800, 'WONK' 1;
  font-size: 38px; line-height: 1; color: var(--cobalt);
}
.day-card .dow {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fg-muted);
}
.day-card .title {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 100, 'wght' 800, 'WONK' 1;
  font-size: 26px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05;
  margin-top: 4px;
}
.day-card .theme {
  font-family: var(--ff-body); font-size: 14px; line-height: 1.5; color: var(--ink-soft);
}
.day-card .more {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.day-card .more .arr { color: var(--magenta); font-weight: 700; }

/* tinted shadow rotation — applied via :nth-child */
.day-grid > .day-card:nth-child(2)  { box-shadow: 6px 6px 0 var(--cobalt); }
.day-grid > .day-card:nth-child(2):hover { box-shadow: 9px 9px 0 var(--cobalt); }
.day-grid > .day-card:nth-child(3)  { box-shadow: 6px 6px 0 var(--magenta); }
.day-grid > .day-card:nth-child(3):hover { box-shadow: 9px 9px 0 var(--magenta); }
.day-grid > .day-card:nth-child(5)  { box-shadow: 6px 6px 0 var(--marigold); }
.day-grid > .day-card:nth-child(5):hover { box-shadow: 9px 9px 0 var(--marigold); }
.day-grid > .day-card:nth-child(6)  { box-shadow: 6px 6px 0 var(--leaf); }
.day-grid > .day-card:nth-child(6):hover { box-shadow: 9px 9px 0 var(--leaf); }
.day-grid > .day-card:nth-child(7)  { box-shadow: 6px 6px 0 var(--cobalt); }
.day-grid > .day-card:nth-child(7):hover { box-shadow: 9px 9px 0 var(--cobalt); }
.day-grid > .day-card:nth-child(8)  { box-shadow: 6px 6px 0 var(--magenta); }
.day-grid > .day-card:nth-child(8):hover { box-shadow: 9px 9px 0 var(--magenta); }

/* ============ GROUP STRIP (overview) ============ */
.group-strip {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px;
}
@media (max-width: 900px) { .group-strip { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 540px) { .group-strip { grid-template-columns: repeat(2, 1fr); } }

.person-mini {
  border: 2px solid var(--ink); background: var(--paper);
  padding: 16px; display: flex; flex-direction: column; gap: 8px;
}
.person-mini .avatar {
  aspect-ratio: 1; background: var(--cobalt); border: 2px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--ff-display); font-size: 56px; font-weight: 800; font-style: italic;
  color: var(--cream);
  font-variation-settings: 'opsz' 144, 'wght' 800, 'SOFT' 100, 'WONK' 1;
}
.person-mini .name {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 144, 'wght' 800, 'WONK' 1;
  font-size: 22px; letter-spacing: -0.02em; line-height: 1; margin-top: 4px;
}
.person-mini .role {
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-muted);
}

/* avatar rotation through brand colors */
.group-strip > .person-mini:nth-child(1) .avatar { background: var(--cobalt); }
.group-strip > .person-mini:nth-child(2) .avatar { background: var(--magenta); }
.group-strip > .person-mini:nth-child(3) .avatar { background: var(--marigold); color: var(--ink); }
.group-strip > .person-mini:nth-child(4) .avatar { background: var(--leaf); }
.group-strip > .person-mini:nth-child(5) .avatar { background: var(--ink); }
.group-strip > .person-mini:nth-child(6) .avatar { background: var(--rust); }
.group-strip > .person-mini:nth-child(7) .avatar { background: var(--cobalt-bright); }

/* ============ MAP CONTAINERS ============ */
.map-frame {
  border: 2px solid var(--ink);
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--cobalt);
  margin-bottom: 32px;
}
.map-frame .lbl {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px; border-bottom: 2px solid var(--ink);
  background: var(--paper);
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink);
}
.map-frame .lbl .key { color: var(--fg-muted); display: flex; gap: 18px; flex-wrap: wrap; }
.map-frame .lbl .key .swatch {
  display: inline-flex; align-items: center; gap: 6px;
}
.map-frame .lbl .key .dot {
  display: inline-block; width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid var(--ink);
}
.map-frame .lbl .key .dot.cob { background: var(--cobalt); }
.map-frame .lbl .key .dot.mag { background: var(--magenta); }
.map-frame .lbl .key .dot.mar { background: var(--marigold); }
.map-frame .lbl .key .dot.leaf { background: var(--leaf); }
.map-frame .lbl .key .dot.rust { background: var(--rust); }
.map-frame .lbl .key .dot.ink { background: var(--ink); }
.map-frame .map { height: 480px; width: 100%; background: var(--cream-deep); }
.map-frame .map.tall { height: 600px; }

@media (max-width: 720px) {
  .map-frame .map { height: 360px; }
  .map-frame .map.tall { height: 440px; }
}

/* ============ TIMELINE ============ */
.timeline { list-style: none; counter-reset: step; }
.timeline > li {
  display: grid; grid-template-columns: 100px 1fr; gap: 24px;
  padding: 22px 0; border-bottom: 1px solid var(--rule);
}
.timeline > li:last-child { border-bottom: 0; }
.timeline .when {
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cobalt); padding-top: 4px;
  font-feature-settings: "tnum" 1; font-weight: 600;
}
.timeline .title {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 100, 'wght' 700, 'WONK' 1;
  font-size: 24px; line-height: 1.1; letter-spacing: -0.015em; color: var(--ink);
  margin-bottom: 6px;
}
.timeline .body {
  font-family: var(--ff-body); font-size: 16px; line-height: 1.55; color: var(--ink-soft);
  text-wrap: pretty;
}
.timeline .body p + p { margin-top: 8px; }
.timeline .body a {
  color: var(--cobalt); text-decoration: underline; text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.timeline .body a:hover { color: var(--magenta); }

@media (max-width: 720px) {
  .timeline > li { grid-template-columns: 1fr; gap: 6px; }
  .timeline .title { font-size: 22px; }
}

/* ============ RESTAURANT CARDS ============ */
.r-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
@media (max-width: 900px) { .r-grid { grid-template-columns: 1fr; } }

.r-card {
  border: 2px solid var(--ink); background: var(--paper);
  padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
}
.r-card .eyebrow {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--magenta); font-weight: 600;
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.r-card .eyebrow .sep { color: var(--fg-faint); }
.r-card h3 {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 144, 'wght' 800, 'WONK' 1;
  font-size: 28px; font-weight: 800; line-height: 1.0; letter-spacing: -0.02em;
}
.r-card h3 a { color: inherit; text-decoration: none; }
.r-card h3 a:hover { color: var(--cobalt); }
.r-card .meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 8px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-muted);
}
.r-card .meta .stars { color: var(--ink); font-weight: 600; letter-spacing: 0.04em; }
.r-card .meta .count { color: var(--fg-muted); }
.r-card .meta .badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border: 1px solid currentColor;
  font-size: 9px; letter-spacing: 0.18em;
}
.r-card .meta .badge.michelin { color: var(--magenta); background: rgba(214,36,106,0.06); }
.r-card .meta .badge.bib { color: var(--rust); }
.r-card .meta .badge.warn { color: var(--rust); }
.r-card .addr {
  font-family: var(--ff-body); font-size: 13px; line-height: 1.5; color: var(--ink-soft);
}
.r-card .addr a { color: var(--cobalt); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.r-card .addr a:hover { color: var(--magenta); }
.r-card .note {
  font-family: var(--ff-body); font-size: 14px; line-height: 1.5; color: var(--ink-soft);
  text-wrap: pretty;
}
.r-card .booking {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--rule);
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
}
.r-card .booking .status { color: var(--fg-muted); }
.r-card .booking .status.book { color: var(--magenta); font-weight: 700; }

/* tinted shadow variants */
.r-card.cobalt-shadow { box-shadow: 6px 6px 0 var(--cobalt); }
.r-card.magenta-shadow { box-shadow: 6px 6px 0 var(--magenta); }
.r-card.marigold-shadow { box-shadow: 6px 6px 0 var(--marigold); }
.r-card.leaf-shadow { box-shadow: 6px 6px 0 var(--leaf); }

/* badges & booking pills inside r-card meta */
.r-card .badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border: 1px solid currentColor;
  font-family: var(--ff-mono); font-size: 9px; letter-spacing: 0.18em;
}
.r-card .badge.michelin { color: var(--magenta); background: rgba(214,36,106,0.06); }
.r-card .badge.bib      { color: var(--rust); }
.r-card .badge.warn     { color: var(--rust); }
.r-card .price {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--leaf-deep); font-weight: 700;
}
.r-card .booking-pill {
  display: inline-block; padding: 3px 8px;
  border: 1px solid currentColor;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
}
.r-card .booking-pill.book   { color: var(--magenta); background: rgba(214,36,106,0.08); }
.r-card .booking-pill.walkin { color: var(--leaf-deep); background: rgba(79,138,61,0.10); }
.r-card .booking-pill.alt    { color: var(--cobalt); background: rgba(31,79,184,0.08); }

/* ============ CALLOUTS ============ */
.callout {
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 18px 20px;
  display: grid; grid-template-columns: 100px 1fr; gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}
.callout .lbl {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; padding-top: 2px; font-weight: 700;
}
.callout .body {
  font-family: var(--ff-body); font-size: 15px; line-height: 1.55; color: var(--ink-soft);
  text-wrap: pretty;
}
.callout .body strong { color: var(--ink); }
.callout.warn { background: rgba(229,90,31,0.08); border-color: var(--rust); }
.callout.warn .lbl { color: var(--rust); }
.callout.todo { background: rgba(255,214,10,0.18); border-color: var(--marigold-deep); }
.callout.todo .lbl { color: var(--marigold-deep); }
.callout.note { background: var(--paper); }
.callout.note .lbl { color: var(--cobalt); }

@media (max-width: 720px) {
  .callout { grid-template-columns: 1fr; gap: 8px; }
}

/* ============ OPTIONAL / ADD-ON CARD ============ */
.add-on {
  border: 2px solid var(--cobalt-deep);
  background: var(--paper);
  padding: 22px;
  box-shadow: 6px 6px 0 var(--cobalt);
  display: flex; flex-direction: column; gap: 10px;
}
.add-on .eyebrow {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cobalt-deep); font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.add-on .eyebrow::before {
  content: ""; width: 14px; height: 14px; background: var(--cobalt); border: 2px solid var(--cobalt-deep);
}
.add-on h4 {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 100, 'wght' 700, 'WONK' 1;
  font-size: 22px; line-height: 1.05; letter-spacing: -0.015em;
}
.add-on .body {
  font-family: var(--ff-body); font-size: 14px; line-height: 1.55; color: var(--ink-soft);
}
.add-on .price {
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--magenta); font-weight: 700;
}

.add-on-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media (max-width: 720px) { .add-on-grid { grid-template-columns: 1fr; } }

/* ============ PAGE NAV (prev/next) ============ */
.page-nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  margin-top: 32px;
}
.page-nav a {
  padding: 32px 56px;
  text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: 6px;
  border-right: 2px solid var(--ink);
  transition: background 120ms;
}
.page-nav a:last-child { border-right: 0; }
.page-nav a:hover { background: var(--cream-deep); }
.page-nav a.next { text-align: right; align-items: flex-end; }
.page-nav .lbl {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--fg-muted);
}
.page-nav .ttl {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 100, 'wght' 700, 'WONK' 1;
  font-size: 26px; line-height: 1.1; letter-spacing: -0.015em;
}
.page-nav .arr { color: var(--magenta); font-weight: 700; }

@media (max-width: 720px) {
  .page-nav a { padding: 24px 22px; }
  .page-nav .ttl { font-size: 20px; }
}

/* ============ FOOTER ============ */
footer.site-foot {
  background: var(--ink); color: var(--cream);
  padding: 56px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; align-items: start;
  border-top: 2px solid var(--ink);
}
footer.site-foot .big {
  font-family: var(--ff-poster);
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.88; text-transform: uppercase; letter-spacing: -0.01em; color: var(--cream);
}
footer.site-foot .big .y { color: var(--marigold); }
footer.site-foot h4 {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--marigold); margin-bottom: 14px;
}
footer.site-foot ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
footer.site-foot ul a { font-family: var(--ff-body); font-size: 14px; color: var(--cream); text-decoration: none; }
footer.site-foot ul a:hover { color: var(--marigold); }
footer.site-foot .copy {
  grid-column: 1 / -1; border-top: 1px solid rgba(244,237,224,0.2);
  padding-top: 20px; margin-top: 12px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(244,237,224,0.6);
}
@media (max-width: 720px) {
  footer.site-foot { padding: 40px 22px; grid-template-columns: 1fr; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px;
  font-family: var(--ff-body); font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  border: 2px solid var(--ink); background: var(--ink); color: var(--cream);
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--magenta);
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--magenta); }
.btn:active { transform: translate(0,0); box-shadow: 0 0 0 var(--magenta); }
.btn.cobalt { background: var(--cobalt); color: #fff; border-color: var(--cobalt-deep); box-shadow: 4px 4px 0 var(--ink); }
.btn.cobalt:hover { box-shadow: 6px 6px 0 var(--ink); }
.btn.cream { background: var(--cream); color: var(--ink); box-shadow: 4px 4px 0 var(--magenta); }
.btn.ghost { background: transparent; color: var(--ink); box-shadow: 4px 4px 0 var(--magenta); }

/* ============ COST TABLE ============ */
.cost-table {
  width: 100%; border-collapse: collapse;
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
}
.cost-table th, .cost-table td {
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--rule);
  font-family: var(--ff-body); font-size: 14px; line-height: 1.4;
  color: var(--ink);
}
.cost-table th {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fg-muted); font-weight: 600;
  border-bottom: 2px solid var(--ink);
}
.cost-table td.amt {
  font-family: var(--ff-mono); font-feature-settings: "tnum" 1;
  text-align: right; color: var(--ink); font-weight: 600;
}
.cost-table td.status {
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cost-table .pill {
  display: inline-block; padding: 3px 8px;
  border: 1px solid currentColor;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pill.paid { color: var(--leaf-deep); background: rgba(79,138,61,0.12); }
.pill.partial { color: var(--marigold-deep); background: rgba(255,214,10,0.18); }
.pill.tbd { color: var(--fg-muted); }
.pill.book { color: var(--magenta); background: rgba(214,36,106,0.08); }
.pill.optional { color: var(--cobalt); background: rgba(31,79,184,0.08); }

/* ============ CHECKLIST ============ */
.checklist { list-style: none; }
.checklist > li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--rule);
}
.checklist > li:last-child { border-bottom: 0; }
.checklist input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px;
  border: 2px solid var(--ink); background: var(--cream);
  cursor: pointer; flex-shrink: 0;
  position: relative; margin-top: 1px;
}
.checklist input[type="checkbox"]:checked {
  background: var(--cobalt); border-color: var(--cobalt-deep);
}
.checklist input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 5px; top: 1px;
  width: 7px; height: 13px; border: solid var(--cream);
  border-width: 0 3px 3px 0; transform: rotate(45deg);
}
.checklist label {
  font-family: var(--ff-body); font-size: 15px; line-height: 1.5; cursor: pointer;
  color: var(--ink-soft); flex: 1;
  text-wrap: pretty;
}
.checklist input[type="checkbox"]:checked + label {
  color: var(--fg-muted); text-decoration: line-through; text-decoration-thickness: 1.5px;
}
.checklist label strong { color: var(--ink); }
.checklist label .meta {
  display: block; margin-top: 4px;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-muted); font-weight: 500;
}

/* ============ FILTER / SORT BAR (restaurants page) ============ */
.toolbar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 18px 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  margin-bottom: 32px;
}
.toolbar .group {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.toolbar .lbl {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fg-muted); font-weight: 600;
  margin-right: 4px;
}
.toolbar button.chip {
  padding: 6px 12px;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink); background: var(--cream); color: var(--ink);
  cursor: pointer; border-radius: 999px;
  transition: background 120ms, color 120ms;
}
.toolbar button.chip:hover { background: var(--ink); color: var(--cream); }
.toolbar button.chip.active { background: var(--cobalt); color: #fff; border-color: var(--cobalt-deep); }
.toolbar select {
  padding: 6px 12px;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1.5px solid var(--ink); background: var(--cream); color: var(--ink);
  cursor: pointer;
}
.toolbar .count {
  margin-left: auto;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-muted);
}
.toolbar .count strong { color: var(--ink); font-weight: 700; }

/* ============ TWO-COL CONTENT ============ */
.two-col {
  display: grid; grid-template-columns: 2fr 1fr; gap: 32px;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.aside-card {
  border: 2px solid var(--ink); background: var(--paper);
  padding: 22px; box-shadow: 6px 6px 0 var(--ink);
  display: flex; flex-direction: column; gap: 12px;
}
.aside-card h4 {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 100, 'wght' 800, 'WONK' 1;
  font-size: 22px; line-height: 1.05; letter-spacing: -0.02em;
}
.aside-card .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0; border-bottom: 1px solid var(--rule);
  font-family: var(--ff-body); font-size: 14px;
}
.aside-card .row:last-child { border-bottom: 0; }
.aside-card .row .k { color: var(--fg-muted); font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.aside-card .row .v { color: var(--ink); font-weight: 600; }

/* ============ PHRASE LIST ============ */
.phrases { list-style: none; }
.phrases > li {
  display: grid; grid-template-columns: 2fr 1.5fr 1fr; gap: 24px;
  padding: 16px 0; border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.phrases > li:last-child { border-bottom: 0; }
.phrases .it {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 60, 'wght' 600, 'SOFT' 30, 'WONK' 1;
  font-size: 26px; line-height: 1.1; color: var(--ink); letter-spacing: -0.01em;
}
.phrases .en {
  font-family: var(--ff-body); font-size: 15px; color: var(--ink-soft); line-height: 1.4;
}
.phrases .pn {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--magenta); font-weight: 600;
}
@media (max-width: 720px) {
  .phrases > li { grid-template-columns: 1fr; gap: 4px; }
  .phrases .it { font-size: 22px; }
}

/* ============ TIPS / CARDS GRID ============ */
.tips-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .tips-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tips-grid { grid-template-columns: 1fr; } }

.tip {
  border: 2px solid var(--ink); background: var(--paper);
  padding: 18px; box-shadow: 6px 6px 0 var(--ink);
  display: flex; flex-direction: column; gap: 8px;
}
.tip .n {
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fg-muted);
}
.tip h4 {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 100, 'wght' 700, 'WONK' 1;
  font-size: 22px; line-height: 1.05; letter-spacing: -0.02em;
}
.tip .body {
  font-family: var(--ff-body); font-size: 14px; line-height: 1.5; color: var(--ink-soft);
  text-wrap: pretty;
}

.tips-grid > .tip:nth-child(1) { box-shadow: 6px 6px 0 var(--cobalt); }
.tips-grid > .tip:nth-child(2) { box-shadow: 6px 6px 0 var(--magenta); }
.tips-grid > .tip:nth-child(3) { box-shadow: 6px 6px 0 var(--marigold); }
.tips-grid > .tip:nth-child(4) { box-shadow: 6px 6px 0 var(--leaf); }
.tips-grid > .tip:nth-child(5) { box-shadow: 6px 6px 0 var(--rust); }
.tips-grid > .tip:nth-child(6) { box-shadow: 6px 6px 0 var(--ink); }

/* ============ PROSE BLOCKS ============ */
.prose { max-width: 720px; }
.prose p { font-family: var(--ff-body); font-size: 17px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 16px; text-wrap: pretty; }
.prose p strong { color: var(--ink); }
.prose ul { padding-left: 22px; margin-bottom: 16px; }
.prose ul li { font-family: var(--ff-body); font-size: 16px; line-height: 1.5; color: var(--ink-soft); margin-bottom: 6px; }
.prose a { color: var(--cobalt); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.prose a:hover { color: var(--magenta); }

/* ============ HELPERS ============ */
.t-mono-cap { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-muted); }
.divider-thick { height: 0; border-top: 2px solid var(--ink); margin: 32px 0; }
.divider-thin  { height: 0; border-top: 1px solid var(--rule); margin: 24px 0; }
