/* ==============================================
   FLAVOURS Cafe — Premium Cafe Stylesheet
   Yellow · Charcoal · Modern luxury
   ============================================== */

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

:root {
  /* ── Light Backgrounds ── */
  --bg: #ffffff;
  --bg2: #fafafa;
  --bg3: #f5f5f5;
  --white: #ffffff;

  /* ── Dark Tones ── */
  --ink: #1a1a1a;
  --ink2: #2d2d2d;
  --muted: #6b6b6b;

  /* ── Yellow Accent Palette ── */
  --amber: #ffcc00;
  --amber-dk: #b8960a;
  --amber-lt: #ffd83d;
  --amber-bg: #fffbeb;

  /* ── Glass & Surfaces ── */
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 204, 0, 0.15);
  --glow: rgba(255, 204, 0, 0.1);
  --glow-strong: rgba(255, 204, 0, 0.22);

  /* ── Borders ── */
  --border: rgba(0, 0, 0, 0.06);
  --border2: rgba(0, 0, 0, 0.03);

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.05), 0 1px 4px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.07), 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 56px rgba(0, 0, 0, 0.09), 0 8px 20px rgba(0, 0, 0, 0.04);

  /* ── Typography ── */
  --font-display: "Playfair Display", "Georgia", serif;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;

  /* ── Layout ── */
  --max: 1200px;
  --radius: 12px;
  --radius-lg: 20px;

  /* ── Transitions ── */
  --t: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-fast: all 0.18s ease;
  --t-spring: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg);
  color: var(--ink2);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.006em;
  padding-top: calc(80px + env(safe-area-inset-top, 0px));
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: -40%;
  right: -25%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(
    circle,
    rgba(255, 204, 0, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: -1;
}
body::after {
  content: "";
  position: fixed;
  bottom: -35%;
  left: -15%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(
    circle,
    rgba(255, 204, 0, 0.04) 0%,
    transparent 55%
  );
  pointer-events: none;
  z-index: -1;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--t);
}
::selection {
  background: var(--amber);
  color: var(--ink);
}
/* ── Premium scrollbar (desktop mouse only) ── */
@media (hover: hover) and (pointer: fine) {
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--amber-dk) rgba(0, 0, 0, 0.08);
  }
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  html::-webkit-scrollbar-track,
  body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.06);
    border-left: 1px solid rgba(0, 0, 0, 0.04);
  }
  html::-webkit-scrollbar-thumb,
  body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--amber), var(--amber-dk));
    border: 2px solid rgba(0, 0, 0, 0.06);
    background-clip: padding-box;
    border-radius: 999px;
    box-shadow:
      inset 0 0 0 1px rgba(184, 150, 10, 0.45),
      0 0 10px rgba(255, 204, 0, 0.35);
    min-height: 48px;
    transition:
      background 0.25s ease,
      box-shadow 0.25s ease;
  }
  html::-webkit-scrollbar-thumb:hover,
  body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--amber-lt), var(--amber));
    background-clip: padding-box;
    box-shadow:
      inset 0 0 0 1px rgba(184, 150, 10, 0.7),
      0 0 16px rgba(255, 204, 0, 0.55);
  }
  html::-webkit-scrollbar-thumb:active,
  body::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, var(--amber-dk), var(--amber));
    background-clip: padding-box;
  }
  html::-webkit-scrollbar-corner,
  body::-webkit-scrollbar-corner {
    background: transparent;
  }
}

/* ── Mobile / touch: hide scrollbar entirely ── */
@media (hover: none), (pointer: coarse) {
  html {
    scrollbar-width: none;
  }
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.section {
  padding: 72px 0;
  position: relative;
}
.section--alt {
  background: var(--bg2);
}
/* Collapse the double-padding when two alt sections sit back-to-back. */
.section--alt + .section--alt {
  padding-top: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.tag::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
}
.tag::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(270deg, var(--amber), transparent);
}
.section-h {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.section-h em {
  font-style: italic;
  color: var(--amber);
  text-shadow: none;
}
.section-sub {
  color: var(--muted);
  font-size: 0.975rem;
  margin-top: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.body-p {
  color: var(--ink2);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.005em;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: var(--t-spring);
  border-radius: 60px;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  border-radius: 60px;
}
.btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn:hover::after {
  transform: translateY(0);
}
.btn:active {
  transform: translateY(0);
}
.btn--solid {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
  box-shadow: 0 2px 12px rgba(255, 204, 0, 0.25);
  font-weight: 600;
}
.btn--solid::after {
  background: var(--ink);
}
.btn--solid:hover {
  color: var(--white);
  border-color: var(--ink);
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}
.btn--white {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}
.btn--white::after {
  background: rgba(255, 255, 255, 0.15);
}
.btn--white:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(255, 255, 255, 0.08);
}
.btn--white-solid {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn--white-solid::after {
  background: var(--amber-lt);
}
.btn--white-solid:hover {
  color: var(--ink);
  border-color: var(--amber-lt);
  box-shadow: 0 8px 28px var(--glow-strong);
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
/* ─── Announcement Bar ─── */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 251;
  min-height: 35px; /* matches navbar's top offset exactly */
  padding-top: env(safe-area-inset-top, 0);
  background: linear-gradient(
    90deg,
    var(--ink, #1a1a1a) 0%,
    #2a2418 50%,
    var(--ink, #1a1a1a) 100%
  );
  color: rgba(255, 255, 255, 0.82);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  font-weight: 400;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    height 0.35s ease;
  display: none;
}
.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px max(28px, env(safe-area-inset-right, 28px)) 8px
    max(28px, env(safe-area-inset-left, 28px));
  max-width: var(--max);
  margin: 0 auto;
  flex-wrap: wrap;
}
.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.announcement-item a {
  color: var(--amber-lt, #ffd858);
  text-decoration: none;
  transition: color 0.2s ease;
}
.announcement-item a:hover {
  color: #ffffff;
}
.announcement-sep {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}
.announcement-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ecf6a;
  box-shadow: 0 0 0 3px rgba(62, 207, 106, 0.22);
  animation: announce-pulse 1.8s ease-in-out infinite;
}
@keyframes announce-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(62, 207, 106, 0.22);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(62, 207, 106, 0.05);
  }
}
body.announcement-hidden .announcement-bar {
  transform: translateY(-100%);
  pointer-events: none;
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 250;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition:
    top 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    padding 0.3s ease;
}
.navbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 204, 0, 0.35) 30%,
    rgba(255, 204, 0, 0.35) 70%,
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.navbar.scrolled {
  top: 0;
  background: #ffffff;
  box-shadow: 0 2px 24px rgba(30, 20, 0, 0.08);
}
.navbar.scrolled::after {
  opacity: 1;
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: none;
  margin: 0;
  padding: 4px max(24px, env(safe-area-inset-right, 24px)) 4px
    max(24px, env(safe-area-inset-left, 24px));
  transition: padding 0.3s ease;
}
.nav-inner > .nav-logo {
  justify-self: start;
}
.nav-inner > .nav-links {
  justify-self: center;
}
.nav-inner > .nav-actions {
  justify-self: end;
}
.navbar.scrolled .nav-inner {
  padding-top: 4px;
  padding-bottom: 4px;
}

/* ─── Logo ─── */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-align: center;
  padding-left: 24px;
}
.nav-logo:hover {
  transform: translateY(-1px);
}
.nav-logo img {
  height: 60px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  transition: height 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  image-rendering: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.navbar.scrolled .nav-logo img {
  height: 50px;
}
.nav-logo span {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-top: -8px; /* close the transparent gutter inside the logo PNG so only ~1px shows */
}
.nav-logo em {
  font-family: var(--serif, var(--font-display));
  font-style: italic;
  font-weight: 600;
  color: var(--amber, #ffc800);
  text-shadow: 0 1px 1px rgba(120, 90, 0, 0.12);
  letter-spacing: 0;
}

/* ─── Nav links ─── */
.nav-links {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  gap: clamp(2px, 0.6vw, 12px);
  align-items: center;
  padding: 0;
  margin: 0;
}
.nav-links a {
  display: inline-block;
  padding: 10px clamp(8px, 1vw, 16px);
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition:
    color 0.2s ease,
    background 0.25s ease;
  position: relative;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
}
.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 204, 0, 0.08);
}
.nav-links a.active {
  color: var(--ink);
}
.nav-links a.active::after {
  width: 22px;
}
.nav-links a:hover::after {
  width: 16px;
}

/* ─── Visit Us CTA ─── */
.nav-order {
  padding: 11px 22px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  box-shadow: 0 6px 18px rgba(255, 200, 0, 0.28);
  transition:
    transform 0.25s ease,
    box-shadow 0.3s ease,
    background 0.25s ease;
}
.nav-order:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 200, 0, 0.4);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 120px 24px 40px; /* clears announcement bar + navbar so "Home" isn't cropped */
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease;
}
.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: var(--t);
}
.nav-mobile a:hover {
  color: var(--amber);
  letter-spacing: 0.03em;
}
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════
   HERO WITH CAROUSEL
   ══════════════════════════════════════ */
.hero {
  position: relative;
  background: #ffffff; /* clean white frame around the clipped video */
}
/* Non-reveal variant keeps the original in-place layout */
.hero:not(.hero--reveal) {
  min-height: calc(100vh + 54px);
  min-height: calc(100dvh + 54px);
  padding-top: 150px;
  padding-bottom: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
}
/* Scroll-reveal variant: the section is a tall scroll spacer; its inner
   .hero-stage is pinned to the viewport. A circular clip-path on the
   inner .hero-clip layer expands as the user scrolls, revealing the
   video from a small circle to full-bleed. Overlay text sits ABOVE the
   clip, always fully visible. */
.hero--reveal {
  /* The scroll is hijacked by JS while the circle opens, so we don't need
     a tall scroll-spacer anymore — the hero is exactly 100dvh and the
     marquee sits right below it once the lock releases. */
  min-height: 100vh;
  min-height: 100dvh;
  overflow: visible;
  background: #ffffff;
}
/* While the reveal lock is active: freeze BOTH <html> and <body> so the
   actual scrolling root can't move. window.scrollTo drives <html>, not
   <body>, so we need overflow:hidden on the root as well. */
html:has(body.hero-locked),
body.hero-locked {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: pan-x;
}
/* Reserve scrollbar space so the layout doesn't shift horizontally when
   the lock engages/releases. */
html {
  scrollbar-gutter: stable;
}
.hero-stage {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 72px;
  background: #ffffff;
}
.hero--reveal .hero-stage {
  clip-path: none;
  -webkit-clip-path: none;
}
/* Clipped layer holds ONLY the video + overlay; the circle grows from a
   small portal to full-screen as --hero-clip-r goes from ~12% to 100%. */
