/* ================================================================
   Bliss on Riverside — V2 Design Enhancements
   New sections, richer interactions, gamification layer
   ================================================================ */

/* ----------------------------------------------------------------
   NEW COLOUR TOKENS
   ---------------------------------------------------------------- */
:root {
  --sunrise:         #E8855A;   /* warm amber/terracotta for food energy */
  --sunrise-light:   rgba(232, 133, 90, 0.10);
  --river-green:     #2D7D6F;
  --river-green-mid: rgba(45, 125, 111, 0.18);
  --deep-night:      #080F12;   /* timeline bg */
  --gold-glow:       rgba(212, 168, 83, 0.18);
  --glass:           rgba(255, 255, 255, 0.10);
  --glass-border:    rgba(255, 255, 255, 0.22);
}


/* ================================================================
   NAV MENU RESET (legacy fallback — all pages now use flat <nav>)
   ================================================================ */
.nav-menu,
.nav-menu li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ================================================================
   EXPERIENCES DROPDOWN NAV
   ================================================================ */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 36px;
}

.nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  padding: 6px 0;
  line-height: 1;
  transition: color 0.2s;
}
.nav-drop-btn:hover,
.nav-dropdown.is-open .nav-drop-btn { color: var(--secondary); }
.site-header.is-scrolled .nav-drop-btn { color: var(--primary); }
.site-header.is-scrolled .nav-drop-btn:hover,
.site-header.is-scrolled .nav-dropdown.is-open .nav-drop-btn { color: var(--secondary); }

.nav-drop-btn::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}
.nav-dropdown.is-open .nav-drop-btn::after {
  transform: rotate(-135deg) translateY(2px);
}

.nav-drop-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 215px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(18,51,64,0.18), 0 2px 8px rgba(18,51,64,0.06);
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 1100;
}
.nav-drop-panel::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #fff;
  box-shadow: -2px -2px 4px rgba(18,51,64,0.06);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown.is-open .nav-drop-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-drop-item {
  display: block;
  padding: 9px 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-drop-item:hover {
  background: rgba(26,74,92,0.06);
  color: var(--secondary);
}

/* ================================================================
   MOBILE NAV OVERLAY — unified across all pages
   (Replaces old .mobile-menu for new pages; mirrors its styles)
   ================================================================ */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  transition: right 0.45s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav-overlay.is-active { right: 0; }

.mob-nav-link {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--bg);
  margin: 12px 0;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
  text-align: center;
}
.mob-nav-link:hover { color: var(--secondary); }

.mob-exp-toggle {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--bg);
  margin: 12px 0 0;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.mob-exp-toggle:hover { color: var(--secondary); }
.mob-exp-toggle.is-open { color: var(--secondary); }

.mob-exp-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid currentColor;
  transition: transform 0.25s ease;
  margin-top: 4px;
}
.mob-exp-toggle.is-open .mob-exp-arrow { transform: rotate(180deg); }

.mob-exp-list {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 6px 0 14px;
}
.mob-exp-list.is-open { display: flex; }

.mob-exp-link {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(248,245,240,0.7);
  padding: 8px 24px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.15s;
  text-align: center;
}
.mob-exp-link:hover { color: var(--secondary); }

.mob-reserve-btn {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--secondary);
  margin: 12px 0;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.mob-reserve-btn:hover { opacity: 0.75; }

@media (min-width: 1024px) {
  .mobile-nav-overlay { display: none !important; }
}

/* ================================================================
   FOOTER — PLAIN TEXT COLOUR FIX
   components.min.css colours .footer-links-list a (links only).
   Address / hours lines are plain <li> text — give them the same
   rgba(255,255,255,0.65) tone so everything reads consistently.
   ================================================================ */
.footer-links-list li,
.footer-links-list li span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  line-height: 1.8;
}


/* ================================================================
   HEADER — SCROLLED STATE FIX FOR INNER PAGES
   Inner pages have a dark hero, so when scrolled we keep the
   cream bg from components.min.css and ensure nav links are readable.
   ================================================================ */

/* Override: ensure nav link text always readable when scrolled
   (components.min.css sets color:var(--primary) on .is-scrolled .nav-link
   which is correct — we just ensure inline styles don't fight it) */
.site-header.is-scrolled .nav-link,
.site-header.is-scrolled .nav-link.active {
  color: var(--primary) !important;
  text-shadow: none;
}

/* Hamburger lines go dark when scrolled (readable on cream bg) */
.site-header.is-scrolled .hamburger-line {
  background-color: var(--primary);
}

/* Logo text goes dark on scroll to match cream header */
.site-header.is-scrolled .logo-text {
  color: var(--primary) !important;
  text-shadow: none;
}
.site-header.is-scrolled .logo-text span {
  color: var(--secondary) !important;
  text-shadow: none;
}

/* Ensure reserve/book button still works when header is scrolled */
.site-header.is-scrolled .btn-primary {
  box-shadow: 0 6px 20px -4px rgba(212,168,83,0.3);
}

/* Active nav link — gold accent on current page */
.site-header:not(.is-scrolled) .nav-link.active {
  color: var(--secondary) !important;
}
.site-header.is-scrolled .nav-link.active {
  color: var(--secondary) !important;
}


/* ================================================================
   FLOATING HERO DISH CARD  (large-screen only)
   ================================================================ */
