/* =====================================================
   PACIFIC FRANCONVILLE — LUXURY DEEP SEA EDITION
   Premium Restaurant Experience
   ===================================================== */

/* ── GOOGLE FONTS ──────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────── */
:root {
  /* Color Palette - Deep Sea Luxury */
  --deep-black: #030712;
  --deep-navy: #0a1628;
  --navy: #112240;
  --ocean: #1a3a5c;
  --ocean-light: #2d5a87;
  --sky: #4a90b8;
  --gold: #c9a962;
  --gold-light: #d4b978;
  --gold-dark: #a88b4a;
  --champagne: #e8d5a3;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-light: #e5e7eb;
  --gray: #9ca3af;
  --gray-dark: #6b7280;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Space Grotesk', sans-serif;
  
  /* Spacing */
  --section-padding: clamp(80px, 12vw, 160px);
  --container-padding: clamp(20px, 5vw, 80px);
  
  /* Effects */
  --ease-elegant: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 10px 40px rgba(201, 169, 98, 0.2);
  
  /* Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Z-index layers */
  --z-base: 1;
  --z-content: 10;
  --z-nav: 100;
  --z-overlay: 200;
  --z-modal: 300;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--deep-navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body > footer,
body > .footer {
  margin-top: auto;
}

.page-wrapper {
  flex: 1 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

a:hover {
  color: var(--gold);
}

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

ul, ol {
  list-style: none;
}

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

input, select, textarea {
  font-family: inherit;
}

/* ── TYPOGRAPHY ───────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* ── LAYOUT ────────────────────────────────────────── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--dark {
  background: var(--deep-navy);
}

.section--navy {
  background: var(--navy);
}

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

/* ── NAVIGATION ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: var(--z-nav);
  padding: 0.6rem 0;
  transition: all 0.5s var(--ease-smooth);
  box-sizing: border-box;
}

.nav .container {
  max-width: 100%;
  box-sizing: border-box;
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-width: 0;
  width: 100%;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
}

.nav__brand img {
  height: 40px;
  width: auto;
  display: block;
}
.nav__brand {
  flex-shrink: 0;
}
.nav__brand img.brand-logo {
  height: 38px;
  width: auto;
  mix-blend-mode: lighten;
}
.nav__brand img[src$=".svg"] {
  filter: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  min-width: 0;
}

.nav__links a {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  position: relative;
  padding: 0.5rem 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-smooth);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a:hover {
  color: var(--gold-light);
}

.nav__links a.active {
  color: var(--gold-light);
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(201, 169, 98, 0.5);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__links a {
  white-space: nowrap;
}

.nav__lang {
  display: flex;
  gap: 0.25rem;
}

.nav__lang button {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s var(--ease-smooth);
}

.nav__lang button.active,
.nav__lang button:hover {
  color: var(--gold);
  background: rgba(201, 169, 98, 0.1);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep-black);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.7rem 1.25rem;
  min-height: 44px;
  border-radius: 50px;
  transition: all 0.4s var(--ease-smooth);
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(201, 169, 98, 0.35);
  color: var(--deep-black);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}

/* Tablet Nav (avoid overflow before mobile breakpoint) */
@media (max-width: 1280px) {
  .nav__inner {
    gap: 0.75rem;
  }
  .nav__brand img.brand-logo {
    height: 38px;
  }
  .nav__links {
    gap: 0.85rem;
  }
  .nav__links a {
    font-size: 0.75rem;
  }
  .nav__cta {
    padding: 0.55rem 0.9rem;
    font-size: 0.72rem;
  }
  .nav__lang button {
    padding: 0.3rem 0.5rem;
    font-size: 0.6rem;
  }
  .nav__actions {
    gap: 0.5rem;
  }
}

@media (max-width: 1080px) {
  .nav__links {
    gap: 0.6rem;
  }
  .nav__links a {
    font-size: 0.7rem;
  }
}

/* Mobile Nav */
@media (max-width: 960px) {
  .nav__links {
    display: none;
  }
  .nav__lang {
    display: none;
  }

  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 10001;
  }

  .nav__lang {
    display: none;
  }

  .nav .container { padding-left: 1rem; padding-right: 1rem; }
  .nav__brand img.brand-logo { height: 34px; }
  .nav__cta { padding: 0.55rem 0.85rem; font-size: 0.7rem; }
  .nav__actions { gap: 0.4rem; }
}

/* =============================================
   MOBILE MENU — Clean rewrite
   Injected by JS at end of <body>
   ============================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu[data-open="true"] {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-menu[data-open="true"] .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 380px);
  background:
    radial-gradient(ellipse at top right, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0a1628 0%, #030712 100%);
  border-left: 1px solid rgba(201, 169, 98, 0.15);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.75rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-font-smoothing: antialiased;
  overflow-y: auto;
}

.mobile-menu[data-open="true"] .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}

.mobile-menu__brand img {
  height: 38px;
  width: auto;
  display: block;
  mix-blend-mode: lighten;
}

.mobile-menu__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 169, 98, 0.25);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.mobile-menu__close:hover,
.mobile-menu__close:focus-visible {
  background: rgba(201, 169, 98, 0.18);
  border-color: var(--gold);
  transform: rotate(90deg);
}

.mobile-menu__close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.mobile-menu__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
  opacity: 0;
  transform: translateX(30px);
}

.mobile-menu[data-open="true"] .mobile-menu__nav a {
  animation: mmFadeIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.mobile-menu[data-open="true"] .mobile-menu__nav a:nth-child(1) { animation-delay: 0.15s; }
.mobile-menu[data-open="true"] .mobile-menu__nav a:nth-child(2) { animation-delay: 0.22s; }
.mobile-menu[data-open="true"] .mobile-menu__nav a:nth-child(3) { animation-delay: 0.29s; }
.mobile-menu[data-open="true"] .mobile-menu__nav a:nth-child(4) { animation-delay: 0.36s; }
.mobile-menu[data-open="true"] .mobile-menu__nav a:nth-child(5) { animation-delay: 0.43s; }

@keyframes mmFadeIn {
  to { opacity: 1; transform: translateX(0); }
}

.mobile-menu__nav a::after {
  content: '→';
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.mobile-menu__nav a:hover {
  color: var(--gold);
  padding-left: 0.4rem;
}

.mobile-menu__nav a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu__nav a.is-active {
  color: var(--gold);
  font-weight: 700;
}

.mobile-menu__nav a.is-active::after {
  content: '•';
  color: var(--gold);
  opacity: 1;
  transform: none;
  font-size: 1.4rem;
}

.mobile-menu__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 169, 98, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu__lang {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.mobile-menu__lang button {
  flex: 1;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.6rem 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.25s ease;
}

.mobile-menu__lang button.is-active,
.mobile-menu__lang button:hover {
  background: rgba(201, 169, 98, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep-black);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mobile-menu__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(201, 169, 98, 0.35);
}

.mobile-menu__phone {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.mobile-menu__phone a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

body.menu-open {
  overflow: hidden;
}

/* Hide old desktop links/lang on mobile when not open */
@media (max-width: 960px) {
  .nav__links { display: none; }
}

@media (min-width: 961px) {
  .mobile-menu { display: none; }
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  min-height: 44px;
  border-radius: 50px;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep-black);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(201, 169, 98, 0.35);
  color: var(--deep-black);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--deep-black);
}

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 0.9rem;
}

