/* ============================================================
   MEANTIME — Shared Stylesheet
   Design system: dark/gold, Playfair Display + DM Sans + Libre Baskerville
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500&family=Libre+Baskerville:ital,wght@1,400&display=swap');

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  --bg:          #0e0e0e;
  --surface:     #161616;
  --surface-hi:  #1e1e1e;
  --gold:        #c9a96e;
  --gold-dim:    #a08350;
  --cream:       #f5f0e8;
  --muted:       #8a8580;
  --ember:       #d4622b;
  --safe-green:  #4a6b4a;
  --wine:        #7a2e3a;
  --border:      rgba(201,169,110,0.15);
  --border-bright: rgba(201,169,110,0.35);
  --max-w:       960px;
  --nav-h:       72px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { color: var(--cream); opacity: 0.88; }

.section-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.pull-quote {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--gold);
  line-height: 1.5;
}

/* ─── LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

/* ─── DIVIDER ─────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold-dim);
  opacity: 0.4;
  margin: 0 auto 4rem;
  border: none;
}

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--bg);
  display: flex;
  align-items: center;
  transition: border-bottom 0.3s;
}

.nav.scrolled {
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 768px) {
  .nav__logo-img {
    height: 26px;
  }
}

.nav__voucher {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 20px;
  padding: 0.25rem 0.7rem;
}

.nav__book {
  background: var(--gold);
  color: #0e0e0e !important;
  border-radius: 2rem;
  padding: 0.5rem 1.2rem;
  font-weight: 500;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.nav__book:hover { opacity: 0.85; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--cream);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.nav__links a:hover { opacity: 1; color: var(--gold); }

.nav__links .btn-nav {
  opacity: 1;
  padding: 0.45rem 1.2rem;
  border: 1px solid var(--gold);
  border-radius: 2rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.nav__links .btn-nav:hover {
  background: var(--gold);
  color: var(--bg);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--surface);
  border-left: 1px solid var(--border);
  padding: 2.5rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.nav__drawer.open {
  transform: translateX(0);
}

.nav__drawer a {
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.85;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav__drawer a:hover { color: var(--gold); opacity: 1; }
.nav__drawer a:last-child { border-bottom: none; }

/* ─── VENUE GATE ─────────────────────────────────────────── */
.venue-gate {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.venue-gate.is-open {
  display: flex;
}

.venue-gate__inner {
  background: #161616;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 480px;
  width: 100%;
}

.venue-gate__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #f5f0e8;
  margin-bottom: 0.3rem;
}

