﻿/* ═══════════════════════════════════════════════════════════════
   BREW HAVEN  ·  style.css
   Senior UI/UX approach: premium whitespace, restrained motion,
   typography-led hierarchy. Less is more.
   ═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --gold:        #C98B52;
  --gold-lt:     #E9C49A;
  --gold-dk:     #8C5A2A;
  --gold-warm:   #F0C97A;

  --bg:          #090907;
  --bg-card:     #111110;
  --bg-surface:  #181614;

  --text:        #F5EFEA;
  --para:        #A89E96;
  --muted:       rgba(245,239,234,.35);

  --border:      rgba(255,255,255,.06);
  --border-gold: rgba(201,139,82,.18);

  --r-s:   10px;
  --r-m:   18px;
  --r-l:   26px;

  /* One shadow scale */
  --sh-s:  0 2px 12px rgba(0,0,0,.45);
  --sh-m:  0 8px 32px  rgba(0,0,0,.55);
  --sh-l:  0 24px 72px rgba(0,0,0,.65);
  --sh-xl: 0 48px 120px rgba(0,0,0,.75);
  --sh-gold-s: 0 6px 24px rgba(201,139,82,.22);
  --sh-gold-m: 0 12px 48px rgba(201,139,82,.32);

  --ease:   cubic-bezier(.4,0,.2,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
  --t:      .28s;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img    { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { font-family: inherit; }
.text-gold { color: var(--gold-lt); }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .25px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
/* Subtle shimmer on hover — one clean pass */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, transparent 36%, rgba(255,255,255,.12) 50%, transparent 64%);
  transform: translateX(-100%);
  transition: transform .5s var(--ease);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(100%); }

.btn--primary {
  background: linear-gradient(130deg, var(--gold-lt) -10%, var(--gold) 45%, var(--gold-dk) 100%);
  color: #fff;
  padding: 14px 32px;
  box-shadow: 0 0 0 1px rgba(201,139,82,.3), var(--sh-gold-s);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(201,139,82,.45), var(--sh-gold-m);
  color: #fff;
}
.btn--primary:active  { transform: translateY(0); }
.btn--primary:hover .btn__arrow { transform: translateX(4px); }
.btn__arrow { transition: transform var(--t) var(--ease); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  padding: 13px 30px;
  border: 1px solid rgba(255,255,255,.16);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
  background: rgba(201,139,82,.06);
  transform: translateY(-2px);
}

/* Nav reserve pill */
.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  background: linear-gradient(130deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: var(--sh-gold-s);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.btn-reserve:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-gold-m);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.nav-wrap {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  padding: 20px 0;
  transition: padding var(--t) var(--ease), background var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
}
.nav-wrap.scrolled {
  padding: 11px 0;
  background: rgba(6,5,3,.85);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 1px 0 var(--border), var(--sh-m);
}
/* Hairline gold under scrolled nav */
.nav-wrap.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 35%, var(--gold-lt) 50%, var(--gold) 65%, transparent);
  opacity: .2;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Brand */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.nav-logo__ring {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,139,82,.42);
  background: rgba(201,139,82,.09);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.nav-logo:hover .nav-logo__ring {
  border-color: rgba(201,139,82,.7);
  box-shadow: 0 0 22px rgba(201,139,82,.2);
}
.nav-logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: .2px;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.nav-link {
  position: relative;
  padding: 7px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(245,239,234,.58);
  transition: color var(--t) var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  width: 16px; height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transition: transform var(--t) var(--spring);
}
.nav-link:hover, .nav-link.is-active { color: var(--text); }
.nav-link:hover::after, .nav-link.is-active::after { transform: translateX(-50%) scaleX(1); }
.nav-cta { flex-shrink: 0; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-s);
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.nav-burger:hover { background: rgba(201,139,82,.09); border-color: var(--border-gold); }
.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease), width var(--t) var(--ease);
}
.nav-burger span:nth-child(2) { width: 65%; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile panel */
.nav-mobile {
  overflow: hidden;
  max-height: 0;
  background: rgba(7,6,4,.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-top: 1px solid var(--border);
  transition: max-height .42s var(--ease);
}
.nav-mobile.open { max-height: 480px; }
.nav-mobile__links {
  padding: 16px 24px 8px;
  display: flex;
  flex-direction: column;
}
.nav-mobile__link {
  display: block;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(245,239,234,.68);
  border-bottom: 1px solid var(--border);
  transition: color var(--t) var(--ease), padding-left var(--t) var(--ease);
}
.nav-mobile__link:hover { color: var(--gold-lt); padding-left: 6px; }
.nav-mobile__cta { margin: 18px 24px 24px; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════
   AVATAR STACK
   ═══════════════════════════════════════════════════════════════ */
.avatar-stack { display: flex; align-items: center; }
.avatar-stack__img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg);
  margin-right: -10px;
  transition: transform var(--t) var(--spring);
}
.avatar-stack__img:last-child { margin-right: 0; }
.avatar-stack:hover .avatar-stack__img:nth-child(1) { transform: translateY(-4px) rotate(-3deg); }
.avatar-stack:hover .avatar-stack__img:nth-child(2) { transform: translateY(-4px); }
.avatar-stack:hover .avatar-stack__img:nth-child(3) { transform: translateY(-4px) rotate(2deg); }
.avatar-stack:hover .avatar-stack__img:nth-child(4) { transform: translateY(-4px) rotate(4deg); }
.avatar-stack--sm .avatar-stack__img {
  width: 26px; height: 26px;
  margin-right: -7px;
  border-width: 1.5px;
  border-color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   HERO  —  exactly 100vh, everything contained
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;   /* floor for very short screens */
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  /* Rich, dark warmth — two soft radials only */
  background:
    radial-gradient(ellipse 70% 80% at 72% 55%,  rgba(38,20,6,.50) 0%, transparent 70%),
    radial-gradient(ellipse 90% 70% at 10% 40%,  rgba(22,12,4,.35) 0%, transparent 65%),
    var(--bg);
}

/* Hidden — no particles */
.hero__particles { display: none; }

/* Background div: just the noise texture — very subtle */
.hero__canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.028'/%3E%3C/svg%3E");
  background-size: 512px 512px;
  mix-blend-mode: overlay;
}
/* Single static ambient glow on right side */
.hero__radial-left  { display: none; }
.hero__radial-right {
  position: absolute;
  top: 0; right: -5%;
  width: 52vw; height: 100%;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,139,82,.11) 0%, transparent 62%);
  filter: blur(64px);
  pointer-events: none;
}

/* Grid — vertically fills the hero, leaves room for nav + scroll cue */
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  /* 68px nav top pad + 60px scroll cue bottom = 128px */
  padding-top: 68px;
  padding-bottom: 60px;
  height: 100%;
}

/* ── LEFT COLUMN ── */
.hero__left {
  display: flex;
  flex-direction: column;
  /* Vertical rhythm: each element uses margin-top only */
}

/* Eyebrow badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(201,139,82,.08);
  border: 1px solid rgba(201,139,82,.24);
  color: var(--gold-lt);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  width: fit-content;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  /* One simple pulse — unobtrusive */
  animation: dotPulse 3s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 1;  transform: scale(1);   }
  50%     { opacity: .5; transform: scale(.75); }
}

/* Headline — editorial scale */
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4.8vw, 72px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -1.5px;
  color: #F5EFEA;
  margin-top: 20px;
}
.hero__title-em {
  font-style: italic;
  background: linear-gradient(115deg, var(--gold-warm) 0%, var(--gold-lt) 35%, var(--gold) 70%, #7a4e20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.06em;
}

/* Gold rule — restrained */
.hero__rule {
  display: block;
  width: 44px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold-lt), var(--gold), transparent);
  border-radius: 2px;
  margin: 22px 0 0;
}

/* Body copy */
.hero__body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--para);
  max-width: 400px;
  margin-top: 16px;
}

/* CTA row */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Rating / social proof */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero__proof-text p {
  font-size: 12px;
  color: var(--para);
  margin: 0;
}
.hero__proof-text strong { color: var(--text); font-weight: 600; }
.hero__stars {
  display: block;
  color: var(--gold-warm);
  font-size: 13px;
  letter-spacing: 2.5px;
  margin-bottom: 3px;
}

/* ── RIGHT COLUMN ── */
.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.hero__visual {
  position: relative;
  /* Size relative to available column height */
  width: 100%;
  max-width: 440px;
}

/* Ambient glow — static, one layer */
.hero__img-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 52%, rgba(201,139,82,.18) 0%, rgba(201,139,82,.05) 45%, transparent 68%);
  filter: blur(44px);
  pointer-events: none;
}

