/* SilerChef embed — brand: charcoal + gold (business card) */

:root {
  --bg: #141214;
  --bg-elevated: #1c1a1c;
  --bg-soft: #231f20;
  --line: rgba(197, 160, 89, 0.35);
  --gold-1: #f3ead1;
  --gold-2: #d4bc6a;
  --gold-3: #c5a059;
  --gold-4: #8a6d3a;
  --text: rgba(243, 234, 209, 0.92);
  --text-muted: rgba(243, 234, 209, 0.58);
  --radius: 14px;
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-flow: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.35s;
  --t-med: 0.55s;
  --t-slow: 0.9s;
  --t-reveal: 1.12s;
  --t-hover: 0.48s;
  --t-hover-slow: 0.72s;
  --page-max: 1400px;
  --page-gutter: clamp(1rem, 4vw, 2.25rem);
  --header-offset: clamp(5.8rem, 8vw, 6.9rem);
}

@media (max-width: 900px) {
  :root {
    --t-reveal: 0.72s;
    --header-offset: 5.45rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: visible;
}

/*
 * Tek dikey kaydırma için scroll kökü html.
 * İçerik .page içinde taşarsa documentElement.scrollHeight tam yüksekliği verir.
 * (.page üzerinde overflow-y kaydırmayı bırakmak scrollHeight’ı viewport’ta tutup çift çubuğa yol açıyordu.)
 */
html.is-embed {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-padding-top: calc(var(--header-offset) + 0.85rem);
  scroll-padding-bottom: max(5.5rem, calc(env(safe-area-inset-bottom, 0px) + 4rem));
}
html.is-embed body {
  margin: 0;
  min-height: min-content;
  overflow-x: hidden;
  overflow-y: visible;
}
html.is-embed .page {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  padding-bottom: max(5rem, calc(env(safe-area-inset-bottom, 0px) + 4rem));
}

/* Mobile WebKit: gradient “gold” text can render invisible (clip + no font) → looks like a black empty page */
html.is-embed .bg-vignette {
  opacity: 0.45;
  /* Match main vignette focal point — keeps embed previews from a heavy band under the header. */
  background: radial-gradient(
    ellipse 105% 90% at 50% 128%,
    transparent 50%,
    rgba(0, 0, 0, 0.32) 100%
  );
}

html.is-embed .bg-texture {
  opacity: 0.55;
}

a[href],
button,
label[for],
summary {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

input,
textarea,
select,
button {
  touch-action: manipulation;
}

section[id] {
  scroll-margin-top: calc(var(--header-offset) + 0.85rem);
}

/* Subtle mandala / culinary texture (card back inspired) */
.bg-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(197, 160, 89, 0.12), transparent 55%),
    radial-gradient(circle at 50% 40%, rgba(197, 160, 89, 0.06), transparent 45%),
    repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg 8deg, rgba(197, 160, 89, 0.03) 8deg 9deg);
  opacity: 0.9;
}

.bg-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  /* Anchor below viewport so edges/corners vignette — not a dull bar across the top behind the sticky header rail. */
  background: radial-gradient(
    ellipse 105% 90% at 50% 128%,
    transparent 46%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.shell {
  width: 100%;
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow-x: clip;
  padding-top: var(--header-offset);
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-3) 45%, var(--gold-4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-feature-settings: "kern" 1, "liga" 1;
}

/* iOS / mobile Chrome: background-clip:text + transparent often fails → only #141214 visible ("black screen") */
@media (max-width: 900px) {
  .gold-text,
  .brand-text strong,
  .hub-card-index,
  .stat-num {
    color: var(--gold-2) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--gold-2) !important;
  }

  .bg-vignette {
    opacity: 0.5;
    background: radial-gradient(
      ellipse 105% 90% at 50% 128%,
      transparent 54%,
      rgba(0, 0, 0, 0.3) 100%
    );
  }
}

.brand-logo {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-logo--header {
  width: 2.35rem;
  height: 2.35rem;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.35));
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background:
    linear-gradient(155deg, rgba(42, 38, 40, 0.98), rgba(18, 16, 18, 1));
  border: 1px solid rgba(197, 160, 89, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.09),
    0 2px 12px rgba(0, 0, 0, 0.4);
}

.brand-lockup {
  grid-area: brand;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-lockup__shell {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.25rem 0.9rem 0.25rem 0.32rem;
  border-radius: 999px;
  background: linear-gradient(165deg, rgba(197, 160, 89, 0.07), rgba(22, 20, 22, 0.65));
  border: 1px solid rgba(197, 160, 89, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 235, 0.06),
    0 4px 20px rgba(0, 0, 0, 0.22);
  transition:
    border-color var(--t-hover-slow) var(--ease-flow),
    background var(--t-hover-slow) var(--ease-flow),
    box-shadow var(--t-hover-slow) var(--ease-flow),
    transform var(--t-hover-slow) var(--ease-flow);
}

.brand-lockup:hover .brand-lockup__shell {
  border-color: rgba(212, 188, 106, 0.38);
  background: linear-gradient(165deg, rgba(197, 160, 89, 0.11), rgba(22, 20, 22, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 235, 0.08),
    0 6px 28px rgba(0, 0, 0, 0.32);
  transform: translateY(-1px);
}

.brand-lockup:focus-visible {
  outline: none;
}

.brand-lockup:focus-visible .brand-lockup__shell {
  border-color: rgba(212, 188, 106, 0.55);
  box-shadow:
    0 0 0 2px rgba(14, 12, 14, 0.95),
    0 0 0 4px rgba(197, 160, 89, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.12rem;
  line-height: 1.05;
  min-height: 2.75rem;
}

.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #fdf8ea 0%, var(--gold-2) 44%, var(--gold-4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  display: block;
  margin: 0;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(243, 234, 209, 0.48);
  font-weight: 500;
  line-height: 1.2;
}

.brand-logo--hero-inline {
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 22px rgba(0, 0, 0, 0.45));
}

/* ——— Header (luxury bar: frosted rail + centered nav + jewel CTA) ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 75;
  isolation: isolate;
  padding: clamp(0.42rem, 0.9vw, 0.75rem) 0 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  transition:
    padding 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.site-header::after {
  display: none;
}

html.is-scrolled .site-header {
  padding-top: 0.28rem;
}

/* Narrow viewports: Safari often glitches on sticky + backdrop-filter (black flash / full black). */
@media (max-width: 900px) {
  .site-header,
  html.is-scrolled .site-header {
    padding-top: 0;
  }
}

.header-inner {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-max));
  margin: 0 auto;
  min-height: clamp(4.7rem, 6vw, 5.2rem);
  padding: 0.78rem clamp(1rem, 2vw, 1.45rem);
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
  grid-template-areas: "brand nav cta";
  align-items: center;
  column-gap: clamp(1rem, 3vw, 2.25rem);
  row-gap: 0.5rem;
  border-radius: clamp(1.15rem, 2vw, 1.7rem);
  border: 1px solid rgba(197, 160, 89, 0.12);
  background:
    linear-gradient(180deg, rgba(24, 21, 23, 0.74) 0%, rgba(14, 12, 14, 0.9) 100%);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 235, 0.06),
    0 12px 30px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 244, 214, 0.02);
  transition:
    padding 0.4s var(--ease),
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    transform 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.header-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 0%, rgba(212, 188, 106, 0.12), transparent 34%),
    linear-gradient(90deg, transparent, rgba(212, 188, 106, 0.05), transparent);
  pointer-events: none;
}

.header-inner::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(197, 160, 89, 0.1) 18%,
    rgba(212, 188, 106, 0.26) 50%,
    rgba(197, 160, 89, 0.1) 82%,
    transparent
  );
  pointer-events: none;
}

html.is-scrolled .header-inner {
  min-height: clamp(4.2rem, 5.2vw, 4.72rem);
  padding-top: 0.68rem;
  padding-bottom: 0.68rem;
  background: linear-gradient(180deg, rgba(14, 12, 14, 0.84) 0%, rgba(10, 9, 10, 0.95) 100%);
  border-color: rgba(212, 188, 106, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 235, 0.06),
    0 16px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 244, 214, 0.025);
  transform: translateY(-1px) scale(0.995);
}

.site-nav {
  grid-area: nav;
  justify-self: center;
  min-width: 0;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 0.25rem;
}

.site-nav__cta-mobile {
  display: none;
}

.site-nav a:not(.header-cta) {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.65rem;
  color: rgba(243, 234, 209, 0.52);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color var(--t-hover-slow) var(--ease-flow), letter-spacing var(--t-hover-slow) var(--ease-flow);
}

.site-nav a:not(.header-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.28rem;
  width: 0;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold-3), transparent);
  transition:
    width var(--t-hover-slow) var(--ease-flow),
    opacity var(--t-hover-slow) var(--ease-flow);
  opacity: 0;
}

.site-nav a:not(.header-cta):hover,
.site-nav a:not(.header-cta):focus-visible {
  color: rgba(243, 234, 209, 0.92);
  letter-spacing: 0.16em;
  outline: none;
}

.site-nav a:not(.header-cta):hover::after,
.site-nav a:not(.header-cta):focus-visible::after {
  width: calc(100% - 1rem);
  opacity: 1;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  -webkit-appearance: none;
  padding: 0.44rem 0.95rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: #141210;
  border: 1px solid rgba(255, 248, 225, 0.35);
  background: linear-gradient(
    165deg,
    #f0e6c8 0%,
    var(--gold-2) 38%,
    #9a7a3d 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 2px 0 rgba(74, 58, 28, 0.35),
    0 8px 24px rgba(0, 0, 0, 0.35);
  transition:
    transform var(--t-hover-slow) var(--ease-flow),
    filter var(--t-hover-slow) var(--ease-flow),
    box-shadow var(--t-hover-slow) var(--ease-flow);
}

.header-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 2px 0 rgba(74, 58, 28, 0.4),
    0 14px 40px rgba(0, 0, 0, 0.42);
}

.header-cta:active {
  transform: translateY(1px) scale(0.99);
}

.header-cta--bar {
  grid-area: cta;
  justify-self: end;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(28, 26, 28, 0.9);
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: 12px;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
  color: var(--gold-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color var(--t-hover-slow) var(--ease-flow), background var(--t-hover-slow) var(--ease-flow),
    transform var(--t-hover-slow) var(--ease-flow);
}

.nav-toggle:hover {
  border-color: rgba(197, 160, 89, 0.45);
  background: rgba(35, 31, 32, 0.95);
  transform: scale(1.02);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-4));
  border-radius: 2px;
  transition:
    transform 0.42s var(--ease-flow),
    opacity 0.28s var(--ease-flow);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(43deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-43deg);
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand toggle";
    padding-top: 0.82rem;
    padding-bottom: 0.82rem;
    border-radius: 0 0 22px 22px;
    border-left: 1px solid rgba(197, 160, 89, 0.1);
    border-right: 1px solid rgba(197, 160, 89, 0.1);
    box-shadow:
      inset 0 1px 0 rgba(255, 250, 235, 0.05),
      0 12px 28px rgba(0, 0, 0, 0.24);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-toggle {
    display: flex;
    grid-area: toggle;
    justify-self: end;
    position: relative;
    z-index: 80;
  }

  .brand-lockup {
    position: relative;
    z-index: 85;
  }

  /* Full-viewport overlay — does not push page layout */
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 70;
    margin: 0;
    padding:
      calc(var(--header-offset) + 0.35rem)
      max(0.75rem, env(safe-area-inset-right, 0px))
      max(1rem, calc(env(safe-area-inset-bottom, 0px) + 0.9rem))
      max(0.75rem, env(safe-area-inset-left, 0px));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* WebKit/Safari: full-screen backdrop-filter often composites as solid black; use opaque scrim only */
    background: rgba(8, 7, 9, 0.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.38s var(--ease-flow),
      visibility 0.38s var(--ease-flow);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    max-width: none;
    width: min(calc(100% - 1rem), 100%);
    margin: 0 auto;
    padding: 0.95rem 0.95rem 1.05rem;
    border-radius: 1.15rem;
    background: linear-gradient(165deg, rgba(26, 23, 25, 0.97), rgba(12, 11, 12, 0.99));
    border: 1px solid rgba(197, 160, 89, 0.18);
    box-shadow:
      inset 0 1px 0 rgba(255, 250, 235, 0.07),
      0 22px 48px rgba(0, 0, 0, 0.45),
      0 0 0 1px rgba(0, 0, 0, 0.35);
    transform: translateY(-8px);
    opacity: 0;
    transition:
      transform 0.32s var(--ease-flow),
      opacity 0.38s var(--ease-flow);
  }

  .site-nav.is-open ul {
    transform: translateY(0);
    opacity: 1;
  }

  .site-nav ul li {
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 0.35s var(--ease-flow),
      transform 0.4s var(--ease-flow);
  }

  .site-nav.is-open ul li {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open ul li:nth-child(1) {
    transition-delay: 0.05s;
  }
  .site-nav.is-open ul li:nth-child(2) {
    transition-delay: 0.09s;
  }
  .site-nav.is-open ul li:nth-child(3) {
    transition-delay: 0.13s;
  }
  .site-nav.is-open ul li:nth-child(4) {
    transition-delay: 0.17s;
  }
  .site-nav.is-open ul li:nth-child(5) {
    transition-delay: 0.21s;
  }
  .site-nav.is-open ul li:nth-child(6) {
    transition-delay: 0.25s;
  }

  .site-nav a:not(.header-cta) {
    padding: 0.78rem 0.8rem;
    min-height: 3.1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 0.78rem;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.01);
  }

  .site-nav a:not(.header-cta)::after {
    display: none;
  }

  .header-cta--bar {
    display: none;
  }

  .site-nav__cta-mobile {
    display: block;
    margin-top: 0.45rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(197, 160, 89, 0.18);
  }

  .site-nav__cta-mobile .header-cta {
    width: 100%;
    padding: 0.72rem 1rem;
    min-height: 3rem;
  }

  .whatsapp-fab {
    right: calc(env(safe-area-inset-right, 0px) - 1.45rem);
  }
}