.btn--small {
  padding: 0.65rem 1.5rem;
  font-size: 0.75rem;
}

/* ── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 7, 18, 0.92) 0%, rgba(3, 7, 18, 0.4) 50%, rgba(3, 7, 18, 0.2) 100%);
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ── HERO SECTION ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

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

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 7, 18, 0.95) 0%,
    rgba(10, 22, 40, 0.9) 30%,
    rgba(10, 22, 40, 0.7) 60%,
    rgba(26, 58, 92, 0.5) 100%
  );
  z-index: 1;
}

.hero__bg img,
.hero__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero__content {
  position: relative;
  z-index: var(--z-content);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-smooth) 0.2s forwards;
}

.hero__badge::before,
.hero__badge::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__badge::before {
  background: linear-gradient(270deg, var(--gold), transparent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-smooth) 0.4s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero__title .outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
  color: transparent;
}

.hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-smooth) 0.6s forwards;
}

.hero__desc strong {
  color: var(--white);
  font-weight: 600;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-smooth) 0.8s forwards;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-smooth) 1s forwards;
}

.hero__stat {
  text-align: left;
  position: relative;
  cursor: default;
  transition: transform 0.4s var(--ease-smooth);
}

.hero__stat:hover {
  transform: translateY(-4px);
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.6s var(--ease-smooth), text-shadow 0.4s var(--ease-smooth);
  display: inline-block;
}

.hero__stat:hover .hero__stat-number {
  background-position: 100% 100%;
  text-shadow: 0 0 30px rgba(201, 169, 98, 0.4);
}

.hero__stat-number span {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
  animation: pulseGlow 2.4s var(--ease-smooth) infinite;
  display: inline-block;
}

.hero__stat-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  position: relative;
  transition: color 0.4s var(--ease-smooth);
}

.hero__stat-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.5s var(--ease-smooth);
}

.hero__stat:hover .hero__stat-label {
  color: var(--gold);
}

.hero__stat:hover .hero__stat-label::after {
  width: 100%;
}

.hero__divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 169, 98, 0.4), transparent);
  background-size: 100% 200%;
  animation: dividerShimmer 4s ease-in-out infinite;
}

@keyframes dividerShimmer {
  0%, 100% { background-position: 0% 0%; opacity: 0.4; }
  50%      { background-position: 0% 100%; opacity: 1; }
}

.hero__visual {
  position: relative;
  opacity: 0;
  animation: fadeLeft 1s var(--ease-smooth) 0.6s forwards;
}

.hero__image-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}

.hero__image-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 7, 18, 0.4) 0%,
    transparent 50%
  );
  z-index: 1;
}

.hero__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: subtleZoom 20s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__float-card {
  position: absolute;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
}

.hero__float-card--year {
  top: -2rem;
  left: -3rem;
  animation: float 6s ease-in-out infinite;
}

.hero__float-card--halal {
  bottom: 2rem;
  right: -2rem;
  animation: float 6s ease-in-out infinite 1.5s;
}

.hero__float-card-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.hero__float-card-label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@media (max-width: 960px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero__actions {
    justify-content: center;
  }
  
  .hero__stats {
    justify-content: center;
  }
  
  .hero__visual {
    display: none;
  }
}

/* ── ANIMATIONS ────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Animations */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

