/* ============================================================
   BLOOMBOARDS — Design System v2
   Direction: Minimal Luxury · Stitch-derived
   Palette: Forest Green · Gold · Warm White
   Fonts: Cormorant Garamond · Manrope
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ─── Design Tokens ──────────────────────────────────────── */
:root {
  /* Primary */
  --primary:        #1E4225;
  --primary-light:  #2D5A35;
  --primary-dark:   #152E1A;
  --primary-pale:   #E4EDE5;

  /* Gold / Secondary */
  --gold:           #C8A951;
  --gold-dark:      #A88B35;
  --gold-light:     #F0E6C8;
  --gold-muted:     rgba(200, 169, 81, 0.15);

  /* Surface */
  --surface:        #fbf9f5;
  --surface-warm:   #F3EFE6;
  --surface-card:   #FFFFFF;

  /* Neutrals */
  --dark:           #1A1A1A;
  --dark-warm:      #2C3328;
  --gray-900:       #1E2A1F;
  --gray-700:       #4A5548;
  --gray-500:       #6B756C;
  --gray-400:       #8A9A8C;
  --gray-300:       #B5C2B7;
  --gray-200:       #D4DCD5;
  --gray-100:       #E8EDE9;
  --white:          #FFFFFF;

  /* Accents */
  --sand:           #D4C4A8;
  --sand-light:     #E8DFD0;
  --cream:          #F9F7F2;

  /* Shadows */
  --shadow-sm:      0 1px 3px rgba(30,66,37,0.04);
  --shadow:         0 4px 20px rgba(30,66,37,0.06);
  --shadow-lg:      0 12px 40px rgba(30,66,37,0.1);

  /* Typography */
  --font-serif:     'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:      'Manrope', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease:           cubic-bezier(0.22, 1, 0.36, 1);
  --transition:     0.35s cubic-bezier(0.22, 1, 0.36, 1);

  /* Spacing scale */
  --space-xs:       0.5rem;
  --space-sm:       1rem;
  --space-md:       2rem;
  --space-lg:       4rem;
  --space-xl:       6rem;
  --space-2xl:      8rem;

  /* Layout */
  --max-w:          1200px;
  --max-w-sm:       680px;
  --max-w-md:       880px;
  --max-w-lg:       1400px;

  /* Texture */
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");

  /* Legacy aliases (for admin panel compatibility) */
  --sage:           #7A9E7E;
  --sage-dark:      #1E4225;
  --sage-deep:      #1E4225;
  --sage-light:     #B5D1B8;
  --sage-pale:      #E4EDE5;
  --olive:          #6B7B3C;
  --olive-dark:     #4A5628;
  --clay:           #B5651D;
  --cream-warm:     #F3EFE6;
  --radius:         0px;
  --radius-sm:      0px;
  --radius-lg:      0px;
  --gray:           #6B756C;
  --gray-light:     #CDD5CE;
  --shadow-hover:   0 12px 40px rgba(30,66,37,0.12);
  --shadow-green:   0 8px 32px rgba(30,66,37,0.15);

  /* ── Glass Design System Tokens ────────────────────────── */
  --glass-blur:           32px;
  --glass-saturate:       180%;
  --glass-bg-light:       rgba(255, 255, 255, 0.06);
  --glass-bg-dark:        rgba(255, 255, 255, 0.03);
  --glass-border:         rgba(255, 255, 255, 0.08);
  --glass-rim:            rgba(255, 255, 255, 0.05);
  --glass-shadow:         0 8px 32px rgba(0, 0, 0, 0.12);
  --glass-shine:          linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
  --glass-noise:          url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes revealLine {
  from { width: 0; }
  to   { width: 60px; }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-up  { animation: fadeUp 0.6s var(--ease) both; }
.animate-fade-in  { animation: fadeIn 0.5s ease both; }
.animate-scale-in { animation: scaleIn 0.5s var(--ease) both; }

/* ─── Glass Shine Sweep ─────────────────────────────────── */
@keyframes glassShine {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(250%) skewX(-15deg); }
}

/* ============================================================
   GLASS DESIGN SYSTEM — Apple-style Glassmorphism
   Usage: .glass (light bg), .glass--dark (dark bg)
   ============================================================ */

/* ── Base Glass — for surfaces on light/cream backgrounds ── */
.glass {
  position: relative;
  background: var(--glass-bg-light);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  box-shadow:
    var(--glass-shadow),
    inset 0 0 0 1px var(--glass-rim);
  overflow: hidden;
}

/* Noise texture pseudo-element — prevents banding, adds physicality */
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-noise);
  background-size: 200px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}

/* Ambient shine sweep — subtle diagonal light reflection */
.glass::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-shine);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
  transition: opacity 0.4s ease;
}
.glass:hover::after {
  opacity: 1;
  animation: glassShine 1.5s ease forwards;
}

/* Ensure children sit above glass layers */
.glass > * {
  position: relative;
  z-index: 3;
}

/* ── Dark Glass — for surfaces on dark/green backgrounds ── */
.glass--dark {
  background: var(--glass-bg-dark);
}

/* ── Fallback for browsers without backdrop-filter ──────── */
@supports not (backdrop-filter: blur(1px)) {
  .glass {
    background: rgba(255, 255, 255, 0.85);
  }
  .glass--dark {
    background: rgba(30, 66, 37, 0.9);
  }
}

/* ─── Page Transitions ───────────────────────────────────── */
@keyframes pageSlideUp {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-60px); }
}
@keyframes pageSlideIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-transition {
  will-change: opacity;
  /* REMOVED: 'transform' from will-change — it creates a containing block
     that breaks position: fixed for any descendant (booking summary bar). */
}
.page-transition--entered {
  opacity: 1;
  /* REMOVED: transform: translateY(0) — this breaks position: fixed
     for any descendant (like the booking summary bar).
     The translateY(0) was a no-op anyway (moves nothing). */
}
.page-transition--exiting {
  animation: pageSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}
.page-transition--entering {
  animation: pageSlideIn 0.5s cubic-bezier(0, 0, 0.2, 1) forwards;
}

/* ─── Glass Card (3D tilt wrapper only — no card styling) ── */
.glass-card {
  --shine-x: 50%;
  --shine-y: 0%;
  display: flex;
  flex-direction: column;
  /* border-radius and overflow handled per-card by Tailwind classes */
  transition: box-shadow 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.glass-card:hover {
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* ─── Glass Effect (visual glass layers) ───────────────── */
.glass-effect > *:not(.glass-effect__blur):not(.glass-effect__frost):not(.glass-effect__rim) {
  position: relative;
  z-index: 30;
}

/* ─── Gold Cursor Glow ───────────────────────────────────── */
.gold-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(200, 169, 81, 0.14) 0%,
    rgba(200, 169, 81, 0.08) 20%,
    rgba(200, 169, 81, 0.03) 45%,
    rgba(200, 169, 81, 0.01) 65%,
    transparent 85%
  );
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
  filter: blur(1px);
  mix-blend-mode: screen;
}

/* Stagger children */
.stagger-children > *:nth-child(1) { animation-delay: 0s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.06s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.12s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.18s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.24s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(7) { animation-delay: 0.36s; }
.stagger-children > *:nth-child(8) { animation-delay: 0.42s; }
.stagger-children > *:nth-child(9) { animation-delay: 0.48s; }

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.5s infinite linear;
}
.skeleton-card { height: 360px; }
.skeleton-line { height: 1em; margin-bottom: 0.6rem; }

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background-color: var(--surface);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
}
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 400; }
h4 { font-size: 1.15rem; font-weight: 500; }
p  { margin-bottom: 1rem; font-weight: 400; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; }

/* ─── Utilities ──────────────────────────────────────────── */
.container      { max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; }
.container--sm  { max-width: var(--max-w-sm); margin: 0 auto; padding: 0 2rem; }
.container--md  { max-width: var(--max-w-md); margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: var(--max-w-lg); margin: 0 auto; padding: 0 2.5rem; }
.section        { padding: var(--space-xl) 0; }
.section--sm    { padding: var(--space-lg) 0; }
.text-center    { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── Buttons ────────────────────────────────────────────── */
/* ── Liquid Glass Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 16px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 2.2);
  line-height: 1;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  background: rgba(255,255,255,0.03);
  box-shadow: var(--glass-shadow), inset 0 0 0 1px var(--glass-rim);
}
/* Glass pseudo-elements removed — buttons are clean flat glass now */
.btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: none;
}

/* Green-tinted glass */
.btn-primary {
  background: rgba(30, 66, 37, 0.25);
  color: var(--primary);
  border-color: rgba(30, 66, 37, 0.25);
  box-shadow: none;
}
.btn-primary:hover {
  background: rgba(30, 66, 37, 0.35);
  transform: translateY(-3px) scale(1.04);
  box-shadow: none;
}

/* Transparent glass (white on dark bg) */
.btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

/* Transparent glass (dark text on light bg) */
.btn-outline-dark {
  background: rgba(255, 255, 255, 0.12);
  color: var(--dark);
  border-color: rgba(0,0,0,0.08);
  box-shadow: none;
}
.btn-outline-dark:hover {
  background: rgba(30, 66, 37, 0.12);
  color: var(--primary);
  border-color: rgba(30, 66, 37, 0.2);
  box-shadow: none;
}

/* Green-tinted glass (white text) */
.btn-brown {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: none;
}
.btn-brown:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--gold);
  transform: translateY(-3px) scale(1.04);
  box-shadow: none;
}
.btn-sm { padding: 0.6rem 1.5rem; font-size: 0.65rem; }

/* Gold-tinted glass */
/* Solid green (for light backgrounds) */
.btn-green {
  background: #1E4225 !important;
  color: #fff !important;
  border-color: #1E4225 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  /* Kill the inherited --glass-shadow (black 12% alpha) so the button
     doesn't cast a dark oval on cream backgrounds. Tiny forest-tinted
     ambient only, no contact line. */
  box-shadow: 0 2px 8px rgba(26,58,42,0.06) !important;
}
.btn-green:hover {
  background: #152E1A !important;
  color: #fff !important;
  border-color: #152E1A !important;
  box-shadow: 0 4px 14px rgba(26,58,42,0.1) !important;
}