body.nav-drawer-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 480px) {
  .brand-lockup__shell {
    padding: 0.2rem 0.62rem 0.2rem 0.22rem;
    gap: 0.52rem;
  }

  .brand-mark {
    width: 2.52rem;
    height: 2.52rem;
  }

  .brand-logo--header {
    width: 2.05rem;
    height: 2.05rem;
  }

  .brand-text small {
    font-size: 0.55rem;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 380px) {
  .brand-text small {
    display: none;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .header-inner {
    column-gap: 0.7rem;
  }
}

/* ——— Hero ——— */
.hero {
  padding: clamp(2.85rem, 6.5vw, 4.35rem) 0 clamp(3rem, 5.5vw, 4rem);
}

.hero--editorial {
  position: relative;
  overflow: clip;
}

.hero--editorial::before,
.hero--editorial::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

.hero--editorial::before {
  top: 0;
  left: min(-12vw, -6rem);
  width: min(38rem, 62vw);
  height: min(38rem, 62vw);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 38%, rgba(243, 234, 209, 0.14), rgba(212, 188, 106, 0.09) 28%, rgba(197, 160, 89, 0.03) 52%, transparent 76%);
  filter: blur(14px);
  opacity: 0.88;
}

.hero--editorial::after {
  right: min(-12vw, -5rem);
  bottom: -10rem;
  width: min(36rem, 58vw);
  height: min(28rem, 48vw);
  border-radius: 50%;
  /** Soft wash only — no radial “sunburst” lines (reads dated vs. quiet luxury). */
  background:
    radial-gradient(ellipse 72% 58% at 62% 58%, rgba(197, 160, 89, 0.07), transparent 62%),
    radial-gradient(circle at 50% 50%, rgba(18, 16, 17, 0.35), transparent 68%);
  opacity: 0.72;
}

.hero-inner:not(.hero-inner--split) {
  width: 100%;
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
  box-sizing: border-box;
}

.hero-inner:not(.hero-inner--split) > * {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-inner.hero-inner--split {
  width: 100%;
  box-sizing: border-box;
}

.hero-inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 4.5vw, 3.75rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-panel--visual {
  position: relative;
  padding: 0.85rem 0 0.85rem;
}

@media (min-width: 901px) {
  /** Image column top aligns with headline column; mini cards sit under the photo (grid below). */
  .hero-panel--visual {
    padding-top: 0;
    padding-bottom: 0;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  .hero-inner--split {
    gap: unset;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-rows: auto auto;
    column-gap: clamp(2rem, 4.5vw, 3.75rem);
    row-gap: clamp(0.65rem, 1.8vw, 1rem);
    align-items: start;
  }

  .hero-panel--copy {
    display: contents;
  }

  .hero-copy-lead {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    border-left: 1px solid rgba(197, 160, 89, 0.16);
    box-shadow: inset 1px 0 0 rgba(255, 248, 235, 0.05);
    padding-left: clamp(1.5rem, 3.2vw, 2.35rem);
  }

  .hero-actions {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    border-left: 1px solid rgba(197, 160, 89, 0.16);
    box-shadow: inset 1px 0 0 rgba(255, 248, 235, 0.05);
    padding-left: clamp(1.5rem, 3.2vw, 2.35rem);
    margin-top: 0;
  }

  .hero-mini-grid {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    width: 100%;
    max-width: none;
    margin: 0;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .hero-mini-card--primary {
    grid-column: auto;
  }
}

.hero-copy-lead {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.hero-frame {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(197, 160, 89, 0.22);
  box-shadow:
    0 16px 56px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 248, 235, 0.06);
  background: var(--bg-elevated);
  transition:
    transform var(--t-hover-slow) var(--ease-flow),
    border-color var(--t-hover-slow) var(--ease-flow),
    box-shadow var(--t-hover-slow) var(--ease-flow);
  will-change: transform;
}

.hero-frame:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 188, 106, 0.38);
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(197, 160, 89, 0.1),
    inset 0 1px 0 rgba(255, 248, 235, 0.09);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.05s var(--ease-flow);
  transform: scale(1.01);
  transform-origin: center center;
}

.hero-frame:hover img,
.hero-frame:hover .hero-rotator__slide.is-active {
  transform: scale(1.05);
}

.hero-frame--feature {
  aspect-ratio: 5 / 4;
  max-height: min(66vh, 640px);
}

.hero-frame--feature img {
  object-position: center;
}

.hero-frame--rotator {
  position: relative;
}

.hero-frame--rotator .hero-rotator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-rotator__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transform: scale(1.01);
  transform-origin: center center;
  transition:
    opacity 1.05s var(--ease-flow),
    transform 1.05s var(--ease-flow);
  pointer-events: none;
}

.hero-rotator__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-panel__strip {
  display: flex;
  gap: 0.85rem;
  margin-top: 1rem;
  align-items: stretch;
}

.hero-panel__strip--solo {
  display: block;
}

.hero-panel__strip--solo .hero-frame--accent {
  width: 100%;
  max-height: min(12rem, 24vw);
  aspect-ratio: 21 / 9;
}

.hero-frame--accent {
  flex: 1 1 auto;
  min-width: 0;
  aspect-ratio: 4 / 3;
  max-height: 10rem;
}

.hero-panel--copy {
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero-copy-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.45rem;
}

.hero-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-3);
  opacity: 0.92;
}

.hero-headline {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4.2vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-tagline {
  margin: 0 0 1.35rem;
}

.hero-lede {
  margin: 0 0 1.65rem;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.68;
  letter-spacing: 0.01em;
}

.hero-proof-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.45rem;
  padding: 0;
}

.hero-proof-chips li {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.48rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.14);
  background: linear-gradient(158deg, rgba(38, 34, 36, 0.55), rgba(16, 14, 15, 0.78));
  color: rgba(243, 234, 209, 0.84);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.06),
    0 6px 20px rgba(0, 0, 0, 0.22);
  transition:
    border-color 0.35s var(--ease-flow),
    box-shadow 0.35s var(--ease-flow),
    color 0.35s var(--ease-flow);
}

@media (hover: hover) and (pointer: fine) {
  .hero-proof-chips li:hover {
    border-color: rgba(212, 188, 106, 0.28);
    color: rgba(252, 246, 228, 0.92);
    box-shadow:
      inset 0 1px 0 rgba(255, 248, 235, 0.08),
      0 10px 28px rgba(0, 0, 0, 0.28);
  }
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1.55rem;
}

.hero-mini-card {
  display: grid;
  gap: 0.52rem;
  padding: 1.15rem 1.2rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(197, 160, 89, 0.14);
  background:
    linear-gradient(168deg, rgba(30, 26, 28, 0.72), rgba(12, 11, 12, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.06),
    0 12px 36px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-mini-card--primary {
  grid-column: 1 / -1;
  background:
    linear-gradient(158deg, rgba(197, 160, 89, 0.11), rgba(28, 25, 26, 0.82) 38%, rgba(11, 10, 11, 0.92) 100%);
  border-color: rgba(212, 188, 106, 0.2);
}

.hero-mini-card__eyebrow {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.hero-mini-card__title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.48;
  color: rgba(243, 234, 209, 0.94);
}

.hero-floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 0.42rem;
  width: min(17rem, 56%);
  padding: 1.05rem 1.12rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(212, 188, 106, 0.14);
  background:
    linear-gradient(158deg, rgba(26, 22, 24, 0.78), rgba(10, 9, 10, 0.88));
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 248, 235, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-floating-card--north {
  top: 0.85rem;
  left: 0.85rem;
}

.hero-floating-card--south {
  right: 0.85rem;
  bottom: 0.85rem;
  width: min(17rem, 54%);
}

.hero-floating-card__eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.hero-floating-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.42;
  color: rgba(252, 246, 228, 0.94);
  font-weight: 500;
}

.hero-inner--split .hero-actions {
  justify-content: flex-start;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero .tagline {
  font-size: 0.92rem;
  color: rgba(215, 206, 188, 0.82);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

@media (max-width: 900px) {
  .hero-inner--split {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
  }

  .hero-panel--copy {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.35rem);
  }

  .hero-copy-lead {
    border-left: none;
    padding-left: 0;
    box-shadow: none;
  }

  .hero-actions {
    border-left: none;
    padding-left: 0;
    box-shadow: none;
  }

  .hero-panel--visual {
    /* Stack overlays in normal flow: centered full-width rails (no asymmetric float offsets). */
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(1rem, 4vw, 1.35rem);
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding: 0.35rem 0 1rem;
    box-sizing: border-box;
  }

  .hero-floating-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100%;
    max-width: none;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .hero-frame--feature {
    width: 100%;
    max-width: none;
    max-height: min(52vh, 440px);
    flex-shrink: 0;
  }

  /* Small scale + cover can clip unevenly at rounded corners on iOS Safari. */
  .hero-frame--feature img,
  .hero-frame--feature .hero-rotator__slide {
    transform: none;
    transform-origin: center center;
    object-fit: cover;
    object-position: center center;
  }

  .hero-panel--visual .hero-frame--feature:hover img,
  .hero-panel--visual .hero-frame--feature:hover .hero-rotator__slide.is-active {
    transform: none;
  }

  .hero-panel--visual .hero-frame:hover img,
  .hero-panel--visual .hero-frame:hover .hero-rotator__slide.is-active {
    transform: none;
  }

  .hero-panel--visual .hero-frame:hover {
    transform: none;
    border-color: rgba(212, 188, 106, 0.45);
  }

  .hero-panel__strip {
    margin-top: 0;
  }

  .hero-panel--copy {
    text-align: center;
  }

  .hero-copy-top {
    justify-content: center;
  }

  .hero-inner--split .hero-actions {
    justify-content: center;
  }

  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-proof-chips {
    justify-content: center;
  }

  .hero-mini-grid {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    padding-top: clamp(1.25rem, 4vw, 2rem);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform var(--t-hover-slow) var(--ease-flow),
    background var(--t-hover-slow) var(--ease-flow),
    border-color var(--t-hover-slow) var(--ease-flow),
    box-shadow var(--t-hover-slow) var(--ease-flow),
    filter var(--t-hover-slow) var(--ease-flow);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(212, 188, 106, 0.95), rgba(138, 109, 58, 0.95));
  color: #1a1410;
  border-color: rgba(243, 234, 209, 0.35);
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.42);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--gold-2);
  background: rgba(197, 160, 89, 0.06);
}

.btn-ghost:hover {
  background: rgba(197, 160, 89, 0.14);
  border-color: rgba(212, 188, 106, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

/* ——— Sections ——— */
main {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter) 5rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-head--with-callout {
  margin-bottom: clamp(3rem, 7vw, 4.35rem);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.section-head p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.section-head--premium.section-head--with-callout .section-eyebrow {
  margin-bottom: 0.75rem;
}

.section-head--premium.section-head--with-callout h2 {
  margin-bottom: 1rem;
}

.section-head--premium.section-head--with-callout .section-lede {
  margin: 0 auto;
  max-width: 36rem;
  padding: 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.72;
  color: rgba(243, 234, 209, 0.76);
}

.section-sample-notice {
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  max-width: 38rem;
  padding: 1.45rem 1.6rem 1.5rem;
  text-align: center;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(197, 160, 89, 0.22);
  background: linear-gradient(165deg, rgba(197, 160, 89, 0.09), rgba(18, 16, 18, 0.65));
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.07),
    0 12px 40px rgba(0, 0, 0, 0.2);
}

.section-sample-notice::before {
  content: "";
  display: block;
  width: min(11rem, 42%);
  height: 1px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(90deg, transparent, rgba(212, 188, 106, 0.55), transparent);
}

.section-sample-notice__kicker {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2.2vw, 1.28rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold-2);
  line-height: 1.25;
}

.section-sample-notice__body {
  margin: 0;
  font-size: 0.91rem;
  font-weight: 300;
  line-height: 1.68;
  color: rgba(243, 234, 209, 0.66);
}

.flow-section {
  margin-bottom: 3.5rem;
}

.observe {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity var(--t-reveal) var(--ease-flow),
    transform var(--t-reveal) var(--ease-flow);
}

.observe.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/**
 * Detail modal: meal cards use `.observe` for homepage-style reveals. The overlay is already
 * a focused surface — hiding blocks until IntersectionObserver fires reads as missing thumbnails.
 */
#detail-overlay .observe {
  opacity: 1;
  transform: none;
}

