/* ═══════════════════════════════════════════════════════
   SKY HI DINING — PREMIUM STYLESHEET
   Palette: Deep teal #0b3d3b, Gold #c9a84c, Dark #080e0e
═══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-dark: #a87830;
  --teal: #0d5c5a;
  --teal-deep: #072a29;
  --teal-mid: #0f4a48;
  --bg: #080e0e;
  --bg-2: #0e1818;
  --surface: #111d1d;
  --surface-2: #172525;
  --text: #f0ede6;
  --text-muted: #9aada9;
  --border: rgba(201, 168, 76, 0.18);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --dur-fast: 150ms;
  --dur-base: 280ms;
  --dur-slow: 500ms;
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0.0, 0.2, 1);

  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.12);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: auto;
  /* Lenis handles smooth */
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

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

ul {
  list-style: none;
}

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

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

/* ── ACCESSIBILITY: KEYBOARD FOCUS INDICATOR (R-32) ── */
:focus-visible {
  outline: 2px solid var(--gold) !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.4) !important;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* ── CONTAINER ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--sp-6);
  }
}

/* ── TYPOGRAPHY ── */
.section-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}

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

.section-h2.centered {
  text-align: center;
}

.section-h2.light {
  color: #fff;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

.eyebrow.centered {
  text-align: center;
}

.eyebrow.light {
  color: rgba(240, 208, 128, 0.8);
}

.body-text {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.0625rem;
}

/* ══════════════════ PRELOADER ══════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  display: flex;
  justify-content: center;
}

.preloader-logo img {
  width: 160px;
  height: auto;
  margin: 0 auto var(--sp-8);
  display: block;
}

.preloader-bar {
  width: 200px;
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
  margin: 0 auto var(--sp-3);
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.05s linear;
}

.preloader-pct {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ══════════════════ CURSOR ══════════════════ */
#cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform var(--dur-fast) ease, opacity var(--dur-fast) ease;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width var(--dur-base) ease, height var(--dur-base) ease,
    border-color var(--dur-base) ease;
}

body.cursor-hover #cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
}

body.cursor-text #cursor-ring {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
}

/* ══════════════════ NAVBAR ══════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) var(--sp-8);
  transition: background var(--dur-slow) ease, padding var(--dur-slow) ease,
    backdrop-filter var(--dur-slow) ease;
}

#navbar.scrolled {
  background: rgba(8, 14, 14, 0.85);
  backdrop-filter: blur(16px);
  padding: var(--sp-3) var(--sp-8);
  border-bottom: 1px solid var(--border);
}

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: var(--sp-8);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(240, 237, 230, 0.75);
  letter-spacing: 0.06em;
  position: relative;
  transition: color var(--dur-base) ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}

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

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #070e0e !important;
  background: var(--gold);
  padding: var(--sp-2) var(--sp-6);
  border-radius: var(--radius-full);
  transition: background var(--dur-base) ease, transform var(--dur-base) ease, color var(--dur-base) ease;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: #070e0e !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform var(--dur-base);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  text-align: center;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text);
}

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

.mobile-cta {
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  background: var(--gold);
  color: var(--bg) !important;
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--radius-full);
  font-weight: 500 !important;
}

.mobile-close {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-8);
  font-size: 1.5rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  pointer-events: auto;
  z-index: 999;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: none;
}

.mobile-close:hover {
  color: var(--text);
}

/* ══════════════════ HERO ══════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.hero-video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(8, 14, 14, 0.68) 0%,
      rgba(8, 14, 14, 0.48) 35%,
      rgba(8, 14, 14, 0.78) 75%,
      rgba(8, 14, 14, 0.98) 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(8, 14, 14, 0.2) 20%, rgba(8, 14, 14, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--sp-6);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: var(--sp-6);
  overflow: hidden;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.85), 0 2px 10px rgba(0, 0, 0, 0.6);
}

.ht-line {
  display: block;
  overflow: hidden;
}

.ht-inner {
  display: block;
  transform: translateY(110%);
}

.italic-line .ht-inner {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(240, 237, 230, 0.85);
  line-height: 1.7;
  margin-bottom: var(--sp-10);
  opacity: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  opacity: 0;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--gold);
  color: #070e0e !important;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur-base) ease, box-shadow var(--dur-base) ease, background var(--dur-base) ease;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform var(--dur-slow) var(--ease-out);
  z-index: -1;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.35);
  color: #070e0e !important;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary *,
.btn-primary:hover * {
  color: #070e0e !important;
}

.btn-arr {
  font-size: 1.1rem;
  transition: transform var(--dur-base);
}

.btn-primary:hover .btn-arr {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: rgba(240, 237, 230, 0.8);
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(240, 237, 230, 0.25);
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-full);
  transition: color var(--dur-base), border-color var(--dur-base), transform var(--dur-base);
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--radius-full);
  transition: background var(--dur-base), color var(--dur-base), transform var(--dur-base);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}

/* Hero stats */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-10);
  padding: var(--sp-6) var(--sp-8);
  background: linear-gradient(to top, rgba(8, 14, 14, 0.95) 0%, transparent 100%);
  opacity: 0;
}