.btn-gold {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
  box-shadow: none;
}
.btn-gold:hover {
  background: #1E4225 !important;
  color: var(--gold) !important;
  border-color: #1E4225 !important;
  box-shadow: 0 0 0 100px #1E4225 inset !important;
  position: relative;
  z-index: 5;
  isolation: isolate;
}

/* ─── Navigation ─────────────────────────────────────────── */
/* ─── Liquid Glass Pill Navbar ───────────────────────────── */
.navbar-pill__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.navbar-pill {
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  transition: box-shadow 0.5s ease;
}
/* Hero pages: start transparent, glass appears via motion */
.navbar-pill--hero {
  background: transparent;
  border: none;
}
/* Non-hero pages: solid glass background with green tint */
.navbar-pill--solid {
  width: 100% !important;
  background: rgba(30, 66, 37, 0.35);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border-bottom: 1px solid rgba(30, 66, 37, 0.15);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 4px 18px rgba(0, 0, 0, 0.25), 0 1px 6px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
/* Noise texture on solid navbar */
.navbar-pill--solid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-noise);
  background-size: 200px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}
/* Fallback for solid navbar */
@supports not (backdrop-filter: blur(1px)) {
  .navbar-pill--solid {
    background: rgba(228, 237, 229, 0.95);
  }
}
/* Glass background layer (sits behind content, controlled by framer-motion) */
.navbar-pill__glass-bg {
  position: absolute;
  inset: 0;
  background: rgba(30, 66, 37, 0.35);
  border: 1px solid rgba(30, 66, 37, 0.15);
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 4px 18px rgba(0, 0, 0, 0.25), 0 1px 6px rgba(0, 0, 0, 0.15), inset 0 0 0 1px var(--glass-rim);
}
/* Home page: neutral glass (no green tint) */
.navbar-pill__glass-bg--neutral {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(0, 0, 0, 0.08);
}
/* Noise on glass-bg layer */
.navbar-pill__glass-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-noise);
  background-size: 200px;
  opacity: 0.03;
  pointer-events: none;
  border-radius: inherit;
}
/* Shine sweep */
.navbar-pill__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
/* ── Solid navbar text colors (green-tinted glass) ──────── */
.navbar-pill--solid .navbar__inner {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.navbar-pill--solid .navbar__logo { color: #fff; }
.navbar-pill--solid .navbar__logo span { color: var(--gold); }
.navbar-pill--solid .navbar__links a { color: rgba(255,255,255,0.85); font-weight: 700; }
.navbar-pill--solid .navbar__links a:hover,
.navbar-pill--solid .navbar__links a.active { color: #fff; }
.navbar-pill--solid .navbar__links a::after { background: var(--gold); }
.navbar-pill--solid .navbar__account-link,
.navbar-pill--solid .navbar__signin { color: rgba(255,255,255,0.7); }
.navbar-pill--solid .navbar__account-link:hover,
.navbar-pill--solid .navbar__signin:hover { color: #fff; }
.navbar-pill--solid .navbar__toggle span { background: #fff; }

.navbar-pill--hero .navbar__inner {
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.navbar-pill--hero .navbar__logo {
  color: #fff;
}
.navbar-pill--hero .navbar__logo span {
  color: rgba(200, 169, 81, 0.9);
}
.navbar-pill--hero .navbar__links a {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}
.navbar-pill--hero .navbar__links a:hover,
.navbar-pill--hero .navbar__links a.active {
  color: #fff;
}
.navbar-pill--hero .navbar__links a.active::after {
  background: var(--gold);
}
.navbar-pill--hero .btn-primary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.navbar-pill--hero .btn-primary:hover {
  background: rgba(255,255,255,0.15);
}
/* ── Dark text mode — home page scrolled past hero into light bg ── */
.navbar-pill--dark-text .navbar__logo { color: var(--dark); text-shadow: none; }
.navbar-pill--dark-text .navbar__logo span { color: var(--gold); }
.navbar-pill--dark-text .navbar__links a { color: var(--dark); text-shadow: none; }
.navbar-pill--dark-text .navbar__links a:hover { color: var(--gold); }
.navbar-pill--dark-text .navbar__links a.active { color: var(--gold); }
.navbar-pill--dark-text .navbar__links a.active::after { background: var(--gold); }
.navbar-pill--dark-text.navbar-pill--hero .navbar__signin { color: var(--dark) !important; text-shadow: none; }
.navbar-pill--dark-text.navbar-pill--hero .navbar__signin:hover { color: var(--gold) !important; }
.navbar-pill--dark-text.navbar-pill--hero .navbar__account-link { color: var(--dark) !important; text-shadow: none; }
.navbar-pill--dark-text .navbar__account-name { color: var(--dark) !important; text-shadow: none; }
.navbar-pill--dark-text .navbar__account-arrow {
  color: var(--dark) !important;
  border-color: rgba(26, 58, 42, 0.22) !important;
  background: rgba(26, 58, 42, 0.04) !important;
}
.navbar-pill--dark-text .navbar__account-arrow[aria-expanded="true"] {
  border-color: rgba(201, 169, 110, 0.55) !important;
  background: rgba(201, 169, 110, 0.14) !important;
}
.navbar-pill--dark-text .navbar__avatar { border-color: rgba(26, 58, 42, 0.25); }
.navbar-pill--dark-text .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.navbar-pill--dark-text .navbar__signin,
.navbar-pill--dark-text .btn-primary { color: var(--dark); }
.navbar-pill--dark-text .btn-primary {
  background: transparent;
  border: 1px solid var(--dark);
  color: var(--dark);
}
.navbar-pill--dark-text .btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.navbar-pill--dark-text .navbar__inner { text-shadow: none; }
.navbar-pill--dark-text .navbar__toggle span { background: var(--dark); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.2rem 2.5rem;
  position: relative;
  z-index: 2;
}
.navbar__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0.01em;
}
.navbar__logo span {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  font-family: var(--font-sans);
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  list-style: none;
}
.navbar__links a {
  font-size: 0.81rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color var(--transition);
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--primary);
  transition: width 0.4s var(--ease);
}
.navbar__links a:hover { color: var(--primary); }
.navbar__links a:hover::after { width: 100%; }
.navbar__links a.active { color: var(--primary); }
.navbar__links a.active::after { width: 100%; }
.navbar__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar__cta .btn { padding: 0.55rem 1.5rem; font-size: 0.75rem; }
.navbar__account-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}
.navbar__avatar {
  width: 28px; height: 28px; border-radius: 50%;
  object-fit: cover; border: 1.5px solid var(--gray-200);
}
.navbar__avatar-placeholder {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary); display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 0.7rem; color: #fff; font-weight: 700;
}
.navbar__signin {
  font-size: 0.81rem; color: var(--gray-500);
  text-decoration: none; font-weight: 600;
  white-space: nowrap; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.navbar-pill--hero .navbar__account-link,
.navbar-pill--hero .navbar__signin {
  color: rgba(255,255,255,0.7);
}
.navbar-pill--hero .navbar__account-link:hover,
.navbar-pill--hero .navbar__signin:hover {
  color: #fff;
}

/* Hamburger */
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar__toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--primary);
  margin: 5px 0;
  transition: all var(--transition);
}

/* Desktop nav links — visible on desktop, hidden on mobile */
.navbar__links--desktop { display: flex; }
@media (max-width: 768px) {
  .navbar__links--desktop { display: none; }
  .navbar__toggle { display: block; }
  .navbar__cta { display: none; }
  .navbar-pill { position: relative; overflow: visible; }
  .navbar-pill__wrapper { overflow: visible; }
}
/* Mobile dropdown — hidden on desktop */
@media (min-width: 769px) {
  .navbar__links--mobile { display: none !important; }
}

/* ─── Hero — Immersive Full-Image ────────────────────────── */
.hero--immersive {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
  padding: 0;
}
.hero--immersive .hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/page-photos/hero-page.jpg');
  background-size: cover;
  background-position: center 45%;
  opacity: 1;
  transform: scale(1.02);
  transition: transform 8s ease-out;
}
.hero--immersive:hover .hero__bg {
  transform: scale(1.06);
}
.hero--immersive::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0) 30%,
      rgba(0,0,0,0) 50%,
      rgba(21,46,26,0.25) 70%,
      rgba(21,46,26,0.55) 85%,
      rgba(21,46,26,0.85) 95%,
      #152E1A 100%
    );
  z-index: 1;
}
.hero--immersive::after {
  content: none;
  opacity: 0.3;
}
.hero__overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem 4rem;
  max-width: 700px;
}
/* Staggered hero animations */
.hero__eyebrow-text {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(0, 0, 0, 0.3),
    0 6px 24px rgba(0, 0, 0, 0.35);
}
.hero__philosophy-italic {
  font-style: italic;
  font-weight: 200;
}
.animate-hero-1 {
  animation: heroFadeUp 0.8s ease 0.2s both;
}
.animate-hero-2 {
  animation: heroFadeUp 0.8s ease 0.5s both;
}
.animate-hero-3 {
  animation: heroFadeUp 0.8s ease 0.8s both;
}
@keyframes heroFadeUp {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero__philosophy {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 4px 40px rgba(0,0,0,0.3), 0 0 4px rgba(0,0,0,0.8);
}
.hero__philosophy-sub {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5), 0 0 3px rgba(0,0,0,0.7);
}

/* ─── Home gradient wrapper (green → cream) ──────────────── */
.home-gradient-wrap {
  background: linear-gradient(
    to bottom,
    #152E1A 0px,
    #1A321E 30px,
    #1E3A22 60px,
    #213E26 90px,
    #26442B 120px,
    #2C4C31 150px,
    #325437 180px,
    #385C3D 210px,
    #3E6443 240px,
    #456C49 270px,
    #4C744F 300px,
    #547C56 330px,
    #5D845D 360px,
    #668C64 390px,
    #6F946B 420px,
    #789C73 450px,
    #82A47B 480px,
    #8CAC83 510px,
    #96B48C 540px,
    #A0BC95 570px,
    #AAC49E 600px,
    #B4CCA7 630px,
    #BED4B1 660px,
    #C8DCBB 690px,
    #D0E0C4 720px,
    #D8E4CC 750px,
    #DFE8D4 780px,
    #E4ECDB 810px,
    #E9EFE1 840px,
    #EDF2E6 870px,
    #F2F4EC 900px,
    #F7F7F2 930px,
    #FBF9F5 1100px
  );
}