/**
 * Above-the-fold hero must not wait for deferred main.js + IntersectionObserver.
 * Without this, users see only the header until JS downloads (slow 3G / cold cache).
 */
#home.hero.hero--editorial.observe {
  opacity: 1;
  transform: none;
}

@keyframes flow-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.module--pillars.observe.is-visible .pillar-item {
  animation: flow-rise 0.92s var(--ease-flow) both;
}

.module--pillars.observe.is-visible .pillar-item:nth-child(1) {
  animation-delay: 0.06s;
}
.module--pillars.observe.is-visible .pillar-item:nth-child(2) {
  animation-delay: 0.14s;
}
.module--pillars.observe.is-visible .pillar-item:nth-child(3) {
  animation-delay: 0.22s;
}
.module--pillars.observe.is-visible .pillar-item:nth-child(4) {
  animation-delay: 0.3s;
}

.module--gallery-shimmer.observe.is-visible .shimmer-gallery__item {
  animation: flow-rise 0.88s var(--ease-flow) both;
}

.module--gallery-shimmer.observe.is-visible .shimmer-gallery__item:nth-child(1) {
  animation-delay: 0.03s;
}
.module--gallery-shimmer.observe.is-visible .shimmer-gallery__item:nth-child(2) {
  animation-delay: 0.09s;
}
.module--gallery-shimmer.observe.is-visible .shimmer-gallery__item:nth-child(3) {
  animation-delay: 0.15s;
}
.module--gallery-shimmer.observe.is-visible .shimmer-gallery__item:nth-child(4) {
  animation-delay: 0.21s;
}
.module--gallery-shimmer.observe.is-visible .shimmer-gallery__item:nth-child(5) {
  animation-delay: 0.27s;
}
.module--gallery-shimmer.observe.is-visible .shimmer-gallery__item:nth-child(6) {
  animation-delay: 0.33s;
}
.module--gallery-shimmer.observe.is-visible .shimmer-gallery__item:nth-child(7) {
  animation-delay: 0.39s;
}
.module--gallery-shimmer.observe.is-visible .shimmer-gallery__item:nth-child(8) {
  animation-delay: 0.45s;
}

.module--stats.observe.is-visible .stat,
.module--conversion.observe.is-visible .stat {
  animation: flow-rise 0.92s var(--ease-flow) both;
}

.module--stats.observe.is-visible .stat:nth-child(1),
.module--conversion.observe.is-visible .stat:nth-child(1) {
  animation-delay: 0.08s;
}
.module--stats.observe.is-visible .stat:nth-child(2),
.module--conversion.observe.is-visible .stat:nth-child(2) {
  animation-delay: 0.18s;
}
.module--stats.observe.is-visible .stat:nth-child(3),
.module--conversion.observe.is-visible .stat:nth-child(3) {
  animation-delay: 0.28s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ambient-sparkles,
  .ambient-sparkles__dot {
    display: none !important;
  }

  .btn:hover,
  .header-cta:hover,
  .hero-frame:hover,
  .pillar-item:hover,
  .hub-card:hover,
  .hub-card:focus-visible,
  .shimmer-gallery__item:hover,
  .module--conversion:hover .conversion-shell,
  .stat:hover,
  .meal-card:hover,
  .detail-thumb:hover,
  .module--quote:hover .pull-quote,
  .brand-lockup:hover .brand-lockup__shell,
  .nav-toggle:hover,
  .social-tile:hover,
  .whatsapp-fab:hover,
  .whatsapp-fab:active,
  .pillar-item:hover .pillar-icon {
    transform: none;
  }

  .hero-frame:hover img,
  .hero-frame:hover .hero-rotator__slide.is-active,
  .shimmer-gallery__item:hover img {
    transform: none;
  }

  .observe {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .module--pillars.observe.is-visible .pillar-item,
  .module--gallery-shimmer.observe.is-visible .shimmer-gallery__item,
  .module--stats.observe.is-visible .stat,
  .module--conversion.observe.is-visible .stat {
    animation: none !important;
  }

  .shimmer-gallery__item::after {
    animation: none !important;
    opacity: 0.18;
  }

  .site-nav,
  .site-nav ul,
  .site-nav ul li {
    transition: none !important;
  }

  .site-nav ul li {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0s !important;
  }

  .site-nav:not(.is-open) ul {
    opacity: 0;
  }

  .nav-toggle span {
    transition: none;
  }
}

.gallery-block {
  padding: 1.75rem 0 2.5rem;
  border-top: 1px solid rgba(197, 160, 89, 0.12);
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  margin: 0 0 1.25rem;
  color: var(--gold-2);
  letter-spacing: 0.03em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
}

.gallery-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid rgba(197, 160, 89, 0.2);
  aspect-ratio: 4 / 3;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.gallery-card:hover {
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.45rem 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: linear-gradient(to top, rgba(14, 12, 14, 0.92), transparent);
  opacity: 0.85;
}

.gallery-card.is-placeholder img {
  display: none;
}

.gallery-card.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(197, 160, 89, 0.07), transparent),
    repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(197, 160, 89, 0.04) 8px, rgba(197, 160, 89, 0.04) 9px);
}

.gallery-card.is-placeholder::after {
  content: "Add JPG";
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.gallery-card.is-placeholder figcaption {
  position: static;
  background: none;
  text-align: center;
  padding: 0 0.5rem;
  font-size: 0.62rem;
}

/* Contact — social strip + details card */
.contact-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto 1.5rem;
  max-width: 40rem;
}

.social-tile {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.58rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(197, 160, 89, 0.38);
  background: linear-gradient(165deg, rgba(28, 26, 28, 0.95), rgba(14, 12, 14, 0.92));
  color: var(--gold-2);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  transition:
    transform var(--t-hover-slow) var(--ease-flow),
    border-color var(--t-hover-slow) var(--ease-flow),
    box-shadow var(--t-hover-slow) var(--ease-flow),
    background var(--t-hover-slow) var(--ease-flow),
    color var(--t-hover-slow) var(--ease-flow);
}

.social-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 188, 106, 0.58);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
  color: var(--gold-1);
}

.social-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-tile__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.social-tile__icon i {
  font-size: 1.15rem;
  line-height: 1;
  display: block;
  -webkit-font-smoothing: antialiased;
}

.social-tile--instagram:hover {
  border-color: rgba(228, 180, 140, 0.55);
}

.social-tile--yelp:hover {
  border-color: rgba(215, 64, 70, 0.55);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.38),
    0 0 24px rgba(215, 64, 70, 0.1);
}

.social-tile--whatsapp {
  border-color: rgba(37, 211, 102, 0.42);
  color: rgba(210, 248, 224, 0.95);
}

.social-tile--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.65);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(37, 211, 102, 0.12);
}

.social-tile--facebook:hover {
  border-color: rgba(138, 177, 245, 0.45);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(35, 31, 32, 0.65);
  border: 1px solid rgba(197, 160, 89, 0.22);
  position: relative;
}

.contact-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(197, 160, 89, 0.45), transparent);
  transform: translateX(-50%);
}

.contact-col {
  padding: 0 0.75rem;
}

.contact-col a {
  color: var(--gold-2);
  text-decoration: none;
  word-break: break-word;
  text-underline-offset: 0.22em;
  transition:
    color var(--t-hover-slow) var(--ease-flow),
    text-decoration-color var(--t-hover-slow) var(--ease-flow),
    text-underline-offset var(--t-hover-slow) var(--ease-flow);
}

.contact-col a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(212, 188, 106, 0.85);
  color: var(--gold-1);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  min-height: 1.35rem;
  margin-top: 0.08rem;
  color: var(--gold-3);
  opacity: 0.88;
  font-size: 0.92rem;
}

.contact-icon i {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .contact-grid::before {
    display: none;
  }

  .contact-col {
    padding: 0;
  }
}

.site-footer {
  text-align: center;
  padding-block: 2.5rem 3rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.site-footer .shell {
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-3);
}

/* WhatsApp dock — partially embedded on the right edge for persistent visibility */
.whatsapp-fab {
  position: fixed;
  top: 50%;
  right: max(0.58rem, calc(env(safe-area-inset-right, 0px) + 0.34rem));
  bottom: auto;
  transform: translateY(-50%);
  z-index: 260;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.7rem;
  height: 3.7rem;
  padding: 0;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  text-decoration: none;
  color: #0c120f;
  background: linear-gradient(155deg, #2fe573 0%, #25d366 42%, #128c7e 100%);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  transition:
    transform var(--t-hover-slow) var(--ease-flow),
    box-shadow var(--t-hover-slow) var(--ease-flow);
}

.whatsapp-fab:hover {
  transform: translateY(-50%) translateX(-0.12rem);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.whatsapp-fab:active {
  transform: translateY(-50%) scale(0.985);
}

body.booking-open .whatsapp-fab,
body.nav-drawer-open .whatsapp-fab,
body.detail-open .whatsapp-fab {
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
}

.whatsapp-fab__glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.42rem;
  height: 2.42rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 6px 18px rgba(8, 38, 21, 0.24);
  flex-shrink: 0;
  line-height: 0;
  color: #fff;
}

.whatsapp-fab__glyph i {
  font-size: 1.78rem;
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 760px) {
  .whatsapp-fab__glyph i {
    font-size: 1.78rem;
  }

  .whatsapp-fab {
    position: fixed !important;
    top: auto !important;
    left: auto !important;
    right: max(0.72rem, calc(env(safe-area-inset-right, 0px) + 0.42rem)) !important;
    bottom: max(1rem, calc(env(safe-area-inset-bottom, 0px) + 0.85rem)) !important;
    transform: none !important;
    width: 3.45rem;
    height: 3.45rem;
    padding: 0;
    border-radius: 999px;
    z-index: 260;
  }

  .whatsapp-fab:hover,
  .whatsapp-fab:active {
    transform: none !important;
  }

  .whatsapp-fab__glyph {
    width: 2.28rem;
    height: 2.28rem;
  }
}

@media (max-width: 700px) {
  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 3.2rem;
  }
}

.whatsapp-fab:focus-visible {
  outline: 2px solid rgba(243, 248, 245, 0.95);
  outline-offset: 3px;
}

.social-tile:focus-visible {
  outline: 2px solid rgba(212, 188, 106, 0.85);
  outline-offset: 3px;
}

/* ——— Hub (click to open detail) ——— */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.1rem;
}

.hub-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(35, 31, 32, 0.9), rgba(20, 18, 20, 0.95));
  cursor: pointer;
  color: inherit;
  font: inherit;
  transition:
    border-color var(--t-hover-slow) var(--ease-flow),
    box-shadow var(--t-hover-slow) var(--ease-flow),
    transform var(--t-hover-slow) var(--ease-flow),
    filter var(--t-hover-slow) var(--ease-flow);
  overflow: hidden;
}

.hub-card:hover,
.hub-card:focus-visible {
  border-color: rgba(197, 160, 89, 0.55);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.45);
  transform: translateY(-5px);
  filter: brightness(1.03);
  outline: none;
}

.hub-card-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-elevated);
}

.hub-card-visual.is-fallback {
  background:
    linear-gradient(145deg, rgba(197, 160, 89, 0.08), transparent),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(197, 160, 89, 0.05) 10px, rgba(197, 160, 89, 0.05) 11px);
}

.hub-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hub-card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.hub-card-title {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: var(--gold-2);
  letter-spacing: 0.02em;
}

.hub-card-hint {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Services hub — uniform tiles: fixed visual crop + bottom-aligned titles */
.hub-grid--services {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
  gap: 1rem;
  align-items: stretch;
}

.hub-grid--services .hub-card {
  height: 100%;
}

.hub-grid--services .hub-card-visual {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: clamp(140px, 18vw, 220px);
  overflow: hidden;
  background: var(--bg-elevated);
  isolation: isolate;
}

.hub-grid--services .hub-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hub-grid--services .hub-card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 5.25rem;
  padding: 0.85rem 1rem 1.1rem;
}

@media (max-width: 640px) {
  .hub-grid--services .hub-card-visual {
    max-height: min(52vw, 260px);
  }
}