.stat {
  text-align: center;
}

.stat-val {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat-val sup {
  font-size: 1rem;
  vertical-align: super;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--sp-1);
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ══════════════════ MARQUEE ══════════════════ */
.marquee-wrap {
  overflow: hidden;
  padding: var(--sp-4) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
}

.marquee-sep {
  color: var(--gold);
  font-size: 0.6rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.marquee-wrap:hover .marquee-inner {
  animation-play-state: paused;
}

/* ══════════════════ ABOUT ══════════════════ */
.about-section {
  padding: var(--sp-24) 0;
  background: var(--bg-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 560px;
  box-shadow: var(--shadow-lg);
}

.about-img {
  object-fit: cover;
  height: 100%;
}

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

.about-badge {
  position: absolute;
  bottom: var(--sp-6);
  right: var(--sp-6);
  background: var(--gold);
  color: var(--bg);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-md);
  text-align: center;
}

.about-badge span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.about-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.about-accent-box {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 160px;
  height: 160px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
  z-index: -1;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.about-text-col .eyebrow {
  margin-bottom: 0;
}

.about-text-col .body-text {
  font-size: 1.0625rem;
}

.chef-sig {
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}

.sig-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold);
}

.sig-role {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: var(--sp-1);
}

/* ══════════════════ STATEMENT ══════════════════ */
.statement-section {
  padding: var(--sp-24) 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--teal-deep) 50%, #051614 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.statement-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
  text-align: center;
}

@media (max-width: 960px) {
  .statement-section {
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--teal-deep) 50%, #041412 100%);
  }
}

.statement-p {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.3;
  color: rgba(240, 237, 230, 0.6);
}

.st {
  display: inline-block;
  transition: color 0.3s;
}

.italic-st {
  font-style: italic;
}

/* ══════════════════ MENU ══════════════════ */
.menu-section {
  padding: var(--sp-24) 0;
  background: var(--bg-2);
}

.menu-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-8) var(--sp-12);
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

.menu-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow) ease,
    border-color var(--dur-slow) ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
  border-color: rgba(201, 168, 76, 0.4);
}

.featured-card {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: var(--shadow-gold);
}

.featured-tag {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  z-index: 3;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-full);
}

.card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-img {
  transition: transform var(--dur-slow) var(--ease-out);
}

.menu-card:hover .card-img {
  transform: scale(1.06);
}

.card-cat-badge {
  position: absolute;
  bottom: var(--sp-3);
  right: var(--sp-3);
  background: var(--border);
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.card-body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.card-category {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}

.card-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
}

.card-btn {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: color var(--dur-base), border-color var(--dur-base), transform var(--dur-base);
}

.card-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateX(3px);
}

.menu-cta {
  text-align: center;
  margin-top: var(--sp-12);
}

/* ══════════════════ CONCEPT VIDEO ══════════════════ */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
  z-index: 1;
}

.video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.video-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(8, 14, 14, 0.95) 30%, rgba(8, 14, 14, 0.5) 60%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.video-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to top, var(--bg) 0%, rgba(8, 14, 14, 0.95) 30%, rgba(8, 14, 14, 0.5) 60%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* ══════════════════ EXPERIENCE ══════════════════ */

.testi-section {
  padding: var(--sp-24) 0;
  background: var(--bg);
  overflow: hidden;
}

.testi-section .container {
  margin-bottom: var(--sp-12);
}

.testi-slider {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--sp-8);
}

.testi-track {
  display: flex;
  gap: var(--sp-8);
  transition: transform 0.6s var(--ease-out);
}

.testi-card {
  min-width: 100%;
  padding: var(--sp-10);
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-8);
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: rgba(201, 168, 76, 0.12);
  pointer-events: none;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  margin-bottom: var(--sp-6);
}

.testi-quote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(240, 237, 230, 0.95);
  margin-bottom: var(--sp-8);
}

.testi-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}

.testi-author strong {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
}

.testi-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--dur-base), border-color var(--dur-base), transform var(--dur-base);
}

.testi-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}

.testi-dots {
  display: flex;
  gap: var(--sp-2);
}

.tdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background var(--dur-base), transform var(--dur-base);
}

.tdot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ══════════════════ RESERVATION ══════════════════ */
.reserve-section {
  padding: var(--sp-24) 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--teal-deep) 100%);
  position: relative;
  overflow: hidden;
}

