/* ═══════════════════════════════════════════════════════
   FOODLY SHAWARMA — Masterpiece Design System v2
   Brand: Black + Amber Gold (#F5B800)
   Aesthetic: Cinematic Urban Premium
   ═══════════════════════════════════════════════════════ */

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:root {
  --gold: #F5B800;
  --gold-light: #FFD54F;
  --gold-dark: #C49000;
  --gold-glow: rgba(245, 184, 0, 0.25);
  --gold-subtle: rgba(245, 184, 0, 0.06);
  --black: #0A0A0A;
  --charcoal: #141414;
  --charcoal-light: #1E1E1E;
  --gray-900: #171717;
  --gray-800: #222222;
  --gray-700: #333333;
  --gray-600: #525252;
  --gray-500: #737373;
  --gray-400: #A3A3A3;
  --gray-300: #D4D4D4;
  --white: #FAFAFA;
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  --text-base: clamp(0.9rem, 0.85rem + 0.35vw, 1.05rem);
  --text-lg: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl: clamp(2rem, 1.5rem + 2vw, 3rem);
  --text-4xl: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  --text-hero: clamp(3.5rem, 2.5rem + 5vw, 8rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

::selection {
  background-color: var(--gold);
  color: var(--black);
}

*:focus {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: var(--radius-full);
}

/* ═══ PRELOADER — The Lemonade Squeeze (Canvas) ═══ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}
.preloader:not(.done) {
  pointer-events: all;
}

.sweep-layer {
  position: absolute;
  top: -20vh; left: -10vw;
  width: 120vw; height: 140vh;
  will-change: transform;
}
.sweep-lemon    { background: #FFE100; z-index: 1; }
.sweep-charcoal { background: var(--gray-800); z-index: 2; }
.sweep-black    { background: var(--black); z-index: 3; }

#preloader-canvas {
  position: absolute;
  top: 20vh;   /* counteract parent's -20vh */
  left: 10vw;  /* counteract parent's -10vw */
  width: 100vw;
  height: 100vh;
}

/* ─── Sweep Exit ─── */
.preloader.done .sweep-layer {
  transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}
.preloader.done .sweep-black {
  transform: translateY(-100%) skewY(-6deg);
  transition-delay: 0s;
}
.preloader.done .sweep-charcoal {
  transform: translateY(-100%) skewY(-6deg);
  transition-delay: 0.15s;
}
.preloader.done .sweep-lemon {
  transform: translateY(-100%) skewY(-6deg);
  transition-delay: 0.3s;
}



/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 clamp(1.5rem, 3vw, 4rem);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease-out);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(30px) saturate(1.6);
  -webkit-backdrop-filter: blur(30px) saturate(1.6);
  border-bottom: 1px solid rgba(245, 184, 0, 0.06);
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 10;
}

.nav-logo svg {
  transition: transform 0.5s var(--ease-spring);
}

.nav-logo:hover svg {
  transform: rotate(-3deg) scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s var(--ease-out);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.4s var(--ease-out);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.65rem 1.6rem;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius-full);
  transition: all 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.nav-cta span {
  position: relative;
  z-index: 1;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 184, 0, 0.25);
}

.nav-cta:hover::before {
  transform: translateY(0);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 10;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
  background: var(--gold);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
  background: var(--gold);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .nav-link {
  font-size: var(--text-2xl);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out);
}

.mobile-menu.active .nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .nav-link:nth-child(1) {
  transition-delay: 0.08s;
}

.mobile-menu.active .nav-link:nth-child(2) {
  transition-delay: 0.14s;
}

.mobile-menu.active .nav-link:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu.active .nav-link:nth-child(4) {
  transition-delay: 0.26s;
}

.mobile-menu.active .nav-link:nth-child(5) {
  transition-delay: 0.32s;
}

.mobile-menu.active .nav-link:nth-child(6) {
  transition-delay: 0.38s;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-bottom: 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.65) 45%, rgba(10, 10, 10, 0.3) 100%);
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to top, var(--black), transparent);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 5vw, 6rem);
  max-width: 900px;
  margin-top: clamp(2rem, 15vh, 12rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(245, 184, 0, 0.06);
  border: 1px solid rgba(245, 184, 0, 0.12);
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.7s var(--ease-out) 0.6s forwards;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 184, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(245, 184, 0, 0);
  }
}

.hero-badge-text {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  animation: wordReveal 1s var(--ease-out) forwards;
}

.hero-title .line:nth-child(1) .word {
  animation-delay: 0.8s;
}

.hero-title .line:nth-child(2) .word {
  animation-delay: 0.95s;
}