/* ─── Boards Showcase Section — subtle bg for glass contrast ── */
.boards-showcase-section {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(30, 66, 37, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(200, 169, 81, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(30, 66, 37, 0.03) 0%, transparent 80%);
}

/* ─── Tagline Section ────────────────────────────────────── */
.tagline-section {
  padding: 5rem 0 4rem;
  text-align: center;
  background: transparent;
}
.tagline-section__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.7s ease 0.1s both;
}
.tagline-section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.8s ease 0.25s both;
  line-height: 1.1;
}
.tagline-section__title em {
  color: rgba(255,255,255,0.75);
  font-style: italic;
  font-weight: 300;
}
.tagline-section__subtitle {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.7;
  animation: fadeUp 0.8s ease 0.4s both;
}
.tagline-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.55s both;
}

/* Legacy hero support (other pages) */
.hero:not(.hero--immersive) {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--primary-dark);
  padding: 2.5rem 0 0;
}
.hero:not(.hero--immersive) .hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.4;
  transform: scale(1.03);
}
.hero:not(.hero--immersive)::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30,66,37,0.15) 0%, rgba(30,66,37,0) 30%, rgba(30,66,37,0.65) 65%, rgba(26,26,26,0.92) 100%);
  z-index: 1;
}
.hero:not(.hero--immersive)::after {
  content: none;
  opacity: 0.35;
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 2.5rem 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.8rem;
  max-width: 700px;
  animation: fadeUp 0.8s ease 0.25s both;
  line-height: 1.05;
}
.hero__title em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 300;
}
.hero__subtitle {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  max-width: 460px;
  font-weight: 400;
  line-height: 1.7;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.55s both;
}

@media (max-width: 768px) {
  .hero--immersive { height: 100vh; min-height: 500px; }
  .hero__overlay { padding: 0 1.5rem 3rem; }
  .hero__philosophy { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .hero__philosophy-sub { font-size: 0.82rem; }
  .tagline-section { padding: 3rem 0 2.5rem; }
  .tagline-section__title { font-size: clamp(1.5rem, 5vw, 2rem); }
  /* legacy hero mobile */
  .hero:not(.hero--immersive) { min-height: auto; padding: 1.8rem 0 0; }
  .hero__content { padding: 0 1.5rem 1.5rem; }
  .hero__eyebrow { margin-bottom: 0.8rem; }
  .hero__title { font-size: clamp(1.6rem, 5vw, 2.2rem); margin-bottom: 0.8rem; }
  .hero__subtitle { margin-bottom: 1.2rem; font-size: 0.88rem; }
}

/* ─── Section headers ────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header--left {
  text-align: left;
}
.section-header--left .divider {
  margin-left: 0;
}
.section-header__eyebrow {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.section-header__title { color: var(--dark); }
.section-header__subtitle {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}
.section-header--left .section-header__subtitle {
  margin-left: 0;
}
.divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem auto 0;
  animation: revealLine 0.8s ease 0.3s both;
}

/* ─── Editorial Section Divider (Stitch-style numbered) ─── */
.editorial-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
}
.editorial-divider__number {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.editorial-divider__line {
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.editorial-divider__label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ─── Experience Section — Artisan Graze inspired ────────── */
.experience-section {
  padding: 5rem 2rem;
}
.experience-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.experience-section__photo-wrap {
  position: relative;
}
.experience-section__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 999px 999px 0 0;
}
.experience-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.experience-section__photo:hover img {
  transform: scale(1.05);
}
.experience-section__quote {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 260px;
  background: var(--surface, #FBF9F5);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.experience-section__quote-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--dark, #1a1a1a);
  margin-bottom: 0.8rem;
}
.experience-section__quote-attr {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.4);
}
.experience-section__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.experience-section__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold, #C8A951);
}
.experience-section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark, #1a1a1a);
  letter-spacing: -0.02em;
}
.experience-section__title-italic {
  font-style: italic;
  font-weight: 300;
}
.experience-section__desc {
  font-size: 1rem;
  color: rgba(26,26,26,0.65);
  line-height: 1.8;
  font-weight: 300;
}
.experience-section__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 1rem;
}
.experience-section__features h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark, #1a1a1a);
  margin-bottom: 0.5rem;
}
.experience-section__features p {
  font-size: 0.85rem;
  color: rgba(26,26,26,0.5);
  line-height: 1.6;
}
.experience-section__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

@media (max-width: 768px) {
  .experience-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .experience-section__quote { position: relative; bottom: auto; right: auto; width: 100%; margin-top: 1.5rem; }
  .about-strip__visual { min-height: 200px; }
}

/* ─── Product Cards ──────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
/* Noise texture on product cards */
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-noise);
  background-size: 200px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
/* Shine sweep on product card hover */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-shine);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
  transition: opacity 0.3s ease;
}
.product-card:hover::after {
  opacity: 1;
  animation: glassShine 1.2s ease forwards;
}
.product-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
/* Fallback */
@supports not (backdrop-filter: blur(1px)) {
  .product-card {
    background: rgba(255, 255, 255, 0.88);
  }
}
.product-card__img {
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, var(--primary-pale) 0%, var(--surface-warm) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-card__img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.8s var(--ease);
}
.product-card:hover .product-card__img img { transform: scale(1.04); }
.product-card__img--placeholder {
  font-size: 2.5rem;
  color: var(--gray-300);
  opacity: 0.5;
}
.product-card__body { padding: 1.6rem 1.4rem; flex: 1; position: relative; z-index: 3; }
.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.product-card__desc {
  font-size: 0.84rem;
  color: #1A1A1A;
  margin-bottom: 1.2rem;
  line-height: 1.7;
  font-weight: 400;
}
.product-card__price {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold);
  font-family: var(--font-serif);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.product-card__price sup {
  font-size: 0.65rem;
  font-weight: 300;
  vertical-align: super;
}
.product-card__price-note {
  font-size: 0.7rem;
  color: var(--gray-500);
  display: block;
  margin-top: 3px;
  font-family: var(--font-sans);
  font-weight: 500;
}
.product-card__badge {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 0.6rem;
}
.product-card__badge--popular {
  color: var(--gold-dark);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.product-card__footer {
  padding: 0 1.4rem 1.6rem;
  position: relative;
  z-index: 3;
}

/* ── Signature Grid — 3 columns: side / Most Loved / side ── */
.signature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
/* Hero card in signature grid — min-height auto to match siblings */
.signature-grid .product-card--hero {
  min-height: auto;
}
@media (max-width: 900px) {
  .signature-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 420px; }
}

/* ── Most Loved Hero Card (center of signature grid) ────── */
.product-card--hero {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 2.2), box-shadow 0.5s ease;
}
/* Noise on hero card */
.product-card--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-noise);
  background-size: 200px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
/* Shine sweep on hero card hover */
.product-card--hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-shine);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
  transition: opacity 0.3s ease;
}
.product-card--hero:hover::after {
  opacity: 1;
  animation: glassShine 1.2s ease forwards;
}
.product-card--hero:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.22),
    0 0 30px rgba(0, 0, 0, 0.1),
    inset 2px 2px 1px 0 rgba(255, 255, 255, 0.4),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.25);
}
.product-card--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grain);
  background-size: 200px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}
.product-card--hero:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card--hero__img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.product-card--hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.product-card--hero__inner {
  position: relative;
  z-index: 3;
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.product-card--hero__tag {
  display: inline-block;
  background: rgba(200, 169, 81, 0.15);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}
.product-card--hero__name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: #000;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.product-card--hero__desc {
  color: #1A1A1A;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.product-card--hero__sizes {
  margin-bottom: 1rem;
}
.product-card--hero__size-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
  font-weight: 300;
  color: #1A1A1A;
}
.product-card--hero__size-price {
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-serif);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.product-card--hero__price {
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.product-card--hero__price sup {
  font-size: 0.55em;
  font-weight: 300;
  vertical-align: super;
}

/* ── Collection Grid — for remaining boards ────────────── */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.collection-card {
  background: var(--surface-card);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s ease;
}
.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.collection-card__img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--primary-pale) 0%, var(--surface-warm) 100%);
  overflow: hidden;
}
.collection-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.collection-card:hover .collection-card__img img { transform: scale(1.04); }
.collection-card__img--placeholder {
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-300); opacity: 0.5;
}
.collection-card__body {
  padding: 1.5rem;
}
.collection-card__badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.collection-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.collection-card__desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.collection-card__price {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--primary);
  font-family: var(--font-serif);
}
.collection-card__price sup {
  font-size: 0.65rem;
  font-weight: 300;
  vertical-align: super;
}
.collection-card__price-note {
  font-size: 0.7rem;
  color: var(--gray-500);
  font-family: var(--font-sans);
  font-weight: 500;
}

/* ── Featured product card — spans full width ──────────── */
.product-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  position: relative;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.product-featured:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
/* Noise texture overlay */
.product-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-noise);
  background-size: 200px;
  opacity: 0.025;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