.reserve-deco {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.reserve-content {
  max-width: 800px;
}

.reserve-content .section-h2 {
  margin: var(--sp-3) 0 var(--sp-4);
}

.reserve-content .body-text {
  margin-bottom: var(--sp-10);
}

/* Form */
.reserve-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-4);
}

.form-grp {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-grp.wide {
  grid-column: 1 / -1;
}

label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  padding: var(--sp-3) var(--sp-4);
  font-size: 0.9375rem;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.submit-btn {
  align-self: flex-start;
  margin-top: var(--sp-4);
  font-size: 1rem;
  padding: var(--sp-4) var(--sp-10);
}

/* ══════════════════ FOOTER ══════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--sp-12);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-12);
}

.footer-logo {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: var(--sp-4);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: var(--sp-6);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* justify-content: center; */
  gap: var(--sp-4);
}

.soc-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--dur-base), border-color var(--dur-base), transform var(--dur-base);
}

.soc-link svg {
  width: 18px;
  height: 18px;
}

.soc-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-6);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-col a:not(.soc-link) {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--dur-base), transform var(--dur-base);
  display: inline-block;
}

.footer-col a:not(.soc-link):hover {
  color: var(--text);
  transform: translateX(4px);
}

.footer-info li {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}

.footer-info span:first-child {
  font-size: 1rem;
  margin-top: 1px;
}

.footer-info span:last-child {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) var(--sp-8);
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
}

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

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .about-img-frame {
    height: 400px;
    max-width: 500px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {

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

  .nav-hamburger {
    display: flex;
  }

  #navbar {
    padding: var(--sp-4) var(--sp-6);
  }

  .nav-logo-img {
    margin-top: 4px;
  }

  /* Footer: 2 columns in mobile - Navigate & Arrival side by side */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  /* ── HERO MOBILE REDESIGN (No overlapping) ── */
  #hero {
    min-height: 100svh;
    min-height: 100dvh;
    height: auto;
    padding: calc(var(--sp-16) + 24px) var(--sp-4) var(--sp-6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .hero-content {
    margin: auto 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-eyebrow {
    margin-bottom: var(--sp-3);
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    gap: var(--sp-2);
  }

  .eyebrow-line {
    width: 24px;
  }

  .hero-title {
    font-size: clamp(2.3rem, 9vw, 3.2rem);
    line-height: 1.12;
    margin-bottom: var(--sp-3);
    letter-spacing: -0.02em;
  }

  .hero-sub {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: var(--sp-6);
    padding: 0 var(--sp-2);
    max-width: 360px;
  }

  .hero-btns {
    flex-direction: column;
    gap: var(--sp-3);
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 13px var(--sp-6);
    font-size: 0.875rem;
    text-align: center;
  }

  .hero-scroll {
    display: none;
    /* Hide scroll indicator on mobile to eliminate overlap */
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 380px;
    margin: var(--sp-6) auto 0;
    padding: var(--sp-3) var(--sp-2);
    gap: var(--sp-2);
    background: rgba(14, 24, 24, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }

  .stat {
    flex: 1;
    text-align: center;
  }

  .stat-val {
    font-size: 1.35rem;
    line-height: 1.1;
  }

  .stat-val sup {
    font-size: 0.75rem;
  }

  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    margin-top: var(--sp-1);
  }

  .stat-sep {
    width: 1px;
    height: 24px;
    background: var(--border);
  }

  /* ── OTHER MOBILE STYLES ── */
  .menu-cards {
    grid-template-columns: 1fr;
  }


  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--sp-3);
    text-align: center;
  }

  #cursor-dot,
  #cursor-ring {
    display: none;
  }

  body {
    cursor: default;
  }

  button {
    cursor: pointer;
  }

  .statement-section {
    min-height: auto;
    padding: var(--sp-16) 0;
  }

  .statement-p {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }
}

/* ══════════════════ GSAP HELPERS ══════════════════ */
.gsap-hidden {
  opacity: 0;
}

.gsap-up {
  opacity: 0;
  transform: translateY(40px);
}

/* ══════════════════════════════════════════════════
   CSS ICON LIBRARY — Pure CSS, no emoji
   All icons drawn with borders + pseudo-elements
   using var(--gold) brand color
══════════════════════════════════════════════════ */

/* ── Shared base ── */
.feat-icon,
.icon-pin,
.icon-phone,
.icon-mail,
.icon-clock {
  position: relative;
  flex-shrink: 0;
}

/* ── Experience feature icons (28px) ── */
.feat-icon {
  width: 28px;
  height: 28px;
}