/* Figure / image */
.hero__fig { position: relative; }
/* Warm rim light via pseudo */
.hero__fig::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-l);
  background: linear-gradient(145deg, rgba(201,139,82,.22) 0%, transparent 45%, rgba(201,139,82,.08) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero__img {
  width: 100%;
  /* Height clamp so image never overflows 100vh */
  aspect-ratio: 3 / 4;
  max-height: calc(100vh - 200px);
  object-fit: cover;
  object-position: center 12%;
  border-radius: var(--r-l);
  box-shadow:
    0 0 0 1px rgba(201,139,82,.12),
    var(--sh-l),
    var(--sh-xl);
  display: block;
  position: relative;
  z-index: 0;
}

/* Steam — kept but dialed way back */
.hero__steam {
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  pointer-events: none;
}
.steam-svg { width: 100%; overflow: visible; }
.steam-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  opacity: 0;
  animation: steamRise 4s ease-in-out infinite;
}
.steam-path--1 { animation-delay: 0s;  animation-duration: 3.6s; stroke: rgba(255,255,255,.16); stroke-width: 2.5; }
.steam-path--2 { animation-delay: .9s; animation-duration: 4.2s; stroke: rgba(255,255,255,.10); stroke-width: 1.8; }
.steam-path--3 { animation-delay: 1.8s; animation-duration: 3.8s; stroke: rgba(255,255,255,.07); stroke-width: 1.4; }
@keyframes steamRise {
  0%   { stroke-dashoffset: 200; opacity: 0; }
  8%   { opacity: 1; }
  65%  { stroke-dashoffset: -200; opacity: 0; }
  66%  { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: 200; opacity: 0; }
}

/* Floating card — glass, single subtle float */
.float-card {
  position: absolute;
  left: -36px;
  bottom: 15%;
  min-width: 188px;
  max-width: 210px;
  background: linear-gradient(150deg, rgba(255,255,255,.97) 0%, rgba(251,245,237,.96) 100%);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(201,139,82,.16);
  border-radius: var(--r-m);
  padding: 17px 19px;
  color: #0d0905;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    var(--sh-m),
    var(--sh-l);
  z-index: 10;
  animation: cardRise 6s ease-in-out infinite;
}
@keyframes cardRise {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-9px); }
}
/* Inset highlight line */
.float-card::before {
  content: '';
  position: absolute;
  top: 0; left: 14px; right: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.85) 40%, rgba(255,255,255,.85) 60%, transparent);
}

.float-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}
.float-card__star {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold-dk);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.float-card__heart {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.07);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: #c0b8b0;
  padding: 0;
  transition: color var(--t) var(--ease), transform var(--t) var(--spring);
}
.float-card__heart:hover { color: #d94f4f; transform: scale(1.15); }
.float-card__heart.liked  { color: #d94f4f; }

.float-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.3px;
  color: #0c0703;
  margin-bottom: 4px;
}
.float-card__desc {
  font-size: 10.5px;
  color: #9a8878;
  letter-spacing: .3px;
  margin-bottom: 10px;
}
.float-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #0c0703;
  letter-spacing: -.4px;
  margin-bottom: 13px;
}
.float-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.float-card__rating {
  font-size: 11.5px;
  font-weight: 700;
  background: #f4ece0;
  color: #7a4e20;
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid rgba(201,139,82,.2);
}

/* Premium pill */
.hero__pill {
  position: absolute;
  top: 18px; right: -14px;
  display: flex; align-items: center; gap: 6px;
  background: rgba(8,6,3,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201,139,82,.28);
  border-radius: 50px;
  padding: 7px 15px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: .3px;
  box-shadow: var(--sh-s);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
}
.scroll-cue__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue__track {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(201,139,82,.38);
  border-radius: 12px;
  display: flex; justify-content: center;
  padding-top: 6px;
}
.scroll-cue__dot {
  display: block;
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollDot 2.4s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0);    opacity: 1; }
  75%  { transform: translateY(13px); opacity: 0; }
  76%  { transform: translateY(0);    opacity: 0; }
  100% { opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════════════════════════ */
.stats {
  padding: 88px 0 100px;
  position: relative;
  background: linear-gradient(180deg, rgba(14,11,7,.9) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
/* Single soft warmth beneath cards */
.stats::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 70vw; height: 50vh;
  background: radial-gradient(ellipse, rgba(201,139,82,.05) 0%, transparent 65%);
  filter: blur(56px);
  pointer-events: none;
}

/* Kicker label */
.section-kicker {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 52px;
  position: relative;
}
.section-kicker::before,
.section-kicker::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  width: 48px;
  transform: translateY(-50%);
}
.section-kicker::before {
  right: calc(50% + 82px);
  background: linear-gradient(90deg, transparent, var(--gold-dk));
}
.section-kicker::after {
  left: calc(50% + 82px);
  background: linear-gradient(90deg, var(--gold-dk), transparent);
}

/* Grid */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Stat card */
.stat-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(24,20,14,.96) 0%, rgba(16,13,9,.98) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  padding: 42px 24px 36px;
  text-align: center;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
  cursor: default;
}
/* Gold top line — slides in on hover */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-lt) 35%, var(--gold) 50%, var(--gold-lt) 65%, transparent);
  transform: scaleX(0);
  transition: transform .44s var(--ease);
}
/* Bottom glow on hover */
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 45%;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,139,82,.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  pointer-events: none;
}
.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,139,82,.3);
  box-shadow: 0 0 0 1px rgba(201,139,82,.1), var(--sh-l);
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover::after  { opacity: 1; }

.stat-card__icon {
  font-size: 26px;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
  transition: transform var(--t) var(--spring);
}
.stat-card:hover .stat-card__icon { transform: scale(1.08); }

.stat-card__num-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  margin-bottom: 10px;
}
.stat-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}
.stat-card__num--static { font-size: 26px; }
.stat-card__sep {
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  margin: 0 4px;
}
.stat-card__plus {
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-left: 1px;
}
.stat-card__label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--para);
  letter-spacing: .3px;
}
/* Unused in CSS but kept for JS compat */
.stat-card__glow { display: none; }

/* ═══════════════════════════════════════════════════════════════
   FEATURED MENU SECTION
   ═══════════════════════════════════════════════════════════════ */

/* Section shell */
.menu {
  padding: 100px 0 112px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,139,82,.06) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg) 0%, rgba(12,10,7,.98) 100%);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

/* ── Section header ── */
.menu__header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 52px;
}
.menu__header .section-kicker { margin-bottom: 16px; }

.menu__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 18px;
}
.menu__title-em {
  font-style: italic;
  background: linear-gradient(115deg, var(--gold-warm) 0%, var(--gold-lt) 40%, var(--gold) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.menu__subtitle {
  font-size: 15px;
  line-height: 1.8;
  color: var(--para);
  max-width: 460px;
  margin: 0 auto;
}

/* ── Category filter pills ── */
.menu__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.menu__filter {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--para);
  transition: color .25s var(--ease),
              background .25s var(--ease),
              border-color .25s var(--ease),
              box-shadow .25s var(--ease),
              transform .25s var(--ease);
}
.menu__filter:hover {
  color: var(--gold-lt);
  border-color: rgba(201,139,82,.35);
  background: rgba(201,139,82,.06);
  transform: translateY(-1px);
}
.menu__filter.is-active {
  background: linear-gradient(130deg, var(--gold) 0%, var(--gold-dk) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--sh-gold-s);
}

/* ── Menu grid ── */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 0;
  list-style: none;
}

/* ── Menu card ── */
.menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(22,18,12,.97) 0%, rgba(14,12,8,.99) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  overflow: hidden;
  transition: transform .3s var(--ease),
              border-color .3s var(--ease),
              box-shadow .3s var(--ease);
}

/* Card lift + golden border on hover */
.menu-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,139,82,.38);
  box-shadow:
    0 0 0 1px rgba(201,139,82,.12),
    var(--sh-l),
    0 0 56px rgba(201,139,82,.1);
}

/* Hidden state for filter transitions */
.menu-card.is-hidden {
  display: none;
}

/* Image wrapper — clip + zoom */
.menu-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}
.menu-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s var(--ease);
  display: block;
}
.menu-card:hover .menu-card__img {
  transform: scale(1.07);
}

/* Category label — top-left pill on image */
.menu-card__category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(9,7,4,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,139,82,.28);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--gold-lt);
}

/* Warm gradient fade at image bottom */
.menu-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  background: linear-gradient(to top, rgba(14,12,8,.95) 0%, transparent 100%);
  pointer-events: none;
}