/* ——— Cuisines / Services — editorial premium hub ——— */
.section-cuisines {
  padding-top: clamp(1.75rem, 5vw, 3rem);
}

.section-services {
  margin-top: clamp(2rem, 5vw, 3.25rem);
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(197, 160, 89, 0.12);
}

.section-head--premium .section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin: 0 0 0.5rem;
  opacity: 0.9;
}

.section-head--premium .section-lede {
  margin: 0.85rem auto 0;
  max-width: 34rem;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(243, 234, 209, 0.72);
  line-height: 1.65;
}

.hub-grid--cuisines {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.45rem);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .hub-grid--cuisines {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hub-grid--cuisines {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.hub-card--cuisine {
  padding: 0;
  border-radius: 18px;
  background: #101010;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow:
    0 4px 0 rgba(197, 160, 89, 0.06),
    0 28px 56px rgba(0, 0, 0, 0.55);
}

.hub-card--cuisine:hover,
.hub-card--cuisine:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(212, 188, 106, 0.42);
  box-shadow:
    0 4px 0 rgba(197, 160, 89, 0.12),
    0 36px 72px rgba(0, 0, 0, 0.55);
}

.hub-card--cuisine .hub-card-visual {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  border-radius: 17px;
}

.hub-card--cuisine .hub-card-visual img {
  transition: transform var(--t-hover-slow) var(--ease-flow);
  transform: scale(1.01);
}

.hub-card--cuisine:hover .hub-card-visual img,
.hub-card--cuisine:focus-visible .hub-card-visual img {
  transform: scale(1.08);
}

.hub-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 1.15rem 1.15rem 1.2rem;
  text-align: left;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(6, 5, 6, 0.96) 0%,
    rgba(10, 9, 10, 0.55) 42%,
    transparent 72%
  );
}

.hub-card-index {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.3vw, 2.55rem);
  font-weight: 500;
  line-height: 0.95;
  margin-bottom: 0.45rem;
  background: linear-gradient(145deg, #f5ebd4 0%, #d4bc6a 38%, #9a7639 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.02em;
}

.hub-card-overlay-title {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(252, 249, 243, 0.96);
  margin: 0 0 0.45rem;
}

.hub-card-overlay-tagline {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.46;
  color: rgba(252, 249, 243, 0.62);
  margin: 0 0 0.72rem;
  max-width: 16rem;
}

.hub-card-cta {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  opacity: 0.95;
}

.hub-card--cuisine .hub-card-visual.is-fallback .hub-card-overlay-tagline {
  max-width: none;
}

/* ——— Detail overlay ——— */
html.scroll-locked,
body.scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

body.scroll-locked {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

/**
 * Detail modal: ONE scroll surface (#detail-overlay).
 * Toolbar scrolls with the sheet (not sticky). Desktop: left column sticky within overlay only.
 */
.detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  isolation: isolate;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(197, 160, 89, 0.42) transparent;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  padding-bottom: max(clamp(0.75rem, 2vw, 1.25rem), env(safe-area-inset-bottom, 0px));
}

.detail-overlay[hidden] {
  display: none !important;
}

.detail-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(6, 5, 6, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
}

.detail-sheet {
  position: relative;
  z-index: 1;
  width: min(97vw, 1440px);
  margin-inline: auto;
  margin-block: 0;
  max-height: none;
  overflow: visible;
  display: grid;
  grid-template-rows: auto auto;
  background:
    linear-gradient(180deg, rgba(30, 26, 28, 0.98), rgba(18, 16, 18, 0.98));
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: calc(var(--radius) + 8px);
  box-shadow:
    0 32px 110px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 248, 235, 0.06);
}

.detail-sheet-scroll {
  min-height: 0;
  /** overflow-x:hidden breaks position:sticky on .detail-sheet__stage in Chromium/WebKit */
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.detail-sheet__main-grid {
  display: grid;
  grid-template-columns: minmax(24rem, 1fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 0;
}

.detail-overlay::-webkit-scrollbar {
  width: 9px;
}

.detail-overlay::-webkit-scrollbar-track {
  background: transparent;
}

.detail-overlay::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
  background: linear-gradient(180deg, rgba(212, 188, 106, 0.55), rgba(138, 109, 58, 0.38));
}

.detail-sheet__stage {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-content: flex-start;
  gap: 0;
  background:
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(24, 21, 23, 0.96), rgba(14, 12, 14, 0.98));
  border-right: 1px solid rgba(197, 160, 89, 0.14);
}

@media (min-width: 901px) {
  .detail-sheet__stage {
    position: sticky;
    top: clamp(0.65rem, 2vw, 1rem);
    align-self: stretch;
    z-index: 2;
    min-height: 0;
    max-height: calc(100dvh - clamp(1.25rem, 4vw, 2rem) - env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 160, 89, 0.35) transparent;
  }
}

.detail-toolbar {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding: 0.82rem 1rem 0.72rem;
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(197, 160, 89, 0.14);
  background: linear-gradient(180deg, rgba(26, 23, 25, 0.99), rgba(20, 18, 20, 0.96));
  /** Match .detail-sheet top corners (sheet uses overflow:visible so inner layers must echo radius). */
  border-radius: calc(var(--radius) + 8px) calc(var(--radius) + 8px) 0 0;
}

.detail-close {
  min-height: 2.9rem;
  padding-inline: 1rem !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em;
}

.detail-hero-stage {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding: 0 1.1rem 1rem;
}

.detail-sheet-inner {
  min-width: 0;
  min-height: 0;
  padding: 1.35rem 1.35rem 1.45rem;
  background:
    linear-gradient(180deg, rgba(26, 23, 25, 0.98), rgba(16, 14, 16, 0.98));
}

.detail-stage-copy {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 0.6rem 1.3rem 1.2rem;
}

.detail-kicker {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
}

.detail-intro {
  margin: 0;
  max-width: 36rem;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.62;
}

.detail-sample-notice {
  margin: 0 0 1rem;
  padding: 0.85rem 0.95rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(243, 234, 209, 0.78);
  background:
    linear-gradient(145deg, rgba(197, 160, 89, 0.12), rgba(28, 24, 27, 0.72));
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: calc(var(--radius) - 2px);
  text-align: left;
}

.detail-sample-notice--stage {
  margin: 0;
  max-width: 30rem;
  align-self: end;
}

.detail-sample-notice p {
  margin: 0;
}

.detail-sample-notice strong {
  color: var(--gold-2);
  font-weight: 500;
}

.moments-overlay {
  position: fixed;
  inset: 0;
  z-index: 208;
  display: grid;
  place-items: center;
  padding: max(0.8rem, env(safe-area-inset-top)) max(0.8rem, env(safe-area-inset-right))
    max(0.8rem, env(safe-area-inset-bottom)) max(0.8rem, env(safe-area-inset-left));
  opacity: 0;
  transition: opacity 0.28s var(--ease-flow);
}

.moments-overlay.is-open {
  opacity: 1;
}

.moments-overlay[hidden] {
  display: none !important;
}

.moments-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 5, 6, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.moments-panel {
  --moments-photo-max-h: min(58dvh, 520px);
  position: relative;
  z-index: 1;
  width: min(88vw, 52rem);
  display: grid;
  grid-template-rows: auto auto minmax(0, auto);
  gap: clamp(0.65rem, 2vw, 0.95rem);
  padding: clamp(0.85rem, 2.2vw, 1rem);
  max-height: min(92dvh - 2rem, 760px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(197, 160, 89, 0.36) transparent;
  touch-action: pan-y;
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(197, 160, 89, 0.24);
  background:
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(26, 23, 25, 0.98), rgba(12, 11, 12, 0.98));
  box-shadow:
    0 32px 110px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 248, 235, 0.06);
  opacity: 0;
  transform: translateY(1rem) scale(0.988);
  transition:
    opacity 0.28s var(--ease-flow),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.moments-overlay.is-open .moments-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.moments-toolbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-shrink: 0;
  margin: calc(-1 * clamp(0.85rem, 2.2vw, 1rem))
    calc(-1 * clamp(0.85rem, 2.2vw, 1rem))
    clamp(0.55rem, 1.8vw, 0.85rem)
    calc(-1 * clamp(0.85rem, 2.2vw, 1rem));
  padding: clamp(0.85rem, 2.2vw, 1rem)
    clamp(0.85rem, 2.2vw, 1rem)
    clamp(0.45rem, 1.5vw, 0.62rem);
  background: rgba(26, 23, 25, 0.97);
  border-bottom: 1px solid rgba(197, 160, 89, 0.12);
  border-radius: calc(var(--radius) + 10px) calc(var(--radius) + 10px) 0 0;
}

.moments-count {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.moments-stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 0;
}

.moments-figure {
  margin: 0;
  min-width: 0;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.18);
  background: rgba(12, 11, 12, 0.9);
  display: grid;
  place-items: center;
  min-height: clamp(160px, 26vh, 220px);
  max-height: var(--moments-photo-max-h);
  overscroll-behavior: contain;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.04),
    0 20px 56px rgba(0, 0, 0, 0.34);
}

.moments-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: var(--moments-photo-max-h);
  display: block;
  object-fit: contain;
}

.moments-nav {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.28);
  background: rgba(14, 12, 14, 0.78);
  color: var(--gold-2);
  font-size: 1.4rem;
  line-height: 1;
  transition:
    transform var(--t-hover-slow) var(--ease-flow),
    background var(--t-hover-slow) var(--ease-flow),
    border-color var(--t-hover-slow) var(--ease-flow),
    box-shadow var(--t-hover-slow) var(--ease-flow);
}

.moments-nav:hover {
  transform: translateY(-2px);
  background: rgba(197, 160, 89, 0.16);
  border-color: rgba(212, 188, 106, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.moments-copy {
  display: grid;
  gap: 0.32rem;
  max-width: 42rem;
  padding-bottom: 0.15rem;
}

.moments-kicker {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.moments-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
  font-weight: 500;
}

.moments-text {
  margin: 0;
  color: rgba(243, 234, 209, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ——— Booking modal (native reservation flow) ——— */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 210;
  box-sizing: border-box;
  display: grid;
  align-items: center;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right))
    max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
  overscroll-behavior: contain;
  isolation: isolate;
  opacity: 0;
  transition: opacity 0.3s var(--ease-flow);
}

.booking-overlay.is-open {
  opacity: 1;
}

.booking-overlay[hidden] {
  display: none !important;
}

.booking-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(6, 5, 6, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.34s var(--ease-flow);
}

.booking-panel {
  position: relative;
  z-index: 1;
  width: min(96vw, 72rem);
  max-height: min(100dvh - 1.5rem, 880px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(29, 25, 27, 0.98), rgba(15, 13, 15, 0.98));
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: calc(var(--radius) + 8px);
  box-shadow:
    0 32px 110px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 248, 235, 0.06);
  opacity: 0;
  transform: translateY(1.4rem) scale(0.985);
  transform-origin: center bottom;
  transition:
    opacity 0.3s var(--ease-flow),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s var(--ease-flow);
}

.booking-overlay.is-open .booking-backdrop {
  opacity: 1;
}

.booking-overlay.is-open .booking-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.booking-panel__shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
  height: min(100dvh - 1.5rem, 880px);
  min-height: min(100dvh - 1.5rem, 880px);
  max-height: min(100dvh - 1.5rem, 880px);
}

.booking-panel__intro {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.1rem 1.15rem 1.25rem;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(197, 160, 89, 0.32) transparent;
  background:
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(24, 21, 23, 0.96), rgba(14, 12, 14, 0.98));
  border-right: 1px solid rgba(197, 160, 89, 0.14);
}

.booking-panel__body {
  min-height: 0;
  height: 100%;
  display: grid;
  align-content: start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(197, 160, 89, 0.42) transparent;
  scrollbar-gutter: stable;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(26, 23, 25, 0.98), rgba(16, 14, 16, 0.98));
}

.booking-close {
  justify-self: start;
  align-self: flex-start;
  min-height: 2.9rem;
  padding-inline: 1rem !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em;
}

.booking-kicker {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.booking-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  font-weight: 500;
  margin: 0;
  line-height: 1.08;
}