[data-animate="fade-up"] {
  transform: translateY(50px);
}

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

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

[data-animate="zoom-in"] {
  transform: scale(0.9);
}

[data-animate].in-view {
  opacity: 1;
  transform: translate(0) scale(1);
}

[data-delay="100"].in-view { transition-delay: 0.1s; }
[data-delay="200"].in-view { transition-delay: 0.2s; }
[data-delay="300"].in-view { transition-delay: 0.3s; }
[data-delay="400"].in-view { transition-delay: 0.4s; }
[data-delay="500"].in-view { transition-delay: 0.5s; }

/* ── SCROLL PROGRESS ───────────────────────────────── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: calc(var(--z-nav) + 1);
  width: 0;
  transition: width 0.1s linear;
}

/* ── MARQUEE ───────────────────────────────────────── */
.marquee {
  background: var(--deep-black);
  padding: 1.25rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 169, 98, 0.1);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.marquee__dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

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

/* ── SECTION HEADER ────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

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

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

.section-title {
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ── CARDS ─────────────────────────────────────────── */
.card {
  background: rgba(17, 34, 64, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.5s var(--ease-smooth);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.15), rgba(201, 169, 98, 0.05));
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ── FEATURES GRID ─────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

@media (max-width: 560px) {
  .features {
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

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

@media (max-width: 560px) {
  .features {
    grid-template-columns: 1fr;
  }
}

/* ── CONCEPT SPLIT ─────────────────────────────────── */
.concept__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 auto 3.5rem;
  color: var(--white);
  line-height: 1.1;
  position: relative;
}

.concept__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.concept__intro-video {
  max-width: 1000px;
  margin: 0 auto 4rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(201, 169, 98, 0.18);
  position: relative;
  aspect-ratio: 16 / 9;
}

.concept__intro-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.concept {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.concept__images {
  position: relative;
}

.concept__videos {
  position: relative;
}

.video-grid.video-grid--stack {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 1.25rem;
  height: auto;
  max-width: 640px;
  margin: 0 auto;
}

.video-grid.video-grid--stack .video-grid__item:first-child {
  grid-row: span 1;
}

.video-grid.video-grid--stack .video-grid__item {
  aspect-ratio: 16 / 9;
  max-height: none;
  border: 1px solid rgba(201, 169, 98, 0.15);
}

.video-grid.video-grid--stack .video-grid__item video,
.video-grid.video-grid--stack .video-grid__item img {
  filter: contrast(1.1) saturate(1.2) brightness(1.03);
}

.concept__image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-xl);
}