/* Card body */
.menu-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
  gap: 10px;
}

/* Name + price row */
.menu-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.menu-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -.2px;
}
.menu-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-lt);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Description */
.menu-card__desc {
  font-size: 13px;
  line-height: 1.72;
  color: var(--para);
  flex: 1;
}

/* Footer: stars + button */
.menu-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* Stars */
.menu-card__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11.5px;
  color: var(--gold-warm);
}
.menu-card__rating-val {
  font-size: 12px;
  font-weight: 600;
  color: var(--para);
  margin-left: 4px;
}

/* Order button */
.menu-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(201,139,82,.28);
  background: rgba(201,139,82,.08);
  color: var(--gold-lt);
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s var(--ease),
              border-color .25s var(--ease),
              color .25s var(--ease),
              transform .25s var(--ease),
              box-shadow .25s var(--ease);
}
.menu-card__btn i {
  font-size: 11px;
  transition: transform .25s var(--ease);
}
.menu-card__btn:hover {
  background: linear-gradient(130deg, var(--gold) 0%, var(--gold-dk) 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--sh-gold-s);
}
.menu-card__btn:hover i { transform: translateX(3px); }

/* ── View Full Menu CTA ── */
.menu__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.menu__cta {
  padding: 14px 40px;
  font-size: 14px;
  gap: 10px;
  border-color: rgba(201,139,82,.28);
  color: var(--gold-lt);
}
.menu__cta:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
  background: rgba(201,139,82,.07);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal="up"]    { transform: translateY(32px); }
[data-reveal="right"] { transform: translateX(-32px); }
[data-reveal].visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .hero__visual  { max-width: 400px; }
  .float-card    { left: -20px; }
}

@media (max-width: 1100px) {
  .hero__grid    { gap: 36px; }
  .hero__title   { font-size: clamp(36px, 4.2vw, 60px); }
}

@media (max-width: 991px) {
  /* Nav collapses */
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  /* Hero stacks */
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 80px;
    padding-bottom: 64px;
    /* Auto height on mobile — allow natural scroll */
    height: auto;
    min-height: 100vh;
  }
  .hero__left    { align-items: center; text-align: center; }
  .hero__badge   { margin: 0 auto; }
  .hero__body    { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__proof   { justify-content: center; }
  .hero__rule    { margin-left: auto; margin-right: auto; }

  .hero__right   { margin-top: 40px; }
  .hero__visual  { max-width: 380px; margin: 0 auto; }
  .float-card    { left: -4px; }
  .hero__pill    { right: 4px; top: 12px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  /* Menu */
  .menu__grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
  .hero__title   { font-size: clamp(34px, 9vw, 46px); letter-spacing: -1px; }
  .hero__visual  { max-width: 100%; }

  .btn--primary, .btn--ghost { width: 100%; justify-content: center; }

  .float-card    { left: 0; bottom: 12%; padding: 14px 16px; min-width: 160px; }
  .float-card__name  { font-size: 19px; }
  .float-card__price { font-size: 22px; }
  .hero__pill    { display: none; }
  .hero__steam   { top: -50px; width: 58px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card   { padding: 30px 16px 26px; }
  .stat-card__num { font-size: 38px; }

  .section-kicker::before,
  .section-kicker::after { display: none; }

  /* Menu */
  .menu        { padding: 72px 0 80px; }
  .menu__grid  { grid-template-columns: 1fr; gap: 16px; }
  .menu__filters { gap: 8px; }
  .menu__filter  { padding: 8px 18px; font-size: 12.5px; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 32px; }
  .float-card  { min-width: 148px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESERVATION PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ── Shared section primitives ── */
.rv-section-header { text-align: center; margin-bottom: 56px; }
.rv-section-header--left { text-align: left; margin-bottom: 0; }

.rv-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.8px;
  color: var(--text);
  margin-top: 12px;
}
.rv-em {
  font-style: italic;
  background: linear-gradient(115deg, var(--gold-warm) 0%, var(--gold-lt) 40%, var(--gold) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rv-section-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--para);
  max-width: 480px;
  margin-top: 14px;
}

/* Nav active state on reservation page */
.btn-reserve.is-active-page {
  box-shadow: var(--sh-gold-m), 0 0 0 2px rgba(201,139,82,.35);
}

/* ── 1. HERO ── */
.rv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 70% at 70% 52%, rgba(38,20,6,.48) 0%, transparent 68%),
    var(--bg);
}
.rv-hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.rv-hero__bg-left {
  position: absolute;
  top: -10%; left: -15%;
  width: 52vw; height: 85vh;
  background: radial-gradient(ellipse at 35% 45%, rgba(150,82,28,.11) 0%, transparent 65%);
  filter: blur(80px);
}
.rv-hero__bg-right {
  position: absolute;
  top: 0; right: -8%;
  width: 50vw; height: 100%;
  background: radial-gradient(ellipse at 65% 50%, rgba(201,139,82,.12) 0%, transparent 62%);
  filter: blur(70px);
}

.rv-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Hero left */
.rv-hero__left { display: flex; flex-direction: column; }
.rv-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(201,139,82,.08);
  border: 1px solid rgba(201,139,82,.24);
  color: var(--gold-lt);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  width: fit-content;
}
.rv-hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: dotPulse 3s ease-in-out infinite;
}
.rv-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4.8vw, 72px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -1.5px;
  color: #F5EFEA;
  margin-top: 20px;
}
.rv-hero__title-em {
  font-style: italic;
  background: linear-gradient(115deg, var(--gold-warm) 0%, var(--gold-lt) 35%, var(--gold) 70%, #7a4e20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.06em;
}
.rv-hero__rule {
  display: block;
  width: 44px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold-lt), var(--gold), transparent);
  border-radius: 2px;
  margin: 22px 0 0;
}
.rv-hero__desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--para);
  max-width: 400px;
  margin-top: 16px;
}
.rv-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Hero right */
.rv-hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.rv-hero__visual {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.rv-hero__img-glow {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 52%, rgba(201,139,82,.18) 0%, rgba(201,139,82,.05) 45%, transparent 68%);
  filter: blur(44px);
  pointer-events: none;
}
.rv-hero__fig { position: relative; }
.rv-hero__fig::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-l);
  background: linear-gradient(145deg, rgba(201,139,82,.2) 0%, transparent 45%, rgba(201,139,82,.08) 100%);
  pointer-events: none;
  z-index: 1;
}
.rv-hero__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: calc(100vh - 180px);
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--r-l);
  box-shadow: 0 0 0 1px rgba(201,139,82,.12), var(--sh-l), var(--sh-xl);
  display: block;
  transition: transform .6s var(--ease);
}
.rv-hero__visual:hover .rv-hero__img { transform: scale(1.02); }

/* Floating info card */
.rv-info-card {
  position: absolute;
  left: -40px;
  bottom: 15%;
  min-width: 210px;
  background: linear-gradient(150deg, rgba(255,255,255,.97) 0%, rgba(251,245,237,.96) 100%);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(201,139,82,.18);
  border-radius: var(--r-m);
  padding: 18px 20px;
  color: #0d0905;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), var(--sh-m), var(--sh-l);
  z-index: 10;
  animation: cardRise 6s ease-in-out infinite;
}
.rv-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 14px; right: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.85) 40%, rgba(255,255,255,.85) 60%, transparent);
}
.rv-info-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.rv-info-card__stars {
  color: var(--gold-warm);
  font-size: 14px;
  letter-spacing: 2px;
}
.rv-info-card__score {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #0c0703;
}
.rv-info-card__list { display: flex; flex-direction: column; gap: 9px; }
.rv-info-card__item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 500;
  color: #4a3828;
}
.rv-info-card__item i {
  font-size: 13px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── 2. FORM SECTION ── */
.rv-form-section {
  padding: 100px 0 112px;
  background: linear-gradient(180deg, rgba(14,11,7,.95) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
.rv-form-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

/* Left copy */
.rv-form-section__copy .section-kicker { margin-bottom: 0; }

.rv-form-section__perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.rv-form-section__perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.rv-form-section__perk-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: var(--r-s);
  background: rgba(201,139,82,.1);
  border: 1px solid rgba(201,139,82,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--gold-lt);
}
.rv-form-section__perk strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.rv-form-section__perk p {
  font-size: 13px;
  color: var(--para);
  margin: 0;
  line-height: 1.6;
}

/* Glass form card */
.rv-form-card {
  background: linear-gradient(160deg, rgba(22,18,12,.97) 0%, rgba(14,12,8,.99) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 40px 36px;
  box-shadow: var(--sh-l);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.rv-form { display: flex; flex-direction: column; gap: 20px; }

.rv-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rv-form__group { display: flex; flex-direction: column; gap: 7px; }

.rv-form__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--para);
  display: flex;
  align-items: center;
  gap: 6px;
}
.rv-form__label i { color: var(--gold); font-size: 13px; }

.rv-form__input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-s);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.rv-form__input::placeholder { color: rgba(168,158,150,.5); }
.rv-form__input:hover { border-color: rgba(201,139,82,.3); background: rgba(255,255,255,.055); }
.rv-form__input:focus {
  border-color: var(--gold);
  background: rgba(201,139,82,.06);
  box-shadow: 0 0 0 3px rgba(201,139,82,.14);
}
/* Date/select colour fix in dark mode */
.rv-form__input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.6); cursor: pointer; }
.rv-form__select { cursor: pointer; }
.rv-form__select option { background: #1a1510; color: var(--text); }
.rv-form__textarea { resize: vertical; min-height: 90px; line-height: 1.6; }

.rv-form__submit {
  width: 100%;
  justify-content: center;
  padding: 15px 32px;
  font-size: 15px;
  margin-top: 4px;
}

.rv-form__badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.rv-form__badges li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--para);
}
.rv-form__badges li i { color: var(--gold); font-size: 13px; }