.booking-lede {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.booking-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.booking-highlights li {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.22);
  background: rgba(14, 12, 14, 0.7);
  color: rgba(243, 234, 209, 0.8);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-process {
  display: grid;
  gap: 0.8rem;
}

.booking-step {
  display: grid;
  gap: 0.28rem;
  padding: 0.95rem 1rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(197, 160, 89, 0.16);
  background:
    linear-gradient(160deg, rgba(197, 160, 89, 0.12), rgba(24, 21, 23, 0.92) 28%, rgba(11, 10, 11, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.04),
    0 10px 28px rgba(0, 0, 0, 0.22);
}

.booking-step__no {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.booking-step strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(243, 234, 209, 0.94);
}

.booking-step p {
  margin: 0;
  color: rgba(243, 234, 209, 0.66);
  font-size: 0.86rem;
  line-height: 1.55;
}

.booking-form {
  display: block;
  min-height: 100%;
}

.booking-form[hidden],
.booking-success[hidden] {
  display: none !important;
}

.booking-form__card,
.booking-success__card {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(197, 160, 89, 0.18);
  background:
    linear-gradient(180deg, rgba(20, 18, 20, 0.92), rgba(12, 11, 12, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.05),
    0 18px 42px rgba(0, 0, 0, 0.26);
}

.booking-form__card {
  padding-bottom: 1.4rem;
}

.booking-form__head {
  display: grid;
  gap: 0.3rem;
}

.booking-form__eyebrow,
.booking-success__kicker {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.booking-form__sub {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.booking-form__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

@media (max-width: 520px) {
  .booking-form__row--split {
    grid-template-columns: 1fr;
  }
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 234, 209, 0.55);
}

.booking-date-shell {
  position: relative;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  font: inherit;
  font-size: 0.94rem;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--text);
  background: rgba(9, 8, 9, 0.78);
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: calc(var(--radius) + 1px);
  padding: 0.72rem 0.82rem;
  outline: none;
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.booking-field--date input {
  position: relative;
  z-index: 1;
}

.booking-date-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0.72rem 0.82rem;
  color: rgba(243, 234, 209, 0.42);
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  text-transform: none;
  pointer-events: none;
  transition: opacity 0.18s var(--ease);
}

.booking-field--date.is-filled .booking-date-placeholder,
.booking-field--date:focus-within .booking-date-placeholder {
  opacity: 0;
}

.booking-field--date:not(.is-filled) input::-webkit-datetime-edit {
  color: transparent;
}

.booking-field--date:focus-within input::-webkit-datetime-edit,
.booking-field--date.is-filled input::-webkit-datetime-edit {
  color: var(--text);
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: rgba(212, 188, 106, 0.62);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.14);
}

.booking-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(212, 188, 106, 0.9) 50%),
    linear-gradient(135deg, rgba(212, 188, 106, 0.9) 50%, transparent 50%);
  background-position:
    calc(100% - 1.1rem) calc(50% - 0.12rem),
    calc(100% - 0.76rem) calc(50% - 0.12rem);
  background-size: 0.42rem 0.42rem, 0.42rem 0.42rem;
  background-repeat: no-repeat;
  padding-right: 2.15rem;
}

.booking-field textarea {
  resize: vertical;
  min-height: 7.2rem;
}

.booking-field--allergens .booking-allergy-hint {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.46;
}

.booking-allergy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem 0.95rem;
  padding: 0.55rem 0.72rem;
  border-radius: calc(var(--radius) + 1px);
  border: 1px solid rgba(197, 160, 89, 0.2);
  background: rgba(9, 8, 9, 0.52);
}

@media (max-width: 460px) {
  .booking-allergy-grid {
    grid-template-columns: 1fr;
  }
}

.booking-allergy-label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 0.6rem;
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 450;
  color: rgba(243, 234, 209, 0.86);
  cursor: pointer;
  line-height: 1.35;
}

.booking-allergy-label input {
  margin: 0;
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--gold-3);
}

.booking-error {
  margin: 0;
  padding: 0.8rem 0.9rem;
  font-size: 0.84rem;
  color: #e8a598;
  line-height: 1.45;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(232, 165, 152, 0.2);
  background: rgba(114, 45, 39, 0.18);
}

.booking-error.is-visible {
  animation: bookingNoticeIn 180ms ease;
}

.booking-actions {
  margin-top: 0.1rem;
  display: flex;
  justify-content: stretch;
}

.booking-actions .btn {
  width: 100%;
}

.booking-actions .btn[disabled] {
  cursor: wait;
  opacity: 0.78;
  filter: saturate(0.85);
}

.booking-success {
  display: grid;
}

.booking-overlay.is-success .booking-panel__intro {
  display: none;
}

.booking-overlay.is-success .booking-panel__body {
  padding-top: 1rem;
}

.booking-success__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  margin: 0;
}

.booking-success__text {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.62;
}

.booking-success__meta {
  display: grid;
  gap: 0.38rem;
  padding: 0.9rem 1rem;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(197, 160, 89, 0.16);
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.08), rgba(19, 17, 19, 0.92));
}

.booking-success__meta p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(243, 234, 209, 0.82);
}

.booking-success__meta strong {
  color: rgba(243, 234, 209, 0.96);
}

@keyframes bookingNoticeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .moments-panel {
    width: min(94vw, 36rem);
  }

  .moments-stage {
    grid-template-columns: 1fr;
  }

  .moments-nav {
    display: none;
  }

  .detail-sheet__main-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .detail-sheet {
    width: min(94vw, 880px);
    max-height: none;
  }

  .detail-sheet__stage {
    position: relative;
    top: auto;
    align-self: stretch;
    z-index: auto;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    border-right: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.14);
  }

  .detail-stage-copy {
    padding-top: 0.1rem;
    align-content: start;
  }

  .booking-panel {
    width: min(96vw, 54rem);
  }

  .booking-panel__shell {
    grid-template-columns: 1fr;
  }

  .booking-panel__intro {
    border-right: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.14);
  }

  .booking-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .moments-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .moments-panel {
    width: 100%;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-radius: 1.45rem 1.45rem 0 0;
    --moments-photo-max-h: min(50dvh, 460px);
    padding: 0.85rem 0.95rem calc(env(safe-area-inset-bottom, 0px) + 0.95rem);
    max-height: 100dvh;
  }

  .moments-toolbar {
    margin: calc(-0.85rem) calc(-0.95rem) 0.6rem calc(-0.95rem);
    padding: max(0.55rem, env(safe-area-inset-top, 0px)) 0.95rem 0.55rem;
    border-radius: 1.45rem 1.45rem 0 0;
  }

  .booking-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .booking-panel {
    width: 100%;
    height: min(100dvh, 58rem);
    max-height: 100dvh;
    overflow: hidden;
    border-radius: 1.4rem 1.4rem 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    transform: translateY(2rem);
    transform-origin: center bottom;
  }

  .booking-panel__shell {
    display: block;
    height: 100%;
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .booking-panel__intro {
    gap: 0.85rem;
    padding: 0.85rem 1rem 1rem;
    min-height: auto;
    overflow: visible;
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
  }

  .booking-title {
    font-size: clamp(1.45rem, 7vw, 1.88rem);
  }

  .booking-lede,
  .booking-success__text,
  .booking-form__sub {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .booking-highlights {
    gap: 0.5rem;
  }

  .booking-process {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .booking-panel__body {
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 0.9rem 1rem calc(env(safe-area-inset-bottom, 0px) + 1rem);
  }

  .booking-overlay.is-success .booking-panel {
    height: auto;
    min-height: 0;
  }

  .booking-overlay.is-success .booking-panel__shell {
    display: block;
    height: auto;
    overflow: visible;
  }

  .booking-overlay.is-success .booking-panel__body {
    padding-top: 1rem;
  }

  .booking-field {
    gap: 0.34rem;
  }

  .booking-field input,
  .booking-field select,
  .booking-field textarea {
    min-height: 3.1rem;
    padding: 0.8rem 0.85rem;
    font-size: 16px;
  }

  .booking-field textarea {
    min-height: 7.2rem;
  }

  .booking-actions {
    position: sticky;
    bottom: calc(env(safe-area-inset-bottom, 0px) - 0.1rem);
    padding-top: 0.55rem;
    background: linear-gradient(180deg, rgba(18, 16, 18, 0), rgba(18, 16, 18, 0.96) 28%);
  }

  .booking-actions .btn,
  .booking-success .btn {
    width: 100%;
    min-height: 3.15rem;
  }
}

/* Mobile WebKit: backdrop-filter can paint a full black layer over the dialog; disable blur on small viewports. */
@media (max-width: 900px) {
  .moments-backdrop,
  .booking-backdrop,
  .detail-backdrop {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .moments-backdrop {
    background: rgba(6, 5, 6, 0.94);
  }
  .booking-backdrop {
    background: rgba(6, 5, 6, 0.94);
  }
  .detail-backdrop {
    background: rgba(6, 5, 6, 0.9);
  }
}

.moments-panel::-webkit-scrollbar {
  width: 10px;
}

.moments-panel::-webkit-scrollbar-track {
  background: transparent;
}

.moments-panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
  background: linear-gradient(180deg, rgba(212, 188, 106, 0.6), rgba(138, 109, 58, 0.4));
}

.detail-blocks {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0;
}

.meal-card {
  margin: 0;
  padding: 0.5rem 0.6rem 0.55rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(197, 160, 89, 0.16);
  background: rgba(22, 20, 22, 0.82);
  transition:
    border-color var(--t-hover-slow) var(--ease-flow),
    box-shadow var(--t-hover-slow) var(--ease-flow),
    transform var(--t-hover-slow) var(--ease-flow);
}

.meal-card:hover {
  border-color: rgba(212, 188, 106, 0.32);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.meal-card__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  min-width: 0;
}

.meal-card--with-visual .meal-card__inner {
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 0.55rem 0.7rem;
}

@media (min-width: 480px) {
  .meal-card--with-visual .meal-card__inner {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0.55rem 0.85rem;
  }
}

.meal-card__photo {
  margin: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-elevated);
  border: 1px solid rgba(197, 160, 89, 0.22);
  align-self: start;
}

.meal-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.meal-card__body {
  min-width: 0;
}

.meal-card-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
  color: var(--gold-2);
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.meal-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.meal-card-list li {
  margin-bottom: 0.45rem;
}

.meal-card-list li:last-child {
  margin-bottom: 0;
}

.meal-card-list strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 0.12rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.meal-card-desc {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.38;
  font-weight: 400;
}

.detail-gallery-dock {
  flex-shrink: 0;
  width: 100%;
  margin-top: 0;
  padding: 1rem 0 1.05rem;
  border-top: 1px solid rgba(197, 160, 89, 0.28);
  background:
    linear-gradient(180deg, rgba(18, 15, 17, 0.88), rgba(12, 10, 12, 0.98));
}

.detail-gallery-dock--bottom {
  padding-left: clamp(1rem, 2.5vw, 1.5rem);
  padding-right: clamp(1rem, 2.5vw, 1.5rem);
}

.detail-gallery-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin: 0 0 0.65rem;
  opacity: 0.95;
}

.detail-hero-wrap {
  --detail-hero-bg: none;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.18);
  width: 100%;
  max-width: 100%;
  aspect-ratio: 5 / 4;
  max-height: min(56vh, 470px);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.05),
    0 16px 42px rgba(0, 0, 0, 0.24);
  background:
    radial-gradient(ellipse 80% 80% at 50% 40%, rgba(35, 31, 32, 0.95), var(--bg-elevated));
}

.detail-hero-wrap:not(.is-empty)::before,
.detail-hero-wrap:not(.is-empty)::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Blurred duplicate layer removed — it made the hero read as soft/low-res behind the sharp img. */
.detail-hero-wrap:not(.is-empty)::before {
  display: none;
}

.detail-hero-wrap:not(.is-empty)::after {
  background:
    linear-gradient(180deg, rgba(7, 6, 7, 0.06), rgba(7, 6, 7, 0.38)),
    radial-gradient(circle at center, rgba(255, 247, 232, 0.04), transparent 56%);
}

@media (max-width: 640px) {
  .detail-hero-wrap {
    aspect-ratio: 4 / 5;
    max-height: min(50vh, 420px);
  }
}

.detail-hero-wrap.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  max-height: none;
  aspect-ratio: auto;
  background:
    linear-gradient(145deg, rgba(197, 160, 89, 0.06), transparent),
    repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(197, 160, 89, 0.04) 12px, rgba(197, 160, 89, 0.04) 13px);
}

.detail-hero-wrap.is-empty::after {
  content: "Add hero.jpg or gallery/01.jpg …";
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.detail-hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  padding: 0;
  filter: none;
}

.booking-panel__body::-webkit-scrollbar {
  width: 10px;
}

.booking-panel__body::-webkit-scrollbar-track {
  background: transparent;
}

.booking-panel__body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
  background: linear-gradient(180deg, rgba(212, 188, 106, 0.6), rgba(138, 109, 58, 0.44));
}

.detail-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0.35rem 0 0.15rem;
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.detail-marquee:hover .detail-marquee__slider {
  animation-play-state: paused;
}

.detail-marquee__slider {
  --detail-marquee-duration: 48s;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  gap: 0;
  animation: detail-marquee-scroll var(--detail-marquee-duration) linear infinite;
  will-change: transform;
}

.detail-marquee__seq {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.65rem;
  padding-right: 0.65rem;
  flex-shrink: 0;
}

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

.detail-marquee--static .detail-marquee__slider {
  animation: none;
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;
  row-gap: 0.65rem;
}