.venue-gate__logo-img {
  height: 44px;
  width: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.venue-gate__sub {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8a8580;
  margin-bottom: 2rem;
}

.venue-gate__question {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #a08350;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.venue-gate__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.venue-gate__card {
  background: #0e0e0e;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease;
  width: 100%;
}

.venue-gate__card:hover {
  border-color: rgba(201,169,110,0.5);
}

.venue-gate__card.is-selected {
  border-color: #c9a96e;
  border-width: 2px;
}

.venue-gate__card-icon {
  width: 28px;
  height: 28px;
  background: rgba(201,169,110,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.venue-gate__card-icon svg {
  width: 13px;
  height: 13px;
  stroke: #c9a96e;
}

.venue-gate__card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #f5f0e8;
  margin-bottom: 0.2rem;
}

.venue-gate__card-loc {
  font-size: 0.75rem;
  color: #8a8580;
  margin-bottom: 0.6rem;
}

.venue-gate__card-tag {
  display: inline-block;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(74,107,74,0.2);
  color: #7ab87a;
  letter-spacing: 0.03em;
}

.venue-gate__confirm {
  width: 100%;
  background: #c9a96e;
  color: #0e0e0e;
  border: none;
  border-radius: 30px;
  padding: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.venue-gate__confirm:hover {
  opacity: 0.88;
}

.venue-gate__note {
  font-size: 0.7rem;
  color: #8a8580;
  margin-top: 0.75rem;
}

@media (max-width: 540px) {
  .venue-gate__cards {
    grid-template-columns: 1fr;
  }
  .venue-gate__card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
  }
  .venue-gate__card-icon {
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .venue-gate__card-name {
    font-size: 1rem;
    margin-bottom: 0.15rem;
  }
}

/* ─── VENUE INDICATOR BAR ────────────────────────────────── */
.venue-indicator {
  margin-top: var(--nav-h);
  background: #111;
  border-bottom: 1px solid rgba(201,169,110,0.08);
  padding: 0.55rem 1.5rem;
}

.venue-indicator__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.venue-indicator__active {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.venue-indicator__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9a96e;
  flex-shrink: 0;
}

.venue-indicator__name {
  font-size: 0.78rem;
  color: #c9a96e;
  font-weight: 500;
}

.venue-indicator__sep {
  width: 1px;
  height: 13px;
  background: rgba(201,169,110,0.2);
  margin: 0 0.9rem;
}

.venue-indicator__switch {
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: #8a8580;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
  transition: color 0.2s ease;
}

.venue-indicator__switch:hover {
  color: #c9a96e;
}

/* ─── PROMO BAR ───────────────────────────────────────────── */
.promo-bar {
  background: rgba(201,169,110,0.08);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.promo-bar a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn--primary {
  background: var(--gold);
  color: var(--bg);
}

.btn--primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn--sm {
  padding: 0.5rem 1.4rem;
  font-size: 0.82rem;
}

/* ─── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--border-bright);
}

/* ─── REVIEW CARDS ────────────────────────────────────────── */
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-bright);
}

.review-card__quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 0.5;
  opacity: 0.6;
}

.review-card__text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--cream);
}

.review-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.review-card__attribution {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── HERO BACKGROUND IMAGE ─────────────────────────────── */
.hero-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.2) 40%, rgba(14,14,14,0.8) 100%);
  z-index: 0;
}
.hero-bg > * { position: relative; z-index: 1; }
.hero-bg .hero__inner { position: relative; z-index: 1; }

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--gold);
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--cream);
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Page hero (non-full-height) */
.page-hero {
  padding: 5rem 0;
  text-align: center;
}

.page-hero h1 { margin-bottom: 1.2rem; }

.page-hero__sub {
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.75;
  max-width: 580px;
  margin: 0 auto;
}

/* ─── GRID LAYOUTS ────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ─── SECTION HEADING LAYOUT ──────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-head h2 { margin-bottom: 1rem; }
.section-head p {
  max-width: 560px;
  margin: 0 auto;
  opacity: 0.75;
}

/* ─── FUNCTION SPACE CARD ─────────────────────────────────── */
.space-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 2.5rem;
  transition: transform 0.25s, border-color 0.25s;
}

.space-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-bright);
  border-left-color: var(--gold);
}

.space-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.space-card__detail {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.space-card__detail-label {
  color: var(--muted);
  min-width: 160px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.space-card__detail-value {
  color: var(--cream);
  font-weight: 400;
}

.space-card__features {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.feature-pill {
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--surface-hi);
}

/* ─── PATH CARDS ──────────────────────────────────────────── */
.path-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.25s, border-color 0.25s;
}

.path-card:hover { transform: translateY(-2px); border-color: var(--border-bright); }

.path-card__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.path-card h3 {
  font-size: 1.4rem;
  color: var(--cream);
}

.path-card p { opacity: 0.7; font-size: 0.9rem; }

.path-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  transition: gap 0.2s;
}

.path-card__link:hover { gap: 0.7rem; }

