/* Crystal Gardens Ting'ang'a — Site Stylesheet
   Editorial light-mode system, adapted from measured proportions/rhythm of a
   dark-mode reference (PatioTime) onto a white surface — NOT a literal palette
   port. Deep green (#1F4D2C) takes the role the reference's orange accent
   plays: a single, deliberately scarce color, never a field fill except in
   named emotional-band sections. Square corners (0px), no shadows, no cards —
   separation comes from rule + whitespace throughout. See the project plan at
   C:\Users\jojie\.claude\plans\the-website-does-not-majestic-teapot.md for
   the full token-mapping rationale. */

:root {
  /* Surfaces */
  --color-bg: #FFFFFF;                 /* true white page background */
  --color-bg-alt: #FAF7F0;             /* warm cream — section banding only */

  /* Text / foreground */
  --color-text: #20241F;               /* charcoal body text */
  --color-text-light: #55594F;
  --color-on-dark: #F3F3EE;            /* text on green/dark surfaces */

  /* Borders — hard lines, not soft grey. Two-tier: full-strength for
     deliberate structural rules, soft for hairline dividers. */
  --color-border: #20241F;             /* full-strength ink line */
  --color-border-soft: rgba(32, 36, 31, 0.12);

  /* Accent — used scarcely. Audit any new usage against this rule: if it's
     not a primary CTA or one of the few named brand marks per page, it
     should not be green. */
  --color-primary: #1F4D2C;
  --color-leaf: #5FA84A;
  --color-ember: #C9622B;              /* icons / large text (24px+) / hover ONLY — never body text */
  --color-ember-text: #A34E1F;         /* AA-safe ember for body-size text */
  --color-gold: #B8934A;               /* decorative only — never text */

  /* Fonts */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type scale — ratios ported from the reference's measured 60/42/24/20/18 */
  --text-display: 60px;
  --text-h2: 42px;
  --text-lead: 24px;
  --text-h3: 20px;
  --text-body: 18px;
  --text-small: 14px;
  --text-caption: 13px;

  /* Spacing scale — 5px base, matches the reference's measured scale exactly */
  --space-1: 5px;
  --space-2: 10px;
  --space-3: 15px;
  --space-4: 20px;
  --space-5: 25px;
  --space-6: 30px;
  --space-8: 40px;
  --space-12: 60px;
  --space-16: 80px;
  --space-24: 120px;
  --space-32: 160px;
  --space-40: 200px;

  /* Radius — fully square, matches the reference's measured 0px exactly */
  --radius: 0px;

  --container: 1180px;
  --container-narrow: 803px;  /* editorial reading measure, ported from the reference's container width */
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.05;
}

h1 {
  font-size: clamp(38px, 5.5vw, var(--text-display));
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(28px, 4vw, var(--text-h2));
  margin-bottom: var(--space-4);
}
h3 {
  font-size: var(--text-lead);
  margin-bottom: var(--space-2);
  font-weight: 500;
}

p {
  font-size: var(--text-body);
  line-height: 1.55;
  margin-bottom: var(--space-4);
  max-width: 65ch;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--text-caption);
  font-weight: 600;
  color: var(--color-ember-text);
  margin-bottom: var(--space-2);
  display: block;
}

/* ---------- Buttons ---------- */
/* Anatomy ported from the reference's measured button components:
   primary  — 45px tall / 25px h-padding / 16px-600-uppercase-0.8px tracking
   outline  — 42px tall / 30px h-padding / 13px-600-uppercase-0.65px tracking, 2px border
   ghost    — 40x40px icon-only */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  margin: 0 var(--space-2) var(--space-2) 0;
  cursor: pointer;
}

.btn-primary {
  height: 45px;
  padding: 0 var(--space-5);
  font-size: 16px;
  letter-spacing: 0.8px;
  background: var(--color-primary);
  color: #fff;
  border: none;
}
.btn-primary:hover { background: var(--color-ember-text); }