/* ── Footer info icons (18px) ── */
.footer-info .icon-pin,
.footer-info .icon-phone,
.footer-info .icon-mail,
.footer-info .icon-clock {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

/* ── footer-info list layout ── */
.footer-info li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* ───── icon-city  (two building columns) ───── */
.icon-city::before,
.icon-city::after {
  content: '';
  position: absolute;
  bottom: 0;
  background: var(--gold);
  border-radius: 1px 1px 0 0;
}

.icon-city::before {
  left: 2px;
  width: 10px;
  height: 60%;
}

.icon-city::after {
  right: 2px;
  width: 8px;
  height: 82%;
}

/* ───── icon-plate  (circle + centre line = plate & fork) ───── */
.icon-plate::before {
  content: '';
  position: absolute;
  inset: 2px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

.icon-plate::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5px;
  height: 55%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

/* ───── icon-music  (stem + oval note head) ───── */
.icon-music::before {
  content: '';
  position: absolute;
  right: 5px;
  top: 2px;
  width: 1.5px;
  height: 68%;
  background: var(--gold);
}

.icon-music::after {
  content: '';
  position: absolute;
  right: 2px;
  bottom: 4px;
  width: 9px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: rotate(-15deg);
}

/* ───── icon-glass  (champagne flute) ───── */
.icon-glass {
  overflow: visible;
}

.icon-glass::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 16px;
  border: 1.5px solid var(--gold);
  border-bottom: none;
  clip-path: polygon(18% 0%, 82% 0%, 100% 100%, 0% 100%);
}

.icon-glass::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 1.5px;
  background: var(--gold);
  box-shadow: 0 -5px 0 var(--gold);
}

/* ───── icon-pin  (map location pin) ───── */
.icon-pin::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 11px;
  height: 11px;
  border: 1.5px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: translateX(-50%) rotate(-45deg);
}

.icon-pin::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
}

/* ───── icon-phone  (handset arc) ───── */
.icon-phone::before {
  content: '';
  position: absolute;
  inset: 1px;
  border: 1.5px solid var(--gold);
  border-radius: 40% 5px 40% 5px;
  transform: rotate(-30deg);
  box-shadow:
    inset 4px 4px 0 2px var(--bg),
    inset -4px -4px 0 2px var(--bg);
}

/* ───── icon-mail  (envelope) ───── */
.icon-mail::before {
  content: '';
  position: absolute;
  inset: 2px 1px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
}

.icon-mail::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 1px;
  right: 1px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 6px solid var(--gold);
}

/* ───── icon-clock  (clock face + hands) ───── */
.icon-clock::before {
  content: '';
  position: absolute;
  inset: 1px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

.icon-clock::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  width: 1.5px;
  height: 5px;
  background: var(--gold);
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(15deg);
  box-shadow: 3px 2px 0 -0.5px var(--gold);
}

/* ══════════════════ LOCATION & MAP SECTION ══════════════════ */
.location-section {
  padding: var(--sp-24) 0;
  background: linear-gradient(180deg, var(--teal-deep) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.location-header {
  max-width: 700px;
  margin: 0 auto var(--sp-12);
  text-align: center;
}

.location-header .section-h2 {
  margin: var(--sp-2) 0 var(--sp-4);
}

.location-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: var(--sp-8);
  align-items: stretch;
}

.location-card {
  background: rgba(17, 29, 29, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.loc-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  align-self: flex-start;
  margin-bottom: var(--sp-5);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

.loc-venue-name {
  font-family: var(--font-serif);
  font-size: 2.15rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.15;
}

.loc-venue-desc {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: var(--sp-6);
}

.loc-details-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.loc-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.loc-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.loc-icon svg {
  width: 19px;
  height: 19px;
}

.loc-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.loc-val {
  font-size: 0.925rem;
  color: rgba(240, 237, 230, 0.9);
  line-height: 1.5;
}

.loc-val a {
  color: var(--gold-light);
  transition: color var(--dur-fast);
}

.loc-val a:hover {
  color: #fff;
  text-decoration: underline;
}

.loc-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}

.loc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.875rem;
}

.loc-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  font-size: 0.875rem;
}

/* Map Frame */
.location-map-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(201, 168, 76, 0.08);
  min-height: 500px;
}

.map-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(14, 24, 24, 0.96);
  border-bottom: 1px solid var(--border);
}

.map-topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.map-title-tag {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
}

.map-expand-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: color var(--dur-fast), transform var(--dur-fast);
}

.map-expand-link:hover {
  color: var(--gold-light);
  transform: translateX(2px);
}

.map-embed-wrapper {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 440px;
  position: relative;
}

.map-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

  .location-map-frame {
    min-height: 420px;
  }

  .map-embed-wrapper {
    min-height: 380px;
  }
}



/* ════════════════════════════════════════ EXPERIENCE — ACCORDION CURTAIN ════════════════════════════════════════════════════ */
.exp-curtain-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #041412;
}

/* Floating centered header */
.exp-curtain-header {
  position: relative;
  z-index: 5;
  padding: 68px 32px 26px;
  text-align: center;
  pointer-events: none;
}