/* ── 3. WHY SECTION ── */
.rv-why {
  padding: 100px 0 112px;
  background: linear-gradient(180deg, rgba(14,11,7,.9) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
.rv-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.rv-why-card {
  background: linear-gradient(160deg, rgba(22,18,12,.97) 0%, rgba(14,12,8,.99) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.rv-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-lt) 35%, var(--gold) 50%, var(--gold-lt) 65%, transparent);
  transform: scaleX(0);
  transition: transform .44s var(--ease);
}
.rv-why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,139,82,.36);
  box-shadow: 0 0 0 1px rgba(201,139,82,.1), var(--sh-l);
}
.rv-why-card:hover::before { transform: scaleX(1); }

.rv-why-card__icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--r-m);
  background: rgba(201,139,82,.1);
  border: 1px solid rgba(201,139,82,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--gold-lt);
  margin: 0 auto 20px;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.rv-why-card:hover .rv-why-card__icon-wrap {
  background: rgba(201,139,82,.16);
  box-shadow: 0 0 24px rgba(201,139,82,.2);
}
.rv-why-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -.2px;
}
.rv-why-card__desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--para);
}

/* ── 4. STEPS ── */
.rv-steps {
  padding: 100px 0 112px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(12,9,6,.9) 0%, var(--bg) 100%);
}
.rv-steps__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  counter-reset: none;
  padding-top: 16px;
}
.rv-step {
  position: relative;
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Horizontal connector line between steps */
.rv-step__connector {
  position: absolute;
  top: 44px;
  left: calc(50% + 36px);
  right: calc(-50% + 36px);
  height: 1px;
  background: linear-gradient(90deg, rgba(201,139,82,.4), rgba(201,139,82,.1));
}
.rv-step__number {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
}
.rv-step__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(201,139,82,.09);
  border: 1.5px solid rgba(201,139,82,.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--gold-lt);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.rv-step:hover .rv-step__icon {
  background: rgba(201,139,82,.16);
  box-shadow: 0 0 28px rgba(201,139,82,.22);
}
.rv-step__title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.rv-step__desc { font-size: 13px; line-height: 1.7; color: var(--para); }

/* ── 5. POLICY ── */
.rv-policy {
  padding: 100px 0 112px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,139,82,.05) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg) 0%, rgba(12,9,6,.95) 100%);
}
.rv-policy__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.rv-policy__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(160deg, rgba(22,18,12,.97) 0%, rgba(14,12,8,.99) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  overflow: hidden;
}
.rv-policy__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  transition: background .25s var(--ease);
}
.rv-policy__item:last-child { border-bottom: none; }
.rv-policy__item:hover { background: rgba(201,139,82,.04); }
.rv-policy__icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.rv-policy__item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.rv-policy__item p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--para);
  margin: 0;
}

/* ── 6. FAQ ── */
.rv-faq {
  padding: 100px 0 112px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(14,11,7,.95) 0%, var(--bg) 100%);
}
.rv-faq__inner { max-width: 780px; margin: 0 auto; }

.rv-faq__list { display: flex; flex-direction: column; gap: 12px; }

.rv-faq__item {
  background: linear-gradient(160deg, rgba(22,18,12,.97) 0%, rgba(14,12,8,.99) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  overflow: hidden;
  transition: border-color .25s var(--ease);
}
.rv-faq__item.is-open { border-color: rgba(201,139,82,.32); }

.rv-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color .25s var(--ease);
}
.rv-faq__question:hover { color: var(--gold-lt); }
.rv-faq__icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.rv-faq__item.is-open .rv-faq__icon { transform: rotate(45deg); }

.rv-faq__answer {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--para);
}
/* Override hidden — visibility managed by JS + class */
.rv-faq__answer[hidden] { display: none; }

/* ── 7. FINAL CTA ── */
.rv-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.rv-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(201,139,82,.1) 0%, transparent 65%);
  pointer-events: none;
}
.rv-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto;
}
.rv-cta__kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.rv-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 18px;
}
.rv-cta__title-em {
  font-style: italic;
  background: linear-gradient(115deg, var(--gold-warm) 0%, var(--gold-lt) 40%, var(--gold) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rv-cta__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--para);
  margin-bottom: 36px;
}
.rv-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.rv-cta__btn { padding: 15px 38px; font-size: 14.5px; }

/* ── Today's Availability Widget ── */
.rv-avail {
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(255,255,255,.032);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rv-avail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.rv-avail__title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--text);
}

.rv-avail__conf {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--para);
}
.rv-avail__conf i { color: var(--gold); font-size: 12px; }
.rv-avail__conf strong { color: var(--gold-lt); font-weight: 600; }

.rv-avail__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-s);
  overflow: hidden;
}

.rv-avail__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  transition: background .2s var(--ease);
}
.rv-avail__row:last-child { border-bottom: none; }
.rv-avail__row:hover { background: rgba(255,255,255,.03); }