.hero-float-card {
  position: absolute;
  right: 6%;
  bottom: 22%;
  z-index: 5;
  width: 200px;
  background: rgba(8, 25, 32, 0.52);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 14px 14px 18px;
  animation: heroCardFloat 6s ease-in-out infinite;
  display: none;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
}
@media (min-width: 1200px) { .hero-float-card { display: block; } }

@keyframes heroCardFloat {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(0.5deg); }
}

.hero-float-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  display: block;
}

.hfc-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 4px;
}
.hfc-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: #fff;
  line-height: 1.3;
  display: block;
  margin-bottom: 8px;
}
.hfc-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.hfc-tag {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(212,168,83,0.4);
  background: rgba(212,168,83,0.14);
  color: var(--secondary);
}
.hfc-tag.gf {
  border-color: rgba(45,125,111,0.45);
  background: rgba(45,125,111,0.14);
  color: #7ecec4;
}

/* Second floating card — coffee */
.hero-float-card-2 {
  position: absolute;
  right: 20%;
  top: 20%;
  z-index: 5;
  width: 150px;
  background: rgba(8, 25, 32, 0.48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 10px;
  animation: heroCardFloat2 8s ease-in-out infinite;
  display: none;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
@media (min-width: 1400px) { .hero-float-card-2 { display: block; } }

@keyframes heroCardFloat2 {
  0%, 100% { transform: translateY(0px) rotate(1.2deg); }
  50%       { transform: translateY(-10px) rotate(-0.5deg); }
}
.hero-float-card-2 img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 8px;
}
.hfc2-text {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
  display: block;
}


/* ================================================================
   ANIMATED TRUST TICKER BAR
   ================================================================ */
.trust-ticker {
  background: linear-gradient(90deg, var(--primary) 0%, #0E3344 50%, var(--primary) 100%);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.trust-ticker::before,
.trust-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--primary), transparent);
}
.trust-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--primary), transparent);
}

.trust-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tickerScroll 36s linear infinite;
}

.trust-ticker-track:hover { animation-play-state: paused; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-ticker-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 48px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.92) !important;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Force all child text inside ticker to remain white */
.trust-ticker-item *,
.trust-ticker span,
.trust-ticker p {
  color: rgba(255, 255, 255, 0.92) !important;
}

.tti-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid rgba(212,168,83,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  color: var(--secondary) !important;
}

.tti-body {}
.tti-value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1;
  display: block;
  letter-spacing: -0.01em;
}
.tti-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 2px;
}


/* ================================================================
   INTRO — EDITORIAL SPLIT WITH IMAGE STACK + STATS
   ================================================================ */
.intro-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) {
  .intro-split { grid-template-columns: 5fr 7fr; gap: 100px; }
}

.intro-pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 300;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 1.75rem;
  font-style: italic;
}
.intro-pull-quote em {
  font-style: normal;
  color: var(--secondary);
  font-weight: 600;
}

.stats-quad {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 2.25rem;
}
.stat-cell {
  background: var(--surface);
  padding: 28px 20px;
  text-align: center;
}
.stat-cell:hover { background: #FAFAF8; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}
.stat-number em {
  font-style: italic;
  color: var(--secondary);
}
.stat-desc {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
  display: block;
}

/* Image stack composition */
.img-stack {
  position: relative;
  height: 540px;
}
.img-stack-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 84%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 40px 80px -20px rgba(26,74,92,0.18);
}
.img-stack-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  height: 52%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 30px 60px -15px rgba(26,74,92,0.22);
  border: 5px solid var(--surface);
}
.img-stack-badge {
  position: absolute;
  top: 38%;
  left: 8%;
  background: var(--secondary);
  color: #fff;
  padding: 11px 20px;
  border-radius: 40px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(212,168,83,0.45);
  animation: badgeFloat 5s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-8px) rotate(0.5deg); }
}
.img-stack-badge-2 {
  position: absolute;
  bottom: 18%;
  right: 2%;
  background: var(--river-green);
  color: #fff;
  padding: 9px 16px;
  border-radius: 40px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(45,125,111,0.4);
  animation: badgeFloat 7s ease-in-out infinite reverse;
  white-space: nowrap;
}


/* ================================================================
   SIGNATURE DISHES — GAMIFIED CARD GRID
   ================================================================ */
.dishes-section { background: var(--surface); }

.dishes-intro {
  max-width: 560px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.dishes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .dishes-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  /* Tall featured cards */
  .dish-card:nth-child(1) { grid-row: span 2; }
  .dish-card:nth-child(6) { grid-row: span 2; }
}

.dish-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--bg-dark);
}
@media (min-width: 1024px) {
  .dish-card:nth-child(1),
  .dish-card:nth-child(6) { aspect-ratio: auto; min-height: 500px; }
}

.dish-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.dish-card:hover .dish-img { transform: scale(1.1); }

.dish-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 28, 36, 0.96) 0%,
    rgba(10, 28, 36, 0.45) 45%,
    rgba(10, 28, 36, 0.08) 100%
  );
  transition: background 0.5s ease;
}
.dish-card:hover .dish-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 28, 36, 0.98) 0%,
    rgba(10, 28, 36, 0.65) 55%,
    rgba(10, 28, 36, 0.15) 100%
  );
}

.dish-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 26px;
}