.concept__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept__image-secondary {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--deep-navy);
  animation: float 7s ease-in-out infinite 0.5s;
}

.concept__image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept__badge {
  position: absolute;
  top: 2rem;
  left: -2rem;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-lg);
}

.concept__badge-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.concept__badge-text {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.concept__content {
  padding: 2rem 0;
}

.concept__text {
  margin-bottom: 3rem;
  padding-top: 1.25rem;
  padding-bottom: 3rem;
}

@media (max-width: 960px) {
  .concept {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .concept__images {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .concept__image-secondary,
  .concept__badge {
    display: none;
  }
}

/* ── GALLERY BENTO ─────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 1rem;
}

/* Marquee carousel (right-to-left scroll) */
.gallery-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.gallery-marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: galleryMarqueeRight 35s linear infinite;
  will-change: transform;
}

.gallery-marquee:hover .gallery-marquee__track {
  animation-play-state: paused;
}

.gallery-marquee .gallery-grid__item {
  flex: 0 0 auto;
  width: clamp(280px, 28vw, 440px);
  height: clamp(210px, 22vw, 320px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-marquee .gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.gallery-grid__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-grid__item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-grid__item:nth-child(2) {
  grid-column: span 4;
}

.gallery-grid__item:nth-child(3) {
  grid-column: span 3;
}

.gallery-grid__item:nth-child(4) {
  grid-column: span 3;
}

.gallery-grid__item:nth-child(5) {
  grid-column: span 4;
}

.gallery-grid__item:nth-child(6) {
  grid-column: span 5;
}

.gallery-grid__item:nth-child(7) {
  grid-column: span 3;
}

.gallery-grid__item:nth-child(8) {
  grid-column: span 4;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.gallery-grid__item:hover img {
  transform: scale(1.08);
}

.gallery-grid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 7, 18, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery-grid__item:hover .gallery-grid__overlay {
  opacity: 1;
}

.gallery-grid__overlay span {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  
  .gallery-grid__item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 200px;
  }
  
  .gallery-grid__item:nth-child(1) {
    grid-column: span 2 !important;
    height: 280px;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid__item:nth-child(1) {
    grid-column: span 1 !important;
    height: 240px;
  }
}

/* ── VIDEO GRID ────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 380px;
}

.video-grid__item:first-child {
  grid-row: span 2;
}

.video-grid__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 380px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transition: transform 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth);
}

.video-grid__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6);
}

.video-grid__item video,
.video-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.15);
  image-rendering: -webkit-optimize-contrast;
  transition: filter 0.5s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.video-grid__item:hover video,
.video-grid__item:hover img {
  filter: contrast(1.12) saturate(1.25);
  transform: scale(1.03);
}

.video-grid__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 7, 18, 0.45) 0%, transparent 35%);
  z-index: 1;
  pointer-events: none;
}

.video-grid__info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
}

.video-grid__tag {
  font-family: var(--font-accent);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.video-grid__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  
  .video-grid__item:first-child {
    grid-row: span 1;
  }
  
  .video-grid__item {
    min-height: 180px;
    max-height: 220px;
  }
}

/* ── MENU SECTION ──────────────────────────────────── */
.menu-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.menu-tab {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s var(--ease-smooth);
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep-black);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.menu-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(17, 34, 64, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all 0.4s var(--ease-smooth);
}

.menu-item:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: var(--shadow-md);
}

.menu-item__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.03));
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.menu-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.menu-item__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.menu-item__desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 960px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* ── PRICING TABLE ──────────────────────────────────── */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.pricing-layout > div {
  width: 100%;
  max-width: 560px;
}

.pricing-layout .section-label,
.pricing-layout .pricing-tabs {
  justify-content: center;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  background: rgba(17, 34, 64, 0.6);
  border-radius: 50px;
  padding: 4px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  width: fit-content;
}

/* Hours grid (lunch/dinner cards) */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.hours-grid .card {
  padding: 2rem;
  background: rgba(17, 34, 64, 0.4);
  border: 1px solid rgba(201, 169, 98, 0.25) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25) !important;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
}

.hours-grid .card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.5) !important;
  box-shadow: 0 18px 60px rgba(201, 169, 98, 0.18) !important;
}