.detail-marquee--static .detail-marquee__seq {
  flex-wrap: wrap;
  padding-right: 0;
}

.detail-marquee--static {
  overflow-x: auto;
  mask-image: none;
  scrollbar-width: thin;
}

@media (prefers-reduced-motion: reduce) {
  .detail-marquee__slider {
    animation: none !important;
  }

  .detail-marquee {
    overflow-x: auto;
    mask-image: none;
  }
}

.detail-thumb {
  flex: 0 0 auto;
  width: clamp(88px, 22vw, 124px);
  height: clamp(66px, 16.5vw, 93px);
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  background: var(--bg-elevated);
  transition:
    border-color var(--t-hover-slow) var(--ease-flow),
    box-shadow var(--t-hover-slow) var(--ease-flow),
    transform var(--t-hover-slow) var(--ease-flow);
}

.detail-thumb:hover {
  transform: translateY(-3px);
}

.detail-thumb.is-active {
  border-color: rgba(212, 188, 106, 0.85);
  box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.35), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .detail-overlay {
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .detail-sheet {
    width: 100%;
    max-width: 100vw;
    margin-inline: 0;
    margin-block: 0;
    height: auto;
    min-height: 0;
    max-height: none;
    border-radius: 1.45rem 1.45rem 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }

  .detail-toolbar {
    padding: 0.75rem 0.9rem 0.4rem;
    background: linear-gradient(180deg, rgba(28, 24, 27, 0.98), rgba(28, 24, 27, 0.9));
    border-radius: 1.45rem 1.45rem 0 0;
  }

  .detail-close {
    width: auto;
  }

  .detail-stage-copy {
    padding: 0 1rem 1rem;
  }

  .detail-sheet-inner {
    padding: 0.85rem 0.95rem calc(env(safe-area-inset-bottom, 0px) + 1rem);
  }

  .detail-title {
    font-size: clamp(1.25rem, 6vw, 1.6rem);
  }

  .detail-intro {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .detail-sample-notice {
    max-width: none;
    padding: 0.72rem 0.85rem;
    font-size: 0.84rem;
    text-align: left;
  }

  .meal-card {
    padding: 0.72rem 0.78rem;
  }

  .meal-card--with-visual .meal-card__inner {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 0.7rem 0.8rem;
  }

  .meal-card-title {
    font-size: 0.98rem;
  }

  .meal-card-list strong {
    font-size: 0.82rem;
  }

  .meal-card-desc {
    font-size: 0.8rem;
    line-height: 1.46;
  }

  .detail-gallery-dock,
  .detail-gallery-dock--bottom {
    margin-left: -0.95rem;
    margin-right: -0.95rem;
    padding-left: 0.95rem;
    padding-right: 0.95rem;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 0.55rem);
  }

  .detail-sample-notice--stage {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .detail-sheet-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .detail-blocks {
    grid-template-columns: 1fr;
  }

  .detail-thumb {
    width: 92px;
    height: 72px;
  }
}

/* ——— Content modules (1400 shell) ——— */
.module {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.module--pillars {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.12);
}

.pillar-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 2.5vw, 1.35rem);
}

.pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.35rem 1rem 1.25rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(197, 160, 89, 0.22);
  background: linear-gradient(165deg, rgba(38, 34, 36, 0.88), rgba(14, 12, 14, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.06),
    0 10px 36px rgba(0, 0, 0, 0.28);
  transition:
    transform var(--t-hover-slow) var(--ease-flow),
    border-color var(--t-hover-slow) var(--ease-flow),
    box-shadow var(--t-hover-slow) var(--ease-flow),
    background var(--t-hover-slow) var(--ease-flow);
}

.pillar-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 188, 106, 0.42);
  background: linear-gradient(165deg, rgba(42, 38, 40, 0.92), rgba(18, 16, 18, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.09),
    0 18px 48px rgba(0, 0, 0, 0.38);
}

.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--gold-2);
  background:
    radial-gradient(circle at 30% 28%, rgba(212, 188, 106, 0.22), transparent 58%),
    linear-gradient(155deg, rgba(197, 160, 89, 0.14), rgba(22, 20, 22, 0.95));
  border: 1px solid rgba(197, 160, 89, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 235, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.35);
  transition:
    transform var(--t-hover-slow) var(--ease-flow),
    border-color var(--t-hover-slow) var(--ease-flow),
    box-shadow var(--t-hover-slow) var(--ease-flow),
    color var(--t-hover-slow) var(--ease-flow);
}

.pillar-icon :is(svg, i) {
  display: block;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.pillar-icon svg {
  width: 1.42rem;
  height: 1.42rem;
}

.pillar-icon i {
  font-size: 1.32rem;
  line-height: 1;
  width: 1.42rem;
  text-align: center;
}

.pillar-item:hover .pillar-icon {
  transform: scale(1.06);
  border-color: rgba(212, 188, 106, 0.55);
  color: var(--gold-1);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 235, 0.16),
    0 6px 22px rgba(0, 0, 0, 0.4);
}

.pillar-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 0.45rem;
  opacity: 0.95;
}

.pillar-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: var(--font-display);
  color: var(--text);
  margin-bottom: 0.45rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.pillar-meta {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 16rem;
  margin: 0 auto;
}

.coverage-band {
  margin: 0 0 clamp(1.6rem, 4vw, 2.6rem);
}

.coverage-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  gap: 1rem;
  align-items: center;
  padding: clamp(1.1rem, 3vw, 1.5rem);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(197, 160, 89, 0.18);
  background:
    linear-gradient(160deg, rgba(197, 160, 89, 0.12), rgba(30, 27, 29, 0.94) 32%, rgba(13, 12, 13, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.05),
    0 14px 42px rgba(0, 0, 0, 0.26);
}

.coverage-band__copy {
  display: grid;
  gap: 0.65rem;
}

.coverage-band__copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  line-height: 1.12;
}

.coverage-band__body {
  margin: 0;
  max-width: 40rem;
  color: rgba(243, 234, 209, 0.74);
  font-size: 0.95rem;
  line-height: 1.68;
}

.coverage-band__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.coverage-band__chips li {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.24);
  background: rgba(16, 14, 16, 0.78);
  color: rgba(243, 234, 209, 0.84);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.22);
}

.module--seo-faq {
  padding: clamp(0.3rem, 1vw, 0.8rem) 0 clamp(2rem, 4vw, 3rem);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-card {
  position: relative;
  display: grid;
  gap: 0.7rem;
  padding: 1.15rem 1.1rem 1.2rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(197, 160, 89, 0.18);
  background:
    linear-gradient(160deg, rgba(197, 160, 89, 0.08), rgba(23, 20, 22, 0.92) 34%, rgba(11, 10, 11, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.05),
    0 16px 40px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.faq-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.16), rgba(197, 160, 89, 0));
  pointer-events: none;
}

.faq-card__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.faq-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.18;
  color: var(--text);
}

.faq-card__body {
  margin: 0;
  color: rgba(243, 234, 209, 0.76);
  font-size: 0.94rem;
  line-height: 1.72;
  max-width: 34rem;
}

/* ——— Cinematic reel (muted autoplay; MP4 at images/video/chef-reel.mp4) ——— */
.module--cinematic {
  position: relative;
  padding: clamp(0.85rem, 2.5vw, 1.75rem) 0 clamp(1rem, 3vw, 2rem);
}

@media (min-width: 721px) {
  .module--cinematic {
    padding: clamp(1.25rem, 3.5vw, 2.25rem) 0 clamp(1.75rem, 4vw, 2.75rem);
  }
}

.module--cinematic::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: min(40vmin, 18rem);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(197, 160, 89, 0.09), transparent 65%),
    radial-gradient(ellipse 50% 60% at 20% 40%, rgba(212, 188, 106, 0.05), transparent 55%);
}

@media (max-width: 720px) {
  .module--cinematic::before {
    height: min(36vmin, 14rem);
  }
}

.cinematic-shell {
  position: relative;
  z-index: 1;
  max-width: min(var(--page-max), 72rem);
}

.cinematic-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243, 234, 209, 0.42);
  text-align: center;
}

.cinematic-frame {
  margin: 0;
  padding: 0;
}

/* Default: compact strip (no MP4 yet, or still image only) */
.cinematic-video-wrap {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  touch-action: manipulation;
  aspect-ratio: 2.4 / 1;
  max-height: min(9.5rem, 38vmin);
  width: 100%;
  margin-inline: auto;
  background: var(--bg-elevated);
  border: 1px solid rgba(197, 160, 89, 0.28);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 248, 235, 0.06);
  contain: layout style;
}

@media (max-width: 720px) {
  .cinematic-video-wrap {
    aspect-ratio: 2 / 1;
    max-height: min(7.25rem, 34vmin);
  }
}

/* When images/video/chef-reel.mp4 exists — wider cinematic strip */
.module--cinematic.cinematic--has-video .cinematic-video-wrap {
  aspect-ratio: 21 / 9;
  max-height: min(22rem, 42vmin);
}

@media (max-width: 720px) {
  .module--cinematic.cinematic--has-video .cinematic-video-wrap {
    aspect-ratio: 16 / 9;
    max-height: min(12rem, 52vmin);
  }
}

.cinematic-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* intrinsic video dimensions must not participate in layout (prevents mobile “jump” / giant column) */
}

.cinematic-fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cinematic--fallback .cinematic-video {
  display: none;
}

.cinematic--fallback .cinematic-fallback-img {
  display: block !important;
}

.cinematic-video__edge {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow:
    inset 0 0 80px rgba(0, 0, 0, 0.35),
    inset 0 -32px 48px rgba(0, 0, 0, 0.25);
  border-radius: inherit;
}

.cinematic-sound {
  position: absolute;
  right: max(0.65rem, env(safe-area-inset-right));
  bottom: max(0.65rem, env(safe-area-inset-bottom));
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 235, 0.18);
  background: rgba(14, 12, 14, 0.72);
  color: var(--gold-2);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    border-color 0.25s var(--ease-flow),
    color 0.25s var(--ease-flow),
    background 0.25s var(--ease-flow);
}

.cinematic-sound:hover {
  border-color: rgba(212, 188, 106, 0.45);
  color: var(--gold-1);
  background: rgba(22, 20, 22, 0.88);
}

.cinematic-sound:focus-visible {
  outline: 2px solid rgba(212, 188, 106, 0.65);
  outline-offset: 2px;
}

.cinematic-sound i {
  font-size: 0.95rem;
  line-height: 1;
}

.cinematic-sound__txt {
  font-family: var(--font-ui);
}

.cinematic-caption {
  margin: 0.65rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(243, 234, 209, 0.38);
}

@media (max-width: 900px) {
  .cinematic-sound {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.module--quote {
  position: relative;
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.module--quote .shell {
  position: relative;
  z-index: 1;
}

.pull-quote {
  margin: 0;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 3px solid rgba(197, 160, 89, 0.45);
  max-width: 48rem;
  transition:
    border-left-color var(--t-hover-slow) var(--ease-flow),
    box-shadow var(--t-hover-slow) var(--ease-flow),
    transform var(--t-hover-slow) var(--ease-flow);
}

.module--quote:hover .pull-quote {
  border-left-color: rgba(212, 188, 106, 0.75);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  transform: translateX(4px);
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.pull-quote cite {
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.module--split {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  background: linear-gradient(180deg, transparent, rgba(197, 160, 89, 0.04) 40%, transparent);
}

.module--video-gallery {
  padding: clamp(2rem, 5vw, 3.25rem) 0;
  border-top: 1px solid rgba(197, 160, 89, 0.12);
  border-bottom: 1px solid rgba(197, 160, 89, 0.08);
}

.module--video-gallery--spotlight {
  padding: clamp(2.35rem, 5.5vw, 4rem) 0;
  border-top: 1px solid rgba(197, 160, 89, 0.16);
  border-bottom: 1px solid rgba(197, 160, 89, 0.12);
  background:
    radial-gradient(ellipse 88% 58% at 50% -18%, rgba(212, 188, 106, 0.12), transparent 58%),
    radial-gradient(ellipse 52% 42% at 92% 85%, rgba(197, 160, 89, 0.06), transparent 48%),
    linear-gradient(185deg, rgba(26, 22, 24, 0.97), rgba(12, 11, 12, 0.99));
}

.module--video-gallery .gallery-strip {
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

.module-split-actions--center {
  justify-content: center;
  margin-top: clamp(1rem, 3vw, 1.75rem);
}

.module--gallery-shimmer {
  padding: clamp(2rem, 5vw, 3.75rem) 0;
  position: relative;
}

.module--gallery-shimmer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 72% 52% at 50% -8%, rgba(212, 188, 106, 0.13), transparent 58%),
    radial-gradient(ellipse 48% 42% at 82% 92%, rgba(197, 160, 89, 0.07), transparent 52%);
}

.module--gallery-shimmer .shell {
  position: relative;
  z-index: 2;
}

.shimmer-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  /* Avoid 1fr rows — they stretch cards to extreme heights on large viewports */
  grid-auto-rows: minmax(7.5rem, min(14vw, 11rem));
  gap: clamp(1rem, 2.4vw, 1.65rem);
}

.shimmer-gallery__item {
  position: relative;
  margin: 0;
  grid-column: span 3;
  grid-row: span 2;
  min-height: 0;
  max-height: min(56vh, 520px);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 248, 235, 0.07);
  transition:
    transform var(--t-hover-slow) var(--ease-flow),
    border-color var(--t-hover-slow) var(--ease-flow),
    box-shadow var(--t-hover-slow) var(--ease-flow);
}

.shimmer-gallery__item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 3;
  max-height: min(62vh, 620px);
}

.shimmer-gallery__item:nth-child(2) {
  grid-column: span 4;
  grid-row: span 2;
}

.shimmer-gallery__item:nth-child(3) {
  grid-column: span 3;
  grid-row: span 2;
}

.shimmer-gallery__item:nth-child(4) {
  grid-column: span 3;
  grid-row: span 2;
}

.shimmer-gallery__item:nth-child(5) {
  grid-column: span 4;
  grid-row: span 2;
}

.shimmer-gallery__item:nth-child(6) {
  grid-column: span 5;
  grid-row: span 3;
  max-height: min(62vh, 620px);
}

.shimmer-gallery__item:nth-child(7) {
  grid-column: span 4;
  grid-row: span 2;
}

.shimmer-gallery__item:nth-child(8) {
  grid-column: span 3;
  grid-row: span 2;
}

.shimmer-gallery__button {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  display: block;
  text-align: left;
}

.shimmer-gallery__button:focus-visible,
.moments-close:focus-visible,
.moments-nav:focus-visible {
  outline: 2px solid rgba(243, 234, 209, 0.92);
  outline-offset: 3px;
}

.shimmer-gallery__item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 188, 106, 0.55);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(255, 248, 235, 0.1);
}