.hero-title .line:nth-child(3) .word {
  animation-delay: 1.1s;
}

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

.hero-title .accent {
  color: var(--gold);
  font-style: normal;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-400);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.8s var(--ease-out) 1.3s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.8s var(--ease-out) 1.5s forwards;
}

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

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.9rem 2rem;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius-full);
  transition: all 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(245, 184, 0, 0.3);
}

.btn-primary:hover::before {
  transform: translateY(0);
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.9rem 1.8rem;
  border: 1px solid var(--gray-700);
  color: var(--white);
  border-radius: var(--radius-full);
  transition: all 0.4s var(--ease-out);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 184, 0, 0.1);
}

/* Hero scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 2.2s forwards;
}

.hero-scroll-text {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gray-600);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@keyframes scrollPulse {
  0% {
    transform: translateY(-100%);
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(100%);
  }
}

/* Checkered decorations */
.checkered-accent {
  background-image: repeating-conic-gradient(var(--gold) 0% 25%, var(--black) 0% 50%);
  background-size: 12px 12px;
}

.checkered-accent-sm {
  background-image: repeating-conic-gradient(var(--gold) 0% 25%, transparent 0% 50%);
  background-size: 8px 8px;
}

.hero-checkered-corner {
  position: absolute;
  z-index: 2;
  opacity: 0.3;
}

.hero-checkered-corner.top-right {
  top: 80px;
  right: 0;
  width: 100px;
  height: 100px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.hero-checkered-corner.bottom-left {
  bottom: 0;
  left: 0;
  width: 80px;
  height: 80px;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

/* ═══ MARQUEE — Dual direction with skew ═══ */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  transform: rotate(-1.5deg) scale(1.05);
  margin: -1.5rem 0 -1rem 0;
  z-index: 20;
}

.marquee-section {
  padding: 0.8rem 0;
  overflow: hidden;
  background: var(--gold);
}

.marquee-section.reverse {
  background: var(--charcoal);
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
}

.marquee-track {
  display: flex;
  animation: marqueeMove 25s linear infinite;
  width: max-content;
}

.marquee-track.reverse {
  animation-direction: reverse;
  animation-duration: 30s;
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  white-space: nowrap;
}

.marquee-item span {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  letter-spacing: 0.05em;
}

.marquee-section .marquee-item span {
  color: var(--black);
}

.marquee-section.reverse .marquee-item span {
  color: var(--gray-500);
}

.marquee-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.marquee-section .marquee-dot {
  background: var(--black);
}

.marquee-section.reverse .marquee-dot {
  background: var(--gold);
}

/* ═══ SECTION COMMONS ═══ */
.section {
  padding: clamp(5rem, 6vw, 10rem) clamp(1.5rem, 5vw, 6rem);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 25px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══ STORY SECTION ═══ */
.story-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.story-image-wrapper {
  position: relative;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease-out);
}

.story-image:hover img {
  transform: scale(1.06);
}

/* Image reveal mask */
.story-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  z-index: 2;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1.2s var(--ease-out);
}

.story-image-wrapper.revealed .story-image::before {
  transform: scaleX(0);
}

.story-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(245, 184, 0, 0.15);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.story-float-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  padding: 1rem 1.5rem;
  background: var(--gold);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  box-shadow: 0 10px 40px rgba(245, 184, 0, 0.2);
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.story-float-badge .number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--black);
  line-height: 1;
}

.story-float-badge .label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.1em;
}

.story-content {
  padding: 1rem 0;
}

.story-content .section-label {
  justify-content: flex-start;
}

.story-content .section-label::before {
  display: none;
}

.story-content .section-title {
  text-align: left;
}

.story-text {
  font-size: var(--text-base);
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.stat-item {
  position: relative;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1rem;
  text-align: center;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Glow gradient on hover */
.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245, 184, 0, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.stat-item:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 184, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(245, 184, 0, 0.1);
}

.stat-item:hover::before {
  opacity: 1;
}

/* Accent line at the top */
.stat-accent {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 2px 10px var(--gold);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.stat-item:hover .stat-accent {
  width: 100%;
}

/* Large faint number in background */
.stat-bg-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 8.5rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.03);
  z-index: 0;
  pointer-events: none;
  transition: all 0.6s ease;
}

.stat-item:hover .stat-bg-number {
  -webkit-text-stroke: 1px rgba(245, 184, 0, 0.1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Foreground content container */
.stat-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

/* The Number */
.stat-number {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.9;
  font-weight: normal;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(245, 184, 0, 0.3));
}

/* Suffix like '+' or 'K' */
.stat-suffix {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  margin-left: 0.2rem;
}

/* The Label */
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gray-400);
  margin-top: 0.5rem;
  transition: color 0.4s ease;
}