/* Shine sweep on hover */
.product-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
  transition: opacity 0.5s ease;
}
.product-featured:hover::after {
  opacity: 1;
  animation: glassShine 1.2s ease forwards;
}
.product-featured .product-card__img {
  aspect-ratio: auto;
  min-height: 400px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.product-featured .product-card__body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.product-featured .product-card__badge {
  color: var(--gold);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.product-featured .product-card__name {
  color: #000;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 0.8rem;
}
.product-featured .product-card__desc {
  color: #1A1A1A;
  font-size: 0.92rem;
  margin-bottom: 1.8rem;
  max-width: 360px;
}
.product-featured .product-card__price {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.product-featured .product-card__footer {
  padding: 0;
  position: relative;
  z-index: 2;
}
.product-featured .btn {
  color: var(--dark);
  border-color: var(--dark);
}
.product-featured .btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}
@media (max-width: 768px) {
  .product-featured { grid-template-columns: 1fr; }
  .product-featured .product-card__img { min-height: 260px; }
  .product-featured .product-card__body { padding: 2.5rem 2rem; }
}

/* ── Editorial Board Card (alternating layout for menu) ─── */
.editorial-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--gray-100);
  padding: 3rem 0;
  align-items: center;
}
.editorial-board--reverse {
  direction: rtl;
}
.editorial-board--reverse > * {
  direction: ltr;
}
.editorial-board__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(145deg, var(--primary-pale) 0%, var(--surface-warm) 100%);
}
.editorial-board__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.editorial-board:hover .editorial-board__image img {
  transform: scale(1.03);
}
.editorial-board__content {
  padding: 2rem 3rem;
}
.editorial-board__eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
}
.editorial-board__name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.8rem;
}
.editorial-board__desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.editorial-board__price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.editorial-board__price sup {
  font-size: 0.65rem;
  vertical-align: super;
}
.editorial-board__price-note {
  font-size: 0.72rem;
  color: var(--gray-400);
  font-family: var(--font-sans);
  font-weight: 500;
  margin-left: 0.3rem;
}

@media (max-width: 768px) {
  .editorial-board {
    grid-template-columns: 1fr;
    padding: 2rem 0;
  }
  .editorial-board--reverse { direction: ltr; }
  .editorial-board__content { padding: 1.5rem 0; }
}

/* ── Full-Bleed Editorial Collection (Section 03) ───────── */
.editorial-collection {
  padding: 0;
}
.editorial-fullbleed {
  position: relative;
  width: 100%;
}
.editorial-fullbleed__counter {
  display: flex;
  justify-content: flex-end;
  padding: 1.5rem var(--px) 0.5rem;
  max-width: 1920px;
  margin: 0 auto;
}
.editorial-fullbleed__counter-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.editorial-fullbleed__line {
  height: 0.5px;
  background: var(--gold);
  width: 100%;
}
.editorial-fullbleed__row {
  display: flex;
  flex-direction: row;
  min-height: 716px;
}
.editorial-fullbleed__row--reverse {
  flex-direction: row-reverse;
}
.editorial-fullbleed__image {
  width: 50%;
  overflow: hidden;
  background: linear-gradient(145deg, var(--primary-pale) 0%, var(--surface-warm) 100%);
}
.editorial-fullbleed__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 1s var(--ease), filter 0.6s ease;
}
.editorial-fullbleed:hover .editorial-fullbleed__image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.editorial-fullbleed__content {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  background: var(--glass-bg-dark);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
}
.editorial-fullbleed__inner {
  max-width: 420px;
}
.editorial-fullbleed__inner--right {
  text-align: right;
}
.editorial-fullbleed__inner--right .editorial-fullbleed__pricing {
  justify-content: flex-end;
}
.editorial-fullbleed__inner--right .editorial-fullbleed__cta {
  margin-left: auto;
}
.editorial-fullbleed__name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.editorial-fullbleed__desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 2rem;
}
.editorial-fullbleed__pricing {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.editorial-fullbleed__price-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.editorial-fullbleed__price-value {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 200;
  color: var(--primary);
}
.editorial-fullbleed__price-note {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-family: var(--font-sans);
  font-weight: 500;
  display: block;
  width: 100%;
}
.editorial-fullbleed__cta {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.25rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.editorial-fullbleed__cta:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .editorial-fullbleed__row,
  .editorial-fullbleed__row--reverse {
    flex-direction: column;
    min-height: auto;
  }
  .editorial-fullbleed__image,
  .editorial-fullbleed__content {
    width: 100%;
  }
  .editorial-fullbleed__image {
    aspect-ratio: 4/3;
  }
  .editorial-fullbleed__content {
    padding: 2.5rem var(--px);
  }
  .editorial-fullbleed__inner--right {
    text-align: left;
  }
  .editorial-fullbleed__inner--right .editorial-fullbleed__pricing {
    justify-content: flex-start;
  }
  .editorial-fullbleed__inner--right .editorial-fullbleed__cta {
    margin-left: 0;
  }
}

/* ── Not Sure Yet — centered inline at bottom of boards ── */
.not-sure-inline {
  text-align: center;
  padding: 0 2rem 3rem;
  margin-top: -2rem;
}
.not-sure-inline__title {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gray-500);
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* ─── Grazing Table — Editorial Parallax Section ─────────── */
.grazing-editorial {
  position: relative;
  padding: 5rem 0 2rem;
  overflow: hidden;
  background: var(--surface, #FBF9F5);
}
.grazing-editorial__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section label */
.grazing-editorial__label {
  margin-bottom: 3rem;
}
.grazing-editorial__label span {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.4);
}

/* Grid */
.grazing-editorial__grid {
  position: relative;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 1rem;
}

/* ── Text column ─────────────────────────── */
.grazing-editorial__text-col {
  z-index: 20;
}

/* Title — massive editorial type */
.grazing-editorial__title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 3rem;
  color: var(--dark);
}
.grazing-editorial__title-line1 {
  display: block;
  font-weight: 500;
}
.grazing-editorial__title-line2 {
  display: block;
  font-style: italic;
  font-weight: 300;
  margin-left: clamp(3rem, 6vw, 6rem);
}

/* Body text */
.grazing-editorial__body {
  max-width: 22rem;
  margin-bottom: 4rem;
}
.grazing-editorial__desc {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 2.5rem;
}

/* Pricing */
.grazing-editorial__pricing {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 2.5rem;
}
.grazing-editorial__pricing-label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.4);
}
.grazing-editorial__pricing-amount {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 3.75rem);
  color: var(--gold);
  font-weight: 300;
  line-height: 1.1;
}
.grazing-editorial__pricing-amount sup {
  font-size: 0.4em;
  vertical-align: super;
}
.grazing-editorial__pricing-note {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(26, 26, 26, 0.6);
}
.grazing-editorial__pricing-min {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(26, 26, 26, 0.4);
  margin-top: 0.25rem;
}

/* CTA */
.grazing-editorial__cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.5s ease;
}
.grazing-editorial__cta:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

/* Pull quote — desktop */
.grazing-editorial__quote {
  display: none;
  margin-top: 8rem;
  padding-left: 3rem;
}
.grazing-editorial__quote p {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  color: rgba(26, 26, 26, 0.25);
  line-height: 1.35;
  max-width: 16rem;
}

/* ── Imagery column ──────────────────────── */
.grazing-editorial__imagery-col {
  position: relative;
  min-height: 600px;
}

/* Main image — arch top */
.grazing-editorial__main-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 200px 200px 0 0;
  background: #f5f2ed;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.06);
}
.grazing-editorial__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Detail image — overlapping polaroid */
.grazing-editorial__detail-img {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  width: clamp(14rem, 20vw, 20rem);
  aspect-ratio: 1;
  background: #fdfbf7;
  padding: 0.75rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
  z-index: 30;
}
.grazing-editorial__detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f5f2ed;
}

/* Gold badge on detail image */
.grazing-editorial__detail-badge {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.grazing-editorial__detail-badge span {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

/* Decorative line */
.grazing-editorial__deco-line {
  display: none;
  position: absolute;
  top: 50%;
  right: -5%;
  width: 1px;
  height: 16rem;
  background: linear-gradient(to bottom, transparent, rgba(26, 26, 26, 0.1), transparent);
}

/* Mobile pull quote */
.grazing-editorial__quote-mobile {
  margin-top: 5rem;
  text-align: center;
}
.grazing-editorial__quote-mobile p {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(26, 26, 26, 0.25);
}

/* ── Desktop (1024+) ─────────────────────── */
@media (min-width: 1024px) {
  .grazing-editorial__quote { display: block; }
  .grazing-editorial__quote-mobile { display: none; }
  .grazing-editorial__deco-line { display: block; }
  .grazing-editorial__imagery-col { min-height: 800px; }
  .grazing-editorial__detail-img { left: -5rem; }
}

/* ── Mobile ──────────────────────────────── */
@media (max-width: 768px) {
  .grazing-editorial { padding: 5rem 0; }
  .grazing-editorial__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .grazing-editorial__title {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }
  .grazing-editorial__title-line2 {
    margin-left: 2rem;
  }
  .grazing-editorial__imagery-col {
    min-height: 450px;
  }
  .grazing-editorial__main-img {
    position: relative;
    width: 100%;
    border-radius: 120px 120px 0 0;
  }
  .grazing-editorial__detail-img {
    position: absolute;
    bottom: -2rem;
    left: 1rem;
    width: 10rem;
  }
}

.boards-include-notice {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-500);
  font-style: italic;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin: 1rem 0 2rem;
}

/* ─── Booking Form ───────────────────────────────────────── */
.booking-form {
  background: var(--glass-bg-light);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--glass-shadow), inset 0 0 0 1px var(--glass-rim);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}