.exp-curtain-header .exp-kicker {
  margin-bottom: 14px;
}

.exp-curtain-header .exp-serif-title {
  margin-bottom: 0;
}

/* Curtain: three equal panels */
.exp-curtain {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  width: 100%;
}

.exp-panel {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-panel+.exp-panel {
  border-left: 1px solid rgba(223, 191, 108, 0.25);
}

.exp-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: filter;
}

/* Dark gradient scrim keeps white/gold text crisp */
.exp-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 14, 14, 0.92) 0%, rgba(8, 14, 14, 0.35) 52%, rgba(8, 14, 14, 0.05) 100%);
  pointer-events: none;
}

.exp-panel-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.exp-num {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #dfbf6c;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.exp-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.12;
  white-space: nowrap;
}

.exp-sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #dfbf6c;
  margin-bottom: 12px;
  white-space: nowrap;
}

/* Collapsed by default, cleanly revealed on hover */
.exp-copy,
.exp-arrow {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-copy {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(240, 237, 230, 0.78);
  max-width: 340px;
}

.exp-arrow {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  color: #dfbf6c;
}

.exp-arrow svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover accordion: active ~60%, inactive ~20% each */
.exp-curtain:hover .exp-panel:not(:hover) {
  flex: 0.65;
}

.exp-panel:hover {
  flex: 1.7;
}

.exp-panel:hover .exp-video {
  filter: brightness(1);
}

.exp-panel:hover .exp-copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.exp-panel:hover .exp-arrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.14s;
}

.exp-panel:hover .exp-arrow svg {
  transform: translateX(6px);
}

/* Reduced motion: no dim/pull, keep readable */
@media (prefers-reduced-motion: reduce) {

  .exp-panel,
  .exp-copy,
  .exp-arrow {
    transition: none;
  }
}

/* ══ Mobile fallback (<900px): stacked cards, content visible ══ */
@media (max-width: 900px) {
  .exp-curtain-section {
    height: auto;
    min-height: 0;
  }

  .exp-curtain {
    flex-direction: column;
  }

  .exp-panel {
    flex: none;
    height: 250px;
  }

  .exp-panel:hover,
  .exp-curtain:hover .exp-panel:not(:hover) {
    flex: none;
  }

  .exp-panel+.exp-panel {
    border-left: none;
    border-top: 1px solid rgba(223, 191, 108, 0.25);
  }

  .exp-video {
    filter: brightness(0.72);
  }

  .exp-copy,
  .exp-arrow {
    opacity: 1;
    transform: none;
  }

  .exp-panel-content {
    padding: 20px 20px 22px;
  }

  .exp-curtain-header {
    padding: 52px 24px 20px;
  }
}

/* Deep Emerald Ambiance Base */
.menu-section {
  position: relative;
  background: linear-gradient(180deg, #051614 0%, #041412 12%, #041412 100%);
  /* Fades from statement's end colour into the emerald base */
  padding: 120px 0;
  overflow: hidden;
}

.menu-bg-glow {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 46, 41, 0.65) 0%, rgba(5, 22, 20, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
}

.menu-sub-lead {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(240, 237, 230, 0.65);
  text-align: center;
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.6;
}

/* 2-Column Split Stage */
.chef-stage {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 70px;
  align-items: center;
  margin: 70px auto 60px;
}

/* Left Plinth / Image Portal */
.stage-visual-col {
  position: relative;
  perspective: 1000px;
}

.visual-frame {
  position: relative;
  width: 100%;
  height: 540px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(223, 191, 108, 0.25);
  background: #020b0a;
}

.dish-media-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.dish-stage-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.92) contrast(1.04);
}

.dish-stage-img.active {
  opacity: 1;
  transform: scale(1);
}

.frame-edge-gold {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(223, 191, 108, 0.35);
  pointer-events: none;
  border-radius: 4px;
}

.frame-badge {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #dfbf6c;
  background: rgba(4, 18, 16, 0.82);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 2px;
  border: 1px solid rgba(223, 191, 108, 0.3);
}

/* Right Column: Gastronomy Ledger */
.stage-ledger-col {
  display: flex;
  flex-direction: column;
}

.ledger-item {
  position: relative;
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(240, 237, 230, 0.1);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.ledger-item:first-child {
  padding-top: 0;
}

.ledger-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(223, 191, 108, 0.4);
  margin-top: 4px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.ledger-content {
  flex: 1;
}

.ledger-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.ledger-title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, transform 0.3s ease;
}

.ledger-desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: rgba(240, 237, 230, 0.55);
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    margin 0.3s ease;
}