.hours-grid .card__title {
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem !important;
}

.hours-grid .card__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row__day {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-accent);
  letter-spacing: 0.02em;
}

.hours-row__time {
  color: var(--gold);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 760px) {
  .hours-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .hours-row__time {
    font-size: 0.95rem;
  }
}

.pricing-tab {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.75rem;
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s var(--ease-smooth);
}

.pricing-tab:hover {
  color: var(--white);
}

.pricing-tab.active {
  background: var(--gold);
  color: var(--deep-black);
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table td {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-table .price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold);
}

.pricing-table tr:hover td {
  background: rgba(201, 169, 98, 0.05);
}

.pricing-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(201, 169, 98, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pricing-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.6s var(--ease-smooth), box-shadow 0.6s var(--ease-smooth);
  will-change: transform;
}

.pricing-images img:nth-child(1) {
  grid-column: span 2;
  height: 280px;
  animation: floatSoft 7s ease-in-out infinite;
}

.pricing-images img:nth-child(2) {
  animation: floatSoft 6s ease-in-out infinite 1.5s;
}

.pricing-images img:nth-child(3) {
  animation: floatSoft 8s ease-in-out infinite 0.8s;
}

.pricing-images img:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-xl);
  z-index: 2;
}

@media (max-width: 960px) {
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ── COUNTER SECTION ───────────────────────────────── */
.counters {
  background: linear-gradient(180deg, #0a1628 0%, #0e2a4a 50%, var(--deep-black) 100%);
  padding: 5rem 0;
  border-top: none;
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  position: relative;
  overflow: hidden;
}

/* Seamless flow: concept-intro → counters */
.concept-intro {
  background: linear-gradient(180deg, var(--deep-navy) 0%, #0a1628 100%);
  padding-bottom: 4rem;
}
.concept-intro + .counters {
  padding-top: 0;
  margin-top: -1px;
}

.counters .container {
  position: relative;
  z-index: 2;
}

/* Counter dynamic effect */
.counter__item {
  transition: transform 0.5s var(--ease-smooth);
}

.counter__item:hover {
  transform: translateY(-6px);
}

.counter__item:hover .counter__number {
  text-shadow: 0 0 24px rgba(201, 169, 98, 0.5);
}

.counter__number {
  position: relative;
  display: inline-block;
}

.counter__number::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.6s var(--ease-smooth);
}

.counter__item:hover .counter__number::after {
  width: 80%;
}

.counters__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.counter__item {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.counter__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.1);
}

.counter__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter__label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 700px) {
  .counters__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .counter__item::after {
    display: none;
  }
}

/* ── REVIEWS ────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: rgba(17, 34, 64, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.5s var(--ease-smooth);
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 98, 0.25);
  box-shadow: var(--shadow-lg);
}

.review-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card__text {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.review-card__author {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

.review-card__source {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ── FAQ ────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s var(--ease-smooth);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-smooth);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s var(--ease-smooth);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.faq-item.open .faq-icon svg {
  stroke: var(--deep-black);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-smooth), padding 0.3s var(--ease-smooth);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* ── CTA SECTION ────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--deep-black) 0%, var(--navy) 50%, var(--ocean) 100%);
  z-index: 0;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 98, 0.15) 0%, transparent 60%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

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

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

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--deep-black);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.footer__brand .nav__brand {
  display: inline-flex;
  justify-content: center;
  align-self: center;
  margin: 0 auto;
}

.footer__brand .nav__brand img.brand-logo {
  margin: 0 auto;
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 300px;
  text-align: center;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
  align-self: center;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s var(--ease-smooth);
}

.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep-black);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__heading {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s var(--ease-smooth);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__payments {
  display: flex;
  gap: 0.5rem;
}

.footer__payment {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__brand p {
    max-width: 100%;
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── LIGHTBOX ───────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.95);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
}

.lightbox.open,
.lightbox.active {
  display: flex;
}

.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: var(--shadow-xl);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.lightbox__close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep-black);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.lightbox__nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep-black);
}

.lightbox__prev {
  left: 1.5rem;
}

.lightbox__next {
  right: 1.5rem;
}

/* ── LANGUAGE SWITCHER ──────────────────────────────── */
[data-lang] { display: none; }
[data-lang="fr"] { display: block; }
span[data-lang], a[data-lang], button[data-lang], th[data-lang], td[data-lang],
label[data-lang], li[data-lang], p[data-lang], h1[data-lang], h2[data-lang], h3[data-lang] { display: inline; }