.booking-form::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--glass-noise); background-size: 200px;
  opacity: 0.03; pointer-events: none; z-index: 1; border-radius: inherit;
}
.booking-form > * { position: relative; z-index: 3; }
@supports not (backdrop-filter: blur(1px)) {
  .booking-form { background: rgba(255, 255, 255, 0.88); }
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.form-group label .req { color: var(--primary); margin-left: 2px; }
.form-control {
  display: block;
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(16px) saturate(var(--glass-saturate));
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06), inset 0 0 0 1px var(--glass-rim);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,66,37,0.06);
}
.form-control::placeholder { color: var(--gray-300); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-hint { font-size: 0.78rem; color: var(--gray-500); margin-top: 0.3rem; }
.form-error {
  background: #fff5f5;
  border: 1px solid #f8b4b4;
  color: #c0392b;
  border-radius: 0;
  padding: 0.8rem 1.1rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
}

/* ─── Confirmation Card ──────────────────────────────────── */
.confirm-card {
  background: var(--surface-card);
  padding: 3.5rem;
  box-shadow: none;
  text-align: center;
  border: 1px solid var(--gray-100);
}
.confirm-card__icon { font-size: 3rem; margin-bottom: 1.2rem; }
.confirm-card h2 { color: var(--primary); margin-bottom: 0.8rem; }
.confirm-card p { color: var(--gray-500); }
.confirm-card__details {
  background: var(--surface-warm);
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: left;
  border: 1px solid var(--gray-200);
}
.confirm-card__details dl { display: grid; grid-template-columns: 1fr 1.5fr; gap: 0.5rem 1rem; }
.confirm-card__details dt { font-weight: 700; font-size: 0.78rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; }
.confirm-card__details dd { color: var(--dark); }

/* ─── Admin ──────────────────────────────────────────────── */
.admin-layout { display: flex; height: 100vh; overflow: hidden; }
.admin-sidebar {
  width: 240px;
  background: var(--dark);
  color: var(--white);
  padding: 2rem 1.5rem;
  flex-shrink: 0;
  position: relative;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar__logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--sand);
  margin-bottom: 0.4rem;
}
.admin-sidebar__sub {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2rem;
}
.admin-nav { list-style: none; }
.admin-nav li { margin-bottom: 0.3rem; }
.admin-nav a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(30,66,37,0.2);
  color: var(--white);
}
.admin-main { flex: 1; background: var(--surface); padding: 2rem; overflow-y: auto; overflow-x: auto; }
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.admin-header h1 { font-size: 1.6rem; color: var(--dark); }
.status-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.status-New       { background: #dbeafe; color: #1e40af; }
.status-Contacted { background: #fef3c7; color: #92400e; }
.status-Confirmed { background: #d1fae5; color: #065f46; }
.status-Completed { background: #e5e7eb; color: #374151; }
.status-Cancelled { background: #fee2e2; color: #991b1b; }

.inquiry-table { width: 100%; border-collapse: collapse; background: var(--surface-card); overflow: hidden; box-shadow: var(--shadow); }
.inquiry-table th { background: var(--dark); color: var(--white); padding: 0.9rem 1rem; text-align: left; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.inquiry-table td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--gray-100); font-size: 0.88rem; vertical-align: middle; }
.inquiry-table tr:last-child td { border-bottom: none; }
.inquiry-table tr:hover td { background: var(--surface-warm); cursor: pointer; }
.inquiry-table a { color: var(--primary); font-weight: 600; }
.inquiry-table a:hover { color: var(--primary-dark); }

.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.filter-tab {
  padding: 0.4rem 1rem;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  color: var(--gray-500);
  background: var(--surface-card);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.filter-tab__count {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 1px 7px;
  font-size: 0.7rem;
  margin-left: 4px;
}
.filter-tab:not(.active) .filter-tab__count {
  background: var(--gray-100);
  color: var(--gray-500);
}

.detail-card {
  background: var(--surface-card);
  border-radius: 0;
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  border: 1px solid var(--gray-100);
}
.detail-card h3 { font-size: 1rem; margin-bottom: 1.2rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-sans); font-weight: 700; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.detail-item label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500); font-weight: 700; display: block; margin-bottom: 3px; }
.detail-item span { font-size: 0.95rem; color: var(--dark); }

/* Admin login */
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
}
.admin-login-box {
  background: var(--surface-card);
  padding: 3rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 1px solid var(--gray-200);
}
.admin-login-box h1 { font-size: 1.8rem; color: var(--primary); margin-bottom: 0.3rem; }
.admin-login-box p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 1.8rem; }

/* ─── Gallery Page — Redesigned ──────────────────────────── */
.gallery-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: linear-gradient(180deg,
    #152E1A 0%,
    #162D1B 3%,
    #1A321E 6%,
    #1E3A22 9%,
    #213E26 12%,
    #26442B 15%,
    #2C4C31 18%,
    #325437 21%,
    #385C3D 24%,
    #3E6443 27%,
    #456C49 30%,
    #4C744F 33%,
    #547C56 36%,
    #5D845D 39%,
    #668C64 42%,
    #6F946B 45%,
    #789C73 48%,
    #82A47B 51%,
    #8CAC83 54%,
    #96B48C 57%,
    #A0BC95 60%,
    #AAC49E 63%,
    #B4CCA7 66%,
    #BED4B1 69%,
    #C8DCBB 72%,
    #D0E0C4 75%,
    #D8E4CC 78%,
    #DFE8D4 81%,
    #E4ECDB 84%,
    #E9EFE1 87%,
    #EDF2E6 90%,
    #F2F4EC 93%,
    #F7F7F2 96%,
    #FBF9F5 100%
  );
}

/* Animated mesh gradient background */
.gallery-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(30,66,37,0.25), transparent),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(200,169,81,0.15), transparent),
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(30,66,37,0.12), transparent),
    var(--primary-dark);
  animation: galleryBgShift 20s ease-in-out infinite alternate;
}
@keyframes galleryBgShift {
  0%   { background-position: 0% 0%, 100% 0%, 50% 100%; }
  50%  { background-position: 30% 20%, 70% 40%, 40% 60%; }
  100% { background-position: 10% 50%, 90% 10%, 60% 80%; }
}

/* Gallery carousel — mobile stack */
@media (max-width: 768px) {
  .gallery-page section > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
}

/* Gallery Instagram CTA at bottom */
.gallery-insta {
  text-align: center;
  padding: 2.5rem 2rem 4rem;
  position: relative;
  z-index: 10;
}
.gallery-insta__text {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a1a1a !important;
  text-shadow: none;
}
.gallery-insta__link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.gallery-insta__link:hover { opacity: 0.7; }

/* Gallery CTA band override for dark page */
.gallery-page .cta-band {
  background: rgba(200, 169, 81, 0.12);
  border-top: 1px solid rgba(200,169,81,0.15);
}

/* ─── Old Gallery Grid (kept for reference/mobile fallback) ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--surface-warm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--gray-500);
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0, 0, 0.2, 1);
}
.gallery-item--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item--visible:hover { opacity: 0.88; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery-item--visible:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .gallery-item:nth-child(5) { grid-column: span 1; aspect-ratio: 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
}

/* ─── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}
.testimonial-card {
  background: var(--glass-bg-light);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  padding: 2.5rem;
  box-shadow: var(--glass-shadow), inset 0 0 0 1px var(--glass-rim);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: transform 0.5s var(--ease), box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
}
/* Noise texture */
.testimonial-card > .testimonial-card__noise {
  position: absolute; inset: 0;
  background: var(--glass-noise); background-size: 200px;
  opacity: 0.03; pointer-events: none; z-index: 1; border-radius: inherit;
}
/* Quote mark (::before is used for noise in .glass, so use a different approach) */
.testimonial-card .testimonial-card__quote-mark {
  font-family: var(--font-serif); font-size: 5rem;
  color: var(--primary-pale); position: absolute;
  top: 0.5rem; left: 1.5rem; line-height: 1; pointer-events: none; z-index: 2;
}
/* Shine sweep on hover */
.testimonial-card::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--glass-shine);
  opacity: 0; pointer-events: none; z-index: 2;
  border-radius: inherit; transition: opacity 0.3s ease;
}
.testimonial-card:hover::after {
  opacity: 1;
  animation: glassShine 1.2s ease forwards;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
@supports not (backdrop-filter: blur(1px)) {
  .testimonial-card { background: rgba(255, 255, 255, 0.88); }
}
.testimonial-card__stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card__text {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
  position: relative;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: 0.68rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ── Featured testimonial (single large quote) ─────────── */
.testimonial-featured {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem 0;
}
.testimonial-featured__mark {
  font-family: var(--font-serif);
  font-size: clamp(7rem, 10vw, 12rem);
  color: var(--primary-pale);
  line-height: 0.7;
  font-weight: 300;
  user-select: none;
}
.testimonial-featured__content {
  max-width: 520px;
}
.testimonial-featured__text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.testimonial-featured__name {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}
.testimonial-featured__stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
}
@media (max-width: 768px) {
  .testimonial-featured { grid-template-columns: 1fr; gap: 0; }
  .testimonial-featured__mark { font-size: 5rem; }
}

/* ─── Contact ────────────────────────────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.contact-item__icon {
  width: 42px; height: 42px;
  background: var(--primary-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid var(--gray-200);
  color: var(--primary);
}
.contact-item__text a { color: var(--primary); font-weight: 600; }
.contact-item__text a:hover { color: var(--primary-dark); }
.contact-item__label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.18em; color: #1a1a1a; font-weight: 700; margin-bottom: 3px; }
.contact-item__text span { color: #1a1a1a; }

/* ─── Contact Grid ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Layered cream text-shadow — 10 layers of depth */
.contact-text-shadow {
  color: #1a1a1a !important;
  text-shadow: none !important;
}

/* ── Glass-card contact form ─────────────────────────────�� */
.contact-form-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  /* Forest-tinted diffuse ambient — no dark oval contact line on cream.
     The old --glass-shadow (rgba(0,0,0,0.12)) was stamping a black halo
     at the bottom of each card where it met the cream page. */
  box-shadow:
    0 4px 32px rgba(26,58,42,0.035),
    0 1px 4px rgba(26,58,42,0.02),
    inset 0 0 0 1px var(--glass-rim);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--glass-noise);
  background-size: 200px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.contact-form-card > * { position: relative; z-index: 3; }