.ledger-tasting-notes {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #dfbf6c;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Dietary Indicators */
.diet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.veg-dot {
  background: #48bb78;
  box-shadow: 0 0 8px rgba(72, 187, 120, 0.6);
}

.nonveg-dot {
  background: #e53e3e;
  box-shadow: 0 0 8px rgba(229, 62, 62, 0.6);
}

.beverage-dot {
  background: #38bdf8;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
}

/* Active Item State */
.ledger-item.active {
  border-bottom-color: rgba(223, 191, 108, 0.4);
}

.ledger-item.active .ledger-title {
  color: #ffffff;
  transform: translateX(6px);
}

.ledger-item.active .ledger-num {
  color: #dfbf6c;
  transform: translateX(4px);
}

.ledger-item.active .ledger-desc {
  max-height: 100px;
  opacity: 1;
  margin-top: 6px;
  margin-bottom: 10px;
  color: rgba(240, 237, 230, 0.85);
}

.ledger-item.active .ledger-tasting-notes {
  max-height: 25px;
  opacity: 0.85;
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .chef-stage {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visual-frame {
    height: 380px;
  }
}


/* Deep Emerald Environment */
.menu-section {
  position: relative;
  background: linear-gradient(180deg, #051614 0%, #041412 10%, #041412 100%);
  /* Top fades from statement's #051614 → emerald #041412 — no hard line */
  padding: 100px 0;
  overflow: hidden;
}

.menu-ambient-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(13, 49, 44, 0.45) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.menu-sub-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(240, 237, 230, 0.65);
  text-align: center;
  margin-top: 10px;
}

/* 4-Item Grid */
.menu-section .container {
  max-width: 1400px;
}

.menu-square-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 60px 0 50px;
}

/* Dish Container */
.menu-square-grid .dish-item {
  display: flex;
  flex-direction: column;
  background: rgba(10, 28, 26, 0.5);
  border: 1px solid rgba(223, 191, 108, 0.18);
  border-radius: 4px;
  padding: 14px;
}

/* 1:1 Aspect Ratio Square Image Frame */
.dish-square-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 3px;
  overflow: hidden;
  background: #020b0a;
}

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

/* Luxury Inset Border */
.dish-frame-border {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(223, 191, 108, 0.25);
  pointer-events: none;
  border-radius: 2px;
}

/* Minimalist Dietary Badge */
.dish-diet-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(4, 20, 18, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dish-diet-badge .diet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dish-diet-badge.veg .diet-dot {
  background: #48bb78;
  box-shadow: 0 0 6px #48bb78;
}

.dish-diet-badge.nonveg .diet-dot {
  background: #f56565;
  box-shadow: 0 0 6px #f56565;
}

.dish-diet-badge.beverage .diet-dot {
  background: #38bdf8;
  box-shadow: 0 0 6px #38bdf8;
}

/* Static Text Layout */
.dish-info {
  display: flex;
  flex-direction: column;
  padding: 18px 6px 6px;
}

.dish-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.dish-cat {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #dfbf6c;
}

.dish-index {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(223, 191, 108, 0.5);
}

.dish-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.25;
}

.dish-desc {
  font-family: var(--font-sans);
  font-size: 0.87rem;
  line-height: 1.6;
  color: rgba(240, 237, 230, 0.7);
  margin-bottom: 14px;
}

/* Subtle Tasting Note Accents */
.dish-accents {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.dish-pill {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: rgba(223, 191, 108, 0.9);
  background: rgba(223, 191, 108, 0.08);
  border: 1px solid rgba(223, 191, 108, 0.18);
  padding: 3px 8px;
  border-radius: 2px;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 1024px) {
  .menu-square-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


/* Section Base */
.location-section {
  position: relative;
  background: #03100e;
  /* Darkest forest base */
  padding: 120px 0;
  border-top: 1px solid rgba(223, 191, 108, 0.12);
}

.location-header {
  max-width: 620px;
  margin: 0 auto 64px;
  text-align: center;
}

.location-sub {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(240, 237, 230, 0.65);
  margin-top: 12px;
}

/* 2-Column Monolithic Split */
.arrival-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 60px;
  align-items: stretch;
}

/* Left Concierge Column */
.arrival-concierge {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(8, 25, 23, 0.4);
  border: 1px solid rgba(223, 191, 108, 0.18);
  border-radius: 4px;
  padding: 44px 40px;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #dfbf6c;
  margin-bottom: 20px;
}

.pulse-ring {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #48bb78;
  box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.2);
}

.arrival-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 4px;
}

.arrival-tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(240, 237, 230, 0.5);
  margin-bottom: 36px;
}

/* Specification Blocks (Replaces the generic icon list) */
.concierge-specs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid rgba(240, 237, 230, 0.08);
  padding-top: 28px;
  margin-bottom: 36px;
}

.spec-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #dfbf6c;
}

.spec-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #ffffff;
  line-height: 1.4;
}