.hero-clip {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  clip-path: circle(var(--hero-clip-r, 12%) at 50% 50%);
  -webkit-clip-path: circle(var(--hero-clip-r, 12%) at 50% 50%);
  will-change: clip-path;
}
/* Anchor each piece directly to viewport-relative positions so they line
   up cleanly with the circular clip portal (centered at 50% 50%):
     • eyebrow  — top: 17vh (just below the announcement + navbar chrome)
     • title    — top: 50% (matches the clip's center)
     • bottom   — top: 65vh (just under the circle's bottom edge)
   The stage drops its top/bottom padding so vh values measure straight
   from the viewport, and hero-content becomes the positioning context. */
.hero--reveal .hero-stage {
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
}
.hero--reveal .hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  /* Override .container's max-width/padding so the absolute children's
     containing block matches the full-viewport stage. Otherwise the
     title centers inside a 1200px box while the clip-path circle
     centers on the viewport, drifting them apart on wide screens. */
  max-width: none;
  padding: 0;
}
.hero--reveal .hero-center {
  position: static;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}
.hero--reveal .hero-center .hero-eyebrow {
  position: absolute;
  top: 26vh;
  left: 0;
  right: 0;
  margin: 0;
}
.hero--reveal .hero-center .hero-title {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  max-width: 960px;
  padding: 0 24px;
  text-align: center;
}
.hero--reveal .hero-bottom {
  position: absolute;
  top: 74vh;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-clip .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  background: #000;
}
.hero-clip .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.45) 0%,
    rgba(15, 15, 15, 0.6) 100%
  );
  z-index: 1;
}
.hero-clip .hero-blob1,
.hero-clip .hero-blob2 {
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
}
.hero .hero-sound-btn {
  z-index: 4;
}
/* Overlay sizing — uses both vw and vh caps so the title is big on tall
   viewports but shrinks gracefully on short laptop screens, keeping the
   full stack (title + subtitle + CTAs) visible without clipping. */
.hero--reveal .hero-center .hero-title {
  font-size: clamp(46px, min(7.2vw, 11vh), 108px);
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 0 auto;
}
.hero--reveal .hero-center .hero-sub {
  font-size: 1.02rem;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero--reveal .hero-center .hero-eyebrow .tag {
  font-size: 11px;
  font-weight: 700;
}

/* Colors are driven by JS-interpolated CSS vars tied to reveal progress.
   CSS transitions smooth out the steps between wheel events so the
   dark → light shift always looks continuous rather than jumpy. */
.hero--reveal .hero-center .hero-eyebrow .tag {
  color: var(--hero-eyebrow-color, var(--amber-dk)) !important;
  transition: color 0.12s linear;
}
.hero--reveal .hero-center .hero-eyebrow .eyebrow-line {
  background: var(--hero-em-color, var(--amber));
  transition: background 0.22s linear;
}
/* "Fresh Coffee / Delivered" — solid warm amber-brown with a subtle
   animated glow for the "shiny" feel. Keeps the text fully visible in
   every browser (no background-clip trickery). */
.hero--reveal .hero-center .hero-title.hero-title--light {
  color: var(--hero-title-color, var(--amber));
  text-shadow:
    0 0 24px rgba(255, 200, 0, 0.18),
    0 2px 40px rgba(0, 0, 0, var(--hero-title-shadow-alpha, 0));
  transition:
    color 0.12s linear,
    text-shadow 0.12s linear;
  animation: heroTitleGlow 4s ease-in-out infinite;
}
@keyframes heroTitleGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 6px rgba(255, 200, 0, 0.15));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(255, 216, 61, 0.35));
  }
}
.hero--reveal .hero-center .hero-title.hero-title--light em {
  color: var(--hero-em-color, var(--amber));
}
.hero--reveal .hero-center .hero-title.hero-title--light em {
  color: var(--hero-em-color, var(--amber));
  font-style: italic;
  text-shadow: 0 2px 18px rgba(255, 200, 0, 0.25);
  transition: color 0.12s linear;
}
.hero--reveal .hero-center .hero-sub.hero-sub--light {
  color: var(--hero-sub-color, var(--ink2));
  font-weight: 500;
  transition: color 0.12s linear;
}
.hero--reveal .hero-ctas .btn--white {
  transition:
    color 0.12s linear,
    border-color 0.22s linear,
    background 0.22s linear,
    transform 0.25s ease,
    box-shadow 0.3s ease;
}
/* "View Menu" outline button — border, text, and bg interpolate smoothly
   from dark (on white frame) → white (on revealed video), matching the
   title's dark-to-light transition. */
.hero--reveal .hero-ctas .btn--white {
  color: var(--hero-btn-color, var(--ink));
  border-color: rgba(26, 26, 26, var(--hero-btn-border-alpha, 1));
  background: rgba(255, 255, 255, var(--hero-btn-bg-alpha, 0));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero--reveal .hero-ctas .btn--white::after {
  background: var(--hero-btn-color, var(--ink));
  opacity: 0.12;
}
.hero--reveal[data-revealed="1"] .hero-ctas .btn--white {
  border-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}
.hero--reveal[data-revealed="1"] .hero-ctas .btn--white:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12);
}

/* Subtle label hint near the bottom that invites the user to scroll */
.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: -32px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
  z-index: 4;
  pointer-events: none;
  animation: hsh-fade 2.4s ease-in-out infinite;
  transition:
    color 0.35s ease,
    opacity 0.35s ease;
}
.hero-scroll-hint .hsh-line {
  width: 1.5px;
  height: 22px;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.55),
    rgba(26, 26, 26, 0)
  );
  border-radius: 2px;
  transition: background 0.35s ease;
}
@keyframes hsh-fade {
  0%,
  100% {
    opacity: 0.55;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 4px);
  }
}
/* When the clip is fully open, the hint fades away */
.hero--reveal[data-revealed="1"] .hero-scroll-hint {
  opacity: 0;
}
.hero-blob1,
.hero-blob2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-blob1 {
  top: -120px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 204, 0, 0.08) 0%,
    transparent 60%
  );
  animation: float 8s ease-in-out infinite;
}
.hero-blob2 {
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 204, 0, 0.04) 0%,
    transparent 55%
  );
  animation: float 10s ease-in-out infinite reverse;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hc-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hc-slide.hc-active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0.5) 0%,
    rgba(15, 15, 15, 0.7) 100%
  );
  z-index: 1;
}

.hero-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 60px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  justify-content: center;
}
.eyebrow-line {
  width: 36px;
  height: 1.5px;
  background: var(--amber-lt);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 700;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.035em;
}
.hero-title em {
  font-style: italic;
  color: var(--amber-lt);
  text-shadow: 0 0 48px rgba(255, 204, 0, 0.15);
}
.hero-title--light {
  color: var(--white);
  text-shadow: 0 2px 48px rgba(0, 0, 0, 0.25);
}
.hero-sub {
  font-size: 1rem;
  color: var(--ink2);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 44px;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.hero-sub--light {
  color: rgba(255, 255, 255, 0.6);
  margin-left: auto;
  margin-right: auto;
}

/* Hero staggered entrance */
.hero-word {
  display: inline-block;
}
.hero-anim {
  opacity: 0;
  transform: translateY(30px);
  animation: heroEntrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-anim-1 {
  animation-delay: 0.3s;
}
.hero-anim-2 {
  animation-delay: 0.5s;
}
.hero-anim-3 {
  animation-delay: 0.7s;
}
.hero-anim-4 {
  animation-delay: 0.9s;
}
.hero-anim-5 {
  animation-delay: 1.1s;
}
.hero-anim-6 {
  animation-delay: 1.3s;
}
.hero-anim-7 {
  animation-delay: 1.5s;
}
@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hc-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.hc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--t);
  padding: 0;
}
.hc-dot--active,
.hc-dot:hover {
  background: var(--amber-lt);
  border-color: var(--amber-lt);
}

/* ── MARQUEE ── */
.marquee-wrap {
  display: block;
  width: 100%;
  margin: 0;
  border-top: 1px solid rgba(200, 169, 97, 0.1);
  border-bottom: 1px solid rgba(200, 169, 97, 0.1);
  background: linear-gradient(
    90deg,
    var(--amber-lt),
    var(--amber),
    var(--amber-lt)
  );
  overflow: hidden;
  padding: 8px 0;
  position: relative;
  box-sizing: border-box;
  line-height: 1; /* keep the yellow strip tight vertically */
}
.marquee-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.12),
    transparent 20%,
    transparent 80%,
    rgba(255, 255, 255, 0.12)
  );
  pointer-events: none;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.m-item {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 4px 0;
}
.m-item::after {
  content: "•";
  color: rgba(0, 0, 0, 0.35);
  font-size: 10px;
  margin-left: 48px;
  display: inline-block;
  vertical-align: middle;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════
   STATS BAR (animated counters)
   ══════════════════════════════════════ */
.stats-bar {
  background: var(--ink);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-lt), transparent);
}
.stats-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 204, 0, 0.22),
    transparent
  );
}
.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-block {
  text-align: center;
  padding: 12px 40px;
  border-radius: var(--radius);
  transition: var(--t);
  cursor: default;
}
.stat-block:hover {
  background: rgba(255, 255, 255, 0.04);
}
.stat-block:hover .stat-number {
  text-shadow:
    0 0 40px var(--glow-strong),
    0 0 80px var(--glow);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--amber-lt);
  line-height: 1;
  text-shadow: 0 0 20px var(--glow);
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
}

/* ══════════════════════════════════════
   PAGE HEADER (sub-pages)
   ══════════════════════════════════════ */
.page-header {
  padding: 160px 0 120px;
  width: 100%;
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.page-header--sm {
  padding: 56px 0 28px;
}
/* Full-image cover — full width, but capped so the banner + overlay text
   stay within the viewport (no scrolling needed to read the heading). */
.page-header--full {
  padding: 0;
  aspect-ratio: 1550 / 800;
  /* Cap the height to a standard cover size that fits below the navbar. */
  max-height: min(720px, calc(100svh - 80px));
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-header--full > .container {
  padding: 0 32px 36px;
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: left;
}
.page-header .ph-sub {
  margin-left: 0;
  margin-right: auto;
}
.ph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 15, 15, 0) 0%,
    rgba(15, 15, 15, 0.08) 100%
  );
}
.ph-overlay::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 14px;
  background: linear-gradient(180deg, transparent, var(--bg));
}
.ph-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.ph-title em {
  font-style: italic;
  color: var(--amber-lt);
  text-shadow: 0 0 36px var(--glow-strong);
}
.ph-sub {
  font-size: 16px;
  color: #ffffff;
  max-width: 500px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start; /* text follows the stacked images from the top */
}
.about-imgs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-img-a {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 0.8;
  margin-top: 40px;
}
.about-img-b {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 0.8;
}
.about-img-a img,
.about-img-b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-img-a:hover img,
.about-img-b:hover img {
  transform: scale(1.06);
}
.about-img-a {
  border-radius: var(--radius-lg);
}
.about-img-b {
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber-lt), var(--amber));
  border-radius: 16px;
  padding: 20px 28px;
  text-align: center;
  box-shadow: 0 8px 28px var(--glow-strong);
  z-index: 2;
}
.ab-year {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.ab-text {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.6);
  margin-top: 4px;
  font-weight: 500;
}
.about-imgs--quad {
  grid-template-columns: 1fr; /* stack images one per row — each spans full width, larger */
  grid-template-rows: auto;
  gap: 18px;
  padding-bottom: 0;
}
.about-imgs--quad .about-img-cell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  margin: 0;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s ease;
}
.about-imgs--quad .about-img-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(15, 15, 15, 0.45) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}
.about-imgs--quad .about-img-cell::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  z-index: 2;
  transition: border-color 0.5s ease;
  pointer-events: none;
}
.about-imgs--quad .about-img-cell:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.about-imgs--quad .about-img-cell:hover::before {
  opacity: 1;
}
.about-imgs--quad .about-img-cell:hover::after {
  border-color: rgba(255, 204, 0, 0.35);
}
.about-imgs--quad .about-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Favor the bottom of the photo so the location name stays visible. */
  object-position: center bottom;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-imgs--quad .about-img-cell:hover img {
  transform: scale(1.08);
}
/* Desktop (2-col layout): make the stacked images share the text column's
   height so both columns end together — no white space below the text. */