.stat-item:hover .stat-label {
  color: var(--white);
}

@media (max-width: 900px) {
  .story-stats {
    gap: 0.8rem;
  }
  .stat-number {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .story-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stat-item {
    padding: 3rem 1rem;
  }
}

/* ═══ MENU SECTION ═══ */
.menu-section {
  background: var(--black);
  position: relative;
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.menu-cat-btn {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-800);
  color: var(--gray-500);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}

.menu-cat-btn:hover {
  border-color: rgba(245, 184, 0, 0.3);
  color: var(--gold);
}

.menu-cat-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.menu-card {
  background: linear-gradient(145deg, var(--charcoal) 0%, rgba(10,10,10,0.95) 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.03);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Cinematic gold ambient glow from behind on hover */
.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(245, 184, 0, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
  z-index: 0;
  pointer-events: none;
}

.menu-card:hover {
  border-color: rgba(245, 184, 0, 0.25);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08), 0 0 25px rgba(245, 184, 0, 0.1);
}

.menu-card:hover::before {
  opacity: 1;
}

/* Image framing with smooth zoom */
.menu-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  z-index: 1;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s;
  will-change: transform;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Premium Vignette fading into the charcoal body */
.menu-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 40%);
  pointer-events: none;
}

/* Beautiful frosted badge */
.menu-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.8rem;
  background: rgba(245, 184, 0, 0.9);
  backdrop-filter: blur(8px);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 2;
  transition: transform 0.3s;
}

.menu-card:hover .menu-card-badge {
  transform: translateY(-2px);
}

/* The Body */
.menu-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  background: transparent;
  margin-top: -2rem; /* Pull up to overlay slightly on the vignette */
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.8rem;
  gap: 1rem;
}

.menu-card-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  transition: color 0.3s;
}

.menu-card:hover .menu-card-name {
  color: var(--gold);
}

.menu-card-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 0.8;
  flex-shrink: 0;
  text-shadow: 0 4px 10px rgba(245, 184, 0, 0.15);
}

.menu-card-desc {
  font-size: var(--text-sm);
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Menu Card Footer with action button */
.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.2rem;
  margin-top: auto;
}

.menu-card-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.menu-tag {
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--gray-300);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.menu-card:hover .menu-tag {
  border-color: rgba(245, 184, 0, 0.3);
  color: var(--gold-light);
  background: rgba(245, 184, 0, 0.05);
}

/* Elegant Add to order / Action Button */
.menu-card-action {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(245, 184, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.4s cubic-bezier(0.25, 2, 0.5, 1);
  opacity: 0;
  transform: translateX(-10px) rotate(-90deg);
  cursor: pointer;
}

.menu-card:hover .menu-card-action {
  opacity: 1;
  transform: translateX(0) rotate(0deg);
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 12px rgba(245, 184, 0, 0.4);
  border-color: var(--gold);
}

/* ═══ GALLERY — Dual track with creative hover ═══ */
.gallery-section {
  padding: clamp(5rem, 6vw, 10rem) 0;
  overflow: hidden;
  background: var(--charcoal);
  position: relative;
}

.gallery-section .section-header {
  padding: 0 clamp(1.5rem, 5vw, 6rem);
}

.gallery-tracks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.gallery-track.track-1 {
  animation: galleryMove1 50s linear infinite;
}

.gallery-track.track-2 {
  animation: galleryMove2 60s linear infinite;
}

@keyframes galleryMove1 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes galleryMove2 {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.gallery-item {
  flex-shrink: 0;
  width: clamp(250px, 22vw, 340px);
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
  filter: brightness(0.85) saturate(0.9);
}

.gallery-item:hover img {
  transform: scale(1.12);
  filter: brightness(1.1) saturate(1.1);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.7) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}

.gallery-item:hover::before {
  opacity: 1;
}

/* Instagram icon on hover */
.gallery-item::after {
  content: '◉';
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s var(--ease-out);
  font-family: var(--font-heading);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery animations continue on hover */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* ═══ LOCATIONS ═══ */
.locations-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.location-card {
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
}

/* Ambient glow */
.location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(245, 184, 0, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

.location-card:hover {
  border-color: rgba(245, 184, 0, 0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.08), 0 0 20px rgba(245, 184, 0, 0.08);
}

.location-card:hover::before {
  opacity: 1;
}

.location-number {
  position: absolute;
  top: -1rem;
  right: -1rem;
  font-family: var(--font-display);
  font-size: 8rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
}

.location-card:hover .location-number {
  -webkit-text-stroke: 1px rgba(245, 184, 0, 0.15);
  transform: scale(1.1) translate(-10px, 10px);
}

.location-icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  margin-bottom: 2rem;
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.location-card:hover .location-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(245, 184, 0, 0.3);
}

.location-name {
  position: relative;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  z-index: 1;
  transition: color 0.4s;
}

.location-card:hover .location-name {
  color: var(--gold);
}

.location-address {
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 2rem;
  z-index: 1;
  flex-grow: 1;
}

.location-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s var(--ease-out);
  z-index: 1;
}

.location-link svg {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.location-card:hover .location-link {
  color: var(--white);
  border-color: rgba(245, 184, 0, 0.3);
}

.location-card:hover .location-link svg {
  transform: translateX(6px);
  color: var(--gold);
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-section {
  background: var(--black); /* deep dark to contrast with charcoal */
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 5%;
  font-family: var(--font-display);
  font-size: clamp(15rem, 25vw, 40rem);
  color: rgba(255, 255, 255, 0.015);
  pointer-events: none;
  line-height: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1300px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.95) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
}

/* Soft gold accent line */
/* Soft gold accent line REMOVED globally to allow Magic Border */

.testimonial-card:hover {
  border-color: rgba(245, 184, 0, 0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08), 0 0 20px rgba(245, 184, 0, 0.05);
}

.testimonial-card:hover::after {
  transform: scaleX(1);
}

/* Background quote mark */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  transition: color 0.5s;
}

.testimonial-card:hover::before {
  color: rgba(245, 184, 0, 0.05);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-300);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--black);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(245, 184, 0, 0.3);
  transition: transform 0.5s cubic-bezier(0.25, 2, 0.5, 1);
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1) rotate(5deg);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.testimonial-source {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

/* ═══ HOURS SECTION ═══ */
.hours-section {
  position: relative;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 6rem);
  background: var(--black);
  display: flex;
  justify-content: center;
}