.spec-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.spec-value a:hover {
  color: #dfbf6c;
}

.spec-note {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(240, 237, 230, 0.55);
}

/* Actions */
.arrival-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.arrival-btn,
.arrival-btn-ghost {
  padding: 12px 24px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Right Map Viewport */
.arrival-viewport {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.viewport-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 4px;
  overflow: hidden;
  background: #020b0a;
  border: 1px solid rgba(223, 191, 108, 0.2);
}

/* Monochromatic Luxury Map Filter */
.arrival-map-iframe {
  width: 100%;
  height: 100%;
  filter: invert(90%) hue-rotate(180deg) contrast(1.1) brightness(0.85) grayscale(40%);
  opacity: 0.9;
  transition: filter 0.5s ease, opacity 0.5s ease;
}

.viewport-inner:hover .arrival-map-iframe {
  filter: invert(90%) hue-rotate(180deg) contrast(1) brightness(0.95) grayscale(15%);
  opacity: 1;
}

.map-gold-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(223, 191, 108, 0.2);
  pointer-events: none;
  border-radius: 2px;
}

.map-caption-row {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.4);
}

/* Breakpoints */
@media (max-width: 960px) {
  .arrival-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .viewport-inner {
    min-height: 360px;
  }
}




















/* The Concierge Dossier Card */
.concierge-dossier {
  position: relative;
  background: rgba(4, 20, 18, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(223, 191, 108, 0.22);
  border-radius: 4px;
  padding: 44px 38px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.65);
}

/* Map card — same border/radius, no padding, iframe bleeds edge-to-edge */
.map-card {
  position: relative;
  border: 1px solid rgba(223, 191, 108, 0.22);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.65);
  min-height: 420px;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.7) brightness(0.88);
  pointer-events: none; /* Disables scroll hijacking by default */
  transition: filter var(--dur-base) ease;
}

.map-card.is-active iframe {
  pointer-events: auto;
  filter: saturate(0.9) brightness(0.96);
}

/* Click-to-Interact Overlay */
.map-interact-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 14, 14, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  cursor: pointer;
  opacity: 1;
  transition: opacity var(--dur-base) ease, background var(--dur-base) ease;
}

.map-card.is-active .map-interact-overlay {
  opacity: 0;
  pointer-events: none;
}

.map-interact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(14, 24, 24, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 999px;
  color: var(--gold-light, #dfbf6c);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: transform var(--dur-fast) ease, border-color var(--dur-fast) ease;
}

.map-interact-overlay:hover .map-interact-badge {
  transform: scale(1.04);
  border-color: var(--gold-light, #dfbf6c);
}

/* Subtle background watermark */
.dossier-watermark {
  position: absolute;
  top: 24px;
  right: -10px;
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 600;
  color: rgba(223, 191, 108, 0.04);
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
}

/* Header */
.dossier-head {
  position: relative;
  z-index: 1;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(223, 191, 108, 0.15);
}

.dossier-status-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #dfbf6c;
  margin-bottom: 12px;
}

.dossier-divider {
  opacity: 0.4;
}

.dossier-hours {
  color: rgba(240, 237, 230, 0.7);
}

.dossier-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.dossier-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(240, 237, 230, 0.5);
  letter-spacing: 0.06em;
}

/* Tabular Ledger */
.dossier-ledger {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 0;
}

.ledger-row {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 16px;
  align-items: baseline;
}

.l-key {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dfbf6c;
}

.l-val {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.val-primary {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: #ffffff;
  line-height: 1.35;
  margin: 0;
}

.val-link {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.val-link:hover {
  color: #dfbf6c;
}

.val-secondary {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: rgba(240, 237, 230, 0.48);
  line-height: 1.4;
}

/* Action Bar */
.dossier-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(223, 191, 108, 0.15);
}

.dossier-primary-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #dfbf6c;
  color: #03100e;
  padding: 13px 20px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.dossier-primary-action:hover {
  background: #f0d58e;
  transform: translateY(-2px);
}

.action-arrow {
  font-size: 0.85rem;
}

.dossier-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid rgba(223, 191, 108, 0.35);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #dfbf6c;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.dossier-secondary-action:hover {
  border-color: #dfbf6c;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 600px) {
  .concierge-dossier {
    padding: 30px 22px 26px;
  }

  .ledger-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .dossier-actions {
    flex-direction: column;
  }

  .dossier-secondary-action {
    width: 100%;
  }
}


/* Footer Base */
.lux-footer {
  position: relative;
  background: #020c0a;
  /* Darkest obsidian emerald */
  padding: 100px 0 40px;
  overflow: hidden;
  border-top: 1px solid rgba(223, 191, 108, 0.18);
}

.footer-ambient-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(13, 49, 44, 0.35) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

/* Masthead Row */
.footer-masthead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 40px;
}