.btn-secondary {
  height: 42px;
  padding: 0 var(--space-6);
  font-size: var(--text-caption);
  letter-spacing: 0.65px;
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-secondary:hover { background: var(--color-primary); color: #fff; }

/* On dark/hero backgrounds — replaces inline style="border-color:#fff" hacks */
.btn-on-dark.btn-secondary { border-color: #fff; color: #fff; }
.btn-on-dark.btn-secondary:hover { background: #fff; color: var(--color-primary); }

.btn-ghost {
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Visible focus states — the reference package captured none of these
   (no hover/focus states were recorded in its source), so every rule below
   is new work built to meet WCAG 2.2 AA, not a port. */
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  border-bottom: 1px solid var(--color-border-soft);
  background: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas:
    "logo    logo logo"
    "spacer  nav  cta";
  align-items: center;
  padding: var(--space-4) var(--space-6) var(--space-3);
  max-width: var(--container);
  margin: 0 auto;
  gap: var(--space-3) var(--space-4);
}
.logo {
  grid-area: logo;
  justify-self: center;
}
.logo img { height: 48px; width: auto; flex-shrink: 0; }
.nav-toggle { grid-area: nav; justify-self: start; }
.main-nav {
  grid-area: nav;
  justify-self: center;
  flex-shrink: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }
.header-cta { grid-area: cta; justify-self: end; }

.main-nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-5);
  align-items: center;
  flex-wrap: nowrap;
}
.main-nav a {
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text-light);
  padding: var(--space-2) 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.header-cta { display: flex; align-items: center; gap: var(--space-3); }
.btn-icon { display: inline-flex; align-items: center; margin-right: var(--space-1); vertical-align: middle; flex-shrink: 0; }

/* Rounded pill buttons — a deliberate exception to the site's 0px-radius
   rule, scoped to the header only, to match the reference's soft pill CTA. */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 var(--space-6);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-pill-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.btn-pill-outline:hover { background: var(--color-primary); color: #fff; }
.btn-pill-primary {
  background: var(--color-primary);
  color: #fff;
  border: 1.5px solid var(--color-primary);
}
.btn-pill-primary:hover { background: var(--color-ember-text); border-color: var(--color-ember-text); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--color-primary);
  cursor: pointer;
  width: 40px;
  height: 40px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
/* Bottom-biased gradient — protects the CTA/headline area without flattening
   the whole photo the way a flat-opacity overlay does. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 24, 20, 0.10) 0%, rgba(20, 24, 20, 0.68) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: var(--space-16) var(--space-6);
}
.hero h1 { color: #fff; margin-bottom: var(--space-4); }
.hero p.lead { color: #F3F3EE; font-size: var(--text-lead); max-width: 560px; margin-bottom: var(--space-4); }
.hero-actions { margin-top: var(--space-4); }

.page-hero { min-height: 420px; }

/* ---------- Sections ---------- */
section.block { padding: var(--space-16) 0; }
section.block.alt { background: var(--color-bg-alt); }
section.block.dark {
  background: var(--color-primary);
  color: #fff;
}
section.block.dark h2, section.block.dark h3 { color: #fff; }
section.block.dark p { color: #E9EEE8; }

.section-head { max-width: 680px; margin-bottom: var(--space-8); }

/* ---------- Flex grid rows (Elementor-mappable: simple flex, no CSS grid) ---------- */
.row { display: flex; flex-wrap: wrap; gap: var(--space-6); }
.row.tight { gap: var(--space-3); }
.col { flex: 1 1 280px; }
.col-2 { flex: 1 1 calc(50% - 15px); }
.col-3 { flex: 1 1 calc(33.333% - 20px); }
.col-4 { flex: 1 1 calc(25% - 22.5px); }

.row.align-center { align-items: center; }

img.photo-block {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}
/* Taller portrait-leaning treatment for story bands where a photo should
   carry real visual weight (Family & Kids, About) rather than read as a
   uniform thumbnail strip. */
img.photo-block.tall { height: 520px; }

/* ---------- Numbered editorial row (replaces circular icon badges) ---------- */
.editorial-row {
  display: flex;
  flex-wrap: wrap;
  row-gap: var(--space-12);
}
.editorial-item {
  flex: 1 1 320px;
  padding: 0 var(--space-8) 0 0;
}
.editorial-item .num {
  display: block;
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 500;
  color: var(--color-border-soft);
  -webkit-text-stroke: 1px var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-4);
}
.editorial-item h3 { font-size: 22px; margin-bottom: var(--space-3); }
.editorial-item p { font-size: var(--text-small); color: var(--color-text-light); margin-bottom: 0; max-width: none; }
.editorial-item a.editorial-link { display: block; }
.editorial-item a.editorial-link:hover h3 { color: var(--color-ember-text); }

/* ---------- Menu categories ---------- */
.menu-category {
  border-top: 1px solid var(--color-border);
  padding: var(--space-6) 0;
}
.menu-category:first-of-type { border-top: none; padding-top: 0; }
.menu-category h3 {
  font-size: var(--text-lead);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border-soft);
}
.menu-item .price { font-weight: 600; color: var(--color-ember-text); white-space: nowrap; }

/* ---------- Divided price list (replaces bordered .price-card boxes) ---------- */
.price-list-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-border);
}
.price-list-row:first-of-type { border-top: none; padding-top: 0; }
.price-list-row h3 { margin-bottom: var(--space-1); }
.price-list-row .price-note { color: var(--color-text-light); font-size: var(--text-small); margin-bottom: 0; }

/* ---------- Confirm notice ---------- */
.confirm-note {
  border-left: 2px solid var(--color-ember-text);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-small);
  color: var(--color-text-light);
  margin-bottom: var(--space-2);
}
.confirm-note strong { color: var(--color-ember-text); }