/* Pulsing status dot */
.rv-avail__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.rv-avail__dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  animation: dotRipple 2.6s ease-out infinite;
}
.rv-avail__dot--green { background: #4ade80; }
.rv-avail__dot--green::after { background: rgba(74,222,128,.25); animation-delay: 0s; }

.rv-avail__dot--yellow { background: #fbbf24; }
.rv-avail__dot--yellow::after { background: rgba(251,191,36,.25); animation-delay: .4s; }

.rv-avail__dot--red { background: #f87171; }
.rv-avail__dot--red::after { background: rgba(248,113,113,.25); animation-delay: .8s; }

@keyframes dotRipple {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(2.2); opacity: 0;  }
  100% { transform: scale(2.2); opacity: 0;  }
}

.rv-avail__slot {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.rv-avail__badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 3px 10px;
  border-radius: 50px;
}
.rv-avail__badge--green {
  background: rgba(74,222,128,.12);
  color: #86efac;
  border: 1px solid rgba(74,222,128,.2);
}
.rv-avail__badge--yellow {
  background: rgba(251,191,36,.12);
  color: #fde68a;
  border: 1px solid rgba(251,191,36,.2);
}
.rv-avail__badge--red {
  background: rgba(248,113,113,.12);
  color: #fca5a5;
  border: 1px solid rgba(248,113,113,.2);
}

/* ── Reservation responsive ── */
@media (max-width: 1100px) {
  .rv-why__grid  { grid-template-columns: repeat(2, 1fr); }
  .rv-steps__list { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .rv-step__connector { display: none; }
  .rv-step { border-bottom: 1px solid var(--border); padding-bottom: 40px; }
  .rv-step:last-child, .rv-step:nth-child(2) { border-bottom: none; }
}

@media (max-width: 991px) {
  .rv-hero__grid { grid-template-columns: 1fr; gap: 0; text-align: center; }
  .rv-hero__left { align-items: center; }
  .rv-hero__eyebrow { margin: 0 auto; }
  .rv-hero__desc { margin-left: auto; margin-right: auto; }
  .rv-hero__actions { justify-content: center; }
  .rv-hero__rule { margin-left: auto; margin-right: auto; }
  .rv-hero__right { margin-top: 44px; }
  .rv-hero__visual { max-width: 400px; margin: 0 auto; }
  .rv-info-card { left: -4px; }

  .rv-form-section__grid { grid-template-columns: 1fr; gap: 40px; }
  .rv-policy__inner { grid-template-columns: 1fr; gap: 36px; }
  .rv-section-header--left { text-align: center; }
}

@media (max-width: 767px) {
  .rv-why__grid   { grid-template-columns: 1fr 1fr; }
  .rv-steps__list { grid-template-columns: 1fr; }
  .rv-step { border-bottom: 1px solid var(--border) !important; padding-bottom: 32px; }
  .rv-step:last-child { border-bottom: none !important; }
}

@media (max-width: 575px) {
  .rv-hero { padding-top: 88px; padding-bottom: 56px; }
  .rv-hero__title { font-size: clamp(34px, 9vw, 46px); letter-spacing: -1px; }
  .rv-hero__visual { max-width: 100%; }
  .rv-info-card { left: 0; min-width: 180px; }
  .rv-hero__actions .btn { width: 100%; justify-content: center; }

  .rv-form-card { padding: 28px 20px; }
  .rv-form__row { grid-template-columns: 1fr; }

  .rv-why__grid  { grid-template-columns: 1fr; }
  .rv-why-card   { padding: 28px 22px; }

  .rv-cta__actions .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   MENU PAGE  ·  mn-* namespace
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Hero ── */
.mn-hero {
  position: relative;
  height: 72vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.mn-hero__bg { position: absolute; inset: 0; z-index: 0; }
.mn-hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  transition: transform 10s ease;
}
.mn-hero:hover .mn-hero__bg-img { transform: scale(1); }
.mn-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(6,4,2,.93) 0%,
    rgba(10,6,3,.80) 45%,
    rgba(6,4,2,.50) 100%);
}
.mn-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.mn-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(201,139,82,.08);
  border: 1px solid rgba(201,139,82,.24);
  color: var(--gold-lt);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
}
.mn-hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 3s ease-in-out infinite;
  flex-shrink: 0;
}
.mn-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #F5EFEA;
  margin-top: 20px;
}
.mn-hero__em {
  font-style: italic;
  background: linear-gradient(115deg, var(--gold-warm) 0%, var(--gold-lt) 38%, var(--gold) 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mn-hero__desc {
  font-size: 15px;
  line-height: 1.82;
  color: var(--para);
  max-width: 480px;
  margin-top: 16px;
}
.mn-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ── 2. Sticky category nav ── */
.mn-cat-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(8,7,5,.90);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.mn-cat-nav__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mn-cat-nav__inner::-webkit-scrollbar { display: none; }

.mn-cat-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.mn-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 16px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--para);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color .22s var(--ease);
  white-space: nowrap;
}
.mn-cat-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .28s var(--ease);
}
.mn-cat-btn:hover { color: var(--text); }
.mn-cat-btn.is-active { color: var(--gold-lt); font-weight: 600; }
.mn-cat-btn.is-active::after { width: 80%; }

/* ── 3. Search & filter bar ── */
.mn-search-bar {
  padding: 28px 0 0;
  background: var(--bg);
}
.mn-search-bar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.mn-search-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
}
.mn-search-wrap__icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--para);
  font-size: 14px;
  pointer-events: none;
}
.mn-search {
  width: 100%;
  padding: 12px 14px 12px 40px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-s);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .24s var(--ease), box-shadow .24s var(--ease);
}
.mn-search::placeholder { color: var(--para); }
.mn-search:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,139,82,.13);
}

.mn-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.mn-filter {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--para);
  cursor: pointer;
  transition: color .22s var(--ease), border-color .22s var(--ease),
              background .22s var(--ease), transform .22s var(--ease);
}
.mn-filter i { font-size: 11px; }
.mn-filter:hover {
  color: var(--gold-lt);
  border-color: rgba(201,139,82,.3);
  background: rgba(201,139,82,.06);
  transform: translateY(-1px);
}
.mn-filter.is-active {
  background: linear-gradient(130deg, var(--gold) 0%, var(--gold-dk) 100%);
  border-color: transparent;
  color: #fff;
}
.mn-filter__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.mn-filter__dot--green { background: #4ade80; }
.mn-filter__dot--red   { background: #f87171; }

/* ── 4. Menu section ── */
.mn-section {
  padding: 36px 0 100px;
  background: var(--bg);
}
.mn-results {
  font-size: 12px;
  font-weight: 500;
  color: var(--para);
  letter-spacing: .3px;
  margin-bottom: 24px;
}

/* Grid */
.mn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Card — same language as home menu cards */
.mn-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(22,18,12,.97) 0%, rgba(14,12,8,.99) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.mn-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,139,82,.38);
  box-shadow: 0 0 0 1px rgba(201,139,82,.12), var(--sh-l), 0 0 56px rgba(201,139,82,.09);
}
.mn-card.is-hidden { display: none; }

.mn-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}
.mn-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.mn-card:hover .mn-card__img { transform: scale(1.07); }
.mn-card__img-wrap::after {
  content: '';
  position: absolute; inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(14,12,8,.95) 0%, transparent 100%);
  pointer-events: none;
}
.mn-card__cat {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(9,7,4,.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,139,82,.26);
  border-radius: 50px;
  padding: 3px 11px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.mn-card__tag {
  position: absolute;
  top: 12px; right: 12px;
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
}
.mn-card__tag--gold {
  background: rgba(201,139,82,.18);
  border: 1px solid rgba(201,139,82,.35);
  color: var(--gold-lt);
}
.mn-card__tag--blue {
  background: rgba(96,165,250,.14);
  border: 1px solid rgba(96,165,250,.3);
  color: #93c5fd;
}

.mn-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 20px;
  gap: 9px;
}
.mn-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.mn-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -.2px;
}
.mn-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-lt);
  white-space: nowrap;
  flex-shrink: 0;
}
.mn-card__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--para);
  flex: 1;
}
.mn-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.mn-card__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--gold-warm);
}
.mn-card__stars span {
  font-size: 12px;
  font-weight: 600;
  color: var(--para);
  margin-left: 3px;
}
.mn-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid rgba(201,139,82,.28);
  background: rgba(201,139,82,.08);
  color: var(--gold-lt);
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease),
              color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.mn-card__btn i { font-size: 11px; transition: transform .25s var(--ease); }
.mn-card__btn:hover {
  background: linear-gradient(130deg, var(--gold) 0%, var(--gold-dk) 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--sh-gold-s);
}
.mn-card__btn:hover i { transform: translateX(3px); }

/* Empty state */
.mn-empty {
  text-align: center;
  padding: 80px 0;
}
.mn-empty i { font-size: 48px; color: var(--para); opacity: .4; display: block; margin-bottom: 16px; }
.mn-empty p { color: var(--para); margin-bottom: 20px; }

/* ── 5. Today's Special ── */
.mn-special {
  padding: 100px 0 112px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,139,82,.06) 0%, transparent 65%),
    linear-gradient(180deg, rgba(14,11,7,.9) 0%, var(--bg) 100%);
}
.mn-special__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mn-special__img-wrap {
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
}
.mn-special__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--r-l);
  box-shadow: var(--sh-l), var(--sh-xl);
  transition: transform .6s var(--ease);
}
.mn-special__img-wrap:hover .mn-special__img { transform: scale(1.04); }
.mn-special__discount {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(130deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: var(--sh-gold-s);
  letter-spacing: .3px;
}
.mn-special__copy .section-kicker { margin-bottom: 0; }
.mn-special__chef {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--para);
}
.mn-special__chef-img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,139,82,.3);
}
.mn-special__chef strong { color: var(--text); font-weight: 600; }
.mn-special__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 20px;
}
.mn-special__price-old {
  font-size: 18px;
  color: var(--para);
  text-decoration: line-through;
}
.mn-special__price-new {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: -.5px;
}
.mn-special__save {
  font-size: 12px;
  font-weight: 700;
  background: rgba(74,222,128,.12);
  color: #86efac;
  border: 1px solid rgba(74,222,128,.2);
  padding: 3px 10px;
  border-radius: 50px;
}
.mn-special__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ── 6. Combos ── */
.mn-combos {
  padding: 100px 0 112px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(14,11,7,.9) 0%, var(--bg) 100%);
}
.mn-combos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mn-combo-card {
  position: relative;
  background: linear-gradient(160deg, rgba(22,18,12,.97) 0%, rgba(14,12,8,.99) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.mn-combo-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,139,82,.36);
  box-shadow: 0 0 0 1px rgba(201,139,82,.1), var(--sh-l);
}
.mn-combo-card__ribbon {
  position: absolute;
  top: 16px; left: -1px;
  background: linear-gradient(130deg, var(--gold) 0%, var(--gold-dk) 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px 5px 15px;
  border-radius: 0 50px 50px 0;
  letter-spacing: .3px;
  z-index: 2;
  box-shadow: var(--sh-gold-s);
}
.mn-combo-card__imgs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  height: 160px;
  overflow: hidden;
}
.mn-combo-card__imgs img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.mn-combo-card:hover .mn-combo-card__imgs img { transform: scale(1.06); }
.mn-combo-card__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 300;
  color: var(--gold);
  z-index: 2;
  flex-shrink: 0;
}
.mn-combo-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mn-combo-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.2px;
}
.mn-combo-card__desc { font-size: 13px; line-height: 1.7; color: var(--para); }
.mn-combo-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.mn-combo-card__old {
  font-size: 14px;
  color: var(--para);
  text-decoration: line-through;
}
.mn-combo-card__new {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-lt);
}