.dish-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.dish-tag {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(212,168,83,0.18);
  color: var(--secondary);
  border: 1px solid rgba(212,168,83,0.35);
}
.dish-tag.gf {
  background: rgba(45,125,111,0.18);
  color: #7ecec4;
  border-color: rgba(45,125,111,0.35);
}
.dish-tag.vg {
  background: rgba(45,125,111,0.18);
  color: #7ecec4;
  border-color: rgba(45,125,111,0.35);
}
.dish-tag.hot {
  background: rgba(232,133,90,0.18);
  color: #f4a87a;
  border-color: rgba(232,133,90,0.35);
}

.dish-name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 8px;
}

.dish-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s cubic-bezier(0.16,1,0.3,1),
              opacity 0.45s ease,
              margin-top 0.4s ease;
}
.dish-card:hover .dish-desc {
  max-height: 90px;
  opacity: 1;
  margin-top: 10px;
}

.dish-unlock-hint {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.4s ease;
}
.dish-unlock-hint::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}
.dish-card:hover .dish-unlock-hint { opacity: 0; }

.dishes-cta {
  text-align: center;
  margin-top: 3rem;
}


/* ================================================================
   CHOOSE YOUR VIBE — ENHANCED WITH NUMBERED TABS + PROGRESS
   ================================================================ */
.vibe-tabs-v2 {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.vibe-tab-v2 {
  background: transparent;
  border: 1px solid var(--border);
  padding: 13px 28px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vibe-tab-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--secondary);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.vibe-tab-v2.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 10px 24px -6px rgba(26,74,92,0.22);
}
.vibe-tab-v2.is-active .vibe-tab-num {
  color: var(--secondary);
  opacity: 1;
}

/* Progress dots */
.vibe-progress {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-bottom: 2.5rem;
}
.vibe-dot {
  height: 3px;
  border-radius: 2px;
  background: var(--border);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  width: 22px;
}
.vibe-dot.active {
  background: var(--secondary);
  width: 40px;
  box-shadow: 0 0 8px rgba(212,168,83,0.5);
}


/* ================================================================
   THE PERFECT MORNING — 4-STEP DARK TIMELINE
   ================================================================ */
.morning-timeline {
  background: var(--deep-night);
  padding: 110px 0;
  overflow: hidden;
  position: relative;
}
.morning-timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 40%, rgba(212,168,83,0.07) 0%, transparent 100%),
    radial-gradient(ellipse 50% 60% at 90% 70%, rgba(45,125,111,0.08) 0%, transparent 100%);
  pointer-events: none;
}

.mt-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}
.mt-header .badge-rotated { color: var(--secondary); }
.mt-header h2 { color: #fff; }
.mt-header p {
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin: 1.5rem auto 0;
}

.timeline-steps {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .timeline-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .timeline-steps { grid-template-columns: repeat(4, 1fr); }

  /* Horizontal connector line */
  .timeline-steps::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(12.5% + 36px);
    right: calc(12.5% + 36px);
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212,168,83,0.25) 20%, rgba(212,168,83,0.25) 80%, transparent);
  }
}

.timeline-step {
  padding: 40px 36px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: background 0.4s ease;
}
@media (min-width: 1024px) {
  .timeline-step {
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.05);
  }
  .timeline-step:last-child { border-right: none; }
}
.timeline-step:hover { background: rgba(255,255,255,0.02); }

.ts-step-num {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.ts-img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  margin-bottom: 22px;
  border: 2px solid rgba(212,168,83,0.2);
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.timeline-step:hover .ts-img {
  border-color: rgba(212,168,83,0.55);
  transform: scale(1.06) rotate(-1deg);
}

.ts-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 10px;
}
.ts-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}
.ts-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin: 0;
}


/* ================================================================
   GALLERY MOSAIC — HORIZONTAL SCROLL STRIP
   ================================================================ */
.gallery-strip {
  background: var(--bg);
  padding: 90px 0 80px;
  overflow: hidden;
}
.gallery-strip-header {
  max-width: 1240px;
  margin: 0 auto 2.75rem;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
@media (min-width: 768px) { .gallery-strip-header { padding: 0 48px; } }

.gs-scroll-hint {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.gs-scroll-hint::before {
  content: '←→';
  font-size: 0.9rem;
  color: var(--secondary);
}

.gallery-scroll-track {
  display: flex;
  gap: 14px;
  padding: 0 24px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll-track:active { cursor: grabbing; }
.gallery-scroll-track::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .gallery-scroll-track { padding: 0 48px 24px; } }

.gal-item {
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--bg-dark);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.gal-item:hover { transform: scale(1.025); }

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.gal-item:hover img { transform: scale(1.07); }

/* Three sizes cycling through */
.gal-tall   { width: 260px; height: 360px; }
.gal-square { width: 280px; height: 280px; align-self: center; }
.gal-wide   { width: 380px; height: 260px; align-self: center; }

/* Inner label on hover */
.gal-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 16px 14px;
  background: linear-gradient(to top, rgba(10,28,36,0.88) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  font-style: italic;
}
.gal-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================================
   ENHANCED REVIEWS — V2
   ================================================================ */
.reviews-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .reviews-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .reviews-grid-v2 { grid-template-columns: repeat(3, 1fr); }
}

.review-card-v2 {
  background: var(--surface);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.review-card-v2:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 60px -15px rgba(26,74,92,0.1);
  border-color: rgba(212,168,83,0.3);
}

.rcv-quote {
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: rgba(212,168,83,0.10);
  font-weight: 600;
  user-select: none;
  pointer-events: none;
}

.rcv-stars {
  color: var(--secondary);
  font-size: 0.9375rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
  display: block;
}

.rcv-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
}