/* ---------- Gallery tabs ---------- */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0;
}
.gallery-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: var(--space-3) 0;
  font-weight: 600;
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--color-text-light);
}
.gallery-tab-btn.active,
.gallery-tab-btn:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.gallery-panel { display: none; }
.gallery-panel.active { display: block; }
.gallery-grid { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.gallery-grid img {
  flex: 1 1 260px;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}
/* Two-unit-wide tile for occasional variety — applied selectively via this
   class, not every image, so the grid doesn't read as a uniform stock wall. */
.gallery-grid img.wide { flex: 2 1 540px; }

/* ---------- Editorial diptych (Games & Sports pool tables) ---------- */
.diptych {
  display: flex;
  gap: 1px;
  background: var(--color-border-soft);
}
.diptych img {
  flex: 1 1 50%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}
.diptych-caption {
  font-size: var(--text-small);
  color: var(--color-text-light);
  margin-top: var(--space-3);
  text-align: center;
}

/* ---------- Fact strip (replaces the awards/press strip on the reference —
   we have no third-party awards, so this is an honest equivalent: quick,
   scannable facts about the venue itself). ---------- */
.fact-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-12);
  padding: var(--space-6) 0;
}
.fact-strip .fact {
  text-align: center;
}
.fact-strip .fact .fact-value {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.fact-strip .fact .fact-label {
  display: block;
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
}

/* ---------- Dish tile grid (signature dishes) ---------- */
.dish-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}
.dish-tile { flex: 1 1 300px; }
.dish-tile img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: var(--space-3);
}
.dish-tile .dish-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}
.dish-tile h3 { margin-bottom: 0; }
.dish-tile .dish-price { font-weight: 600; color: var(--color-ember-text); white-space: nowrap; }
.dish-tile .dish-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  flex-shrink: 0;
  color: var(--color-primary);
  transition: background 0.2s ease, color 0.2s ease;
}
.dish-tile .dish-link:hover { background: var(--color-primary); color: #fff; }

/* ---------- Menu preview tabs (reuses the gallery-tabs visual pattern) ---------- */
.menu-preview-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.menu-preview-tabs.centered { justify-content: center; }
.menu-preview-tab-btn {
  background: none;
  border: 1px solid var(--color-border-soft);
  padding: var(--space-2) var(--space-5);
  font-weight: 600;
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  color: var(--color-text-light);
  border-radius: var(--radius);
}
.menu-preview-tab-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.menu-preview-panel { display: none; }
.menu-preview-panel.active { display: block; }

/* ---------- Venue spotlight (photo + quote + stats, replaces chef spotlight) ---------- */
.spotlight {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: var(--color-bg-alt);
}
.spotlight-photo {
  flex: 1 1 420px;
  position: relative;
  min-height: 480px;
}
.spotlight-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spotlight-photo .spotlight-quote {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-8) var(--space-6) var(--space-6);
  background: linear-gradient(0deg, rgba(20,24,20,0.85) 0%, rgba(20,24,20,0) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-lead);
  font-style: italic;
  line-height: 1.35;
}
.spotlight-content {
  flex: 1 1 420px;
  padding: var(--space-16) var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spotlight-stats {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-6);
}
.spotlight-stats .stat {
  flex: 1 1 140px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-soft);
  padding: var(--space-5) var(--space-4);
  text-align: center;
}
.spotlight-stats .stat .stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.spotlight-stats .stat .stat-label { font-size: var(--text-small); color: var(--color-text-light); }