/* ── Menu responsive ── */
@media (max-width: 1200px) {
  .mn-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
  .mn-grid         { grid-template-columns: repeat(2, 1fr); }
  .mn-combos__grid { grid-template-columns: repeat(2, 1fr); }
  .mn-special__inner { grid-template-columns: 1fr; gap: 40px; }
  .mn-special__actions .btn { width: 100%; justify-content: center; }
  .mn-search-bar__inner { flex-direction: column; align-items: flex-start; }
  .mn-search-wrap { width: 100%; }
}
@media (max-width: 767px) {
  .mn-combos__grid { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .mn-hero { height: auto; padding-top: 100px; padding-bottom: 56px; }
  .mn-hero__title { font-size: clamp(32px, 9vw, 46px); letter-spacing: -1px; }
  .mn-hero__actions .btn { width: 100%; justify-content: center; }
  .mn-grid { grid-template-columns: 1fr; gap: 16px; }
  .mn-filters { gap: 6px; }
  .mn-filter { padding: 7px 13px; font-size: 12px; }
  .mn-special__price-new { font-size: 28px; }
}


/* ═══════════════════════════════════════════════════════════════
   PREMIUM FOOTER  ·  ft-* namespace
   ═══════════════════════════════════════════════════════════════ */
.ft {
  position: relative;
  background:
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(201,139,82,.07) 0%, transparent 65%),
    linear-gradient(180deg, rgba(10,8,5,.98) 0%, #060503 100%);
  padding: 80px 0 0;
  overflow: hidden;
}

/* Glowing top border — warm gold sweep */
.ft__border {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,139,82,.15) 15%,
    rgba(201,139,82,.6) 35%,
    var(--gold-lt) 50%,
    rgba(201,139,82,.6) 65%,
    rgba(201,139,82,.15) 85%,
    transparent 100%);
}

/* Ambient background glow */
.ft__glow {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 80vw; height: 50vh;
  background: radial-gradient(ellipse, rgba(201,139,82,.06) 0%, transparent 65%);
  filter: blur(72px);
  pointer-events: none;
}

/* ── Grid ── */
.ft__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
}

/* ── Column title ── */
.ft__col-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.2px;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}
.ft__col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* ── Brand col ── */
.ft__logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}
.ft__logo-ring {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,139,82,.4);
  background: rgba(201,139,82,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt);
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
  flex-shrink: 0;
}
.ft__logo:hover .ft__logo-ring {
  border-color: rgba(201,139,82,.75);
  box-shadow: 0 0 22px rgba(201,139,82,.2);
}
.ft__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .2px;
  color: var(--text);
}

.ft__brand-desc {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--para);
  max-width: 280px;
  margin-bottom: 22px;
}

/* Google rating chip */
.ft__rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,139,82,.2);
  border-radius: var(--r-s);
  padding: 10px 16px;
  margin-bottom: 18px;
}
.ft__rating-stars {
  color: var(--gold-warm);
  font-size: 15px;
  letter-spacing: 2px;
}
.ft__rating-score {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.ft__rating-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--para);
  margin-top: 2px;
}

.ft__since {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-style: italic;
  color: rgba(168,158,150,.65);
}
.ft__since i { color: var(--gold); font-size: 14px; }

/* ── Quick links ── */
.ft__links { display: flex; flex-direction: column; gap: 4px; }
.ft__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  color: var(--para);
  padding: 5px 0;
  position: relative;
  transition: color var(--t) var(--ease), gap var(--t) var(--ease);
}
/* Golden underline animation */
.ft__link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 1px;
  transition: width .32s var(--ease);
}
.ft__link i { font-size: 16px; color: var(--gold); opacity: .7; transition: opacity var(--t) var(--ease), transform var(--t) var(--ease); }
.ft__link:hover { color: var(--gold-lt); gap: 8px; }
.ft__link:hover::after { width: 100%; }
.ft__link:hover i { opacity: 1; transform: translateX(3px); }

/* ── Opening hours ── */
.ft__hours { display: flex; flex-direction: column; gap: 0; }
.ft__hours-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.ft__hours-row:last-child { border-bottom: none; }
.ft__hours-day {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--para);
}
.ft__hours-time {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

/* Live status pill */
.ft__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.2);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #86efac;
}
.ft__status--closed {
  background: rgba(248,113,113,.08);
  border-color: rgba(248,113,113,.2);
  color: #fca5a5;
}
.ft__status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  position: relative;
}
.ft__status-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(74,222,128,.25);
  animation: dotRipple 2.4s ease-out infinite;
}
.ft__status--closed .ft__status-dot { background: #f87171; }
.ft__status--closed .ft__status-dot::after { background: rgba(248,113,113,.25); }

/* ── Contact col ── */
.ft__contact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.ft__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--para);
}
.ft__contact-icon {
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.ft__contact-link {
  color: var(--para);
  transition: color var(--t) var(--ease);
}
.ft__contact-link:hover { color: var(--gold-lt); }

/* WhatsApp button — pulse on hover */
.ft__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 24px;
  background: linear-gradient(130deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 22px;
  box-shadow: 0 4px 20px rgba(37,211,102,.2);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.ft__whatsapp i { font-size: 16px; }
.ft__whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.35);
  animation: waPulse .6s ease-in-out;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,.35); }
  50%     { box-shadow: 0 8px 48px rgba(37,211,102,.6); }
}

/* Social icons */
.ft__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ft__social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--para);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  transition: color var(--t) var(--ease),
              background var(--t) var(--ease),
              border-color var(--t) var(--ease),
              transform var(--t) var(--spring),
              box-shadow var(--t) var(--ease);
}
.ft__social-btn:hover {
  color: var(--gold-lt);
  background: rgba(201,139,82,.1);
  border-color: rgba(201,139,82,.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201,139,82,.18);
}

/* ── Bottom bar ── */
.ft__bottom { padding: 0; }
.ft__bottom-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--border) 20%,
    rgba(201,139,82,.15) 50%,
    var(--border) 80%,
    transparent 100%);
}
.ft__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 24px;
}
.ft__copy {
  font-size: 13px;
  color: var(--para);
  margin: 0;
}
.ft__copy-brand { color: var(--gold-lt); font-weight: 600; }
.ft__legal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ft__legal-link {
  font-size: 13px;
  color: var(--para);
  transition: color var(--t) var(--ease);
  position: relative;
}
.ft__legal-link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .28s var(--ease);
}
.ft__legal-link:hover { color: var(--gold-lt); }
.ft__legal-link:hover::after { width: 100%; }
.ft__legal-sep { color: rgba(168,158,150,.35); font-size: 12px; }
.ft__made { font-size: 13px; color: var(--para); }
.ft__heart { display: inline-block; animation: heartBeat 2.4s ease-in-out infinite; }
@keyframes heartBeat {
  0%,100% { transform: scale(1); }
  14%     { transform: scale(1.25); }
  28%     { transform: scale(1); }
  42%     { transform: scale(1.15); }
  56%     { transform: scale(1); }
}

/* ── Footer fade-up reveal ── */
[data-ft-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-ft-reveal].ft-visible { opacity: 1; transform: none; }

/* ── Footer responsive ── */
@media (max-width: 1100px) {
  .ft__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ft__col--brand { grid-column: 1 / -1; }
  .ft__brand-desc { max-width: 100%; }
}
@media (max-width: 767px) {
  .ft__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ft__col--brand { grid-column: 1 / -1; }
}
@media (max-width: 575px) {
  .ft { padding-top: 56px; }
  .ft__grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 48px; }
  .ft__col--brand { grid-column: auto; }
  .ft__bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ft__legal { gap: 8px; }
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE  ·  ab-* namespace
   ═══════════════════════════════════════════════════════════════ */

/* ── Shared section primitives ── */
.ab-section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}
.ab-section-header .section-kicker { margin-bottom: 12px; }