.rcv-footer {
  display: flex;
  align-items: center;
  gap: 13px;
}

.rcv-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.rcv-avatar.a1 { background: linear-gradient(135deg, var(--primary) 0%, #2D7D6F 100%); }
.rcv-avatar.a2 { background: linear-gradient(135deg, #1A4A5C 0%, #0E3344 100%); }
.rcv-avatar.a3 { background: linear-gradient(135deg, var(--secondary) 0%, #C59842 100%); }

.rcv-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--primary);
  display: block;
  line-height: 1.2;
}
.rcv-meta {
  font-size: 0.75rem;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}

/* ================================================================
   FUNCTIONS CTA — CINEMATIC BACKGROUND IMAGE VERSION
   ================================================================ */
.functions-cta-v2 {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
}

.fcta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fcta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28) saturate(0.6);
  transform: scale(1.04);
  transition: transform 12s ease;
}
.functions-cta-v2:hover .fcta-bg img {
  transform: scale(1.0);
}

.fcta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 27, 34, 0.88) 0%,
    rgba(26, 74, 92, 0.72) 100%
  );
  z-index: 1;
}

.fcta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.fcta-content .badge-rotated { color: var(--secondary); }
.fcta-content h2 {
  color: #fff;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  margin-bottom: 1.5rem;
}
.fcta-content > p {
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-size: 1.075rem;
}

.fcta-perks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 3rem;
}
.fcta-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 40px;
  color: rgba(255,255,255,0.82);
  font-size: 0.8125rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.fcta-perk:hover {
  border-color: rgba(212,168,83,0.5);
  background: rgba(212,168,83,0.08);
  color: #fff;
}
.fcta-perk-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
}


/* ================================================================
   SECTION AMBIENT CHAPTER NUMBERS (decorative)
   ================================================================ */
.section-ambient-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 300;
  color: rgba(26,74,92,0.045);
  line-height: 1;
  position: absolute;
  top: 48px;
  right: 40px;
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
}


/* ================================================================
   INLINE MICRO-ANIMATIONS FOR SCROLL REVEALS
   ================================================================ */
[data-scroll-delay="1"] { transition-delay: 0.1s; }
[data-scroll-delay="2"] { transition-delay: 0.2s; }
[data-scroll-delay="3"] { transition-delay: 0.32s; }
[data-scroll-delay="4"] { transition-delay: 0.46s; }
[data-scroll-delay="5"] { transition-delay: 0.6s; }
[data-scroll-delay="6"] { transition-delay: 0.75s; }


/* ================================================================
   UTILITY HELPERS
   ================================================================ */
.text-gold  { color: var(--secondary); }
.text-green { color: var(--river-green); }
.text-sunrise { color: var(--sunrise); }

.bg-linen   { background-color: var(--bg); }
.bg-surface { background-color: var(--surface); }
.bg-dark    { background-color: var(--bg-dark); }
.bg-night   { background-color: var(--deep-night); }

.rounded-xl { border-radius: 16px; }
.rounded-2xl { border-radius: 20px; }

/* Drag-scroll cursor */
.is-dragging { cursor: grabbing !important; user-select: none; }


/* ================================================================
   MOBILE REFINEMENTS
   ================================================================ */
@media (max-width: 767px) {
  .morning-timeline { padding: 72px 0; }
  .functions-cta-v2 { padding: 100px 0; }
  .gallery-strip { padding: 60px 0 50px; }
  .dishes-section .section { padding: 72px 0; }
  .ts-step-num { font-size: 4rem; }
  .rcv-quote { font-size: 5rem; }
  .img-stack { height: 380px; }
  .img-stack-main { width: 80%; height: 80%; }
  .img-stack-secondary { width: 55%; height: 50%; }
}


/* ================================================================
   INNER-PAGE CINEMATIC HERO
   ================================================================ */
.page-hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--deep-night);
}
.page-hero--short {
  height: 54vh;
  min-height: 400px;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: pageHeroZoom 14s ease-out forwards;
}
@keyframes pageHeroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  /* Stronger gradient — dark at bottom (text sits here) + heavy diagonal
     veil across left side to ensure eyebrow/title always readable */
  background:
    linear-gradient(to top,
      rgba(8,15,18,0.97) 0%,
      rgba(8,15,18,0.80) 30%,
      rgba(8,15,18,0.55) 55%,
      rgba(8,15,18,0.28) 80%,
      rgba(8,15,18,0.18) 100%),
    linear-gradient(105deg,
      rgba(8,15,18,0.88) 0%,
      rgba(8,15,18,0.55) 40%,
      rgba(8,15,18,0.15) 65%,
      transparent 80%);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 72px;
  color: var(--surface);
}
.page-hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 1px 8px rgba(8,15,18,0.4);
}
.page-hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--secondary);
  flex-shrink: 0;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.07;
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(8,15,18,0.6);
}
.page-hero__title em {
  font-style: italic;
  color: var(--secondary);
  text-shadow: 0 2px 18px rgba(8,15,18,0.4);
}
.page-hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.90);
  max-width: 560px;
  line-height: 1.7;
  text-shadow: 0 1px 12px rgba(8,15,18,0.5);
}
/* Breadcrumb strip below hero */
.breadcrumb-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb-strip ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-light);
}
.breadcrumb-strip ol li { display: flex; align-items: center; gap: 6px; }
.breadcrumb-strip ol li a { color: var(--primary); text-decoration: none; }
.breadcrumb-strip ol li a:hover { color: var(--secondary); }
.breadcrumb-strip ol li + li::before { content: '/'; opacity: 0.4; }