@supports not (backdrop-filter: blur(1px)) {
  .contact-form-card {
    background: rgba(251, 249, 245, 0.9);
  }
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) {
  .contact-form__row { grid-template-columns: 1fr; }
}
.contact-form__field { display: flex; flex-direction: column; gap: 0.35rem; }
.contact-form__field label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1a1a1a;
}
.contact-form__field input,
.contact-form__field textarea {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: #1a1a1a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  resize: vertical;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: var(--primary, #152E1A);
  box-shadow: 0 0 0 3px rgba(21,46,26,0.1);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(0,0,0,0.3);
}
.contact-form__instagram {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.88rem;
  color: #1a1a1a;
}
.contact-form__instagram a {
  color: var(--gold, #C8A951);
  font-weight: 600;
  text-decoration: none;
}
.contact-form__instagram a:hover { opacity: 0.7; }
.contact-form__info-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.contact-form__info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(0,0,0,0.5);
}
.contact-form-success {
  text-align: center;
  padding: 2rem 1rem;
}
.contact-form-success h3 {
  margin: 1rem 0 0.5rem;
  color: #1a1a1a;
}
.contact-form-success p {
  color: rgba(0,0,0,0.6);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: linear-gradient(180deg,
    #FBF9F5 0%,
    #F8F7F2 2.8%,
    #F5F3EE 5.6%,
    #F1F0EA 8.3%,
    #EBE9E2 11.1%,
    #E5E4DC 13.9%,
    #DFE0D6 16.7%,
    #D8DBD0 19.4%,
    #D0D6CA 22.2%,
    #C8D0C2 25%,
    #BFCBB8 27.8%,
    #B4C3AD 30.6%,
    #A8BAA0 33.3%,
    #9CB194 36.1%,
    #8EA88A 38.9%,
    #829F7F 41.7%,
    #749574 44.4%,
    #688A67 47.2%,
    #5C7F5A 50%,
    #52754F 52.8%,
    #486B46 55.6%,
    #3F613E 58.3%,
    #375838 61.1%,
    #304F31 63.9%,
    #2A472C 66.7%,
    #254027 69.4%,
    #203A23 72.2%,
    #1D3620 75%,
    #1A321E 77.8%,
    #183019 80.6%,
    #162D1B 83.3%,
    #152C1A 86.1%,
    #152B1A 88.9%,
    #152A1A 91.7%,
    #152E1A 94.4%,
    #152E1A 100%
  );
  color: rgba(255,255,255,0.5);
  padding: 14rem 0 2rem;
  position: relative;
}
footer::before {
  content: none;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
  position: relative;
}
.footer__brand { font-family: var(--font-serif); }
.footer__brand-name {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.footer__brand-tag {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
}
.footer__brand p {
  font-size: 1rem;
  max-width: 380px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}
.footer__socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer__socials a {
  color: rgba(255,255,255,0.35);
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
}
.footer__socials a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}
.footer__socials a svg {
  width: 22px;
  height: 22px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  position: relative;
}
.footer__links a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.footer__links a:hover {
  color: var(--gold);
}
.footer__bottom {
  max-width: var(--max-w);
  margin: 4rem auto 0;
  padding: 2rem 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  position: relative;
}
.footer__ig a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer__ig a:hover { color: var(--gold-light); }

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { align-items: flex-start; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ─── Page hero (inner pages) ────────────────────────────── */
/* ── Page Hero (used by Gallery, Contact, etc.) ──────────────── */
.page-hero {
  background: var(--primary-dark);
  color: var(--white);
  padding: 7rem 0 3.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grain);
  background-size: 200px;
  opacity: 0.4;
  pointer-events: none;
}
.page-hero::after {
  content: none;
}
.page-hero .container {
  position: relative;
  max-width: var(--max-w);
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.6rem;
  font-weight: 300;
  animation: fadeUp 0.6s ease both;
}
.page-hero p {
  color: rgba(255,255,255,0.4);
  font-size: 0.95rem;
  animation: fadeUp 0.6s ease 0.15s both;
  font-weight: 400;
  max-width: 400px;
}

/* ── Menu Hero — unified section: green→cream gradient, 100vh ──── */
.menu-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background: linear-gradient(
    180deg,
    var(--primary-dark) 0%,
    rgba(30, 66, 37, 0.85) 20%,
    rgba(30, 66, 37, 0.5) 40%,
    rgba(251, 249, 245, 0.35) 60%,
    var(--surface) 100%
  );
  /* top padding = navbar height (~70px) + breathing room */
  padding: 5rem 0 2rem;
}
.menu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grain);
  background-size: 200px;
  opacity: 0.3;
  pointer-events: none;
}

/* ── menu-hero__top — heading (left) + context (right) ────────── */
.menu-hero__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  position: relative;
  z-index: 2;
  align-items: center;
}

/* ── menu-hero__heading — "Menu & Pricing" title block ────────── */
.menu-hero__heading {
  text-align: left;
  animation: fadeUp 0.8s ease both;
  order: 1;
}
.menu-hero__heading h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 0.6rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}
.menu-hero__heading p {
  color: rgba(255,255,255,0.4);
  font-size: 0.95rem;
  font-weight: 400;
  max-width: 360px;
}

/* ── menu-hero__context — description text (right side) ───────── */
.menu-hero__context {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  order: 2;
}
.menu-hero__context-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  max-width: 340px;
  margin-left: auto;
  text-align: right;
  animation: fadeUp 0.8s ease 0.2s both;
}

/* ── menu-hero__tagline — horizontal centered text + gold rule ── */
.menu-hero__tagline {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem var(--px) 0.8rem;
  position: relative;
  z-index: 2;
}
.menu-hero__tagline::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 1.2rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 169, 81, 0.1) 15%,
    rgba(200, 169, 81, 0.55) 50%,
    rgba(200, 169, 81, 0.1) 85%,
    transparent 100%
  );
}
.menu-hero__tagline p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  font-weight: 400;
  text-align: center;
  animation: fadeUp 0.8s ease 0.4s both;
}

/* ── menu-hero__cards — Signature Cards container ─────────────── */
.menu-hero__cards {
  position: relative;
  z-index: 2;
  padding: 0.5rem var(--px) 0;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}
.menu-hero__cards > .signature-grid {
  width: 100%;
}

/* Mobile */
@media (max-width: 900px) {
  .menu-hero { min-height: auto; padding: 5rem 0 2rem; }
  .menu-hero__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .menu-hero__heading { text-align: left; }
  .menu-hero__heading p { margin-left: 0; }
  .menu-hero__context-text { max-width: 100%; text-align: left; margin-left: 0; }
}

/* ─── CTA Band ───────────────────────────────────────────── */
.cta-band {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--glass-shadow), inset 0 0 0 1px var(--glass-rim);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grain);
  background-size: 200px;
  opacity: 0.5;
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.8rem; position: relative; font-weight: 300; font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.45); margin-bottom: 2rem; position: relative; font-weight: 400; }
.cta-band .btn {
  position: relative;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  box-shadow: none;
}
.cta-band .btn:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  box-shadow: none;
}

/* ─── Horizontal rule accent (removed) ────────────────────── */
.gold-rule {
  display: none;
}

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ─── Selection ──────────────────────────────────────────── */
::selection { background: rgba(30,66,37,0.1); color: var(--dark); }

/* ─── Signature Card Overlap-to-Separate Animation ──────── */
/* Signature cards: side cards emerge from under the Most Loved center */
@keyframes sigSideReveal {
  0% {
    transform: translateY(40px) scale(0.9);
    opacity: 0;
  }
  40% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes sigCenterAppear {
  0% {
    transform: scale(1.06);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Center card appears first, side cards emerge from below it */
.signature-grid > *:nth-child(1) {
  animation: sigSideReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}
.signature-grid > *:nth-child(2) {
  animation: sigCenterAppear 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
  z-index: 2;
}
.signature-grid > *:nth-child(3) {
  animation: sigSideReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

/* ─── FAQ Items Glass ───────────────────────────────────── */
.faq-item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: var(--glass-shadow), inset 0 0 0 1px var(--glass-rim);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.faq-item::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--glass-noise); background-size: 200px;
  opacity: 0.03; pointer-events: none; z-index: 1; border-radius: inherit;
}
.faq-item::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--glass-shine);
  opacity: 0; pointer-events: none; z-index: 2;
  border-radius: inherit; transition: opacity 0.3s ease;
}
.faq-item:hover::after {
  opacity: 1;
  animation: glassShine 1.2s ease forwards;
}
.faq-item:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.faq-item > * { position: relative; z-index: 3; }
.faq-item h4,
.faq-item p {
  color: #1a1a1a !important;
  text-shadow: none !important;
}
@supports not (backdrop-filter: blur(1px)) {
  .faq-item { background: rgba(255, 255, 255, 0.88); }
}

/* ─── Page Hero Glass (inner pages) ─────────────────────── */
.page-hero {
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
}

/* ─── Page with gradient (book, login) ──────────────────── */
.page-gradient-wrap {
  background: linear-gradient(
    180deg,
    var(--primary-dark) 0%,
    rgba(30, 66, 37, 0.7) 180px,
    rgba(30, 66, 37, 0.3) 350px,
    var(--surface) 550px
  );
  min-height: 100vh;
}
.page-gradient-wrap .page-hero {
  background: transparent;
}
.page-gradient-wrap .section {
  position: relative;
}