.masthead-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  height: 105px;
  width: auto;
  object-fit: contain;
}

.footer-est {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #dfbf6c;
}

.masthead-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cta-kicker {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(223, 191, 108, 0.8);
  margin-bottom: 4px;
}

.masthead-phone {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 300;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.masthead-phone:hover {
  color: #dfbf6c;
}

.cta-sub {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: rgba(240, 237, 230, 0.5);
  margin-top: 6px;
}

.footer-hairline {
  width: 100%;
  height: 1px;
  background: rgba(223, 191, 108, 0.15);
  margin-bottom: 50px;
}

/* 4-Column Grid: Logo · Philosophy · Navigate · Arrival */
.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

/* Logo column */
.col-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-brand .footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.col-brand .footer-est {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #dfbf6c;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #dfbf6c;
  margin-bottom: 22px;
  font-weight: 500;
}

/* Ethos & Social */
.ethos-text {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(240, 237, 230, 0.65);
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot-soc-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(223, 191, 108, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dfbf6c;
  text-decoration: none;
  transition: color var(--dur-base), border-color var(--dur-base),
    background var(--dur-base), transform var(--dur-base);
}

.foot-soc-icon i {
  font-size: 1.15rem;
  color: #dfbf6c !important;
  transition: color var(--dur-base);
}

.foot-soc-icon:hover {
  background: #dfbf6c;
  border-color: #dfbf6c;
  transform: translateY(-3px);
}

.foot-soc-icon:hover i {
  color: #020c0a !important;
}

/* Navigation Lists */
.lux-footer .footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lux-footer .footer-link-list a {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: rgba(240, 237, 230, 0.65);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.lux-footer .footer-link-list a:hover {
  color: #dfbf6c;
  transform: translateX(4px);
}

/* Arrival Info */
.col-arrival {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.arrival-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.arr-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(223, 191, 108, 0.6);
}

.arr-val {
  font-family: var(--font-sans);
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(240, 237, 230, 0.75);
  font-style: normal;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.arr-val:hover {
  color: #dfbf6c;
}

/* Bottom Legal Bar */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(240, 237, 230, 0.08);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: rgba(240, 237, 230, 0.45);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #dfbf6c;
}

.legal-sep {
  color: rgba(223, 191, 108, 0.3);
}

.coords {
  letter-spacing: 0.08em;
  color: rgba(223, 191, 108, 0.6);
}

/* Responsive */
@media (max-width: 960px) {
  .footer-masthead {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .masthead-cta {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }

  /* Brand + Philosophy stay full width; Navigate and Arrival sit side by side */
  .col-brand,
  .col-ethos {
    grid-column: 1 / -1;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* EXPERIENCE HEADER FIX (appended override) */
.exp-curtain-header {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  pointer-events: none
}

.exp-kicker {
  font-family: var(--font-sans);
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #dfbf6c;
  margin-bottom: 18px
}

.exp-serif-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 34px rgba(0, 0, 0, .65)
}

.exp-serif-title em {
  font-style: italic;
  color: #dfbf6c
}

.exp-curtain-header .exp-serif-title {
  margin-bottom: 0
}

@media(max-width:900px) {
  .exp-curtain-header {
    position: relative;
    inset: auto;
    padding: 52px 24px 20px;
    justify-content: flex-start
  }
}

.exp-video {
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1), filter .6s cubic-bezier(.16, 1, .3, 1);
  transform: translateY(var(--exp-y, 0px)) scale(1);
  will-change: transform, filter
}

.exp-panel:hover .exp-video {
  transform: translateY(var(--exp-y, 0px)) scale(1.05);
  filter: brightness(1)
}

.exp-panel {
  transition: flex 1.05s cubic-bezier(.65, 0, .35, 1)
}

.exp-panel:hover .exp-copy {
  transition-delay: .18s
}

.exp-panel:hover .exp-arrow {
  transition-delay: .28s
}

/* ══ MENU GRID — ORDER-LOCKED STAGGER REVEAL (authoritative override) ══ */
#menuCards .dish-item {
  opacity: 0 !important;
  transform: translateY(42px) !important;
  transition: opacity .95s cubic-bezier(.16, 1, .3, 1), transform .95s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

#menuCards.revealed .dish-item {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

#menuCards.revealed .dish-item:nth-child(1) {
  transition-delay: 0s
}

#menuCards.revealed .dish-item:nth-child(2) {
  transition-delay: .13s
}

#menuCards.revealed .dish-item:nth-child(3) {
  transition-delay: .26s
}

#menuCards.revealed .dish-item:nth-child(4) {
  transition-delay: .39s
}

@media (prefers-reduced-motion: reduce) {

  #menuCards .dish-item,
  #menuCards.revealed .dish-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important
  }
}