/* ─── LOCATION CARD ───────────────────────────────────────── */
.location-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.location-card h3 {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.location-card__sub {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.location-card__row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.location-card__row:last-of-type { border-bottom: none; }

.location-card__row-label {
  color: var(--muted);
  min-width: 80px;
  font-size: 0.8rem;
  padding-top: 0.1rem;
}

.location-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ─── STEPS ───────────────────────────────────────────────── */
/* Hamilton 3-column steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step__number {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}

.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; opacity: 0.7; }

/* Entrance vertical steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
}

.steps .step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.08);
  text-align: left;
}

.steps .step:last-child { border-bottom: none; }

.step__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: rgba(201,169,110,0.25);
  flex-shrink: 0;
  width: 2rem;
  line-height: 1;
  margin-top: 0.2rem;
}

.step__content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.step__content p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── FEATURE LIST ────────────────────────────────────────── */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.5rem 0 0.5rem 1.2rem;
  border-bottom: 1px solid rgba(201,169,110,0.08);
  font-size: 0.88rem;
  color: var(--muted);
  position: relative;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-dim);
}

.feature-list li:last-child { border-bottom: none; }

/* ─── FEATURE CARD ────────────────────────────────────────── */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

/* ─── INFO CARDS ──────────────────────────────────────────── */
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.info-card__label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}

.info-card__value {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.4;
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.08);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.faq-a {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* (legacy feature-item — kept for compatibility) */
.feature-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.feature-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.feature-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.feature-item p { font-size: 0.88rem; opacity: 0.7; }

/* ─── MENU / PRICE LIST ───────────────────────────────────── */
.menu-section { margin-bottom: 3.5rem; }

.menu-section h3 {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.06);
  gap: 1rem;
}

.menu-item:last-child { border-bottom: none; }

.menu-item__name {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 400;
}

.menu-item__desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.menu-item__price {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item__price--glass-bottle {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  gap: 0.75rem;
}

.menu-item__price--glass-bottle span { color: var(--gold); font-weight: 500; }

.badge-ngf {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.5rem;
  border: 1px solid rgba(74,107,74,0.5);
  border-radius: 2rem;
  color: #6aaa6a;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.badge-premium {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.5rem;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 2rem;
  color: var(--gold);
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* Two Bays highlight */
.two-bays-group {
  background: rgba(201,169,110,0.04);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.75rem;
}

/* ─── PILLAR CARDS ────────────────────────────────────────── */
.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
}

.pillar-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}

.pillar-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.pillar-card p { font-size: 0.9rem; opacity: 0.72; }

/* ─── PLATTER GRID ────────────────────────────────────────── */
.platter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.platter-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
}

.platter-item__name { color: var(--cream); }
.platter-item__price { color: var(--gold); font-weight: 500; }