.ab-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.8px;
  color: var(--text);
  margin-bottom: 14px;
}
.ab-section-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--para);
}

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

.ab-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ab-hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  transition: transform 14s ease;
}
.ab-hero:hover .ab-hero__bg-img { transform: scale(1); }

.ab-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(5,3,1,.92) 0%,
    rgba(9,6,3,.80) 45%,
    rgba(5,3,1,.70) 100%
  );
}
.ab-hero__glow-left {
  position: absolute;
  bottom: -10%; left: -15%;
  width: 55vw; height: 70vh;
  background: radial-gradient(ellipse at 40% 60%, rgba(150,82,28,.15) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}
.ab-hero__glow-right {
  position: absolute;
  top: -10%; right: -10%;
  width: 50vw; height: 80vh;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,139,82,.12) 0%, transparent 60%);
  filter: blur(72px);
  pointer-events: none;
}

.ab-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 80px;
}

.ab-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(201,139,82,.08);
  border: 1px solid rgba(201,139,82,.28);
  color: var(--gold-lt);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.ab-hero__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: dotPulse 3s ease-in-out infinite;
}

.ab-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -2px;
  color: #F5EFEA;
  max-width: 820px;
  margin-bottom: 22px;
}
.ab-hero__em {
  font-style: italic;
  background: linear-gradient(115deg, var(--gold-warm) 0%, var(--gold-lt) 38%, var(--gold) 75%, #7a4e20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ab-hero__subtitle {
  font-size: 16px;
  line-height: 1.85;
  color: var(--para);
  max-width: 520px;
  margin-bottom: 36px;
}
.ab-hero__br { display: block; }

.ab-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ──────────────────────────────────────────────────────────────
   2. OUR STORY
   ────────────────────────────────────────────────────────────── */
.ab-story {
  padding: 100px 0 112px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(14,11,7,.95) 0%, var(--bg) 100%);
  position: relative;
}
.ab-story::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45vw; height: 60%;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,139,82,.06) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

.ab-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Image column */
.ab-story__img-wrap {
  position: relative;
  max-width: 500px;
}
.ab-story__img-glow {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 52%, rgba(201,139,82,.18) 0%, rgba(201,139,82,.05) 45%, transparent 68%);
  filter: blur(44px);
  pointer-events: none;
}
.ab-story__fig { position: relative; }
.ab-story__fig::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-l);
  background: linear-gradient(145deg, rgba(201,139,82,.2) 0%, transparent 45%, rgba(201,139,82,.08) 100%);
  pointer-events: none;
  z-index: 1;
}
.ab-story__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-l);
  box-shadow: 0 0 0 1px rgba(201,139,82,.12), var(--sh-l), var(--sh-xl);
  display: block;
  transition: transform .7s var(--ease);
}
.ab-story__img-wrap:hover .ab-story__img { transform: scale(1.02); }

/* Since badge */
.ab-story__since {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  border: 3px solid var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-gold-m);
  z-index: 5;
  animation: cardRise 6s ease-in-out infinite;
}
.ab-story__since-year {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.ab-story__since-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-top: 2px;
}

/* Copy column */
.ab-story__copy .section-kicker { text-align: left; margin-bottom: 0; }
.ab-story__copy .section-kicker::before,
.ab-story__copy .section-kicker::after { display: none; }

.ab-story__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.8px;
  color: var(--text);
  margin: 14px 0 0;
}
.ab-story__rule {
  display: block;
  width: 44px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold-lt), var(--gold), transparent);
  border-radius: 2px;
  margin: 22px 0;
}
.ab-story__body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--para);
  margin-bottom: 18px;
}
.ab-story__body:last-of-type { margin-bottom: 28px; }

/* Founder signature */
.ab-story__sig {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.ab-story__sig-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(115deg, var(--gold-warm) 0%, var(--gold-lt) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.ab-story__sig-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--para);
  display: block;
}
.ab-story__sig-line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 4px;
}

/* ──────────────────────────────────────────────────────────────
   3. WHY CHOOSE US
   ────────────────────────────────────────────────────────────── */
.ab-why {
  padding: 100px 0 112px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(12,9,6,.95) 0%, var(--bg) 100%);
}
.ab-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ab-why-card {
  position: relative;
  background: linear-gradient(160deg, rgba(22,18,12,.97) 0%, rgba(14,12,8,.99) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 40px 28px 36px;
  text-align: center;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.ab-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-lt) 35%, var(--gold) 50%, var(--gold-lt) 65%, transparent);
  transform: scaleX(0);
  transition: transform .44s var(--ease);
}
.ab-why-card:hover {
  transform: translateY(-12px);
  border-color: rgba(201,139,82,.36);
  box-shadow: 0 0 0 1px rgba(201,139,82,.1), var(--sh-l), 0 0 60px rgba(201,139,82,.08);
}
.ab-why-card:hover::before { transform: scaleX(1); }

.ab-why-card__icon-wrap {
  width: 62px; height: 62px;
  border-radius: var(--r-m);
  background: rgba(201,139,82,.1);
  border: 1px solid rgba(201,139,82,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--gold-lt);
  margin: 0 auto 22px;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--spring);
}
.ab-why-card:hover .ab-why-card__icon-wrap {
  background: rgba(201,139,82,.18);
  box-shadow: 0 0 28px rgba(201,139,82,.22);
  transform: scale(1.08);
}
.ab-why-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -.2px;
}
.ab-why-card__desc {
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--para);
}
.ab-why-card__num {
  position: absolute;
  bottom: 16px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: rgba(201,139,82,.07);
  pointer-events: none;
  user-select: none;
  transition: color .3s var(--ease);
}
.ab-why-card:hover .ab-why-card__num { color: rgba(201,139,82,.12); }

/* ──────────────────────────────────────────────────────────────
   4. MEET OUR TEAM
   ────────────────────────────────────────────────────────────── */
.ab-team {
  padding: 100px 0 112px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,139,82,.05) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg) 0%, rgba(12,9,6,.98) 100%);
}
.ab-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ab-team-card {
  background: linear-gradient(160deg, rgba(22,18,12,.97) 0%, rgba(14,12,8,.99) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.ab-team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,139,82,.35);
  box-shadow: 0 0 0 1px rgba(201,139,82,.1), var(--sh-l);
}

.ab-team-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.ab-team-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s var(--ease);
  display: block;
}
.ab-team-card:hover .ab-team-card__img { transform: scale(1.06); }
.ab-team-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,7,4,.85) 0%, rgba(9,7,4,.1) 50%, transparent 100%);
}

.ab-team-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ab-team-card__role {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.ab-team-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.2px;
  line-height: 1.2;
}
.ab-team-card__bio {
  font-size: 13px;
  line-height: 1.7;
  color: var(--para);
  margin: 4px 0 14px;
}

.ab-team-card__social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.ab-team-card__social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--para);
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--spring);
}
.ab-team-card__social-btn:hover {
  color: var(--gold-lt);
  background: rgba(201,139,82,.1);
  border-color: rgba(201,139,82,.3);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────────────────────────
   5. JOURNEY TIMELINE
   ────────────────────────────────────────────────────────────── */
.ab-timeline {
  padding: 100px 0 112px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(12,9,6,.95) 0%, var(--bg) 100%);
}

.ab-timeline__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  padding-top: 20px;
}

/* Horizontal connecting line */
.ab-timeline__track::before {
  content: '';
  position: absolute;
  top: 80px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,139,82,.4) 15%, rgba(201,139,82,.4) 85%, transparent);
  z-index: 0;
}

.ab-timeline__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.ab-timeline__node { display: flex; flex-direction: column; align-items: center; }

.ab-timeline__year {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.ab-timeline__circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(201,139,82,.1);
  border: 1.5px solid rgba(201,139,82,.32);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--gold-lt);
  position: relative;
  z-index: 2;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--spring);
  cursor: default;
}
.ab-timeline__item:hover .ab-timeline__circle {
  background: rgba(201,139,82,.18);
  box-shadow: 0 0 32px rgba(201,139,82,.25);
  transform: scale(1.1);
}

/* Vertical connector from circle to card */
.ab-timeline__line {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, rgba(201,139,82,.4), transparent);
  margin: 0 auto;
}

.ab-timeline__card {
  background: linear-gradient(160deg, rgba(22,18,12,.97) 0%, rgba(14,12,8,.99) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  padding: 20px 20px;
  margin-top: 4px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  width: 100%;
}
.ab-timeline__item:hover .ab-timeline__card {
  border-color: rgba(201,139,82,.3);
  box-shadow: var(--sh-s);
}
.ab-timeline__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -.2px;
}
.ab-timeline__card-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--para);
}