.shimmer-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.15s var(--ease-flow);
}

.shimmer-gallery__item:hover img {
  transform: scale(1.04);
}

.shimmer-gallery__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 9, 10, 0.04), rgba(10, 9, 10, 0.08) 38%, rgba(10, 9, 10, 0.72) 100%),
    radial-gradient(circle at 18% 18%, rgba(255, 247, 232, 0.18), transparent 30%);
  transition: opacity var(--t-hover-slow) var(--ease-flow);
}

.shimmer-gallery__meta {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: grid;
  gap: 0.28rem;
  padding: 0.85rem 0.95rem 1rem;
}

.shimmer-gallery__eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232, 212, 163, 0.88);
}

.shimmer-gallery__title {
  display: block;
  max-width: 18rem;
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.15vw, 1.12rem);
  line-height: 1.22;
  font-weight: 500;
  color: rgba(255, 250, 241, 0.96);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.shimmer-gallery__item::after {
  content: "";
  position: absolute;
  inset: -130%;
  background: linear-gradient(
    118deg,
    transparent 35%,
    rgba(255, 243, 210, 0.07) 45%,
    rgba(212, 188, 106, 0.42) 49.5%,
    rgba(255, 249, 235, 0.14) 54%,
    transparent 65%
  );
  opacity: 0.5;
  animation: shimmer-pass 6.8s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.shimmer-gallery__item:hover .shimmer-gallery__button::before {
  opacity: 0.82;
}

.moments-footnote {
  margin-top: clamp(1.25rem, 3vw, 1.85rem);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 0.35rem;
  max-width: 36rem;
  padding: 1rem 1.15rem;
  text-align: center;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(197, 160, 89, 0.18);
  background: linear-gradient(145deg, rgba(197, 160, 89, 0.1), rgba(21, 18, 20, 0.88));
}

.moments-footnote__label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.moments-footnote p {
  margin: 0;
  color: rgba(243, 234, 209, 0.7);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Inline copy links — override browser default blue (visited/unvisited) */
.section-head .section-lede a,
.moments-footnote p a,
.module-lede a {
  color: var(--gold-2);
  text-decoration: underline;
  text-decoration-color: rgba(212, 188, 106, 0.42);
  text-underline-offset: 0.18em;
  transition:
    color var(--t-fast) var(--ease),
    text-decoration-color var(--t-fast) var(--ease);
}

.section-head .section-lede a:visited,
.moments-footnote p a:visited,
.module-lede a:visited {
  color: var(--gold-3);
}

.section-head .section-lede a:hover,
.moments-footnote p a:hover,
.module-lede a:hover {
  color: var(--gold-1);
  text-decoration-color: rgba(243, 234, 209, 0.45);
}

.section-head .section-lede a:focus-visible,
.moments-footnote p a:focus-visible,
.module-lede a:focus-visible {
  outline: 2px solid rgba(212, 188, 106, 0.7);
  outline-offset: 3px;
}

.module--gallery-shimmer .module-split-actions--center {
  width: 100%;
}

.shimmer-gallery__item:nth-child(2)::after {
  animation-delay: -1.4s;
}
.shimmer-gallery__item:nth-child(3)::after {
  animation-delay: -2.8s;
}
.shimmer-gallery__item:nth-child(4)::after {
  animation-delay: -4s;
}
.shimmer-gallery__item:nth-child(5)::after {
  animation-delay: -0.9s;
}
.shimmer-gallery__item:nth-child(6)::after {
  animation-delay: -3.2s;
}
.shimmer-gallery__item:nth-child(7)::after {
  animation-delay: -5.1s;
}
.shimmer-gallery__item:nth-child(8)::after {
  animation-delay: -2.2s;
}

@keyframes shimmer-pass {
  0%,
  100% {
    transform: translate(-14%, 14%) rotate(11deg);
    opacity: 0.32;
  }
  48% {
    transform: translate(18%, -10%) rotate(11deg);
    opacity: 0.82;
  }
}

@media (max-width: 900px) {
  .shimmer-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(9rem, min(42vw, 14rem));
    gap: clamp(0.85rem, 3vw, 1.25rem);
  }

  .shimmer-gallery__item,
  .shimmer-gallery__item:nth-child(1),
  .shimmer-gallery__item:nth-child(2),
  .shimmer-gallery__item:nth-child(3),
  .shimmer-gallery__item:nth-child(4),
  .shimmer-gallery__item:nth-child(5),
  .shimmer-gallery__item:nth-child(6),
  .shimmer-gallery__item:nth-child(7),
  .shimmer-gallery__item:nth-child(8) {
    grid-column: span 1;
    grid-row: span 2;
    max-height: min(52vh, 440px);
  }

  .shimmer-gallery__item:nth-child(1),
  .shimmer-gallery__item:nth-child(6) {
    max-height: min(58vh, 480px);
  }
}

.module-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.module-split-visual {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: var(--bg-elevated);
  aspect-ratio: 4 / 5;
  max-height: min(70vh, 600px);
}

.module-split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.module-split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.module-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin: 0 0 0.5rem;
}

.module-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.module-lede {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 34rem;
}

.module--stats {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

.module--conversion {
  position: relative;
  padding: clamp(1.25rem, 4vw, 2.75rem) 0 clamp(2rem, 5vw, 3rem);
}

.module--conversion .shell {
  position: relative;
  z-index: 1;
}

.conversion-shell {
  padding: clamp(1.5rem, 3.5vw, 2.35rem);
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(197, 160, 89, 0.26);
  background:
    radial-gradient(ellipse 95% 70% at 50% -12%, rgba(212, 188, 106, 0.11), transparent 52%),
    linear-gradient(168deg, rgba(34, 29, 31, 0.96), rgba(10, 9, 10, 0.98));
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 248, 235, 0.05);
  transition:
    border-color var(--t-hover-slow) var(--ease-flow),
    box-shadow var(--t-hover-slow) var(--ease-flow),
    transform var(--t-hover-slow) var(--ease-flow);
}

.module--conversion:hover .conversion-shell {
  border-color: rgba(212, 188, 106, 0.38);
  box-shadow:
    0 32px 82px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(197, 160, 89, 0.08),
    inset 0 1px 0 rgba(255, 248, 235, 0.06);
  transform: translateY(-2px);
}

.conversion-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto clamp(1.35rem, 3.5vw, 2rem);
}

.conversion-title {
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 2.6vw, 1.65rem);
  font-weight: 500;
  margin: 0.4rem 0 0.65rem;
  line-height: 1.22;
}

.conversion-lede {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.58;
  color: var(--text-muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: var(--radius);
  background: rgba(20, 18, 20, 0.5);
}

.stats-grid--premium {
  gap: 0;
  padding: 0.35rem 0;
  margin-bottom: clamp(1.5rem, 4vw, 2.35rem);
  border: 1px solid rgba(197, 160, 89, 0.2);
  background:
    linear-gradient(180deg, rgba(197, 160, 89, 0.06), transparent 42%),
    rgba(8, 7, 8, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 248, 235, 0.04);
}

.stat--premium {
  position: relative;
  padding: 1rem 0.65rem 1.05rem;
}

.stat--premium:not(:nth-child(3))::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  bottom: 22%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(197, 160, 89, 0.35) 22%,
    rgba(197, 160, 89, 0.35) 78%,
    transparent
  );
}

.stat {
  padding: 0.6rem 0.45rem;
  border-radius: 12px;
  transition:
    transform var(--t-hover-slow) var(--ease-flow),
    background var(--t-hover-slow) var(--ease-flow),
    box-shadow var(--t-hover-slow) var(--ease-flow);
}

.stat:hover {
  transform: translateY(-4px);
  background: rgba(197, 160, 89, 0.07);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cta-rich {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: center;
  text-align: left;
}

.cta-rich__visual {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  background: rgba(12, 11, 12, 0.9);
}

.cta-rich__visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-rich__caption {
  padding: 0.65rem 0.85rem 0.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 234, 209, 0.62);
  background: linear-gradient(180deg, rgba(14, 12, 14, 0.5), rgba(14, 12, 14, 0.92));
}

.cta-rich__body {
  min-width: 0;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin: 0 0 0.55rem;
  line-height: 1.15;
}