/* ─── FULL-BLEED QUOTE SECTION ────────────────────────────── */
.quote-section {
  padding: 6rem 0;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote-section .pull-quote {
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

.quote-section__attr {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ─── HERO QUOTE (DRINKS) ─────────────────────────────────── */
.hero-quote {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  text-align: center;
  background: var(--bg);
}

.hero-quote .pull-quote {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 700px;
  margin: 0 auto 1rem;
}

/* ─── GIFT CARD ───────────────────────────────────────────── */
.gift-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.25s, border-color 0.25s;
}

.gift-card:hover { transform: translateY(-2px); border-color: var(--border-bright); }
.gift-card h3 { font-size: 1.4rem; }
.gift-card p { opacity: 0.7; font-size: 0.9rem; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2.5rem;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand { display: flex; flex-direction: column; gap: 0.75rem; }

.footer__address {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0.7;
  margin-top: 0.25rem;
  line-height: 1.5;
  transition: color 0.2s;
}
.footer__address:hover { color: var(--gold); opacity: 1; }

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer__logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  opacity: 0.9;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
  transition: border-color 0.2s, color 0.2s;
}

.footer__social a:hover { border-color: var(--gold); color: var(--gold); }

.footer__col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer__col ul li a {
  font-size: 0.88rem;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.footer__col ul li a:hover { opacity: 1; color: var(--gold); }

.footer__contact { display: flex; flex-direction: column; gap: 0.5rem; }

.footer__contact a {
  font-size: 0.88rem;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.footer__contact a:hover { opacity: 1; color: var(--gold); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─── ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.19s; }
.stagger > *:nth-child(4) { transition-delay: 0.26s; }
.stagger > *:nth-child(5) { transition-delay: 0.33s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }

/* ─── HORIZONTAL POINTS LIST ──────────────────────────────── */
.points-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.point {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.point__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.point__title::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.point p { font-size: 0.88rem; opacity: 0.7; }

/* ─── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 { margin-bottom: 1rem; }
.cta-urgency {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-style: italic;
}

/* ─── FOOD DISH CARD ──────────────────────────────────────── */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.dish-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  transition: transform 0.25s, border-color 0.25s;
}

.dish-card:hover { transform: translateY(-2px); border-color: var(--border-bright); }

.dish-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.dish-card__desc { font-size: 0.82rem; color: var(--muted); }

.dish-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  gap: 0.5rem;
}

.dish-card__price {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
}

.dish-card__badges {
  display: flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.badge-dietary {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  background: rgba(201,169,110,0.08);
}

.menu-note {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.3rem;
}

.sauces-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.sauce-pill {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--surface-hi);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
}

/* ─── COELIAC PILLAR ──────────────────────────────────────── */
.coeliac-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__drawer { display: flex; }

  .grid-2,
  .grid-3,
  .grid-4,
  .steps-grid,
  .platter-grid,
  .points-list,
  .dish-grid,
  .coeliac-pillars {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__inner { padding: 4rem 1.5rem; }

  section { padding: 3.5rem 0; }

  .space-card__detail-label { min-width: 120px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .btn { padding: 0.65rem 1.5rem; font-size: 0.85rem; }

  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  .card, .review-card, .space-card, .path-card, .location-card {
    padding: 1.5rem;
  }
}

/* ─── UTILITY ─────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ─── FOUNDER SECTION ─────────────────────────────────────── */
.section--founder {
  padding: 5rem 0;
}

.founder-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.founder-card > .section-label {
  display: block;
  margin-bottom: 2rem;
}

.founder-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 9rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.07;
  pointer-events: none;
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 3rem;
  align-items: start;
}

.founder-name {
  margin: 0 0 0.25rem;
  font-size: 1.8rem;
}

.founder-role {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.founder-quote {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--cream);
  opacity: 0.85;
  line-height: 1.85;
}

.founder-quote p {
  margin: 0 0 1.25rem;
}

.founder-quote p:last-child {
  margin-bottom: 0;
}

.founder-attribution {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.founder-photo-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--surface-hi);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.founder-initials {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
}

.founder-photo-note {
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}

/* Real photo — swap in when sally.jpg is available */
.founder-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--border);
  display: block;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .founder-card {
    padding: 2rem 1.5rem;
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-photo-placeholder,
  .founder-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    position: static;
  }
}

/* ─── PLATTER + SPACE-CARD IMAGES (2026-04-30) ──────────────── */
.platter-item {
  display: block;            /* override existing flex */
  padding: 0;                /* override existing 0.85rem 1rem */
  overflow: hidden;
}

.platter-item__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #0a0a0a;
}

.platter-item__diptych {
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 4 / 3;
}

.platter-item__diptych img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0a0a0a;
}

.platter-item__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
}

.space-card {
  overflow: hidden;          /* clip image to rounded corners */
}

.space-card__image {
  display: block;
  width: calc(100% + 5rem);
  margin: -2.5rem -2.5rem 1.5rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0a0a0a;
}

@media (max-width: 720px) {
  .space-card__image { aspect-ratio: 16 / 10; }
  .platter-item__img,
  .platter-item__diptych { aspect-ratio: 16 / 10; }
}

@media (max-width: 480px) {
  /* match the .space-card padding override (1.5rem) at this breakpoint */
  .space-card__image {
    width: calc(100% + 3rem);
    margin: -1.5rem -1.5rem 1rem;
  }
}