/* ──────────────────────────────────────────────────────────────
   6. AWARDS & RECOGNITION
   ────────────────────────────────────────────────────────────── */
.ab-awards {
  padding: 100px 0 112px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,139,82,.05) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg) 0%, rgba(12,9,6,.98) 100%);
}
.ab-awards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ab-award-card {
  position: relative;
  background: linear-gradient(160deg, rgba(22,18,12,.97) 0%, rgba(14,12,8,.99) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 40px 28px 36px;
  text-align: center;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.ab-award-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-lt) 35%, var(--gold) 50%, var(--gold-lt) 65%, transparent);
  transform: scaleX(0);
  transition: transform .44s var(--ease);
}
.ab-award-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201,139,82,.38);
  box-shadow: 0 0 0 1px rgba(201,139,82,.1), var(--sh-l), 0 0 56px rgba(201,139,82,.08);
}
.ab-award-card:hover::before { transform: scaleX(1); }

.ab-award-card__icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,139,82,.15) 0%, rgba(201,139,82,.06) 100%);
  border: 1.5px solid rgba(201,139,82,.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--gold-lt);
  margin: 0 auto 18px;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--spring);
}
.ab-award-card:hover .ab-award-card__icon-wrap {
  background: linear-gradient(135deg, rgba(201,139,82,.24) 0%, rgba(201,139,82,.1) 100%);
  box-shadow: 0 0 28px rgba(201,139,82,.25);
  transform: scale(1.08) rotate(5deg);
}

.ab-award-card__badge {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(201,139,82,.12);
  border: 1px solid rgba(201,139,82,.24);
  color: var(--gold-lt);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 50px;
}
.ab-award-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -.2px;
}
.ab-award-card__org {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.ab-award-card__desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--para);
}

/* ──────────────────────────────────────────────────────────────
   7. EXPERIENCE GALLERY
   ────────────────────────────────────────────────────────────── */
.ab-gallery {
  padding: 100px 0 112px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(14,11,7,.95) 0%, var(--bg) 100%);
}

.ab-gallery__masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}

.ab-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-m);
  border: 1px solid var(--border);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.ab-gallery__item--tall {
  grid-row: 1 / 3;
  aspect-ratio: 3 / 4;
}
.ab-gallery__item--wide {
  grid-column: 2 / 4;
  aspect-ratio: 16 / 9;
}

.ab-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s var(--ease);
  display: block;
}
.ab-gallery__item:hover img { transform: scale(1.07); }

.ab-gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,7,4,.0);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: rgba(255,255,255,0);
  transition: background .3s var(--ease), color .3s var(--ease);
  border-radius: inherit;
}
.ab-gallery__item:hover .ab-gallery__item-overlay {
  background: rgba(9,7,4,.45);
  color: var(--gold-lt);
}

.ab-gallery__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.ab-gallery__cta {
  padding: 14px 40px;
  font-size: 14px;
  gap: 10px;
  border-color: rgba(201,139,82,.28);
  color: var(--gold-lt);
}
.ab-gallery__cta:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
  background: rgba(201,139,82,.06);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────────────────────────
   8. STATISTICS
   ────────────────────────────────────────────────────────────── */
.ab-stats {
  padding: 100px 0 112px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(12,9,6,.95) 0%, var(--bg) 100%);
  position: relative;
}
.ab-stats::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 70vw; height: 50vh;
  background: radial-gradient(ellipse, rgba(201,139,82,.05) 0%, transparent 65%);
  filter: blur(56px);
  pointer-events: none;
}

.ab-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ab-stat-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(24,20,14,.96) 0%, rgba(16,13,9,.98) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  padding: 44px 24px 38px;
  text-align: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  cursor: default;
}
.ab-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-lt) 35%, var(--gold) 50%, var(--gold-lt) 65%, transparent);
  transform: scaleX(0);
  transition: transform .44s var(--ease);
}
.ab-stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,139,82,.3);
  box-shadow: 0 0 0 1px rgba(201,139,82,.1), var(--sh-l);
}
.ab-stat-card:hover::before { transform: scaleX(1); }

.ab-stat-card__icon {
  font-size: 26px;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
  transition: transform .3s var(--spring);
}
.ab-stat-card:hover .ab-stat-card__icon { transform: scale(1.1); }

.ab-stat-card__num-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}
.ab-stat-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}
.ab-stat-card__num--static { font-size: 44px; }
.ab-stat-card__plus {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-left: 1px;
}
.ab-stat-card__plus--star {
  font-size: 22px;
  color: var(--gold-warm);
}
.ab-stat-card__sep-word {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-left: 6px;
  line-height: 1;
}
.ab-stat-card__label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--para);
  letter-spacing: .3px;
}
.ab-stat-card__glow { display: none; }

/* ──────────────────────────────────────────────────────────────
   9. FINAL CTA
   ────────────────────────────────────────────────────────────── */
.ab-cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.ab-cta__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(201,139,82,.11) 0%, transparent 65%);
  pointer-events: none;
}
.ab-cta__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.02'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.ab-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto;
}
.ab-cta__kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.ab-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 18px;
}
.ab-cta__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--para);
  margin-bottom: 38px;
}
.ab-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ab-cta__btn { padding: 15px 38px; font-size: 14.5px; }

/* ──────────────────────────────────────────────────────────────
   FOOTER  ·  about-page reveal helpers
   ────────────────────────────────────────────────────────────── */
[data-ft-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
[data-ft-reveal].ft-visible {
  opacity: 1;
  transform: none;
}

/* ──────────────────────────────────────────────────────────────
   ABOUT PAGE RESPONSIVE
   ────────────────────────────────────────────────────────────── */
@media (max-width: 1280px) {
  .ab-story__since { right: -8px; }
}

@media (max-width: 1100px) {
  .ab-why__grid    { grid-template-columns: repeat(2, 1fr); }
  .ab-team__grid   { grid-template-columns: repeat(2, 1fr); }
  .ab-awards__grid { grid-template-columns: repeat(2, 1fr); }
  .ab-stats__grid  { grid-template-columns: repeat(2, 1fr); }

  .ab-timeline__track { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .ab-timeline__track::before { display: none; }
}

@media (max-width: 991px) {
  .ab-story__grid  { grid-template-columns: 1fr; gap: 56px; }
  .ab-story__img-wrap { max-width: 420px; margin: 0 auto; }
  .ab-story__copy .section-kicker,
  .ab-story__title,
  .ab-story__body { text-align: center; }
  .ab-story__rule { margin-left: auto; margin-right: auto; }
  .ab-story__sig  { align-items: center; text-align: center; }
  .ab-story__since { right: 4px; }

  .ab-gallery__masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
  }
  .ab-gallery__item--tall { grid-row: unset; aspect-ratio: 4 / 3; }
  .ab-gallery__item--wide { grid-column: unset; aspect-ratio: 4 / 3; }
}

@media (max-width: 767px) {
  .ab-team__grid   { grid-template-columns: repeat(2, 1fr); }
  .ab-timeline__track { grid-template-columns: 1fr; gap: 28px; }
  .ab-awards__grid { grid-template-columns: 1fr 1fr; }

  .ab-gallery__masonry { grid-template-columns: 1fr; }
  .ab-gallery__item--tall,
  .ab-gallery__item--wide { grid-column: unset; grid-row: unset; aspect-ratio: 4 / 3; }
}

@media (max-width: 575px) {
  .ab-hero__title    { font-size: clamp(36px, 9vw, 52px); letter-spacing: -1.2px; }
  .ab-hero__subtitle { font-size: 14px; }
  .ab-hero__br       { display: none; }
  .ab-hero__actions .btn { width: 100%; justify-content: center; }

  .ab-why__grid    { grid-template-columns: 1fr; }
  .ab-team__grid   { grid-template-columns: 1fr; }
  .ab-awards__grid { grid-template-columns: 1fr; }
  .ab-stats__grid  { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ab-stat-card    { padding: 32px 16px 28px; }
  .ab-stat-card__num { font-size: 38px; }

  .ab-cta__actions .btn { width: 100%; justify-content: center; }
  .ab-cta { padding: 80px 0; }

  .ab-story { padding: 72px 0 80px; }
  .ab-story__since { width: 72px; height: 72px; right: 0; bottom: -12px; }
  .ab-story__since-year { font-size: 17px; }

  .section-kicker::before,
  .section-kicker::after { display: none; }
}

@media (max-width: 400px) {
  .ab-stats__grid { grid-template-columns: 1fr; }
}