/* ================================================================
   ABOUT PAGE — STORY SPLIT
   ================================================================ */
.about-story {
  padding: 100px 0 80px;
  background: var(--bg);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-story-grid { grid-template-columns: 5fr 7fr; gap: 80px; }
}
.about-story-visual {
  position: relative;
}
.about-story-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.about-story-img-accent {
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  bottom: -32px;
  right: -24px;
  border: 5px solid var(--surface);
  box-shadow: 0 20px 60px -10px rgba(26,74,92,0.22);
}
.about-story-badge {
  position: absolute;
  top: 24px;
  left: -16px;
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 40px;
  box-shadow: 0 6px 24px rgba(212,168,83,0.35);
}
.about-story-text { padding-right: 0; }
.about-story-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.about-story-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.about-story-heading em { font-style: italic; color: var(--secondary); }
.about-story-body {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.about-pull-quote {
  border-left: 3px solid var(--secondary);
  padding: 16px 24px;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--primary);
  background: rgba(212,168,83,0.07);
  border-radius: 0 12px 12px 0;
}

/* About Principles */
.about-principles {
  padding: 100px 0;
  background: var(--deep-night);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}
.about-principles::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-principles-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}
.about-principles-header .section-label { color: var(--secondary); }
.about-principles-header h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--surface);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) {
  .principles-grid { grid-template-columns: repeat(4, 1fr); }
}
.principle-card {
  padding: 48px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.4s ease;
}
.principle-card:hover { background: rgba(255,255,255,0.07); }
.principle-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--secondary);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 20px;
}
.principle-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.principle-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--surface);
  margin-bottom: 12px;
}
.principle-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
}

/* About team / sourcing split */
.about-sourcing {
  padding: 100px 0;
  background: var(--surface);
}
.about-sourcing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-sourcing-grid { grid-template-columns: 7fr 5fr; }
}
.about-sourcing-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 20px;
}
.sourcing-fact-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sourcing-fact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.6;
}
.sourcing-fact-list li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* About Stats Bar */
.about-stats {
  background: var(--primary);
  padding: 60px 0;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
@media (min-width: 600px) { .about-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.about-stat {
  background: var(--primary);
  padding: 36px 28px;
  text-align: center;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--secondary);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}


/* ================================================================
   MENU PAGE — PHOTO CARDS + STICKY TABS
   ================================================================ */
.menu-sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0;
  box-shadow: 0 2px 20px rgba(26,74,92,0.06);
}
.menu-sticky-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-sticky-nav-inner::-webkit-scrollbar { display: none; }
.menu-nav-tab {
  flex-shrink: 0;
  padding: 20px 32px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.menu-nav-tab:hover,
.menu-nav-tab.is-active {
  color: var(--primary);
  border-bottom-color: var(--secondary);
}
.menu-nav-tab span { font-size: 1.1em; }

/* Menu Section */
.menu-section-block {
  padding: 80px 0 60px;
}
.menu-section-block:nth-child(even) { background: var(--bg); }
.menu-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.menu-section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.menu-section-title em { font-style: italic; color: var(--secondary); }
.menu-section-note {
  font-size: 0.82rem;
  color: var(--text-light);
  max-width: 280px;
  text-align: right;
  line-height: 1.5;
}

/* Menu photo cards */
.menu-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .menu-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .menu-cards-grid { grid-template-columns: repeat(4, 1fr); } }

.menu-card {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.menu-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.menu-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover .menu-card__img { transform: scale(1.07); }
.menu-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.menu-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(8,15,18,0.72);
  color: var(--surface);
  backdrop-filter: blur(6px);
}
.menu-card__tag--gf { background: rgba(34,120,60,0.85); }
.menu-card__tag--vegan { background: rgba(80,160,80,0.85); }
.menu-card__tag--hot { background: rgba(212,168,83,0.9); color: var(--primary); }
.menu-card__body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 6px;
}
.menu-card__desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}
.menu-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary);
}
.menu-card__price-alt {
  font-size: 0.78rem;
  color: var(--text-light);
}
/* Featured wide card */
.menu-card--wide {
  grid-column: span 2;
  flex-direction: row;
}
.menu-card--wide .menu-card__img-wrap {
  flex: 0 0 42%;
  aspect-ratio: auto;
}
.menu-card--wide .menu-card__body { padding: 32px 28px; }
@media (max-width: 1023px) {
  .menu-card--wide { grid-column: span 1; flex-direction: column; }
  .menu-card--wide .menu-card__img-wrap { flex: none; aspect-ratio: 4/3; }
}