/* ─── Booking Page — editorial glass layout ─────────────── */
.booking-page {
  min-height: 100vh;
  background: var(--surface);
}
.booking-page__hero {
  position: relative;
  padding: 8rem 1.5rem 3rem;
  text-align: center;
  background: linear-gradient(180deg,
    #152E1A 0%, #162D1B 3%, #1A321E 6%, #1E3A22 9%, #213E26 12%,
    #26442B 15%, #2C4C31 18%, #325437 21%, #385C3D 24%, #3E6443 27%,
    #456C49 30%, #4C744F 33%, #547C56 36%, #5D845D 39%, #668C64 42%,
    #6F946B 45%, #789C73 48%, #82A47B 51%, #8CAC83 54%, #96B48C 57%,
    #A0BC95 60%, #AAC49E 63%, #B4CCA7 66%, #BED4B1 69%, #C8DCBB 72%,
    #D0E0C4 75%, #D8E4CC 78%, #DFE8D4 81%, #E4ECDB 84%, #E9EFE1 87%,
    #EDF2E6 90%, #F2F4EC 93%, #F7F7F2 96%, #FBF9F5 100%);
}
.booking-page__hero-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.booking-page__eyebrow {
  display: block; font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.4em; color: var(--gold); margin-bottom: 1rem;
}
.booking-page__title {
  font-family: var(--font-serif); font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400; color: #fff; letter-spacing: -0.02em; margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.booking-page__subtitle {
  font-size: 0.95rem; color: rgba(255,255,255,0.65);
  font-weight: 300; line-height: 1.7; max-width: 500px; margin: 0 auto;
}
.booking-page__body { position: relative; padding: 0 1.5rem 4rem; margin-top: -1rem; }
.booking-page__card {
  max-width: 1200px; margin: 0 auto;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.booking-page__error {
  padding: 1rem 1.5rem; background: #fff3e0;
  border-bottom: 1px solid rgba(192,57,43,0.15);
  color: #c0392b; font-size: 0.88rem; font-weight: 500;
}
.booking-page__layout { display: block; }
.booking-page__form {
  padding: 2.5rem;
}
@media (min-width: 768px) {
  .booking-page__form { padding: 3rem; }
}
.booking-page__section {
  padding-bottom: 2rem; margin-bottom: 2rem;
  border-bottom: 1px solid rgba(26,26,26,0.06);
}
.booking-page__section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.booking-page__section-title {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400;
  color: var(--gold); margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.booking-page__section-desc {
  font-size: 0.85rem; color: rgba(201,168,106,0.6);
  margin-bottom: 1.5rem; font-weight: 300;
}
.booking-page__row {
  display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .booking-page__row { grid-template-columns: 1fr 1fr; }
}
.booking-page__field { margin-bottom: 1rem; }
.booking-page__label {
  display: block; font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--gold); font-weight: 700;
  margin-bottom: 0.5rem; padding-left: 0.25rem;
}
.booking-page__label-note {
  font-weight: 400; text-transform: none; letter-spacing: 0;
  margin-left: 0.3rem; font-size: 0.6rem; color: rgba(201,168,106,0.7);
}
.booking-page__req { color: var(--gold); }
.booking-page__input {
  width: 100%; padding: 0.85rem 1.2rem;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(26,26,26,0.1);
  border-radius: 12px; font-size: 0.88rem;
  font-family: var(--font-sans); color: var(--dark);
  transition: all 0.3s; outline: none;
  box-sizing: border-box;
}
.booking-page__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,106,0.1);
  background: rgba(255,255,255,0.8);
}
.booking-page__input::placeholder { color: rgba(26,26,26,0.3); }
.booking-page__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; cursor: pointer;
}
.booking-page__textarea { min-height: 100px; resize: vertical; }
.booking-page__hint {
  font-size: 0.75rem; color: var(--gold);
  margin-top: 0.4rem; padding-left: 0.25rem;
}
.booking-page__hint--available { color: var(--primary); }
.booking-page__hint--warning { color: #f9a825; }
.booking-page__hint--unavailable { color: #c0392b; font-weight: 600; }
.booking-page__counter {
  font-size: 0.6rem; font-weight: 700; margin-left: 0.5rem; color: var(--gold);
}
.booking-page__counter--full { color: #c0392b; }
.booking-page__fulfillment-toggle {
  display: flex; gap: 0; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(26,26,26,0.1);
}
.booking-page__fulfillment-btn {
  flex: 1; padding: 0.7rem 1rem; font-size: 0.85rem; font-weight: 500;
  border: none; background: rgba(26,26,26,0.03); color: rgba(26,26,26,0.5);
  cursor: pointer; transition: all 0.25s ease;
  font-family: var(--font-sans);
}
.booking-page__fulfillment-btn--active {
  background: var(--primary); color: #fff; font-weight: 600;
}
.booking-page__fulfillment-btn:hover:not(.booking-page__fulfillment-btn--active) {
  background: rgba(26,26,26,0.06);
}
.booking-page__pickup-note {
  padding: 0.75rem 1rem; border-radius: 10px;
  border: 1px solid var(--primary); background: rgba(74,124,89,0.06);
  font-size: 0.82rem; color: var(--dark); line-height: 1.5;
}
.booking-page__delivery-info {
  padding: 0.75rem 1rem; border-radius: 10px;
  border: 1px solid var(--primary); background: rgba(74,124,89,0.06);
  font-size: 0.82rem; margin-top: 0.5rem; color: var(--dark);
}
.booking-page__delivery-info--warning {
  border-color: #f9a825; background: rgba(249,168,37,0.06);
}
.booking-page__chip-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.booking-page__chip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.5rem 1rem; border: 1px solid rgba(26,26,26,0.1);
  border-radius: 999px; background: rgba(255,255,255,0.5);
  font-size: 0.78rem; font-family: var(--font-sans); color: var(--dark);
  cursor: pointer; transition: all 0.25s; white-space: nowrap;
}
.booking-page__chip:hover:not(:disabled) {
  border-color: rgba(26,26,26,0.25); background: rgba(255,255,255,0.8);
}
.booking-page__chip--active {
  background: var(--dark); color: #fff; border-color: var(--dark);
}
.booking-page__chip--active:hover:not(:disabled) {
  background: var(--dark); border-color: var(--dark);
}
.booking-page__chip--premium { border-color: rgba(201,168,106,0.3); }
.booking-page__chip-check { font-size: 0.65rem; font-weight: 700; }
.booking-page__chip-badge {
  font-size: 0.65rem; font-weight: 700; color: var(--gold); margin-left: 0.15rem;
}
.booking-page__chip--active .booking-page__chip-badge { color: rgba(255,255,255,0.7); }
.booking-page__coupon-row { display: flex; gap: 0.75rem; align-items: center; }
.booking-page__coupon-row .booking-page__input { flex: 1; }
.booking-page__coupon-status { font-size: 0.78rem; font-weight: 600; white-space: nowrap; }

/* Inline sticky summary */
.booking-page__summary-inline {
  position: sticky;
  top: 4.5rem;
  z-index: 20;
  margin: 0 -3rem;
  padding: 0.75rem 3rem;
  background: rgba(253,251,247,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,26,26,0.06);
}
@media (max-width: 767px) {
  .booking-page__summary-inline { margin: 0 -2.5rem; padding: 0.75rem 2.5rem; top: 4rem; }
}
.booking-page__summary-inline .booking-page__summary-sticky {
  background: rgba(26,26,26,0.03);
  border: 1px solid rgba(26,26,26,0.06);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.booking-page__summary-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.booking-page__summary-price-big {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.booking-page__summary-eyebrow {
  display: block; font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.3em; color: var(--gold); margin-bottom: 0.75rem;
}
.booking-page__summary-title {
  font-family: var(--font-serif); font-size: 2rem; font-weight: 400;
  color: var(--dark); margin-bottom: 2rem; letter-spacing: -0.01em;
}
.booking-page__summary-rows {
  display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 0.5rem;
}
.booking-page__summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 0.75rem; border-bottom: 1px solid rgba(26,26,26,0.06);
  font-size: 0.85rem; color: var(--dark);
}
.booking-page__summary-row:last-child {
  padding-bottom: 0; border-bottom: none;
}
.booking-page__summary-row--premium { color: var(--gold); }
.booking-page__summary-row--addon { color: rgba(26,26,26,0.5); font-size: 0.82rem; }
.booking-page__summary-premium { color: var(--gold); font-weight: 500; }
.booking-page__summary-note { font-size: 0.75rem; color: rgba(26,26,26,0.4); padding: 0.25rem 0; }
.booking-page__summary-note--warning { color: #c0392b; }
.booking-page__summary-total {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 1.5rem; border-top: 2px solid var(--primary); margin-bottom: 0.5rem;
}
.booking-page__summary-total span:first-child {
  font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.booking-page__summary-price {
  font-family: var(--font-serif); font-size: 2.5rem; font-weight: 400; color: var(--gold);
}
.booking-page__summary-fine { font-size: 0.7rem; color: rgba(26,26,26,0.35); margin-bottom: 2rem; }
.booking-page__summary-empty { padding: 2rem 0; text-align: center; }
.booking-page__summary-empty p { font-size: 0.85rem; color: rgba(26,26,26,0.3); font-style: italic; }
.booking-page__submit {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  width: 100%; padding: 1.1rem 2rem; background: var(--dark); color: #fff;
  border: none; border-radius: 999px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em; font-family: var(--font-sans);
  cursor: pointer; transition: all 0.4s; margin-bottom: 0.75rem;
}
.booking-page__submit:hover:not(:disabled) {
  background: var(--primary); box-shadow: 0 8px 24px rgba(30,66,37,0.25);
}
.booking-page__submit:disabled { opacity: 0.5; cursor: not-allowed; }
.booking-page__submit svg { transition: transform 0.4s; }
.booking-page__submit:hover:not(:disabled) svg { transform: translateX(4px); }
.booking-page__submit-loading { font-style: italic; letter-spacing: 0.1em; }
/* Extra board cards */
.booking-page__extra-board {
  background: rgba(201,168,106,0.04);
  border: 1px dashed rgba(201,168,106,0.25);
  border-radius: 16px;
  padding: 1.5rem !important;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.booking-page__extra-board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.booking-page__extra-board-header .booking-page__section-title {
  margin-bottom: 0;
}
.booking-page__extra-board-remove {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(26,26,26,0.35);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  transition: all 0.25s;
}
.booking-page__extra-board-remove:hover {
  color: #c0392b;
  background: rgba(192,57,43,0.06);
}
.booking-page__add-board {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px dashed var(--gold);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.3s;
}
.booking-page__add-board:hover {
  background: rgba(201,168,106,0.08);
  border-style: solid;
}

.booking-page__submit-note { text-align: center; font-size: 0.7rem; color: rgba(26,26,26,0.35); }

/* ─── Sign In Page — editorial split layout ─────────────── */
.signin-page {
  display: flex;
  min-height: 100vh;
  background: var(--surface);
}

/* Left image panel */
.signin-page__image {
  display: none;
  position: relative;
  width: 50%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .signin-page__image { display: block; }
}
.signin-page__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.signin-page__image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(2px);
}
.signin-page__image-quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
}
.signin-page__quote-text {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-style: italic;
  line-height: 1.3;
  color: #fff;
  max-width: 400px;
  margin-bottom: 1.5rem;
}
.signin-page__quote-line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

/* Right content panel */
.signin-page__content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  background: linear-gradient(
    180deg,
    var(--primary-dark) 0%,
    rgba(30, 66, 37, 0.6) 30%,
    var(--surface) 60%
  );
}
@media (min-width: 1024px) {
  .signin-page__content {
    width: 50%;
    background: var(--surface);
  }
}

.signin-page__card-wrap {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 1;
}

/* Back link */
.signin-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color 0.3s;
}
.signin-page__back:hover { color: #fff; }
.signin-page__back:hover svg { transform: translateX(-3px); }
.signin-page__back svg { transition: transform 0.3s; }
@media (min-width: 1024px) {
  .signin-page__back { color: rgba(26,26,26,0.35); }
  .signin-page__back:hover { color: var(--dark); }
}

/* Card */
.signin-page__card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}
.signin-page__card-accent {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0.3;
}

/* Card header */
.signin-page__card-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.signin-page__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(26,26,26,0.06);
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.signin-page__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.signin-page__subtitle {
  font-size: 0.85rem;
  color: rgba(26,26,26,0.45);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Google button */
.signin-page__google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(26,26,26,0.1);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(26,26,26,0.75);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.signin-page__google-btn:hover {
  background: var(--surface);
  border-color: rgba(26,26,26,0.2);
  color: var(--dark);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Divider */
.signin-page__divider {
  position: relative;
  padding: 1.5rem 0;
}
.signin-page__divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%;
  height: 1px;
  background: rgba(26,26,26,0.06);
}
.signin-page__divider span {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0 1rem;
  background: rgba(255,255,255,0.85);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(26,26,26,0.25);
}

/* Legal text */
.signin-page__legal {
  text-align: center;
  font-size: 0.65rem;
  color: rgba(26,26,26,0.35);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* ─── Scroll Stack (Obsidian Assembly–style) ────────────── */
/* ── ScrollStack (ss) — Obsidian Assembly rolodex ──────────────── */
.ss { position: relative; }

.ss__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 3rem;
  padding: 3rem 5vw;
  overflow: clip;          /* clip sides but cards peek via transforms */
}

/* ── Left & Right text columns ─────────────────────────────────── */
.ss__left, .ss__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 60%;
  z-index: 10;
}
.ss__right { text-align: right; }

.ss__static-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.8;
}

/* Dynamic text — fades in on card change */
.ss__dynamic {
  animation: ssFade 0.45s ease both;
}
@keyframes ssFade {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.ss__desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.ss__price {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.ss__price-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.ss__price-value {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
}
.ss__price-note {
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* ── Counter ────────────────────────────────────────────────────── */
.ss__counter {
  font-family: var(--font-serif);
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.1rem;
}
.ss__counter-cur {
  font-size: 3rem;
  font-weight: 300;
  color: var(--dark);
}
.ss__counter-sep {
  font-size: 2rem;
  color: var(--gray-300);
  margin: 0 0.15rem;
}
.ss__counter-tot {
  font-size: 2rem;
  font-weight: 300;
  color: var(--gray-300);
}

/* ── Center — image stack + overlapping name ────────────────────── */
.ss__center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.ss__name {
  position: absolute;
  bottom: 8%;
  left: -8%;
  z-index: 150;
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  pointer-events: none;
  animation: ssFade 0.45s ease both;
  text-align: left;
  white-space: nowrap;
  text-shadow:
    0 0 6px rgba(251, 249, 245, 1),
    0 0 12px rgba(251, 249, 245, 1),
    0 0 20px rgba(251, 249, 245, 1),
    0 0 30px rgba(251, 249, 245, 1),
    0 0 45px rgba(251, 249, 245, 0.95),
    0 0 60px rgba(251, 249, 245, 0.9),
    0 0 80px rgba(251, 249, 245, 0.8),
    0 0 100px rgba(251, 249, 245, 0.7),
    0 0 130px rgba(251, 249, 245, 0.5),
    0 0 160px rgba(251, 249, 245, 0.35),
    0 0 200px rgba(251, 249, 245, 0.3),
    0 0 250px rgba(251, 249, 245, 0.25),
    0 0 300px rgba(251, 249, 245, 0.2),
    0 0 360px rgba(251, 249, 245, 0.15),
    0 0 420px rgba(251, 249, 245, 0.1);
}
.ss__name-num {
  font-size: 0.55em;
  color: var(--gray-400);
  font-style: normal;
  font-weight: 400;
  margin-right: 0.2em;
}

/* Wheel container — allows cards to peek above & below */
.ss__wheel {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  max-height: 65vh;
  margin: 0 auto;
}
.ss__card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  will-change: transform, opacity;
  /* No CSS transition — driven by scroll for instant response */
  box-shadow:
    0 20px 60px rgba(0,0,0,0.15),
    0 6px 20px rgba(0,0,0,0.08);
}
.ss__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Bottom CTA ─────────────────────────────────────────────────── */
.ss__cta {
  grid-column: 1 / -1;
  text-align: center;
  padding-bottom: 1.5rem;
  z-index: 20;
}

/* ── Hide on mobile, show editorial catalog ─────────────────────── */
.editorial-collection--mobile-only { display: none; }

@media (max-width: 900px) {
  .ss { display: none; }
  .editorial-collection--mobile-only { display: block; }
}
@media (min-width: 901px) and (max-width: 1200px) {
  .ss__sticky {
    grid-template-columns: 200px 1fr 200px;
    gap: 2rem;
    padding: 2rem 3vw;
  }
  .ss__static-text { font-size: 0.72rem; }
  .ss__desc { font-size: 0.88rem; }
  .ss__cards { max-width: 340px; }
}

/* ─── Showstopper Pop-Up Animation ──────────────────────── */
@keyframes showstopperPopUp {
  0% {
    transform: translateY(60px) scale(0.9);
    opacity: 0;
  }
  60% {
    transform: translateY(-8px) scale(1.02);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
/* showstopperPopUp animation now handled by Framer Motion in GrazingTableSection */

/* ─── Mobile Menu — Vertical Animations + Dark Catalog ──── */
@keyframes signatureSlideDown {
  0% {
    transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  /* Mobile: center card first, then sides slide down from under it */
  .signature-grid > *:nth-child(2) {
    animation: sigCenterAppear 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
    z-index: 2;
  }
  .signature-grid > *:nth-child(1) {
    animation: signatureSlideDown 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
  }
  .signature-grid > *:nth-child(3) {
    animation: signatureSlideDown 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
  }

  /* ── Dark Catalog for remaining boards (Timeless style) ── */
  .editorial-collection {
    background: rgba(10, 10, 10, 0.95);
    border-radius: 16px;
    margin: 0 1rem;
    overflow: hidden;
  }

  .editorial-fullbleed {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .editorial-fullbleed:last-child {
    border-bottom: none;
  }

  .editorial-fullbleed__row,
  .editorial-fullbleed__row--reverse {
    flex-direction: row !important;
    min-height: auto;
    align-items: center;
    padding: 1.2rem 1.5rem;
    gap: 1rem;
  }

  .editorial-fullbleed__image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    flex-shrink: 0;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    order: 2;
    background: rgba(255,255,255,0.05);
  }

  .editorial-fullbleed__content {
    width: auto;
    flex: 1;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    order: 1;
  }

  .editorial-fullbleed__inner {
    max-width: none;
  }
  .editorial-fullbleed__inner--right {
    text-align: left;
  }

  .editorial-fullbleed__name {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.3rem;
    line-height: 1.2;
  }

  .editorial-fullbleed__desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.5rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .editorial-fullbleed__pricing {
    margin-bottom: 0;
    gap: 0.4rem;
  }

  .editorial-fullbleed__price-label {
    font-size: 0.55rem;
    color: rgba(200, 169, 81, 0.7);
  }

  .editorial-fullbleed__price-value {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
  }

  .editorial-fullbleed__price-note {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.25);
  }

  .editorial-fullbleed__cta {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE OVERHAUL — 768px breakpoint
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Home: Secondary boards → horizontal scroll carousel ── */
  [data-section="home-boards-grid"] {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0 1rem;
    scrollbar-width: none;
  }
  [data-section="home-boards-grid"]::-webkit-scrollbar { display: none; }
  [data-section="home-boards-grid"] > * {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  /* ── Home: Reviews grid → single column ── */
  .reviews-grid { grid-template-columns: 1fr !important; }

  /* ── Menu: Signature cards → horizontal scroll carousel ── */
  [data-section="signature-cards"] {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0 1rem;
    scrollbar-width: none;
  }
  [data-section="signature-cards"]::-webkit-scrollbar { display: none; }
  [data-section="signature-cards"] > * {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
  /* Most Loved card first on mobile */
  [data-section="signature-cards"] > :nth-child(2) { order: -1; }

  /* ── Grazing Table Section — mobile stack ── */
  .grazing-editorial__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .grazing-editorial__imagery-col { order: -1; }
  .grazing-editorial__detail-img { display: none; }
  .grazing-editorial__deco-line { display: none; }
  .grazing-editorial__title-line1 { font-size: 3rem !important; }
  .grazing-editorial__title-line2 { font-size: 3rem !important; }

  /* ── Booking: Sticky summary → fixed top bar (docks under navbar) ── */
  /* NOTE: `top` is set dynamically via JS (useNavBottom hook in Book.jsx)
     so it can follow the navbar position. Do NOT set top here, and never
     use top: auto !important — that would override the JS-set inline value. */
  [data-section="booking-summary"] {
    position: fixed !important;
    bottom: auto !important;
    left: 12px !important;
    right: 12px !important;
    border-radius: 16px !important;
    z-index: 100 !important;
    padding: 1rem 1.5rem !important;
    box-shadow: 0 8px 32px rgba(26,58,42,0.12) !important;
    max-height: 50vh;
    overflow-y: auto;
    transition: top 0.15s ease-out;
  }

  /* ── Footer — centered mobile layout ── */
  .footer__inner {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .footer__links {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.75rem;
  }
  .footer__socials { justify-content: center; }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* ── Sign-in: Darker navbar gradient on mobile (cream bg) ── */
  .signin-page .navbar-readability-gradient {
    background: linear-gradient(to bottom, rgba(26,58,42,0.6) 0%, transparent 100%) !important;
  }

}