.hours-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  background: var(--charcoal);
  border: 1px solid rgba(245, 184, 0, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 6rem);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hours-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 184, 0, 0.4), transparent);
}

.hours-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hours-badge {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--black);
  background: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(245, 184, 0, 0.3);
}

.hours-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

.hours-title .accent {
  color: var(--gold);
}

.hours-time {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8.5rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 40px rgba(245, 184, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hours-separator {
  color: var(--gold);
  font-weight: 300;
  font-family: var(--font-body);
}

.hours-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-400);
  max-width: 500px;
  margin: 0 auto;
}

.hours-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(245, 184, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .hours-time {
    font-size: clamp(2.2rem, 12vw, 3.8rem);
    gap: 0.75rem;
  }
  .hours-separator {
    font-size: 0.8em;
  }
}

/* ═══ CTA SECTION ═══ */
.cta-section {
  position: relative;
  padding: clamp(5rem, 6vw, 10rem) clamp(1.5rem, 5vw, 6rem);
  overflow: hidden;
  background: var(--black);
}

.cta-inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 5rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  /* Hardware acceleration fix for mobile border-radius clipping */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
  isolation: isolate;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transform: scale(1.15);
  box-shadow: 0 0 0 20px rgba(10, 10, 10, 0.88);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content .section-title {
  margin-bottom: 0.8rem;
}

.cta-content .section-subtitle {
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-checkered-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  z-index: 1;
}


/* ═══ FAQ SECTION ═══ */
.faq-section {
  padding: 8rem 0;
  background: var(--black);
  position: relative;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.faq-grid {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--charcoal);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.faq-item:hover {
  border-color: rgba(245, 184, 0, 0.3);
}

.faq-item.active {
  border-color: var(--gold);
  background: var(--gray-900);
}

.faq-trigger {
  width: 100%;
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1.5rem;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--gray-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.4s var(--ease-out);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--black);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding: 0 2rem 2rem 2rem;
  color: var(--gray-400);
  font-size: var(--text-base);
  line-height: 1.7;
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--charcoal);
  padding: 4rem clamp(1.5rem, 5vw, 6rem) 1.5rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 184, 0, 0.15), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1.2rem;
}

.footer-desc {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--gray-500);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}

.social-link:hover {
  border-color: rgba(245, 184, 0, 0.3);
  color: var(--gold);
  transform: translateY(-3px);
  background: rgba(245, 184, 0, 0.05);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-link {
  font-size: var(--text-sm);
  color: var(--gray-500);
  transition: color 0.3s, transform 0.3s;
  cursor: pointer;
  display: inline-block;
}

.footer-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 1.5rem;
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--gray-600);
}

.footer-checkered {
  height: 4px;
  width: 80px;
}