/* Drinks section grid */
.drinks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .drinks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .drinks-grid { grid-template-columns: repeat(3, 1fr); } }
.drinks-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
}
.drinks-card:hover {
  border-color: var(--secondary);
  transform: translateX(4px);
  box-shadow: var(--shadow-premium);
}
.drinks-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.drinks-card__info { flex: 1; }
.drinks-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.drinks-card__desc { font-size: 0.82rem; color: var(--text-light); }
.drinks-card__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--secondary);
  flex-shrink: 0;
}

/* Menu allergen note */
.menu-allergen-bar {
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: 14px;
  padding: 20px 28px;
  margin-top: 60px;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 14px;
}
.menu-allergen-bar::before {
  content: 'ℹ';
  font-size: 1.4rem;
  color: var(--secondary);
  flex-shrink: 0;
}


/* ================================================================
   GALLERY PAGE — FILTER + MASONRY
   ================================================================ */
.gallery-filter-bar {
  padding: 36px 0 12px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 90;
}
.gallery-filter-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.gf-btn {
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
}
.gf-btn:hover { border-color: var(--primary); color: var(--primary); }
.gf-btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--surface);
}

/* Full masonry gallery */
.gallery-masonry {
  padding: 48px 0 80px;
  background: var(--bg);
}
.masonry-grid {
  columns: 1;
  column-gap: 16px;
}
@media (min-width: 600px) { .masonry-grid { columns: 2; } }
@media (min-width: 900px)  { .masonry-grid { columns: 3; } }
@media (min-width: 1200px) { .masonry-grid { columns: 4; } }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,15,18,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.masonry-item:hover .masonry-item__overlay { opacity: 1; }
.masonry-item__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
/* Gallery lightbox overlay */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8,15,18,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.gallery-lightbox.is-open img { transform: scale(1); }
.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s ease;
}
.gallery-lightbox-close:hover { color: var(--surface); }


/* ================================================================
   FUNCTIONS PAGE — EVENT TYPES + CAPACITY STATS + TIMELINE
   ================================================================ */
.fn-capacity-bar {
  background: var(--primary);
  padding: 56px 0;
}
.fn-capacity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
}
@media (max-width: 640px) { .fn-capacity-grid { grid-template-columns: 1fr; } }
.fn-cap-stat {
  background: var(--primary);
  padding: 36px 32px;
  text-align: center;
}
.fn-cap-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--secondary);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.fn-cap-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: block;
  margin-bottom: 6px;
}
.fn-cap-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

/* Event type cards */
.fn-event-types {
  padding: 100px 0;
  background: var(--bg);
}
.fn-events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) { .fn-events-grid { grid-template-columns: repeat(3, 1fr); } }
.fn-event-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}
.fn-event-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.fn-event-card:hover .fn-event-card__img { transform: scale(1.06); }
.fn-event-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,15,18,0.88) 0%, rgba(8,15,18,0.3) 55%, transparent 100%);
}
.fn-event-card__body {
  position: relative;
  z-index: 1;
  padding: 32px 28px;
  color: var(--surface);
}
.fn-event-card__icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.fn-event-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 10px;
  color: var(--surface) !important;
}
.fn-event-card__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.fn-event-card:hover .fn-event-card__desc {
  max-height: 120px;
  opacity: 1;
}
.fn-event-card__cap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid rgba(212,168,83,0.4);
  padding: 6px 14px;
  border-radius: 20px;
}

/* Functions how-it-works timeline */
.fn-how-it-works {
  padding: 100px 0;
  background: var(--deep-night);
  color: var(--surface);
}
.fn-how-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
}
.fn-how-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--surface);
  margin-top: 12px;
}
.fn-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .fn-steps-grid { grid-template-columns: repeat(4, 1fr); gap: 0; } }
.fn-step {
  position: relative;
  text-align: center;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .fn-step + .fn-step::before {
    content: '';
    position: absolute;
    left: -50%;
    top: 36px;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212,168,83,0.3), transparent);
  }
}
.fn-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,168,83,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--secondary);
}
.fn-step__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--surface);
  margin-bottom: 10px;
}
.fn-step__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* Functions enquiry form */
.fn-enquiry {
  padding: 100px 0;
  background: var(--surface);
}
.fn-enquiry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}
@media (min-width: 900px) { .fn-enquiry-grid { grid-template-columns: 5fr 7fr; } }
.fn-enquiry-info-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}
.fn-enquiry-info-heading em { font-style: italic; color: var(--secondary); }
.fn-enquiry-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fn-enquiry-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-light);
}
.fn-enquiry-list li .fn-eq-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Enhanced form */
.form-v2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,74,92,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; }

/* Functions + about CTA banner */
.page-cta-banner {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--surface);
}
.page-cta-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.35);
}
.page-cta-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,15,18,0.88) 0%, rgba(8,15,18,0.55) 50%, rgba(8,15,18,0.35) 100%),
    linear-gradient(135deg, rgba(26,74,92,0.75) 0%, rgba(8,15,18,0.55) 100%);
  z-index: 1;
}
.page-cta-banner__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
}
.page-cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--surface) !important;
}
.page-cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.78); margin-bottom: 2.5rem; }


/* ================================================================
   FAQ PAGE — ANIMATED ACCORDION
   ================================================================ */
.faq-section {
  padding: 90px 0 100px;
  background: var(--bg);
}
.faq-category-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--primary);
  margin: 52px 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq-category-title:first-child { margin-top: 0; }