@media (min-width: 1025px) {
  .about-grid {
    align-items: stretch;
  }
  .about-imgs--quad {
    grid-template-rows: repeat(4, 1fr);
    min-height: 0;
  }
  .about-imgs--quad .about-img-cell {
    aspect-ratio: auto;
    min-height: 0;
  }
  /* Absolutely-positioned images give the cells no intrinsic height, so the
     text column defines the row height and the 4 images split it evenly. */
  .about-imgs--quad .about-img-cell img {
    position: absolute;
    inset: 0;
  }
}
.about-img-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 12px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  pointer-events: none;
}
.pull-quote {
  border-left: 2.5px solid var(--amber);
  padding: 18px 0 18px 24px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink2);
  line-height: 1.6;
  background: linear-gradient(90deg, var(--amber-bg), transparent);
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 10px;
  font-size: 60px;
  color: var(--amber-lt);
  opacity: 0.2;
  font-family: var(--font-display);
  line-height: 1;
}
.about-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   GALLERY
   ══════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Row height scales with viewport width — cells stay compact and square-
     ish across desktop sizes instead of being locked to one fixed height. */
  grid-auto-rows: clamp(160px, 15vw, 220px);
  gap: clamp(8px, 1vw, 14px);
  grid-auto-flow: dense; /* fills gaps left by wide/tall spans */
}
.gal-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s ease;
}
.gal-item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.gal-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(15, 15, 15, 0.4) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.gal-item::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  z-index: 2;
  transition: border-color 0.5s ease;
  pointer-events: none;
}
.gal-item:hover::before {
  opacity: 1;
}
.gal-item:hover::after {
  border-color: rgba(255, 204, 0, 0.3);
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.gal-item:hover img {
  transform: scale(1.08);
}
.gal-item--wide {
  grid-column: span 2;
}
.gal-item--tall {
  grid-row: span 2;
}

/* ══════════════════════════════════════
   FOUNDERS / TEAM — FUTURISTIC
   ══════════════════════════════════════ */

.founder-section {
  position: relative;
}
.founder-card:hover {
  border-color: var(--border);
}
.team-card:hover {
  border-color: var(--border);
}

/* ── Stats number warm glow ── */
.fs-num {
  transition: text-shadow 0.3s ease;
}
.founder-stats:hover .fs-num {
  text-shadow:
    0 0 30px var(--glow),
    0 0 50px rgba(255, 204, 0, 0.1);
}

/* ── FOUNDER CARD ── */
.founder-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 56px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--t-spring);
}
.founder-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--border);
}
.fc-photo {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg2);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.fc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.6s ease;
  border-radius: 50%;
}
.founder-card:hover .fc-photo img {
  transform: scale(1.02);
}
.fc-name {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 6px;
}
.fc-role {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}
.fc-divider {
  width: 48px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--amber-lt), transparent);
  margin: 24px 0;
}
.fc-bio {
  font-size: 15.5px;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 14px;
}
.member-signature {
  margin-top: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.55;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.member-signature.sig-descriptor {
  font-style: normal;
  color: var(--ink2);
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.sig-attr {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body, inherit);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── FOUNDER STATS ── */
.founder-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
}
.fs-item {
  text-align: center;
  padding: 0 40px;
}
.fs-num {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 46px);
  color: var(--amber);
  line-height: 1;
}
.fs-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}
.fs-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

/* ── TEAM SECTION INTRO ── */
.team-section-intro {
  text-align: center;
  margin-bottom: 48px;
}
.team-section-intro .tag {
  margin-bottom: 12px;
}
.team-section-intro .section-h {
  margin-bottom: 12px;
}

/* ── TEAM GRID ── */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.team-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-sm);
  transition: var(--t-spring);
  position: relative;
  padding: 32px;
}
.team-card--reverse {
  grid-template-columns: 1fr 260px;
}
.team-card--reverse .tc-photo {
  order: 2;
}
.team-card--reverse .tc-info {
  order: 1;
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border);
}
.tc-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: auto;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
.tc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.6s ease;
}
.team-card:hover .tc-photo img {
  transform: scale(1.03);
}
.tc-info {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tc-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 6px;
}
.tc-role {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}
.tc-divider {
  width: 36px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--amber-lt), transparent);
  margin: 18px 0;
}
.tc-bio {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 12px;
}

/* ── MENU CARDS ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--t-spring);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.menu-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber-lt), transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.menu-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(255, 204, 0, 0.15);
}
.menu-card:hover::before {
  transform: scaleX(1);
}
.menu-card-img {
  aspect-ratio: 1.15;
  overflow: hidden;
  position: relative;
}
.menu-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(0, 0, 0, 0.06) 100%
  );
  pointer-events: none;
}
.menu-card-img--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--amber-lt), var(--amber));
}
.mc-big-icon {
  font-size: 72px;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.menu-card:hover .menu-card-img img {
  transform: none;
}
.menu-card-body {
  padding: 20px 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mc-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-bg);
  border-radius: 14px;
  transition: var(--t);
  border: 1px solid rgba(255, 204, 0, 0.15);
}
.menu-card:hover .mc-icon {
  background: var(--amber);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 204, 0, 0.25);
}
.mc-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.mc-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
  line-height: 1.55;
}

.menu-format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.mf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 22px 32px;
  text-align: center;
  transition: var(--t-spring);
  position: relative;
  overflow: hidden;
}
.mf-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    var(--glow) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.mf-card:hover {
  border-color: rgba(255, 204, 0, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.mf-card:hover::before {
  opacity: 1;
}
.mf-card--accent {
  background: linear-gradient(135deg, var(--amber-lt), var(--amber));
  border-color: transparent;
  box-shadow: 0 8px 32px var(--glow-strong);
}
.mf-card--accent:hover {
  box-shadow:
    0 16px 48px var(--glow-strong),
    0 0 60px var(--glow);
  transform: translateY(-6px);
}
.mf-card--accent::before {
  display: none;
}
.mf-card--accent .mf-name {
  color: var(--ink);
}
.mf-card--accent .mf-desc {
  color: rgba(26, 26, 26, 0.7);
}
.mf-card--active {
  background: linear-gradient(135deg, var(--amber-lt), var(--amber));
  border-color: transparent;
  box-shadow: 0 8px 32px var(--glow-strong);
  transform: translateY(-6px);
}
.mf-card--active::before {
  display: none;
}
.mf-card--active .mf-name {
  color: var(--ink);
}
.mf-card--active .mf-desc {
  color: rgba(26, 26, 26, 0.7);
}
.mf-icon {
  font-size: 34px;
  margin-bottom: 16px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mf-card:hover .mf-icon {
  transform: scale(1.2) translateY(-4px);
}
.mf-name {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 8px;
}
.mf-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}
.ms-cat {
  position: relative;
}
.ms-cat-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 26px;
  padding: 16px 20px;
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 204, 0, 0.08) 0%,
      rgba(255, 255, 255, 0.6) 100%
    ),
    #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow:
    0 1px 2px rgba(30, 20, 0, 0.03),
    0 12px 32px -18px rgba(120, 90, 0, 0.14);
  position: relative;
  overflow: hidden;
}
.ms-cat-head::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 100%;
  background: radial-gradient(
    ellipse at top right,
    rgba(255, 204, 0, 0.15),
    transparent 70%
  );
  pointer-events: none;
}
.ms-cat-badge {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff5c2 0%, var(--amber, #ffc800) 100%);
  box-shadow:
    0 8px 24px rgba(255, 200, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: var(--t-spring);
  position: relative;
  z-index: 1;
}
.ms-cat:hover .ms-cat-badge {
  transform: rotate(-8deg) scale(1.08);
  box-shadow:
    0 10px 28px rgba(255, 200, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.ms-cat-meta {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.ms-cat-kicker {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-dk, #8a6a00);
  margin-bottom: 4px;
}
.ms-cat-title {
  font-family: var(--serif, inherit);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink, #1a1a1a);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.ms-cat-count {
  flex-shrink: 0;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink, #1a1a1a);
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .ms-cat-head {
    padding: 14px 16px;
    gap: 14px;
    margin-bottom: 20px;
  }
  .ms-cat-badge {
    width: 48px;
    height: 48px;
    font-size: 24px;
    border-radius: 14px;
  }
  .ms-cat-title {
    font-size: 22px;
  }
  .ms-cat-kicker {
    font-size: 10px;
  }
  .ms-cat-count {
    font-size: 10px;
    padding: 5px 10px;
  }
}
.menu-showcase {
  display: flex;
  flex-wrap: nowrap;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 6px 4px 18px;
  margin: 0 -4px;
  cursor: grab;
  /* fade hint at the right edge so users know there's more */
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0,
    #000 calc(100% - 36px),
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    #000 0,
    #000 calc(100% - 36px),
    transparent
  );
}
.menu-showcase::-webkit-scrollbar {
  display: none;
  height: 0;
}
.menu-showcase.is-grabbing {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}
.menu-showcase.is-end {
  -webkit-mask-image: none;
  mask-image: none;
}

/* ---- Premium product card ---- */
.ms-item {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow:
    0 1px 2px rgba(30, 20, 0, 0.04),
    0 8px 24px -12px rgba(30, 20, 0, 0.08);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  flex: 0 0 280px;
  width: 280px;
  scroll-snap-align: start;
}
.ms-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--amber, #ffc800),
    transparent
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 3;
}
.ms-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 0, 0.28);
  box-shadow:
    0 2px 4px rgba(30, 20, 0, 0.04),
    0 24px 48px -20px rgba(120, 90, 0, 0.22),
    0 0 0 1px rgba(255, 204, 0, 0.06);
}
.ms-item:hover::before {
  transform: scaleX(1);
}