.cta-sub {
  margin: 0 0 1.1rem;
  max-width: 38rem;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.cta-trust {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.cta-trust li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(243, 234, 209, 0.78);
}

.cta-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-4));
  box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.18);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .cta-rich {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-rich__body {
    text-align: center;
  }

  .cta-trust {
    text-align: left;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-actions {
    justify-content: center;
  }

  .stat--premium::after {
    display: none;
  }

  .stats-grid--premium {
    grid-template-columns: 1fr;
    padding: 0.85rem 0.65rem;
    gap: 0.5rem;
  }

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

  .coverage-band__grid {
    grid-template-columns: 1fr;
  }

  .coverage-band__chips {
    justify-content: flex-start;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .module-split-grid {
    grid-template-columns: 1fr;
  }

  .module-split-visual {
    order: -1;
    max-width: 28rem;
    margin: 0 auto;
    max-height: none;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 520px) {
  .hero--editorial::before {
    top: 0;
    left: -3rem;
    width: 18rem;
    height: 18rem;
  }

  .hero--editorial::after {
    right: -4rem;
    bottom: -5rem;
    width: 16rem;
    height: 12rem;
  }

  .hero-panel--visual {
    padding-bottom: 0.85rem;
  }

  .pillar-grid {
    gap: clamp(0.65rem, 3vw, 1rem);
  }

  .pillar-item {
    padding: 1.05rem 0.62rem 0.95rem;
  }

  .pillar-item strong {
    font-size: 0.88rem;
  }

  .pillar-meta {
    font-size: 0.7rem;
    max-width: none;
  }

  .coverage-band__grid {
    padding: 1rem 0.95rem;
  }

  .coverage-band__body {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .coverage-band__chips {
    gap: 0.55rem;
  }

  .coverage-band__chips li {
    width: 100%;
    justify-content: center;
    font-size: 0.68rem;
  }

  .faq-card {
    padding: 1rem 0.95rem 1.05rem;
  }

  .faq-card__body {
    font-size: 0.91rem;
    line-height: 1.62;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-copy-top {
    gap: 0.6rem;
    margin-bottom: 0.95rem;
  }

  .hero-headline {
    font-size: clamp(1.72rem, 8vw, 2.15rem);
    line-height: 1.08;
  }

  .hero .tagline {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .hero-lede {
    font-size: 0.92rem;
    line-height: 1.58;
    margin-bottom: 1.2rem;
  }

  .hero-actions,
  .cta-actions,
  .module-split-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof-chips {
    gap: 0.5rem;
  }

  .hero-proof-chips li {
    width: 100%;
    justify-content: center;
    font-size: 0.68rem;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .hero-mini-card,
  .hero-mini-card--primary {
    grid-column: auto;
  }

  .hero-floating-card {
    position: static;
    width: 100%;
    margin-top: 0.75rem;
    text-align: left;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .module-split-actions .btn {
    width: 100%;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .section-sample-notice {
    margin-top: 1.4rem;
    padding: 1.1rem 1rem 1.15rem;
  }

  .section-sample-notice::before {
    margin-bottom: 0.95rem;
  }

  .section-sample-notice__body,
  .section-head p,
  .section-head--premium.section-head--with-callout .section-lede,
  .module-lede,
  .cta-sub {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .flow-section {
    margin-bottom: 2.5rem;
  }

  .module-split-grid {
    gap: 1.25rem;
  }

  .shimmer-gallery {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .contact-social {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .social-tile {
    width: 100%;
    justify-content: center;
    padding: 0.78rem 1rem;
  }

  .whatsapp-fab {
    gap: 0.45rem;
    min-height: 3.15rem;
  }
}

/* ——— Experience rail ——— */
.experience-rail {
  position: relative;
  margin: -0.55rem 0 clamp(1.2rem, 4vw, 2rem);
}

.experience-rail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.82fr));
  gap: 1rem;
  align-items: stretch;
}

.experience-tile {
  display: grid;
  gap: 0.7rem;
  padding: 1.35rem 1.35rem 1.4rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(197, 160, 89, 0.2);
  background:
    linear-gradient(165deg, rgba(29, 25, 27, 0.96), rgba(12, 11, 12, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.05),
    0 18px 50px rgba(0, 0, 0, 0.28);
}

.experience-tile--visual {
  position: relative;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
}

.experience-tile__media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.experience-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.experience-tile__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    185deg,
    rgba(8, 7, 8, 0.15) 0%,
    rgba(10, 9, 10, 0.42) 38%,
    rgba(8, 7, 8, 0.88) 78%,
    rgba(5, 4, 5, 0.96) 100%
  );
}

.experience-tile__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  align-content: end;
  padding: 1.35rem 1.35rem 1.45rem;
  min-height: clamp(17rem, 32vw, 22rem);
}

.experience-tile--visual .experience-tile__inner {
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.65);
}

.experience-tile--featured.experience-tile--visual .experience-tile__inner {
  min-height: clamp(19rem, 36vw, 26rem);
}

.experience-tile--featured {
  background:
    linear-gradient(160deg, rgba(197, 160, 89, 0.16), rgba(34, 29, 31, 0.94) 32%, rgba(13, 12, 13, 0.98) 100%);
  border-color: rgba(212, 188, 106, 0.24);
}

.experience-tile--visual.experience-tile--featured {
  background: transparent;
}

.experience-tile__eyebrow {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.experience-tile__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  line-height: 1.12;
}

.experience-tile__stat {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(243, 234, 209, 0.94);
}

.experience-tile__body {
  margin: 0;
  color: rgba(243, 234, 209, 0.7);
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .experience-rail__grid {
    grid-template-columns: 1fr 1fr;
  }

  .experience-tile--featured {
    grid-column: 1 / -1;
  }

  .experience-tile__inner {
    min-height: clamp(15rem, 42vw, 20rem);
  }
}

@media (max-width: 640px) {
  .experience-rail {
    margin-top: 0.1rem;
  }

  .experience-rail__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .experience-tile {
    padding: 1.1rem 1rem 1.15rem;
  }

  .experience-tile__body {
    font-size: 0.96rem;
    line-height: 1.6;
  }
}

@media (max-width: 380px) {
  .whatsapp-fab {
    width: 3.2rem;
    height: 3.2rem;
  }
}

/* Ambient “stars” — gold motes drifting downward (off under prefers-reduced-motion) */
.ambient-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/** Softer over hero photography — mask fades sparkles toward bottom so they feel atmospheric, not “emoji-like”. */
.hero--editorial > .ambient-sparkles--hero {
  opacity: 0.4;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.55) 52%, rgba(0, 0, 0, 0.08) 100%);
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.55) 52%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.hero--editorial > .ambient-sparkles--hero .ambient-sparkles__dot {
  box-shadow:
    0 0 5px rgba(252, 246, 228, 0.28),
    0 0 12px rgba(212, 188, 106, 0.14);
}

.ambient-sparkles--soft .ambient-sparkles__dot {
  opacity: 0.85;
  box-shadow:
    0 0 8px rgba(252, 246, 228, 0.45),
    0 0 18px rgba(212, 188, 106, 0.22);
}

@keyframes ambient-sparkle-fall {
  0% {
    transform: translate3d(0, -14%, 0) scale(0.35) rotate(0deg);
    opacity: 0;
  }
  14% {
    opacity: 1;
  }
  78% {
    opacity: 0.82;
  }
  100% {
    transform: translate3d(16px, 120%, 0) scale(0.12) rotate(220deg);
    opacity: 0;
  }
}

@keyframes ambient-sparkle-fall-alt {
  0% {
    transform: translate3d(0, -14%, 0) scale(0.28) rotate(8deg);
    opacity: 0;
  }
  14% {
    opacity: 0.95;
  }
  100% {
    transform: translate3d(-20px, 120%, 0) scale(0.08) rotate(-200deg);
    opacity: 0;
  }
}

.ambient-sparkles__dot {
  position: absolute;
  top: -10%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fffef8 0%, var(--gold-2) 52%, transparent 74%);
  box-shadow:
    0 0 10px rgba(252, 246, 228, 0.55),
    0 0 22px rgba(212, 188, 106, 0.28);
  opacity: 0;
  animation: ambient-sparkle-fall 10.5s linear infinite;
}

.ambient-sparkles__dot:nth-child(odd) {
  animation-name: ambient-sparkle-fall-alt;
}

.ambient-sparkles__dot:nth-child(3n) {
  width: 2px;
  height: 2px;
  animation-duration: 13.5s;
}

.ambient-sparkles__dot:nth-child(1) {
  left: 7%;
  animation-duration: 9.5s;
  animation-delay: -0.8s;
}
.ambient-sparkles__dot:nth-child(2) {
  left: 18%;
  animation-duration: 11.2s;
  animation-delay: -3.2s;
}
.ambient-sparkles__dot:nth-child(3) {
  left: 29%;
  animation-duration: 12.8s;
  animation-delay: -1.4s;
}
.ambient-sparkles__dot:nth-child(4) {
  left: 41%;
  animation-duration: 10s;
  animation-delay: -5.5s;
}
.ambient-sparkles__dot:nth-child(5) {
  left: 52%;
  animation-duration: 14.2s;
  animation-delay: -2.1s;
}
.ambient-sparkles__dot:nth-child(6) {
  left: 63%;
  animation-duration: 11.8s;
  animation-delay: -4.6s;
}
.ambient-sparkles__dot:nth-child(7) {
  left: 74%;
  animation-duration: 9.8s;
  animation-delay: -0.3s;
}
.ambient-sparkles__dot:nth-child(8) {
  left: 85%;
  animation-duration: 13s;
  animation-delay: -6.2s;
}
.ambient-sparkles__dot:nth-child(9) {
  left: 36%;
  animation-duration: 15.5s;
  animation-delay: -7.5s;
}
.ambient-sparkles__dot:nth-child(10) {
  left: 92%;
  animation-duration: 10.8s;
  animation-delay: -2.8s;
}

@media (max-width: 640px) {
  .ambient-sparkles__dot:nth-child(n + 7) {
    display: none;
  }
}


/* --- Chef story band (portfolio layout) --- */
.chef-story-band {
  position: relative;
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
}

.chef-story-portfolio {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.15rem);
}

.chef-story-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(0.85rem, 2vw, 1.15rem);
  align-items: start;
}

.chef-story-spotlight__visual {
  margin: 0;
  min-height: clamp(14rem, 36vw, 24rem);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 248, 235, 0.06),
    0 24px 70px rgba(0, 0, 0, 0.35);
}

.chef-story-spotlight__visual img {
  width: 100%;
  height: 100%;
  min-height: clamp(14rem, 36vw, 24rem);
  display: block;
  object-fit: cover;
}

/** Lead copy beside spotlight image — tighter rhythm than full-width story cards */
@media (min-width: 981px) {
  .chef-story-spotlight .chef-story-card--lead {
    padding: 1rem 1.1rem 1.05rem;
    gap: 0.48rem;
  }

  .chef-story-spotlight .chef-story-card__eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
  }

  .chef-story-spotlight .chef-story-card__title {
    font-size: clamp(1.65rem, 2.5vw, 2.35rem);
    line-height: 1.06;
  }

  .chef-story-spotlight .chef-story-card__subtitle {
    margin: -0.08rem 0 0;
    font-size: 0.78rem;
    letter-spacing: 0.11em;
  }

  .chef-story-spotlight .chef-story-card__body {
    font-size: 0.86rem;
    line-height: 1.52;
    max-width: 38em;
  }

  .chef-story-spotlight .chef-story-stats {
    margin-top: 0.28rem;
    gap: 0.5rem;
  }

  .chef-story-spotlight .chef-story-stat {
    padding: 0.62rem 0.72rem;
    border-radius: 0.75rem;
    gap: 0.22rem;
  }

  .chef-story-spotlight .chef-story-stat__label {
    font-size: 0.56rem;
    letter-spacing: 0.16em;
  }

  .chef-story-spotlight .chef-story-stat__value {
    font-size: 0.88rem;
    line-height: 1.2;
  }
}

.chef-story-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.35rem);
  align-items: stretch;
}

.chef-story-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.18);
  background: rgba(12, 11, 12, 0.55);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.chef-story-panel__media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.chef-story-panel__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.chef-story-panel__content.chef-story-card {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: linear-gradient(180deg, rgba(22, 19, 21, 0.98), rgba(11, 10, 11, 0.99));
}

.chef-story-signature-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
}

.chef-story-signature-strip__media {
  margin: 0;
  min-height: clamp(14rem, 28vw, 22rem);
}

.chef-story-signature-strip__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(14rem, 28vw, 22rem);
  display: block;
  object-fit: cover;
}

.chef-story-signature-strip__copy {
  display: grid;
  gap: 0.85rem;
  align-content: center;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.85rem);
  background: linear-gradient(165deg, rgba(26, 22, 24, 0.98), rgba(10, 9, 10, 0.99));
}

.chef-story-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem 1.35rem 1.45rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(197, 160, 89, 0.18);
  background: linear-gradient(170deg, rgba(28, 24, 26, 0.96), rgba(12, 11, 12, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 248, 235, 0.04), 0 20px 60px rgba(0, 0, 0, 0.25);
}

.chef-story-card--lead {
  margin: 0;
  background: linear-gradient(155deg, rgba(197, 160, 89, 0.14), rgba(34, 29, 31, 0.94) 22%, rgba(12, 11, 12, 0.99) 100%);
  border-color: rgba(212, 188, 106, 0.24);
}

.chef-story-card--signature.chef-story-signature-strip {
  border-color: rgba(197, 160, 89, 0.22);
}

.chef-story-card__eyebrow, .chef-story-card__kicker {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.chef-story-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.98;
}

.chef-story-card__subtitle {
  margin: -0.25rem 0 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 234, 209, 0.72);
}

.chef-story-card__body {
  margin: 0;
  color: rgba(243, 234, 209, 0.76);
  font-size: 0.95rem;
  line-height: 1.8;
}

.chef-story-card__closing {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.3;
}

.chef-story-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.15rem;
}

.chef-story-stat {
  display: grid;
  gap: 0.3rem;
  padding: 0.9rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(197, 160, 89, 0.16);
  background: rgba(12, 11, 12, 0.38);
}

.chef-story-stat__label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 234, 209, 0.55);
}

.chef-story-stat__value {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.25;
  color: rgba(243, 234, 209, 0.96);
}

@media (max-width: 980px) {
  .chef-story-spotlight {
    grid-template-columns: 1fr;
  }

  .chef-story-spotlight__visual {
    min-height: clamp(14rem, 52vw, 22rem);
    order: -1;
  }

  .chef-story-spotlight__visual img {
    min-height: clamp(14rem, 52vw, 22rem);
  }

  .chef-story-panels {
    grid-template-columns: 1fr;
  }

  .chef-story-signature-strip {
    grid-template-columns: 1fr;
  }

  .chef-story-signature-strip__media {
    min-height: clamp(12rem, 44vw, 18rem);
    order: -1;
  }

  .chef-story-signature-strip__media img {
    min-height: clamp(12rem, 44vw, 18rem);
  }
}

@media (max-width: 640px) {
  .chef-story-portfolio {
    gap: 0.85rem;
  }

  .chef-story-card,
  .chef-story-card--lead {
    padding: 1.15rem 1rem 1.2rem;
  }

  .chef-story-stats {
    grid-template-columns: 1fr;
  }

  .chef-story-card__body {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .chef-story-signature-strip__copy {
    padding: 1.1rem 1rem 1.2rem;
  }
}