.faq-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.faq-category-icon { font-size: 1.4rem; }

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.faq-item {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.is-open {
  border-color: rgba(26,74,92,0.25);
  box-shadow: 0 8px 32px -8px rgba(26,74,92,0.1);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--primary); }
.faq-item.is-open .faq-question { color: var(--primary); }
.faq-chevron {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: var(--text-light);
}
.faq-item.is-open .faq-chevron {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--surface);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.is-open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 26px 24px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
}
.faq-answer-inner a { color: var(--primary); text-decoration: underline; }

/* FAQ CTA card */
.faq-still-help {
  margin-top: 72px;
  background: var(--primary);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  color: var(--surface);
}
@media (max-width: 640px) {
  .faq-still-help { grid-template-columns: 1fr; padding: 40px; }
}
.faq-still-help h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 8px;
  color: var(--surface) !important;
}
.faq-still-help p { font-size: 0.95rem; color: rgba(255,255,255,0.65); }
.faq-still-help-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }


/* ================================================================
   CONTACT PAGE — SPLIT HERO + INFO CARDS + MAP
   ================================================================ */
.contact-info-cards {
  padding: 80px 0;
  background: var(--surface);
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 900px) { .contact-cards-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 500px)  { .contact-cards-grid { grid-template-columns: 1fr; } }
.contact-card {
  padding: 32px 28px;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  background: var(--surface);
}
.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-card__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--primary);
  line-height: 1.4;
}
.contact-card__sub { font-size: 0.82rem; color: var(--text-light); }

/* Contact split form + map */
.contact-main {
  padding: 80px 0;
  background: var(--bg);
}
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 900px) { .contact-main-grid { grid-template-columns: 6fr 5fr; } }
.contact-form-head { margin-bottom: 32px; }
.contact-form-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 10px;
}
.contact-form-head h2 em { font-style: italic; color: var(--secondary); }
.contact-form-head p { font-size: 0.95rem; color: var(--text-light); }
.contact-map-wrap {
  position: sticky;
  top: 80px;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  border: none;
  display: block;
}
.contact-hours-card {
  margin-top: 20px;
  background: var(--surface);
  border-radius: 16px;
  padding: 24px 28px;
  border: 1px solid var(--border);
}
.contact-hours-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}
.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--text); }
.hours-row .open-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(34,120,60,0.12);
  color: #1d7a40;
  padding: 2px 8px;
  border-radius: 10px;
}

/* Contact full map strip */
.contact-map-strip {
  height: 420px;
  position: relative;
  overflow: hidden;
}
.contact-map-strip iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}


/* ================================================================
   INNER PAGE MOBILE TWEAKS
   ================================================================ */
@media (max-width: 767px) {
  .page-hero { height: 58vh; min-height: 380px; }
  .page-hero--short { height: 44vh; min-height: 320px; }
  .page-hero__content { padding-bottom: 48px; }
  .about-story-img-accent { display: none; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card { padding: 32px 24px; }
  .fn-capacity-grid { grid-template-columns: 1fr; }
  .fn-steps-grid { grid-template-columns: 1fr; }
  .fn-event-card { min-height: 360px; }
  .fn-enquiry-grid { gap: 40px; }
  .faq-still-help { grid-template-columns: 1fr; padding: 36px; }
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-nav-tab { padding: 16px 20px; }
  .menu-cards-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
  .contact-map-wrap { position: static; }
}

/* Global Footer Bottom Copyright Contrast Override */
.footer-bottom p {
  color: rgba(255, 255, 255, 0.75) !important;
}


/* ================================================================
   HIGH-FIDELITY INTERACTIVE GAMIFICATION LAYER
   ================================================================ */

/* 1. DISCOVER YOUR BLISS VIBE QUIZ (Homepage) */
.vibe-quiz-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-premium);
  position: relative;
  overflow: hidden;
}
@media (max-width: 640px) {
  .vibe-quiz-widget { padding: 32px 24px; }
}

.quiz-step {
  display: none;
}
.quiz-step.active {
  display: block;
  animation: quizFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz-step-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 300;
  text-align: center;
  color: var(--primary);
  margin-bottom: 8px;
}
.quiz-step-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 36px;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .quiz-options-grid { grid-template-columns: repeat(3, 1fr); }
}

.quiz-option-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 20px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.quiz-option-card:hover {
  transform: translateY(-4px);
  background: var(--surface);
  border-color: var(--primary);
  box-shadow: 0 16px 32px -10px rgba(26,74,92,0.08);
}
.quiz-option-card.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 12px 30px -8px rgba(26,74,92,0.3);
}
.quiz-option-card.active .quiz-opt-icon {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  transform: scale(1.08);
}
.quiz-option-card.active .quiz-opt-label {
  color: #fff;
}
.quiz-option-card.active .quiz-opt-desc {
  color: rgba(255,255,255,0.7);
}