/* ---- Featured signature — wider carousel slide with shimmer ring ---- */
.ms-item--featured {
  flex: 0 0 360px;
  width: 360px;
  background: linear-gradient(135deg, #fffdf4 0%, #ffffff 55%, #fff7d9 100%);
  border-color: rgba(255, 204, 0, 0.32);
  box-shadow:
    0 2px 4px rgba(30, 20, 0, 0.04),
    0 30px 60px -24px rgba(120, 90, 0, 0.2),
    0 0 0 1px rgba(255, 204, 0, 0.12);
}
.ms-item--featured::before {
  transform: scaleX(1);
  background: linear-gradient(
    90deg,
    transparent,
    #ffd858,
    var(--amber, #ffc800),
    #ffd858,
    transparent
  );
  height: 4px;
}

/* ---- Image area ---- */
.ms-item-img {
  position: relative;
  aspect-ratio: 1.1;
  overflow: hidden;
  flex-shrink: 0;
  background: #f7f5ee;
  display: block;
}
.ms-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f2efe6 0%, #faf7ee 50%, #f2efe6 100%);
  background-size: 200% 100%;
  animation: ms-shimmer 1.2s infinite linear;
  z-index: 1;
}
.ms-item-img.is-loaded .ms-skeleton {
  display: none;
}
@keyframes ms-shimmer {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
.ms-item-head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.ms-item-head .fx-veg {
  flex-shrink: 0;
  margin-top: 3px;
}
.ms-item-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(0, 0, 0, 0.12) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.ms-item--featured .ms-item-img {
  aspect-ratio: 1.7;
}
.ms-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.4s ease;
}
.ms-item:hover .ms-item-img img {
  transform: scale(1.07);
  filter: brightness(1.03) saturate(1.06);
}

/* ---- Badge ---- */
.ms-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 11px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink, #1a1a1a);
  background: linear-gradient(135deg, #fff2b8 0%, var(--amber, #ffc800) 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow:
    0 6px 16px rgba(120, 90, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}

/* ---- Body ---- */
.ms-item-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  background: #fff;
  position: relative;
}
.ms-item--featured .ms-item-body {
  padding: 20px 22px 22px;
  background: transparent;
}
.ms-item-name {
  font-family: var(--font-heading, inherit);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink, #1a1a1a);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(2 * 1.35em);
}
.ms-item--featured .ms-item-name {
  font-size: 20px;
  min-height: auto;
  -webkit-line-clamp: 1;
  letter-spacing: -0.018em;
}

/* ---- Foot: price + order ---- */
.ms-item-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
}
.ms-item--featured .ms-item-foot {
  padding-top: 10px;
  border-top-color: rgba(255, 204, 0, 0.2);
}
.ms-item-price {
  font-family: var(--font-heading, inherit);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink, #1a1a1a);
  letter-spacing: -0.015em;
  line-height: 1;
}
.ms-item-price::before {
  content: "";
}
.ms-item--featured .ms-item-price {
  font-size: 24px;
}
.ms-item-order {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--amber, #ffc800);
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.3s ease,
    background 0.25s ease,
    color 0.25s ease;
  box-shadow: 0 3px 10px rgba(255, 204, 0, 0.28);
}
.ms-item-order:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
@media (max-width: 640px) {
  .menu-showcase {
    gap: 14px;
    padding: 4px 4px 14px;
  }
  .ms-item {
    border-radius: 16px;
    flex: 0 0 220px;
    width: 220px;
  }
  .ms-item--featured {
    flex: 0 0 260px;
    width: 260px;
  }
  .ms-item--featured .ms-item-img {
    aspect-ratio: 1.5;
  }
  .ms-item-body {
    padding: 12px 13px 14px;
    gap: 10px;
  }
  .ms-item--featured .ms-item-body {
    padding: 16px 18px 18px;
  }
  .ms-item-name {
    font-size: 13px;
  }
  .ms-item--featured .ms-item-name {
    font-size: 17px;
  }
  .ms-item-price {
    font-size: 16px;
  }
  .ms-item--featured .ms-item-price {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .menu-showcase {
    gap: 12px;
    padding: 4px 4px 12px;
  }
  .ms-item {
    flex: 0 0 240px;
    width: 240px;
  }
  .ms-item--featured {
    flex: 0 0 290px;
    width: 290px;
  }
  .ms-cat-head {
    padding: 12px 14px;
    gap: 12px;
  }
  .ms-cat-badge {
    width: 46px;
    height: 46px;
    font-size: 22px;
    border-radius: 12px;
  }
  .ms-cat-title {
    font-size: 20px;
  }
  .ms-cat-kicker {
    font-size: 10px;
  }
  .ms-cat-count {
    font-size: 10px;
    padding: 4px 9px;
  }
  .ms-cap {
    padding: 10px;
    opacity: 1;
    transform: none;
  }
  .ms-cap-name {
    font-size: 12px;
  }
  .ms-cap-cat {
    display: none;
  }
  .ms-item::after {
    opacity: 0.5;
  }
  .ms-item--featured .ms-cap-name {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .ms-item {
    flex: 0 0 200px;
    width: 200px;
  }
  .ms-item--featured {
    flex: 0 0 240px;
    width: 240px;
  }
}
.menu-delivery {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.menu-delivery::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 65%);
  pointer-events: none;
}

/* ── VALUES ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--t-spring);
  box-shadow: var(--shadow-sm);
}
.value-card:hover {
  border-color: rgba(255, 204, 0, 0.15);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.vc-num {
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--bg3);
  line-height: 1;
  margin-bottom: 10px;
}
.vc-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.vc-h {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 10px;
}
.vc-p {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.85;
}
.value-card--accent {
  background: var(--amber);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(255, 204, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  padding: 32px 28px;
  transition: var(--t);
}
.value-card--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 204, 0, 0.35);
}
.vc-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 16px;
}
.vc-attr {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
}

/* ══════════════════════════════════════
   LOCATIONS
   ══════════════════════════════════════ */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.loc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--t-spring);
  box-shadow: var(--shadow-sm);
}
.loc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 204, 0, 0.12);
}
.loc-img {
  aspect-ratio: 1.6;
  overflow: hidden;
  position: relative;
}
.loc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.loc-card:hover .loc-img img {
  transform: scale(1.04);
}
.loc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--amber-lt), var(--amber));
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 16px var(--glow-strong);
}
.loc-body {
  padding: 20px;
}
.loc-name {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.loc-address {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.65;
}
.loc-upcoming-inner {
  background: var(--ink);
  border-radius: 12px;
  padding: 32px 40px;
  text-align: center;
}
.loc-upcoming-list {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.loc-upcoming-item {
  color: rgba(250, 248, 243, 0.8);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lui-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-lt);
  box-shadow: 0 0 8px rgba(255, 204, 0, 0.45);
}

.offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.lo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 32px;
  text-align: center;
}
.lo-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.lo-label {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.lo-addr {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
}
.lo-phone {
  font-size: 14px;
  color: var(--amber-dk);
  font-weight: 500;
  margin-top: 8px;
}
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* ── WHY US ── */
.why-section {
  padding: 96px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border2);
}
.why-item:last-child {
  border-bottom: none;
}
.wi-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--amber-bg);
  border: 1px solid rgba(255, 204, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber-dk);
  flex-shrink: 0;
  margin-top: 2px;
}
.wi-h {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 3px;
}
.wi-p {
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   FRANCHISE
   ══════════════════════════════════════ */
/* ── FRANCHISE SLIDER ── */
.franchise-pages {
  display: grid;
  grid-template-columns: 1fr; /* one brochure image per row */
  gap: 28px;
  margin-top: 32px;
  align-items: start;
  max-width: 720px;
  margin-inline: auto;
}
.fp-page {
  position: relative;
  margin: 0;
  padding: 14px;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(145deg, #ffffff 0%, #faf6ec 100%);
  border: 1px solid rgba(255, 204, 0, 0.22);
  box-shadow:
    0 18px 38px -18px rgba(90, 60, 0, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.04);
  transition: var(--t-spring);
  /* Lock to A4 portrait so the whole page is always visible crisply */
  aspect-ratio: 1 / 1.414;
}
.fp-page::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(255, 204, 0, 0.12),
      transparent 45%
    ),
    radial-gradient(circle at 0% 100%, rgba(255, 204, 0, 0.08), transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.fp-page:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 60px -20px rgba(90, 60, 0, 0.28),
    0 4px 10px rgba(0, 0, 0, 0.05);
  border-color: rgba(255, 204, 0, 0.45);
}
.fp-page:hover::before {
  opacity: 1;
}
.fp-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  cursor: zoom-in;
  font: inherit;
  color: inherit;
}
.fp-frame:focus-visible {
  outline: 2px solid var(--amber, #ffc800);
  outline-offset: 3px;
}
.fp-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: scale(0.9);
  transition: var(--t);
  pointer-events: none;
}
.fp-page:hover .fp-zoom {
  opacity: 1;
  transform: scale(1);
}
.fp-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 82%,
    rgba(0, 0, 0, 0.08) 100%
  );
  pointer-events: none;
}
.fp-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #fff;
  image-rendering: auto;
}
.fp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px;
  background: rgba(10, 8, 0, 0.94);
  overflow: auto;
  animation: fpFadeIn 0.2s ease;
  -webkit-overflow-scrolling: touch;
}
.fp-lightbox[hidden] {
  display: none;
}
.fp-lightbox-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  image-rendering: auto;
  filter: none;
}
.fp-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: var(--t);
  backdrop-filter: blur(8px);
}
.fp-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}
@keyframes fpFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 840px) {
  .franchise-pages {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .fp-page {
    padding: 16px 16px 14px;
  }
  .fp-lightbox {
    padding: 16px;
  }
  .fp-lightbox-close {
    top: 12px;
    right: 12px;
  }
  .fp-zoom {
    opacity: 1;
    transform: scale(1);
    width: 34px;
    height: 34px;
  }
}
.fm-slider {
  position: relative;
  overflow: hidden;
  padding: 48px 0 56px;
}
.fm-slider-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  min-height: 480px;
  perspective: 1200px;
}
.franchise-models {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fm-card {
  position: absolute;
  width: 310px;
  padding: 36px 28px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.fm-card--accent {
  border-color: rgba(255, 204, 0, 0.25);
}

/* Queue positions — 3D depth */
.fm-card[data-pos="0"] {
  transform: translateX(-380px) translateZ(-120px) scale(0.7);
  opacity: 0.2;
  z-index: 1;
  filter: blur(3px);
  pointer-events: none;
}
.fm-card[data-pos="1"] {
  transform: translateX(-200px) translateZ(-50px) scale(0.84);
  opacity: 0.55;
  z-index: 2;
  filter: blur(1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.fm-card[data-pos="2"] {
  transform: translateX(0) translateZ(0) scale(1.05);
  opacity: 1;
  z-index: 4;
  filter: none;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 204, 0, 0.18);
}
.fm-card[data-pos="3"] {
  transform: translateX(200px) translateZ(-50px) scale(0.84);
  opacity: 0.55;
  z-index: 2;
  filter: blur(1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.fm-card[data-pos="4"] {
  transform: translateX(380px) translateZ(-120px) scale(0.7);
  opacity: 0.2;
  z-index: 1;
  filter: blur(3px);
  pointer-events: none;
}

/* Center card enhancements */
.fm-card[data-pos="2"] .fm-type {
  font-size: 32px;
}
.fm-card[data-pos="2"] .fm-cost {
  text-shadow: 0 0 36px var(--glow-strong);
  font-size: 40px;
}
.fm-card[data-pos="2"]::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber-lt), transparent);
  border-radius: 2px;
}
.fm-card[data-pos="2"].fm-card--accent {
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.1),
    0 0 80px var(--glow-strong);
  border-color: var(--amber-lt);
}
.fm-card[data-pos="2"].fm-card--accent::before {
  left: 0;
  right: 0;
  background: var(--amber-lt);
  box-shadow: 0 0 12px var(--glow-strong);
}
.fm-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.fm-type {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 4px;
}
.fm-area {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}
.fm-cost {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--amber-lt);
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 0 20px var(--glow);
}
.fm-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.fm-details {
  text-align: left;
}
.fm-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--border2);
  font-size: 12px;
  gap: 8px;
}
.fm-row:last-child {
  border-bottom: none;
}
.fm-row span:first-child {
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}
.fm-row span:last-child {
  color: var(--ink);
  text-align: right;
}