/* ---------- Reservation form (WhatsApp handoff, not a real backend submit) ---------- */
.reserve-section {
  display: flex;
  flex-wrap: wrap;
  background: var(--color-primary);
  color: #fff;
}
.reserve-copy {
  flex: 1 1 380px;
  padding: var(--space-16) var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reserve-copy h2 { color: #fff; }
.reserve-copy p { color: #E9EEE8; }
.reserve-form-wrap {
  flex: 1 1 420px;
  background: var(--color-bg);
  padding: var(--space-8);
  display: flex;
  align-items: center;
}
.reserve-form { width: 100%; }
.reserve-form .form-row { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.reserve-form .form-field { flex: 1 1 160px; margin-bottom: var(--space-4); }
.reserve-form label {
  display: block;
  font-size: var(--text-caption);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
  margin-bottom: var(--space-2);
}
.reserve-form input,
.reserve-form select {
  width: 100%;
  height: 44px;
  padding: 0 var(--space-3);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text);
  background: var(--color-bg);
}
.reserve-form input:focus,
.reserve-form select:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
.reserve-form button.btn { width: 100%; height: 48px; margin: 0; }

/* ---------- Accordion ---------- */
.accordion-item { border-bottom: 1px solid var(--color-border-soft); }
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-4) 0;
  font-family: var(--font-display);
  font-size: var(--text-lead);
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-panel { display: none; padding-bottom: var(--space-4); color: var(--color-text-light); }
.accordion-item.open .accordion-panel { display: block; }

/* ---------- Quote block ---------- */
.quote-block {
  border-left: 2px solid var(--color-gold);
  padding-left: var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-h3);
  color: var(--color-primary);
  font-style: italic;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-primary);
  color: #EFEFE8;
  padding: var(--space-16) 0 var(--space-4);
  border-top: 4px solid var(--color-leaf);
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-caption);
  margin-bottom: var(--space-4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: var(--space-2);
}
.site-footer a { color: #D9E3D6; transition: color 0.2s ease; }
.site-footer a:hover { color: #fff; }
.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-bottom: var(--space-10);
}
.footer-cols .col:first-child { flex: 2 1 320px; }
.footer-cols .col:nth-child(2) { flex: 2 1 280px; }
.footer-cols .col:nth-child(3) { flex: 1 1 200px; }
.footer-cols p { color: #C7D2C2; max-width: 42ch; }
.footer-cols ul { list-style: none; }
.footer-cols li { margin-bottom: var(--space-3); font-size: var(--text-small); }
.footer-cols li a { display: inline-block; }
.footer-explore-cols { display: flex; gap: var(--space-8); }
.footer-explore-cols ul { flex: 1 1 50%; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--space-4);
  font-size: var(--text-caption);
  color: #B9C4B3;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-primary);
  z-index: 200;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mobile-cta-bar .row { gap: 0; }
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: var(--space-3) var(--space-1);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-cta-bar a:last-child { border-right: none; }
.mobile-cta-bar .cta-icon { display: flex; justify-content: center; font-size: 18px; margin-bottom: 2px; }
.mobile-cta-bar .cta-icon svg { width: 18px; height: 18px; }

/* ---------- Map wrap (lazy) ---------- */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--color-border-soft); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Responsive ---------- */
/* Note: the reference package captured only one viewport (803px/tablet) — no
   measured evidence exists for true mobile behavior. Breakpoints and mobile
   type/spacing decisions below are informed judgment, not measurement. */
@media (max-width: 1100px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; grid-area: nav; justify-self: start; }
  .logo img { height: 48px; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border-soft);
    padding: var(--space-2) var(--space-6) var(--space-4);
  }
  .main-nav.open ul { flex-direction: column; align-items: flex-start; gap: var(--space-1); }
  .main-nav.open li { width: 100%; }
  .main-nav.open a { display: block; padding: var(--space-3) 0; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 56px; }
  .col-2, .col-3, .col-4 { flex: 1 1 100%; }
  .editorial-item { flex: 1 1 100%; border-left: none; border-top: 1px solid var(--color-border-soft); padding-left: 0; padding-top: var(--space-5); }
  .editorial-item:first-child { border-top: none; padding-top: 0; }
  .diptych { flex-direction: column; }
  .diptych img { height: 320px; }
  .fact-strip { gap: var(--space-6); }
  .spotlight-photo { min-height: 320px; }
  .spotlight-stats { flex-wrap: wrap; }
  .reserve-form .form-field { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  .footer-explore-cols { flex-direction: column; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