/* ── RESPONSIVE UTILITIES ───────────────────────────── */
@media (max-width: 1100px) {
  .hero__stats {
    gap: 2rem;
  }
}

@media (max-width: 760px) {
  .section {
    padding: clamp(60px, 10vw, 100px) 0;
  }
  
  .hero__stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .hero__stat {
    min-width: calc(50% - 1rem);
    text-align: center;
  }
  
  .hero__divider {
    display: none;
  }
  
  .btn--large {
    padding: 1rem 2rem;
  }
}

/* ── PAGE WRAPPER ───────────────────────────────────── */
.page-wrapper {
  position: relative;
  z-index: var(--z-base);
}

/* ── CUSTOM SCROLLBAR ──────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--ocean);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ── SELECTION ──────────────────────────────────────── */
::selection {
  background: var(--gold);
  color: var(--deep-black);
}

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

/* ── QUOTE CTA (events page) ───────────────────────── */
.quote-cta {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
  background:
    radial-gradient(ellipse at top, rgba(201, 169, 98, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(17, 34, 64, 0.85) 0%, rgba(3, 7, 18, 0.95) 100%);
  border-radius: clamp(20px, 3vw, 32px);
  border: 1px solid rgba(201, 169, 98, 0.22);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  isolation: isolate;
}

.quote-cta::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%);
  pointer-events: none;
  z-index: -1;
}

.quote-cta__ornament {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.18) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.quote-cta__eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  background: rgba(201, 169, 98, 0.06);
}

.quote-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1rem;
}

.quote-cta__title em {
  font-style: italic;
  color: var(--gold);
}

.quote-cta__text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.quote-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.quote-cta__actions .btn {
  letter-spacing: 0.04em;
}

/* ── VISIT SECTION ─────────────────────────────────── */
.visit-section {
  position: relative;
  background: radial-gradient(ellipse at 30% 50%, #0e2a4a 0%, var(--deep-black) 70%);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: stretch;
  margin-top: 3rem;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.visit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(17, 34, 64, 0.45);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth);
}

.visit-card:hover {
  transform: translateX(6px);
  border-color: rgba(201, 169, 98, 0.4);
  background: rgba(17, 34, 64, 0.65);
}

.visit-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.12);
  color: var(--gold);
}

.visit-card__icon svg {
  width: 22px;
  height: 22px;
}

.visit-card__label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.4rem;
}

.visit-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

a.visit-card__value:hover {
  color: var(--gold);
}

.visit-map {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.7) brightness(0.95);
}

@media (max-width: 900px) {
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .visit-map {
    min-height: 320px;
  }
}

/* ── EXTRA ANIMATIONS ──────────────────────────────── */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 10px 40px rgba(201, 169, 98, 0.2); }
  50% { box-shadow: 0 12px 50px rgba(201, 169, 98, 0.45); }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6px, -6px); }
}

/* CTA — gentle pulsing glow */
.nav__cta {
  animation: pulseGlow 3.2s var(--ease-smooth) infinite;
}

/* Hover lifts */
.btn,
.card,
.hero__float-card {
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth);
}

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

.card:hover {
  transform: translateY(-6px);
}

/* Floating accents */
.hero__badge {
  animation: fadeUp 0.8s var(--ease-smooth) 0.2s forwards, floatSoft 6s var(--ease-smooth) 1.2s infinite;
}

.hero__float-card--year {
  animation: floatSoft 5s var(--ease-smooth) infinite;
}

.hero__float-card--halal {
  animation: floatSoft 5s var(--ease-smooth) 1s infinite;
}

/* Shimmer on section labels */
.section-label {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 25%, var(--gold) 50%, var(--gold-light) 75%, var(--gold) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

/* Image zoom on hover for figures */
.card img,
.video-grid__item img,
.hero__image-main img {
  transition: transform 0.8s var(--ease-smooth);
}

.card:hover img,
.video-grid__item:hover img,
.hero__image-main:hover img {
  transform: scale(1.05);
}

/* Underline grow for nav links */
.nav__links a::after {
  transition: width 0.4s var(--ease-smooth);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ── PRINT STYLES ───────────────────────────────────── */
@media print {
  .nav,
  .lightbox,
  #progress-bar {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}