.support-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-bottom: 8px;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--t-spring);
}
.sp-card:hover {
  border-color: rgba(255, 204, 0, 0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.sp-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.sp-name {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.sp-desc {
  font-size: 12px;
  color: var(--ink2);
  line-height: 1.6;
}

/* ── CTA ── */
.cta-section {
  background: var(--ink);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 204, 0, 0.05) 0%,
    transparent 55%
  );
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(200, 169, 97, 0.04) 0%,
    transparent 55%
  );
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-h {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-h em {
  font-style: italic;
  color: var(--amber-lt);
}
.cta-p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  max-width: 460px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.c-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.c-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  background: var(--white);
}
.c-lbl {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.c-val {
  font-size: 14px;
  color: var(--ink);
  margin-top: 2px;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  transition: var(--t-spring);
}
.contact-form-wrap:hover {
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 18px;
  color: var(--ink2);
  font-family: var(--font-body);
  font-size: 14.5px;
  outline: none;
  transition: var(--t);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-group select {
  appearance: none;
  cursor: pointer;
}
.lbl-hint {
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  color: var(--muted);
  margin-left: 4px;
}
.budget-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.budget-opt {
  position: relative;
  display: block;
  cursor: pointer;
}
.budget-opt input[type="radio"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}
.budget-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink2);
  text-align: center;
  transition: var(--t-fast);
  user-select: none;
}
.budget-opt:hover .budget-chip {
  border-color: var(--amber);
  background: var(--amber-bg);
  color: var(--ink);
}
.budget-opt input[type="radio"]:checked ~ .budget-chip {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
  font-weight: 600;
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.18);
}
.budget-opt input[type="radio"]:focus-visible ~ .budget-chip {
  outline: 2px solid var(--amber-dk);
  outline-offset: 2px;
}
@media (max-width: 600px) {
  .budget-options {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-status {
  display: none;
  position: relative;
  padding: 14px 18px 14px 56px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin-top: 16px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.form-status::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.form-status.success,
.form-status.error {
  display: block;
  animation: formStatusIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.form-status.success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), var(--amber-bg));
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-left: 3px solid #15803d;
  color: #14532d;
}
.form-status.success::before {
  background-color: #15803d;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.form-status.error {
  background: linear-gradient(
    135deg,
    rgba(239, 68, 68, 0.06),
    rgba(255, 247, 237, 0.8)
  );
  border: 1px solid rgba(239, 68, 68, 0.22);
  border-left: 3px solid #dc2626;
  color: #991b1b;
}
.form-status.error::before {
  background-color: #dc2626;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>");
}
@keyframes formStatusIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── PRIVACY ── */
.privacy-wrap {
  max-width: 760px;
}
.privacy-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 28px 0 10px;
}
.privacy-content p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.85;
  margin-bottom: 12px;
}
.privacy-content ul {
  margin: 0 0 16px 24px;
}
.privacy-content li {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.85;
}

/* ── FOOD EMOJI STRIP ── */
.food-strip {
  overflow: hidden;
  padding: 8px 0;
  background: var(--ink);
  position: relative;
}
.food-strip::before,
.food-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.food-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), transparent);
}
.food-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink), transparent);
}
.food-strip-track {
  display: flex;
  gap: 40px;
  animation: foodScroll 20s linear infinite;
  width: max-content;
}
.fs-emoji {
  font-size: 28px;
  opacity: 0.7;
  transition: all 0.3s ease;
  cursor: default;
  filter: grayscale(0.3);
}
.fs-emoji:hover {
  opacity: 1;
  transform: scale(1.4) translateY(-4px);
  filter: grayscale(0);
}
@keyframes foodScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── SPOTLIGHT ── */
.menu-spotlight {
  padding: 100px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.menu-spotlight::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 204, 0, 0.08) 0%,
    transparent 55%
  );
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}
.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.spotlight-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--glow) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}
.spotlight-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.spotlight-title em {
  font-style: italic;
  color: var(--amber-lt);
  text-shadow: 0 0 40px var(--glow-strong);
}
.spotlight-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 420px;
}
.spotlight-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.3),
    0 0 60px var(--glow);
}
.spotlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}
.spotlight-img:hover img {
  transform: scale(1.08);
}
.spotlight-img::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 204, 0, 0.2);
  z-index: 1;
  pointer-events: none;
  animation: borderGlow 3s ease-in-out infinite;
}

/* ── MENU PILLS ── */
.menu-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.menu-pill {
  padding: 9px 26px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: var(--t);
}
.menu-pill:hover {
  border-color: rgba(255, 204, 0, 0.22);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.menu-pill--active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
  box-shadow: 0 3px 12px rgba(255, 204, 0, 0.25);
}

/* ── MENU CARD FILTER ANIMATION ── */
.menu-card.mc-hidden {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
  position: absolute;
}
.menu-card.mc-show {
  animation: mcPopIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes mcPopIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ── DELIVERY PULSE ── */
.delivery-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  animation: pulse-glow 3s ease-in-out infinite;
  pointer-events: none;
}
.menu-delivery {
  position: relative;
  overflow: hidden;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 88px 0 40px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-lt), transparent);
}
footer::after {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(255, 204, 0, 0.03) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.footer-logo span {
  color: var(--amber-lt);
}
.footer-tag {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 300;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.soc-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  transition: var(--t);
}
.soc-btn:hover {
  border-color: var(--amber-lt);
  color: var(--amber-lt);
  background: rgba(255, 204, 0, 0.08);
}
.foot-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-lt);
  margin-bottom: 22px;
}
.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.foot-links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--t);
  font-weight: 400;
}
.foot-links li a:hover {
  color: var(--amber-lt);
}
.foot-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  font-weight: 400;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.foot-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.24s;
}
.reveal-delay-3 {
  transition-delay: 0.36s;
}
.reveal-delay-4 {
  transition-delay: 0.48s;
}
.reveal-delay-5 {
  transition-delay: 0.6s;
}

/* ── DECORATIVE LINE ── */
.section-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber-lt), transparent);
  margin: 0 auto 20px;
}

/* ── IMAGE SHINE EFFECT ── */
.shine-hover {
  position: relative;
  overflow: hidden;
}
.shine-hover::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: none;
  pointer-events: none;
}
.shine-hover:hover::after {
  transform: translateX(100%);
  transition: transform 0.8s ease;
}

/* ── FLOAT ANIMATION ── */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.float-anim {
  animation: float 5s ease-in-out infinite;
}

/* ── PULSE GLOW ── */
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--glow-strong);
  }
  50% {
    box-shadow: 0 0 24px 6px var(--glow);
  }
}
.pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* ── GRADIENT BORDER ANIMATION ── */
@keyframes borderGlow {
  0%,
  100% {
    border-color: rgba(255, 204, 0, 0.15);
  }
  50% {
    border-color: rgba(255, 204, 0, 0.35);
  }
}

/* ── AMBIENT ORB ── */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.5;
}
.ambient-orb--gold {
  background: var(--glow);
}
.ambient-orb--soft {
  background: rgba(255, 204, 0, 0.06);
}

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: var(--t-spring);
  z-index: 50;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px);
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: var(--amber);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-imgs {
    order: -1;
  }
  .spotlight-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .spotlight-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .spotlight-img {
    max-width: 400px;
    margin: 0 auto;
  }
  .founder-card {
    grid-template-columns: 260px 1fr;
    gap: 32px;
    padding: 28px;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-format-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .loc-grid {
    grid-template-columns: 1fr 1fr;
  }
  .franchise-models {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: clamp(140px, 18vw, 200px);
    gap: 10px;
  }
  .gal-item--wide {
    grid-column: span 2;
  }
  .gal-item--tall {
    grid-row: span 2;
  }
  .stats-grid {
    gap: 0;
  }
  .stat-block {
    padding: 0 24px;
  }
}