.quiz-opt-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition-smooth);
}
.quiz-opt-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.quiz-opt-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Quiz Steps Tracker */
.quiz-steps-tracker {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.quiz-tracker-dot {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: var(--transition-smooth);
}
.quiz-tracker-dot.active {
  background: var(--secondary);
  width: 48px;
  box-shadow: 0 0 10px rgba(212,168,83,0.35);
}

/* Computed Result Card */
.quiz-result-card {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 48px 36px;
  color: #fff;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(12,35,44,0.35);
}
.qrc-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  display: inline-block;
  margin-bottom: 12px;
  background: rgba(212,168,83,0.12);
  padding: 4px 16px;
  border-radius: 30px;
  border: 1px solid rgba(212,168,83,0.3);
}
.qrc-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 18px;
}
.qrc-title em {
  font-style: italic;
  color: var(--secondary);
}
.qrc-pairing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 32px auto;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0;
}
@media (min-width: 600px) {
  .qrc-pairing-grid { grid-template-columns: repeat(3, 1fr); }
}
.qrc-pairing-cell {
  text-align: center;
}
.qpc-icon {
  font-size: 26px;
  margin-bottom: 8px;
  display: block;
}
.qpc-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 4px;
}
.qpc-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--secondary);
  font-weight: 600;
}

.qrc-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}


/* 2. EVENT PLANNER & CAPACITY ESTIMATOR (Functions Page) */
.fn-estimator-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
  box-shadow: var(--shadow-premium);
  margin-bottom: 56px;
}
@media (max-width: 640px) {
  .fn-estimator-widget { padding: 32px 24px; }
}

.estimator-title-wrap {
  text-align: center;
  margin-bottom: 36px;
}
.estimator-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: var(--primary);
}
.estimator-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 6px;
}

.estimator-row {
  margin-bottom: 32px;
}
.estimator-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.estimator-widget-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.estimator-badge {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--secondary);
}

/* Custom Slider */
.slider-container {
  position: relative;
  padding: 10px 0;
}
.estimator-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: var(--border);
  outline: none;
  margin: 16px 0 10px;
}
.estimator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--secondary);
  border: 2px solid var(--surface);
  box-shadow: 0 4px 12px rgba(212,168,83,0.4);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.estimator-slider::-webkit-slider-thumb:hover {
  transform: scale(1.18);
}
.slider-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.06em;
}

/* Estimator Results Card */
.estimator-result-card {
  background: linear-gradient(135deg, var(--primary) 0%, #0E3344 100%);
  color: #fff;
  border-radius: 20px;
  padding: 32px;
  border-left: 5px solid var(--secondary);
  box-shadow: 0 20px 45px -15px rgba(26,74,92,0.3);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 768px) {
  .estimator-result-card { grid-template-columns: 1.2fr 1fr; }
}

.erc-left {}
.erc-right {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
}
@media (min-width: 768px) {
  .erc-right {
    border-top: none;
    border-left: 1px solid rgba(255,255,255,0.12);
    padding-top: 0;
    padding-left: 28px;
  }
}

.erc-rec-badge {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 4px;
}
.erc-space-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--secondary);
  margin-bottom: 8px;
}
.erc-space-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.erc-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.erc-stat-row:last-child {
  margin-bottom: 0;
}
.erc-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}
.erc-stat-val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}
.erc-stat-val em {
  color: var(--secondary);
  font-style: normal;
}


/* ================================================================
   AIO ENTITY SECTION — Answer-first block for AI search engines
   Visually subtle but semantically rich for AI citation extraction
   ================================================================ */
.aio-entity-section {
  background: var(--primary);
  padding: 9px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Compact pill strip — visible layer */
.aio-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.6rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  color: rgba(255,255,255,0.68);
  letter-spacing: 0.01em;
}

.aio-pill a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.15s;
}
.aio-pill a:hover { color: var(--secondary, #D4A853); }

.aio-pill-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.7rem;
  user-select: none;
}

/* Hidden prose — preserved for AI/schema citation (sr-only pattern) */
.aio-entity-answer {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ================================================================
   ANIMATED STAT COUNTERS
   .stat-number elements animate up from 0 when in viewport
   ================================================================ */
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--primary);
  display: block;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.stat-number em {
  font-style: normal;
  font-size: 0.65em;
  color: var(--secondary);
  font-weight: 600;
}

.stat-cell {
  text-align: center;
  padding: 18px 12px;
  border-radius: 16px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.stat-cell:hover {
  background: rgba(26, 74, 92, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -8px rgba(26,74,92,0.12);
}

.stat-cell.is-counted .stat-number {
  color: var(--primary);
}

.stat-desc {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-top: 4px;
}


/* ================================================================
   FOOTER BOTTOM COPYRIGHT — ensure visibility on dark bg
   ================================================================ */
.footer-bottom p,
.footer-bottom span,
.footer-bottom {
  color: rgba(255, 255, 255, 0.75) !important;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75) !important;
}

.footer-bottom a:hover {
  color: var(--secondary) !important;
}


/* ================================================================
   MICRO-ANIMATION ENHANCEMENTS — Subtle card hovers
   ================================================================ */

/* Dish cards lift on hover */
.dish-card:hover,
.menu-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 50px -12px rgba(26,74,92,0.18);
}

/* Gallery image zoom on hover */
.gallery-grid-item:hover img,
.mosaic-cell:hover img {
  transform: scale(1.06);
}

/* CTA button pulse on idle */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 10px 30px -5px rgba(212,168,83,0.35); }
  50%       { box-shadow: 0 16px 40px -4px rgba(212,168,83,0.55); }
}

.btn-primary.pulse-idle {
  animation: ctaPulse 3s ease-in-out infinite;
}

/* Floating label shimmer */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

.img-stack-badge,
.img-stack-badge-2 {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-stack-badge:hover,
.img-stack-badge-2:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 20px -4px rgba(26,74,92,0.25);
}