/* ═══ SCROLL ANIMATIONS ═══ */
[data-reveal] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] {
  transform: translateX(-50px);
}

[data-reveal="left"].revealed {
  transform: translateX(0);
}

[data-reveal="right"] {
  transform: translateX(50px);
}

[data-reveal="right"].revealed {
  transform: translateX(0);
}

[data-reveal="scale"] {
  transform: scale(0.92);
}

[data-reveal="scale"].revealed {
  transform: scale(1);
}

/* Stagger */
[data-stagger]>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-stagger].revealed>* {
  opacity: 1;
  transform: translateY(0);
}

[data-stagger].revealed>*:nth-child(1) {
  transition-delay: 0.05s;
}

[data-stagger].revealed>*:nth-child(2) {
  transition-delay: 0.12s;
}

[data-stagger].revealed>*:nth-child(3) {
  transition-delay: 0.19s;
}

[data-stagger].revealed>*:nth-child(4) {
  transition-delay: 0.26s;
}

[data-stagger].revealed>*:nth-child(5) {
  transition-delay: 0.33s;
}

[data-stagger].revealed>*:nth-child(6) {
  transition-delay: 0.4s;
}


/* ═══ TEXT REVEAL ANIMATIONS ═══ */
.line-reveal {
  display: block;
  overflow: hidden;
  line-height: normal;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}

.line-reveal span {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  filter: blur(10px);
  transition: transform 1.2s var(--ease-out), opacity 1.2s var(--ease-out), filter 1.2s var(--ease-out);
}

.section-title.revealed .line-reveal span {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

/* ═══ Reduced motion ═══ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bg img {
    transform: scale(1);
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .marquee-track,
  .gallery-track {
    animation: none;
  }
}

/* ═══ SCROLL-TO-TOP BUTTON (Liquid Orb) ═══ */
.scroll-up-wrapper {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px) scale(0.9);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), visibility 0.5s;
  perspective: 400px;
  will-change: opacity, transform;
}

@media (min-width: 768px) {
  .scroll-up-wrapper {
    bottom: 3rem;
    right: 3rem;
  }
}

.scroll-up-wrapper.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-up-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-full);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 184, 0, 0.15);
  pointer-events: auto;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: inset 0 -2px 8px rgba(245, 184, 0, 0.1), inset 0 4px 12px rgba(0, 0, 0, 0.8), 0 12px 30px rgba(0, 0, 0, 0.6);
  transform-style: preserve-3d;
  will-change: transform;
}

@media (min-width: 768px) {
  .scroll-up-btn {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.scroll-up-btn.is-hovering {
  transition: transform 0.05s linear;
}

.scroll-up-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.scroll-up-btn canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.scroll-up-icon {
  position: relative;
  z-index: 10;
  width: 24px;
  height: 24px;
  color: var(--gold);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
  transition: transform 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

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

.scroll-up-glass {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  z-index: 20;
  pointer-events: none;
  background: radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  mix-blend-mode: overlay;
}

.scroll-up-glare {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  z-index: 30;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  mix-blend-mode: overlay;
}

.scroll-up-shadow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  z-index: 20;
  pointer-events: none;
  box-shadow: inset 0 -6px 15px rgba(0, 0, 0, 0.9);
}

@keyframes warpLaunch {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }

  20% {
    transform: scale(1.1, 0.8) translateY(10px);
    filter: brightness(1.5);
  }

  100% {
    transform: scale(0.5, 2.5) translateY(-150vh);
    filter: brightness(2);
  }
}

.scroll-up-btn.launching {
  animation: warpLaunch 0.7s cubic-bezier(0.5, -0.2, 0.2, 1) forwards !important;
}

/* ═══ Responsive ═══ */
@media (max-width: 1031px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-content {
    padding: 0 1.2rem;
  }

  .hero-checkered-corner {
    display: none;
  }

  .marquee-wrapper {
    transform: rotate(0) scale(1);
    margin-top: -1rem;
  }

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

  .locations-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gallery-item {
    width: clamp(200px, 50vw, 280px);
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-float-badge {
    right: 0;
    bottom: 1rem;
  }

  .menu-categories {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .menu-categories::-webkit-scrollbar {
    display: none;
  }

  .menu-cat-btn {
    flex-shrink: 0;
  }
}

/* ══════ MAGICAL MOUSE TRACKING BORDER ══════ */
.menu-card::after,
.location-card::after,
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; /* Border thickness */
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y),
    rgba(245, 184, 0, 0.8),
    transparent 40%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-out;
  z-index: 10;
}

.menu-card:hover::after,
.location-card:hover::after,
.testimonial-card:hover::after {
  opacity: 1;
}