/* ══════════════════════════════════════
   FEATURED PRODUCTS
   ══════════════════════════════════════ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px;
  align-items: stretch;
}
.featured-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--t-spring);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 204, 0, 0.15);
}
.featured-card-img {
  aspect-ratio: 1.1;
  overflow: hidden;
  position: relative;
}
.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.featured-card:hover .featured-card-img img {
  transform: scale(1.06);
}
.featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--amber);
  color: var(--ink);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(255, 204, 0, 0.25);
  z-index: 2;
}
.featured-card-body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.featured-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
}
.featured-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 20px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(2 * 1.55em);
}
.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 4px;
}
.featured-price {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.featured-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--amber);
  border-radius: 50px;
  transition: var(--t);
  box-shadow: 0 2px 8px rgba(255, 204, 0, 0.2);
}
.featured-btn:hover {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════
   CUSTOMER REVIEWS
   ══════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--t-spring);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 26px;
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--amber-lt);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 204, 0, 0.12);
}
.review-stars {
  color: var(--amber);
  font-size: 17px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.review-text {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
  font-weight: 400;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-lt), var(--amber));
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(255, 204, 0, 0.2);
}
.review-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.review-role {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.03em;
  margin-top: 2px;
  font-weight: 400;
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 72px 0;
  }
  .section-header {
    margin-bottom: 48px;
  }
  .nav-links,
  .nav-order {
    display: none;
  }
  .announcement-bar {
    font-size: 10.5px;
    min-height: 30px; /* matches mobile navbar top:30px — no gap */
  }
  .announcement-inner {
    gap: 8px;
    padding: 7px 16px;
  }
  .announcement-item:nth-child(3),
  .announcement-sep:nth-child(2) {
    display: none;
  }
  .navbar {
    /* Announcement bar is hidden, so the navbar sits flush at the very top. */
    top: 0;
  }
  .nav-inner {
    height: 60px;
    padding: 0 20px;
    grid-template-columns: 1fr auto;
  }
  .nav-inner > .nav-actions {
    justify-self: end;
    margin-left: auto;
  }
  .nav-toggle {
    margin-left: auto;
  }
  .nav-logo {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    align-self: center;
    height: 100%;
    padding-left: 0;
    text-align: left;
    line-height: 1;
  }
  .nav-logo img {
    display: none;
  }
  .nav-logo span {
    font-size: 22px;
    line-height: 1;
    margin-top: 0;
    display: inline-flex;
    align-items: center;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
  .nav-mobile-logo {
    margin-top: 16px;
    text-align: center;
  }
  .nav-mobile-logo img {
    height: 140px;
    width: auto;
  }
  .hero-title {
    font-size: clamp(40px, 10vw, 68px);
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .stats-bar {
    padding: 44px 0;
  }
  .stats-grid {
    flex-direction: column;
    gap: 24px;
  }
  .stat-divider {
    width: 48px;
    height: 1px;
  }
  .stat-block {
    padding: 0;
  }
  .founder-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .fc-photo {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }
  .team-card,
  .team-card--reverse {
    grid-template-columns: 1fr;
  }
  .team-card--reverse .tc-photo {
    order: 0;
  }
  .team-card--reverse .tc-info {
    order: 0;
  }
  .tc-photo {
    width: 200px;
    height: 200px;
    max-height: none;
  }
  .founder-stats {
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px 24px;
  }
  .fs-divider {
    display: none;
  }
  .featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .featured-card-body {
    padding: 18px 16px 20px;
  }
  .featured-name {
    font-size: 15px;
  }
  .featured-desc {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .review-card {
    padding: 28px 24px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-format-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .loc-grid {
    grid-template-columns: 1fr;
  }
  .franchise-models {
    grid-template-columns: 1fr;
  }
  .fm-card {
    width: 250px;
    padding: 28px 20px;
  }
  .fm-card[data-pos="0"] {
    transform: translateX(-220px) scale(0.65);
    opacity: 0.15;
  }
  .fm-card[data-pos="1"] {
    transform: translateX(-120px) scale(0.8);
    opacity: 0.45;
  }
  .fm-card[data-pos="2"] {
    transform: translateX(0) scale(1.02);
    opacity: 1;
  }
  .fm-card[data-pos="3"] {
    transform: translateX(120px) scale(0.8);
    opacity: 0.45;
  }
  .fm-card[data-pos="4"] {
    transform: translateX(220px) scale(0.65);
    opacity: 0.15;
  }
  .fm-card[data-pos="2"] .fm-type {
    font-size: 28px;
  }
  .fm-card[data-pos="2"] .fm-cost {
    font-size: 34px;
  }
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .loc-upcoming-list {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }
  .offices-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(130px, 24vw, 180px);
    gap: 8px;
  }
  .gal-item--wide {
    grid-column: span 2; /* full-width in a 2-col grid */
  }
  .gal-item--tall {
    grid-row: span 2;
    grid-column: span 1;
  }
  .page-header {
    padding: 88px 0 60px;
  }
  .page-header--full {
    padding: 0;
    aspect-ratio: 1550 / 800;
    min-height: 0;
    background-size: cover;
    background-position: center;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .page-header--full > .container {
    padding: 0 20px 28px;
  }
  .ph-title {
    font-size: clamp(32px, 8vw, 52px);
  }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE
   ══════════════════════════════════════ */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 56px 0;
  }
  .hero-title {
    font-size: 38px;
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .btn {
    padding: 12px 26px;
    font-size: 11px;
  }
  .contact-form-wrap {
    padding: 20px;
  }
  .about-grid {
    gap: 40px;
  }
  .about-badge {
    position: static;
    transform: none;
    margin-top: 16px;
    display: inline-block;
  }
  .founder-card {
    padding: 20px;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .menu-format-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    /* Two tight columns on phones so the grid still feels like a mosaic
       rather than a long single-column scroll. */
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(110px, 34vw, 180px);
    gap: 8px;
  }
  .gal-item--wide {
    grid-column: span 2;
  }
  .gal-item--tall {
    grid-row: span 2;
    grid-column: span 1;
  }
  .nav-mobile a {
    font-size: 24px;
  }
  .nav-mobile {
    gap: 16px;
    padding-top: 72px;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    gap: 32px;
  }
  .cta-section {
    padding: 64px 0;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nav-actions {
    gap: 10px;
  }
}

/* ============================================================
   VEG / NON-VEG DOT (FSSAI-style)
   ============================================================ */
.fx-veg {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  position: relative;
  vertical-align: middle;
  background: #fff;
}
.fx-veg::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: currentColor;
}
.fx-veg--veg {
  color: #1aa84d;
}
.fx-veg--nonveg {
  color: #c83232;
}
.fx-veg--nonveg::after {
  border-radius: 0;
  width: 0;
  height: 0;
  background: transparent;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 6px solid currentColor;
  transform: translate(-50%, -60%);
}

/* ============================================================
   ACCESSIBILITY: focus-visible + reduced motion
   ============================================================ */
:focus {
  outline: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--amber, #ffc800);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .ms-item:hover,
  .featured-card:hover,
  .fp-page:hover {
    transform: none !important;
  }
}

/* Hero background video (full width/height cover) */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  background: #000;
}

/* Floating sound toggle (reusable) */
.video-sound-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.video-sound-btn:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: #111;
  transform: scale(1.05);
}
.video-sound-btn:active {
  transform: scale(0.96);
}
.vsb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.video-sound-btn .vsb-icon--on {
  display: none;
}
.video-sound-btn[data-muted="false"] .vsb-icon--muted {
  display: none;
}
.video-sound-btn[data-muted="false"] .vsb-icon--on {
  display: inline-flex;
}

/* Home: let the hero video reach the true top of the page (no body top-padding gap). */
body.page-home {
  padding-top: 0;
}

/* Home hero has a white frame, so the header sits flush on white — no
   dark overlay, no divider line, no shadow. Everything blends cleanly.
   The top gradient is kept disabled; announcement + nav stay legible
   against the white hero and the dark video after reveal alike. */
body.page-home::before {
  display: none;
}

/* Home — AT THE TOP (not scrolled): plain transparent header + transparent
   announcement bar that blend seamlessly with the white hero frame. */
body.page-home .navbar:not(.scrolled) {
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  background: transparent !important;
}
body.page-home .navbar:not(.scrolled)::after {
  display: none !important;
}
/* Home announcement bar keeps the default dark-gradient look from the
   base .announcement-bar rule — same as every other page. */

/* Home — HERO REVEALED (video fills screen): navbar docks at top:0 and
   the announcement bar slides away, but the bar STAYS TRANSPARENT so the
   video shows through. Text flips to white for legibility on the video. */
body.page-home.hero-revealed .navbar {
  top: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom-color: transparent !important;
}
body.page-home.hero-revealed .navbar::after {
  display: none !important;
}
/* Announcement bar uses the default dark-gradient styling from the base
   rule. Scrolling hides it via `.announcement-hidden` like on every
   other page. On home we also hide it the moment the video fully opens
   (`hero-revealed`) so the dark strip doesn't sit over the video. */
body.page-home.hero-revealed .announcement-bar {
  transform: translateY(-100%) !important;
  pointer-events: none;
}
body.page-home.hero-revealed .navbar .nav-logo span {
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
body.page-home.hero-revealed .navbar .nav-logo em {
  color: var(--amber-lt);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
body.page-home.hero-revealed .navbar .nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
body.page-home.hero-revealed .navbar .nav-links a.active,
body.page-home.hero-revealed .navbar .nav-links a:hover {
  color: #ffffff;
}
body.page-home.hero-revealed .navbar .nav-toggle span {
  background: #ffffff;
}

/* Home — ONCE SCROLLED PAST THE HERO: the navbar turns solid white like
   every other page so it reads against the lighter content below. */
body.page-home .navbar.scrolled {
  background: #ffffff !important;
  box-shadow: 0 2px 24px rgba(30, 20, 0, 0.08) !important;
}
body.page-home .navbar.scrolled .nav-logo span {
  color: var(--ink);
  text-shadow: none;
}
body.page-home .navbar.scrolled .nav-logo em {
  color: var(--amber);
  text-shadow: none;
}
body.page-home .navbar.scrolled .nav-links a {
  color: var(--muted);
  text-shadow: none;
}
body.page-home .navbar.scrolled .nav-links a.active,
body.page-home .navbar.scrolled .nav-links a:hover {
  color: var(--ink);
}
body.page-home .navbar.scrolled .nav-toggle span {
  background: var(--ink);
}
/* Keep the normal dark logo/links on the white frame, no text-shadow —
   looks clean and unbroken. */
body.page-home .navbar .nav-logo span {
  color: var(--ink);
  text-shadow: none;
}
body.page-home .navbar .nav-logo em {
  color: var(--amber);
  text-shadow: none;
}
body.page-home .navbar .nav-links a {
  color: var(--muted);
  text-shadow: none;
}
body.page-home .navbar .nav-links a:hover,
body.page-home .navbar .nav-links a.active {
  color: var(--ink);
}
body.page-home .navbar .nav-toggle span {
  background: var(--ink);
}

/* Hero-specific placement for the sound button */
.hero-sound-btn {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
}
@media (max-width: 640px) {
  .hero-sound-btn {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
  }
}

/* Justify body paragraph copy across all pages */
.body-p,
.review-text,
.featured-desc,
.cta-p,
.about-text p,
.fr-card p,
.team-bio,
.contact-card p,
.loc-desc,
.section p:not(.section-sub):not(.tag) {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* Dark mode disabled — luxury white theme */

/* ============================================================
   RESPONSIVE REFINEMENTS — mobile-first polish for all breakpoints
   Layered AFTER earlier rules so these take precedence.
   ============================================================ */

/* Prevent layout-breaking overflow from any wide media/embed */
html,
body {
  max-width: 100%;
}
img,
video,
iframe,
table {
  max-width: 100%;
}
iframe,
.map-wrap iframe {
  width: 100%;
}

/* ── Large desktop / wide tablet (≤1200px) ─────────────── */
@media (max-width: 1200px) {
  .container {
    padding: 0 28px;
  }
  .footer-grid {
    gap: 32px;
  }
  .hero-blob1 {
    width: 460px;
    height: 460px;
    right: -140px;
  }
  .hero-blob2 {
    width: 320px;
    height: 320px;
    left: -120px;
  }
}

/* ── Tablet landscape / small desktop (≤1024px) ─────────── */
@media (max-width: 1024px) {
  .nav-logo img {
    height: 70px;
  }
  .navbar.scrolled .nav-logo img {
    height: 56px;
  }
  .nav-links {
    gap: 8px;
  }
  .nav-links a {
    padding: 8px 8px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .nav-order {
    padding: 10px 18px;
    font-size: 10px;
  }
  .hero {
    padding-top: 130px;
  }
  .section {
    padding: 64px 0;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-inner {
    gap: 24px;
  }
  .spotlight-inner {
    gap: 40px;
  }
  .menu-spotlight {
    padding: 72px 0;
  }
  .why-section {
    padding: 72px 0;
  }
  .founder-stats {
    padding: 32px 28px;
    gap: 12px;
  }
  .fs-item {
    padding: 0 20px;
  }
  .fm-slider-track {
    min-height: 420px;
  }
}

/* ── Tablet portrait (≤900px) ───────────────────────────── */
@media (max-width: 900px) {
  :root {
    --radius-lg: 16px;
  }
  .founder-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
    justify-items: center;
    text-align: center;
  }
  .founder-card .fc-divider {
    margin-left: auto;
    margin-right: auto;
  }
  .fc-photo {
    width: 200px;
    height: 250px;
    margin: 0 auto;
  }
  .fc-name {
    font-size: 32px;
  }
  .team-card,
  .team-card--reverse {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 22px;
  }
  .team-card--reverse .tc-photo {
    order: 0;
  }
  .team-card--reverse .tc-info {
    order: 0;
  }
  .tc-photo {
    width: 170px;
    height: 210px;
    margin: 0 auto;
  }
  .tc-info {
    padding: 20px 4px 0;
  }
  .tc-divider {
    margin-left: auto;
    margin-right: auto;
  }
  .tc-name {
    font-size: 26px;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offices-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }
  .franchise-models {
    grid-template-columns: repeat(2, 1fr);
  }
  .fm-slider-track {
    min-height: 380px;
  }
  .fm-card {
    width: 280px;
    padding: 32px 24px;
  }
  .stats-grid {
    gap: 8px;
  }
  .stat-block {
    padding: 8px 20px;
  }
  .stats-bar {
    padding: 44px 0;
  }
}

/* ── Tablet / large phone (≤768px) — extends existing rules ── */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  body {
    /* Match the mobile navbar height exactly so the page cover image sits
       flush under the navbar with no gap. */
    padding-top: calc(55px + env(safe-area-inset-top, 0px));
  }
  body.page-home {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
  body.page-home .hero--reveal {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 56px 0;
  }
  .page-header--full > .container {
    padding: 0 20px 24px;
  }
  .page-header--sm {
    padding: 76px 0 28px;
  }
  .announcement-inner {
    gap: 6px;
    padding: 6px 14px;
    font-size: 10.5px;
  }
  .announcement-item {
    white-space: normal;
  }
  .nav-inner {
    height: 56px;
    align-items: center;
  }
  .nav-order {
    display: none;
  }
  .nav-logo,
  .navbar.scrolled .nav-logo {
    margin: 0;
    align-self: center;
  }
  .nav-logo span {
    font-size: 20px;
    line-height: 1;
  }
  .nav-actions {
    align-self: center;
  }
  .nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    align-self: center;
  }
  .nav-mobile {
    padding: 110px 20px 40px;
    gap: 14px;
  }
  .nav-mobile a {
    font-size: 24px;
  }
  .hero:not(.hero--reveal) {
    min-height: calc(100vh + 50px);
    min-height: calc(100dvh + 50px);
    padding-top: 130px;
    padding-bottom: 56px;
  }
  .hero--reveal {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-stage {
    padding-top: 130px;
    padding-bottom: 56px;
  }
  /* Mobile: center content vertically over the full-bleed video. */
  .hero--reveal .hero-stage {
    padding-top: 90px;
    padding-bottom: 40px;
    align-items: center;
  }
  /* No circle on mobile — undo the desktop absolute pinning and let
     eyebrow, title, subtitle, CTAs flow as a normal centered stack over
     the full-bleed video. */
  .hero--reveal .hero-content {
    position: relative;
    height: auto;
    display: block;
  }
  .hero--reveal .hero-center {
    display: block;
    height: auto;
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }
  .hero--reveal .hero-center .hero-eyebrow,
  .hero--reveal .hero-center .hero-title,
  .hero--reveal .hero-bottom {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    width: auto;
    max-width: none;
    padding: 0;
  }
  .hero--reveal .hero-center .hero-eyebrow {
    margin: 0 0 18px;
  }
  .hero--reveal .hero-bottom {
    display: contents;
  }
  .hero--reveal .hero-center .hero-sub {
    margin-bottom: 24px;
  }
  /* Mobile: skip the circle reveal — video is full-bleed from the start. */
  .hero-clip {
    clip-path: none !important;
    -webkit-clip-path: none !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }
  .hero-clip .hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }
  /* Hero starts flush at the very top of the page — no padding gap. */
  section.hero.hero--reveal {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  /* Stage keeps flex-center for the overlay text but has no top/bottom
     padding so the video truly fills every pixel of the viewport. */
  .hero--reveal .hero-stage {
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  /* Hide the "Scroll" hint — no reveal animation to scroll through. */
  .hero-scroll-hint {
    display: none;
  }
  /* Slightly stronger overlay so white text always reads over the video. */
  .hero-clip .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 15, 15, 0.35) 0%,
      rgba(15, 15, 15, 0.6) 100%
    );
  }

  /* Home page mobile: header behaves EXACTLY like every other mobile page
     — solid white navbar flush at the very top (announcement bar is hidden). */
  body.page-home .navbar,
  body.page-home .navbar:not(.scrolled),
  body.page-home.hero-revealed .navbar {
    background: #ffffff !important;
    top: 0 !important;
    border-bottom-color: rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
  }
  body.page-home .navbar.scrolled,
  body.page-home.hero-revealed .navbar.scrolled {
    top: 0 !important;
    box-shadow: 0 2px 24px rgba(30, 20, 0, 0.08) !important;
  }
  body.page-home .navbar .nav-logo span,
  body.page-home.hero-revealed .navbar .nav-logo span {
    color: var(--ink) !important;
    text-shadow: none !important;
  }
  body.page-home .navbar .nav-logo em,
  body.page-home.hero-revealed .navbar .nav-logo em {
    color: var(--amber) !important;
    text-shadow: none !important;
  }
  body.page-home .navbar .nav-links a,
  body.page-home.hero-revealed .navbar .nav-links a {
    color: var(--muted) !important;
    text-shadow: none !important;
  }
  body.page-home .navbar .nav-toggle span,
  body.page-home.hero-revealed .navbar .nav-toggle span {
    background: var(--ink) !important;
  }
  /* On mobile home, keep the announcement bar visible at the top by
     default (ignoring hero-revealed), BUT still hide it when the user
     actually scrolls the page (via .announcement-hidden on body). */
  body.page-home.hero-revealed:not(.announcement-hidden) .announcement-bar {
    transform: none !important;
    pointer-events: auto;
  }
  body.page-home.announcement-hidden .announcement-bar {
    transform: translateY(-100%) !important;
    pointer-events: none;
  }
  .hero-scroll-hint {
    bottom: -2px;
    font-size: 10px;
  }
  .hero-scroll-hint .hsh-line {
    height: 18px;
  }
  .hero-center {
    padding-top: 20px;
  }
  .hero-title {
    font-size: clamp(36px, 10vw, 60px);
    margin-bottom: 20px;
  }
  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 32px;
    padding: 0 8px;
  }
  .hero--reveal .hero-center .hero-title.hero-title--light,
  .hero-title.hero-title--light {
    color: #fff !important;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  }
  .hero--reveal .hero-center .hero-title.hero-title--light em,
  .hero-title.hero-title--light em {
    color: var(--amber) !important;
  }
  .hero--reveal .hero-center .hero-sub.hero-sub--light,
  .hero-sub.hero-sub--light {
    color: rgba(255, 255, 255, 0.92) !important;
  }
  .hero-blob1,
  .hero-blob2 {
    display: none;
  }
  .hero-sound-btn {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
  .marquee-track {
    gap: 32px;
    animation-duration: 22s;
  }
  .m-item {
    gap: 32px;
    font-size: 12px;
  }
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .featured-card-img {
    aspect-ratio: 1;
  }
  .featured-card-body {
    padding: 16px 14px 18px;
  }
  .featured-name {
    font-size: 14.5px;
  }
  .featured-desc {
    font-size: 12.5px;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .featured-price {
    font-size: 18px;
  }
  .featured-btn {
    padding: 7px 14px;
    font-size: 10px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .review-card {
    padding: 26px 22px;
  }
  .review-text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .about-grid {
    gap: 40px;
  }
  .about-imgs {
    gap: 12px;
  }
  /* Mobile: stack images full width and show the FULL image (no crop). */
  .about-imgs--quad {
    grid-template-columns: 1fr;
  }
  .about-imgs--quad .about-img-cell {
    aspect-ratio: auto;
  }
  .about-imgs--quad .about-img-cell img {
    height: auto;
    object-fit: contain;
  }
  .pull-quote {
    font-size: 16px;
    padding: 14px 0 14px 20px;
    margin: 20px 0;
  }
  .about-ctas {
    gap: 10px;
  }
  .about-ctas .btn {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
  }
  .spotlight-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .spotlight-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .spotlight-img {
    max-width: 420px;
    margin: 0 auto;
  }
  .menu-format-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .mf-card {
    padding: 26px 16px 22px;
  }
  .mf-icon {
    font-size: 30px;
    margin-bottom: 12px;
  }
  .mf-name {
    font-size: 18px;
  }
  .mf-desc {
    font-size: 12px;
  }
  .menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .menu-card-body {
    padding: 14px 14px 16px;
    gap: 10px;
  }
  .mc-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 10px;
  }
  .mc-name {
    font-size: 14px;
  }
  .mc-sub {
    font-size: 12px;
  }
  .menu-pills {
    gap: 8px;
    margin-bottom: 28px;
  }
  .menu-pill {
    padding: 7px 18px;
    font-size: 10.5px;
  }
  .menu-delivery {
    padding: 22px 20px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .value-card {
    padding: 28px 24px;
  }
  .loc-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .loc-body {
    padding: 18px;
  }
  .loc-name {
    font-size: 20px;
  }
  .loc-upcoming-inner {
    padding: 24px 20px;
  }
  .loc-upcoming-list {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }
  .offices-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lo-card {
    padding: 22px 20px;
  }
  .map-wrap {
    height: 280px;
  }
  .map-wrap iframe {
    height: 100% !important;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .why-section {
    padding: 56px 0;
  }
  .franchise-pages {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .fm-slider {
    padding: 24px 0 32px;
  }
  .fm-slider-track {
    min-height: 360px;
  }
  .franchise-models {
    grid-template-columns: 1fr;
  }
  .fm-card {
    width: 240px;
    padding: 26px 20px;
  }
  .fm-card[data-pos="0"],
  .fm-card[data-pos="4"] {
    display: none;
  }
  .fm-card[data-pos="1"] {
    transform: translateX(-110px) translateZ(-30px) scale(0.78);
  }
  .fm-card[data-pos="3"] {
    transform: translateX(110px) translateZ(-30px) scale(0.78);
  }
  .fm-type {
    font-size: 22px;
  }
  .fm-card[data-pos="2"] .fm-type {
    font-size: 26px;
  }
  .fm-cost {
    font-size: 30px;
  }
  .fm-card[data-pos="2"] .fm-cost {
    font-size: 34px;
  }
  .support-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .sp-card {
    padding: 20px 16px;
  }
  .cta-section {
    padding: 56px 0;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .cta-actions {
    justify-content: center;
    width: 100%;
  }
  .cta-actions .btn {
    flex: 1 1 auto;
    min-width: 140px;
    justify-content: center;
  }
  .cta-p {
    margin-left: auto;
    margin-right: auto;
  }
  .contact-form-wrap {
    padding: 28px 22px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .c-detail {
    gap: 12px;
  }
  .c-val {
    font-size: 13.5px;
    word-break: break-word;
  }
  footer {
    padding: 56px 0 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    margin-bottom: 32px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-logo {
    font-size: 22px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .page-header {
    padding: 76px 0 44px;
  }
  .page-header--full {
    padding: 0;
    aspect-ratio: 1550 / 800;
    min-height: 0;
    background-size: cover;
    background-position: center;
  }
  .page-header--full > .container {
    padding: 0 16px 16px;
  }
  .ph-title {
    font-size: clamp(30px, 8vw, 48px);
    margin-bottom: 12px;
  }
  .ph-sub {
    font-size: 14.5px;
  }
  .privacy-wrap {
    padding: 0;
  }
  .food-strip {
    padding: 6px 0;
  }
  .fs-emoji {
    font-size: 22px;
  }
}

/* ── Small mobile (≤480px) — extra polish ───────────────── */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 48px 0;
  }
  .section-header {
    margin-bottom: 28px;
  }
  .btn {
    padding: 12px 22px;
    font-size: 10.5px;
    letter-spacing: 0.1em;
  }
  .announcement-inner {
    padding: 6px 12px;
    gap: 6px;
    font-size: 10px;
  }
  .announcement-item:nth-child(3),
  .announcement-sep:nth-child(2),
  .announcement-sep:nth-child(4) {
    display: none;
  }
  .nav-inner {
    height: 54px;
    padding: 0 16px;
    align-items: center;
  }
  .nav-logo span {
    font-size: 18px;
    line-height: 1;
  }
  .nav-actions {
    gap: 10px;
    align-self: center;
  }
  .nav-toggle {
    width: 38px;
    height: 38px;
  }
  .nav-mobile {
    padding: 96px 16px 36px;
    gap: 12px;
  }
  .nav-mobile a {
    font-size: 22px;
  }
  .nav-mobile-logo img {
    height: 100px;
  }
  .hero:not(.hero--reveal) {
    min-height: calc(100vh + 48px);
    min-height: calc(100dvh + 48px);
    padding-top: 110px;
    padding-bottom: 40px;
  }
  .hero--reveal {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-stage {
    padding-top: 110px;
    padding-bottom: 40px;
  }
  .hero--reveal .hero-stage {
    padding-top: 80px;
    padding-bottom: 32px;
    align-items: center;
  }
  .hero--reveal .hero-center .hero-sub {
    margin-bottom: 20px;
  }
  .hero-clip {
    clip-path: none !important;
    -webkit-clip-path: none !important;
  }
  .hero-center {
    padding-top: 8px;
  }
  .hero-title {
    font-size: clamp(34px, 11vw, 52px);
    margin-bottom: 16px;
  }
  .hero-sub {
    font-size: 0.9rem;
    margin-bottom: 26px;
    line-height: 1.6;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .section-h {
    font-size: clamp(26px, 7.5vw, 36px);
  }
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 420px;
    margin: 0 auto;
  }
  .featured-card-img {
    aspect-ratio: 1.3;
  }
  .featured-name {
    font-size: 15px;
  }
  .featured-desc {
    font-size: 13px;
  }
  .menu-format-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto 40px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .menu-card-img {
    aspect-ratio: 1.6;
  }
  .menu-card-body {
    padding: 14px 16px 18px;
  }
  .mc-name {
    font-size: 15px;
  }
  .mc-sub {
    font-size: 12.5px;
  }
  .support-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .foot-col-title {
    margin-bottom: 14px;
  }
  .contact-form-wrap {
    padding: 22px 18px;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 14px;
    font-size: 14px;
  }
  .c-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  .c-val {
    font-size: 13px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(110px, 34vw, 180px);
    gap: 8px;
  }
  .gal-item--wide {
    grid-column: span 2;
  }
  .gal-item--tall {
    grid-row: span 2;
    grid-column: span 1;
  }
  .about-grid {
    gap: 28px;
  }
  .about-imgs {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .about-img-a,
  .about-img-b {
    aspect-ratio: 0.9;
  }
  .about-img-a {
    margin-top: 24px;
  }
  .about-imgs--quad {
    grid-template-columns: 1fr; /* stack images one per row on mobile too */
  }
  /* Mobile: show the FULL image (natural height, no crop) at full width. */
  .about-imgs--quad .about-img-cell {
    aspect-ratio: auto;
  }
  .about-imgs--quad .about-img-cell img {
    height: auto;
    object-fit: contain;
  }
  .about-img-caption {
    font-size: 13px;
    padding: 22px 12px 10px;
  }
  .about-imgs--quad .about-img-cell:nth-child(1),
  .about-imgs--quad .about-img-cell:nth-child(4) {
    margin-top: 0;
  }
  .about-badge {
    position: static;
    transform: none;
    margin: 16px auto 0;
    padding: 14px 20px;
  }
  .ab-year {
    font-size: 22px;
  }
  .about-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .about-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .pull-quote {
    font-size: 15px;
  }
  .stats-bar {
    padding: 36px 0;
  }
  .stats-grid {
    gap: 18px;
  }
  .stat-block {
    padding: 0;
  }
  .stat-divider {
    width: 36px;
    height: 1px;
  }
  .founder-card {
    padding: 24px 18px;
    margin-bottom: 32px;
  }
  .fc-photo {
    width: 170px;
    height: 220px;
    margin: 0 auto;
  }
  .fc-name {
    font-size: 26px;
  }
  .fc-bio {
    font-size: 14px;
  }
  .member-signature {
    font-size: 15px;
  }
  .member-signature.sig-descriptor {
    font-size: 13px;
  }
  .founder-stats {
    flex-wrap: wrap;
    gap: 18px;
    padding: 24px 18px;
    justify-content: space-around;
  }
  .fs-item {
    padding: 0;
    flex: 1 1 40%;
  }
  .fs-num {
    font-size: clamp(26px, 8vw, 38px);
  }
  .fs-divider {
    display: none;
  }
  .team-card,
  .team-card--reverse {
    padding: 24px 18px;
  }
  .tc-photo {
    width: 150px;
    height: 190px;
  }
  .tc-name {
    font-size: 22px;
  }
  .tc-bio {
    font-size: 14px;
  }
  .tc-principle {
    font-size: 13.5px;
    padding: 14px 16px;
  }
  .loc-upcoming-inner {
    padding: 22px 16px;
  }
  .loc-upcoming-item {
    font-size: 13.5px;
  }
  .cta-h {
    font-size: clamp(24px, 6.5vw, 32px);
  }
  .cta-p {
    font-size: 13.5px;
  }
  .cta-actions {
    flex-direction: column;
    gap: 10px;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .fm-slider-track {
    min-height: 320px;
  }
  .fm-card {
    width: 88vw;
    max-width: 260px;
    padding: 24px 18px;
  }
  .fm-card[data-pos="1"],
  .fm-card[data-pos="3"] {
    display: none;
  }
  .fm-card[data-pos="2"] {
    transform: translateX(0) scale(1);
  }
  .fm-type,
  .fm-card[data-pos="2"] .fm-type {
    font-size: 22px;
  }
  .fm-cost,
  .fm-card[data-pos="2"] .fm-cost {
    font-size: 28px;
  }
  .page-header {
    padding: 64px 0 32px;
  }
  .page-header--full {
    aspect-ratio: 1550 / 800;
    min-height: 0;
  }
  .ph-title {
    font-size: clamp(26px, 9vw, 40px);
  }
  .ph-sub {
    font-size: 13.5px;
  }
  .contact-form-wrap form button[type="submit"] {
    font-size: 11px;
  }
  .privacy-content h3 {
    font-size: 17px;
  }
  .privacy-content p,
  .privacy-content li {
    font-size: 14px;
  }
  .food-strip-track {
    gap: 24px;
  }
  .fs-emoji {
    font-size: 20px;
  }
  .scroll-top {
    bottom: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
  }
}

/* ── Extra small (≤360px) — rare but common on budget phones ── */
@media (max-width: 360px) {
  .container {
    padding: 0 14px;
  }
  .nav-logo span {
    font-size: 16px;
  }
  .announcement-item:not(:first-child) {
    display: none;
  }
  .announcement-sep {
    display: none;
  }
  .btn {
    padding: 11px 18px;
    font-size: 10px;
  }
  .hero-title {
    font-size: clamp(28px, 11vw, 44px);
  }
  .section-h {
    font-size: clamp(22px, 8vw, 30px);
  }
  .ph-title {
    font-size: clamp(24px, 10vw, 36px);
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(100px, 38vw, 150px);
    gap: 6px;
  }
}

/* ── Landscape phones: shorten hero so CTAs aren't off-screen ── */
@media (max-height: 560px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .hero-center {
    padding-top: 0;
  }
  .hero-title {
    font-size: clamp(28px, 6vw, 44px);
    margin-bottom: 14px;
  }
  .hero-sub {
    margin-bottom: 20px;
  }
  .nav-mobile {
    padding-top: 80px;
    justify-content: center;
  }
  .nav-mobile a {
    font-size: 20px;
  }
}

/* ── Ensure tappable touch targets on mobile ─────────────── */
@media (hover: none) and (pointer: coarse) {
  /* Touch devices never get the circular scroll-reveal — video is full-bleed. */
  .hero-clip {
    clip-path: none !important;
    -webkit-clip-path: none !important;
  }
  .hero-scroll-hint {
    display: none !important;
  }
  .nav-links a,
  .foot-links li a,
  .soc-btn,
  .featured-btn,
  .menu-pill,
  .btn {
    min-height: 40px;
  }
  .nav-toggle {
    width: 44px;
    height: 44px;
  }
  /* Disable heavy hover lifts that linger after tap */
  .featured-card:hover,
  .menu-card:hover,
  .loc-card:hover,
  .team-card:hover,
  .founder-card:hover,
  .review-card:hover,
  .value-card:hover,
  .sp-card:hover,
  .mf-card:hover {
    transform: none;
  }
}
