/* ═══════════════════════════════════════════════════
   PLAGE BLEUE AGADIR — Luxury Website Styles
   ═══════════════════════════════════════════════════ */

/* ── RESET & VARIABLES ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #040201;
  color: var(--sand);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

:root {
  --ocean:        #040a18;
  --teal:         #00A3FF;
  --sand:         #E8DCC5;
  --gold:         #0A74DA;
  --gold-dim:     rgba(10,116,218,0.20);
  --gold-mid:     rgba(10,116,218,0.45);
  --text:         rgba(232,220,197,0.88);
  --text-muted:   rgba(232,220,197,0.50);
  --glass:        rgba(4,10,24,0.55);
  --glass-border: rgba(10,116,218,0.18);
  --section-dark: rgba(2,5,12,0.65);
  --section-alt:  rgba(5,2,0,0.52);
}

/* ── Background Video ─────────────────────────────── */
#bg-video-wrap {
  position: fixed; top: -15vh; left: -10vw;
  width: 120vw; height: 130vh;
  z-index: 0; overflow: hidden;
  pointer-events: none;
  will-change: transform;
}
#bg-video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; max-width: none;
}

/* ── CANVAS ────────────────────────────────────────── */
#ocean-canvas {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 1; pointer-events: none;
  background: 
    linear-gradient(to top, rgba(2,1,0,0.60) 0%, rgba(3,1,0,0.28) 40%, rgba(0,0,0,0) 65%),
    linear-gradient(to bottom, rgba(2,1,0,0.80) 0%, rgba(2,1,0,0.15) 28%, rgba(2,1,0,0) 100%),
    radial-gradient(ellipse at 50% 48%, rgba(0,0,0,0) 6%, rgba(0,0,0,0.18) 52%, rgba(0,0,0,0.65) 88%),
    rgba(2,1,0,0.38);
}
#cursor-canvas {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 9999; pointer-events: none;
}

/* ── TYPOGRAPHY ────────────────────────────────────── */
h1,h2,h3,.logo-text,.music-title,.footer-logo {
  font-family: 'Playfair Display', serif;
}

/* ── CONTAINER ─────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */

/* Fine ligne or en haut — toujours visible */
/* ── NAVBAR MODERN FLOATING ────────────────────────── */
#navbar {
  position: fixed; top: 15px; left: 50%; transform: translateX(-50%);
  width: 96%; max-width: 1400px;
  background: rgba(11, 31, 58, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  z-index: 1000; 
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

#navbar.scrolled {
  top: 15px;
  width: 96%;
  background: rgba(11, 31, 58, 0.85);
  border-color: rgba(10, 116, 218, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(10, 116, 218, 0.15);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 1.5rem;
  transition: padding 0.4s ease;
}

#navbar.scrolled .nav-inner {
  padding: 0.5rem 1.5rem;
}

/* Logo */
.nav-logo { text-decoration: none; flex-shrink: 0; display: block; line-height: 1; transition: transform 0.3s; }
.nav-logo:hover { transform: scale(1.05); }
@keyframes logoContinuous {
  0%   { transform: translateY(0) scale(1); box-shadow: 0 0 5px rgba(10, 116, 218, 0.2); }
  50%  { transform: translateY(-3px) scale(1.03); box-shadow: 0 0 15px rgba(10, 116, 218, 0.6); }
  100% { transform: translateY(0) scale(1); box-shadow: 0 0 5px rgba(10, 116, 218, 0.2); }
}
.logo-video  { 
  width: 48px; height: 48px; object-fit: cover; display: block; mix-blend-mode: screen;
  border-radius: 50%;
  animation: logoContinuous 3.5s ease-in-out infinite;
}

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.85);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  position: relative; transition: all 0.3s ease;
  padding: 0.5rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px; background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease; transform: translateX(-50%);
  box-shadow: 0 0 10px var(--gold);
}
.nav-links a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.3); }
.nav-links a:hover::after, .nav-links a.nav-active::after {
  width: 100%;
}

/* Right group */
.nav-right { display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }

/* Reserve button — outlined gold */
.btn-reserve {
  display: inline-block;
  background: rgba(10, 116, 218, 0.1); color: var(--gold);
  border: 1px solid rgba(10, 116, 218, 0.4);
  border-radius: 100px;
  text-decoration: none; padding: 0.55rem 1.4rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.3s ease; white-space: nowrap;
}
.btn-reserve:hover {
  background: var(--gold); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 116, 218, 0.4);
}

/* Hamburger — hidden on desktop */
.nav-toggle { display: none; }

/* Language switcher */
.lang-switcher {
  display: flex; gap: 0.08rem; align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 4px; padding: 0.28rem 0.45rem;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: 1.35rem; line-height: 1; padding: 0.12rem 0.18rem;
  border-radius: 3px; opacity: 0.45;
  transition: opacity 0.2s, transform 0.2s;
}
.lang-btn:hover { transform: scale(1.15); opacity: 0.8; }
.lang-btn:hover { opacity: 0.80; }
.lang-btn.active { opacity: 1; background: rgba(212,175,55,0.12); }

/* Mobile menu */
.nav-mobile {
  display: block; overflow: hidden; max-height: 0;
  background: rgba(6, 4, 2, 0.97); backdrop-filter: blur(24px);
  border-top: 1px solid rgba(212,175,55,0.16);
  transition: max-height 0.42s ease, padding 0.3s ease;
}
.nav-mobile.open { max-height: 520px; padding: 1.2rem 0; }
.nav-mobile ul   { list-style: none; margin: 0; padding: 0; }
.nav-mobile a {
  text-decoration: none; color: rgba(255,255,255,0.70); font-size: 0.78rem;
  display: block; padding: 0.9rem clamp(1.25rem, 5vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: color 0.3s, padding-left 0.3s;
}
.nav-mobile a:hover { color: var(--gold); padding-left: calc(clamp(1.25rem,5vw,3rem) + 0.5rem); }
.mobile-reserve { color: var(--gold) !important; font-weight: 600; border: none !important; }

/* Responsive */
@media (max-width: 900px) {
  .nav-links   { display: none; }
  .btn-reserve { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    cursor: pointer; padding: 9px 11px; border-radius: 4px; transition: background 0.3s;
  }
  .nav-toggle:hover { background: rgba(255,255,255,0.12); }
  .nav-toggle span {
    display: block; width: 20px; height: 1.5px;
    background: rgba(255,255,255,0.88); transition: all 0.3s;
  }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }
}
@media (max-width: 480px) {
  .lang-switcher { padding: 0.22rem 0.35rem; }
  .lang-btn { font-size: 0.9rem; }
}

/* Book nav label */
.book-nav-label { font-size: 0.72rem; letter-spacing: 0.04em; opacity: 0.75; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
#hero {
  position: relative; z-index: 2;
  height: 100vh; min-height: 620px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  background: #040201;
  padding: clamp(5.5rem,12vh,8rem) clamp(1.5rem,5vw,3rem) 0;
}
/* ── Ken Burns Photo Slideshow ───────────────────── */
/* ── Entrance Door Animation ────────────────── */
.hero-entrance {
  position: absolute; inset: 0; z-index: 10; overflow: hidden;
  animation: entranceFadeOut 1.4s ease forwards;
  animation-delay: 5.2s;
}
.hero-entrance-photo {
  position: absolute; inset: -12%;
  background: url('uploads/plag bleue 16-52a7c9b3.jpg') center 45%/cover no-repeat;
  animation: entranceDronePan 6.8s cubic-bezier(0.25,0.1,0.25,1) forwards;
}
@keyframes entranceDronePan {
  0%   { transform: translateX(-18%) scale(1.08); filter: brightness(1.05) saturate(1.1); }
  40%  { transform: translateX(-6%)  scale(1.04); filter: brightness(1.02) saturate(1.05); }
  75%  { transform: translateX(6%)   scale(1.01); filter: brightness(0.96); }
  100% { transform: translateX(14%)  scale(1.0);  filter: brightness(0.55) blur(1px); }
}
@keyframes entranceFadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}
/* ── Hero Video ───────────────────────── */
#hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 1;
}

.hero-overlay { z-index: 1;
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2,1,0,0.50) 0%,
    rgba(2,1,0,0.10) 45%,
    rgba(2,1,0,0.30) 75%,
    rgba(2,1,0,0.75) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 920px; will-change: transform;
  width: 100%;
  display: flex; flex-direction: column;
  align-items: center;
}
.hero-title {
  font-size: clamp(2.8rem, 8.5vw, 6.2rem);
  font-weight: 700; line-height: 1.06; color: var(--sand);
  text-shadow: 0 4px 50px rgba(0,0,0,0.55);
}
.title-line        { display: block; }
.title-line.accent { color: var(--gold); font-style: italic; }
.hero-actions {
  position: relative; z-index: 2;
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: nowrap;
  padding-bottom: 3rem;
}
@media (max-width: 420px) {
  .hero-actions { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: #091c35;
  text-decoration: none; padding: 1.05rem 2.2rem;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.35s ease;
}
.btn-primary:hover {
  background: #c4a030; transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(212,175,55,0.42);
}
.btn-secondary {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.08); color: var(--sand);
  text-decoration: none; padding: 1.05rem 2.2rem;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid rgba(232,220,197,0.35);
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
}
.btn-secondary:hover {
  border-color: var(--gold); color: var(--gold); transform: translateY(-3px);
  background: rgba(212,175,55,0.08);
}
.hero-scroll-hint {
  position: absolute; bottom: 7.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem; z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.65rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(232,220,197,0.42);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
.hero-info-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: center; align-items: stretch;
  background: rgba(3,8,20,0.72);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-top: 1px solid var(--glass-border);
}
.info-item {
  padding: 1.15rem 2.8rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.18rem;
}
.info-label {
  font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.info-value {
  font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--sand);
}
.info-divider { width: 1px; background: var(--glass-border); margin: 0.8rem 0; }

/* ══════════════════════════════════════════════════════
   SECTION BASE
══════════════════════════════════════════════════════ */
section { position: relative; z-index: 2; }
#story  { padding-bottom: 0 !important; margin-bottom: 0 !important; }
#story .story-container { margin-bottom: 0 !important; padding-bottom: 0 !important; }
#story .story-img-wrap  { padding-bottom: 0 !important; }
#story .story-stats     { margin-bottom: 0 !important; }
#experience { padding-top: 0 !important; margin-top: 0 !important; }
#experience .section-header { margin-top: 0 !important; margin-bottom: 1.5rem !important; }

.section-dark  { background: var(--section-dark);  padding: clamp(4.5rem,10vw,7rem) 0; }
.section-alt   { background: var(--section-alt);   padding: clamp(4.5rem,10vw,7rem) 0; }
.section-glass {
  background: rgba(12,8,4,0.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: clamp(4.5rem,10vw,7rem) 0;
}
.section-music {
  background: rgba(6,4,2,0.97);
  padding: clamp(5.5rem,13vw,9.5rem) 0; overflow: hidden;
}
.section-reserve {
  background: rgba(8,5,2,0.96); padding: clamp(4.5rem,10vw,7rem) 0;
  position: relative; overflow: hidden;
}
.section-reserve::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: url('uploads/fcfeb6ee-b49f-40ed-a9a9-73d61480ba7a.jpeg') center 8% / contain no-repeat;
  opacity: 0.35;
}
.section-reserve .container { position: relative; z-index: 1; }

.section-header { text-align: center; margin-bottom: clamp(2.5rem,6vw,4.5rem); }
.section-eyebrow {
  display: block; font-size: 0.68rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  line-height: 1.13; margin-bottom: 0.9rem;
  background: linear-gradient(
    120deg,
    #ffffff 0%,
    #a8d8ff 35%,
    #1e90d4 50%,
    #a8d8ff 65%,
    #ffffff 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 4s linear infinite;
}
@keyframes titleShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Titles inside centered headers get decorative side lines */
.section-header .section-title,
.gallery-strip-header .section-title,
.book-section-header .section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.section-header .section-title::before,
.section-header .section-title::after,
.gallery-strip-header .section-title::before,
.gallery-strip-header .section-title::after,
.book-section-header .section-title::before,
.book-section-header .section-title::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
}
.section-header .section-title::before,
.gallery-strip-header .section-title::before,
.book-section-header .section-title::before {
  background: linear-gradient(to right, transparent, var(--gold));
}
.section-header .section-title::after,
.gallery-strip-header .section-title::after,
.book-section-header .section-title::after {
  background: linear-gradient(to left, transparent, var(--gold));
}
.section-sub {
  font-size: 0.98rem; color: var(--text-muted);
  max-width: 520px; margin: 0 auto; line-height: 1.75;
}

/* ══════════════════════════════════════════════════════
   EXPERIENCE
══════════════════════════════════════════════════════ */
/* Experience hero image */
.exp-hero-img {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  position: relative;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 153, 255, 0.3); /* Blue border */
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 20px rgba(0, 153, 255, 0.15);
}
.exp-hero-img img {
  width: 100%; height: auto;
  display: block;
  transition: transform 0.9s ease;
  border-radius: 6px;
}
.exp-hero-img:hover img { transform: scale(1.02); }
.exp-hero-caption {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  padding: 2rem 2.5rem;
  background: linear-gradient(to top, rgba(4,9,22,0.88) 0%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  z-index: 4;
}
.exp-hero-caption span:first-child {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  color: var(--sand); font-style: italic;
}
.exp-hero-sub {
  font-size: 0.7rem !important; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold) !important;
  font-family: 'Inter', sans-serif !important;
}
/* Blue shimmer sweep */
.exp-hero-img::after {
  content: ''; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(0, 153, 255, 0.25) 48%,
    rgba(0, 153, 255, 0.1) 52%,
    transparent 70%);
  transform: translateX(-180%) skewX(-15deg);
  pointer-events: none;
}
.exp-hero-img.is-visible::after {
  animation: goldSweep 1.5s ease 0.5s forwards;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.exp-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px); padding: 2.8rem 2rem;
  text-align: center; transition: all 0.42s ease; cursor: default;
  border-radius: 18px;
}
.exp-card:hover {
  border-color: var(--gold-mid); transform: translateY(-10px);
  box-shadow: 0 25px 65px rgba(0,0,0,0.45);
}
.exp-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.22);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.6rem; color: var(--gold); transition: all 0.3s;
}
.exp-card:hover .exp-icon { background: rgba(212,175,55,0.18); transform: scale(1.08); }
.exp-card h3 {
  font-size: 1.25rem; color: var(--sand);
  margin-bottom: 0.85rem; letter-spacing: 0.01em;
}
.exp-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }

/* ══════════════════════════════════════════════════════
   STORY
══════════════════════════════════════════════════════ */
.story-container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.story-text p {
  color: var(--text-muted); line-height: 1.82; margin-bottom: 1.2rem; font-size: 0.98rem;
}
.story-stats {
  display: flex; gap: 2.8rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--glass-border);
}
.stat-num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2.4rem; color: var(--gold); line-height: 1;
}
.stat-label {
  display: block; font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 0.32rem;
}
/* Full-width story photo — Luxury Cinema Reveal */
@keyframes luxuryReveal {
  0%   { clip-path: inset(0 50% 0 50%); transform: scale(1.15); filter: brightness(0.2) saturate(0); }
  25%  { filter: brightness(0.5) saturate(0.4); }
  60%  { clip-path: inset(0 5%  0 5%);  transform: scale(1.06); filter: brightness(0.85) saturate(0.8); }
  100% { clip-path: inset(0 0%  0 0%);  transform: scale(1);    filter: brightness(1)   saturate(1); }
}
@keyframes goldSweep {
  0%   { transform: translateX(-180%) skewX(-15deg); opacity: 1; }
  100% { transform: translateX(180%)  skewX(-15deg); opacity: 1; }
}
@keyframes borderGlow {
  0%   { opacity: 0; }
  40%  { opacity: 1; }
  100% { opacity: 0; }
}
.story-full-img {
  width: 90%;
  max-width: 1200px;
  margin: 4rem auto 2rem;
  position: relative;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 153, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 20px rgba(0, 153, 255, 0.15);
  overflow: hidden;
}
.story-full-img img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  opacity: 0;
  will-change: transform;
  transition: opacity 1s ease;
}
.story-full-img.revealed img {
  opacity: 1;
}
/* Blue shimmer sweep */
.story-full-img::after {
  content: ''; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(105deg,
    transparent 30%,
    rgba(0, 153, 255, 0.25) 48%,
    rgba(0, 153, 255, 0.1) 52%,
    transparent 70%);
  transform: translateX(-180%) skewX(-15deg);
  pointer-events: none;
}
.story-full-img.revealed::after {
  animation: goldSweep 1.5s ease 0.5s forwards;
}
/* Border glow on reveal */
.story-full-img::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(0, 153, 255, 0.7);
  border-radius: 12px;
  opacity: 0; pointer-events: none;
}
.story-full-img.revealed::before {
  animation: borderGlow 2s ease 0.5s forwards;
}
/* ── Story Marquee Band ─────────────────────────────── */
.story-marquee {
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(212,175,55,0.18);
  border-bottom: 1px solid rgba(212,175,55,0.18);
  margin: 2rem 0 0;
}
.story-marquee-track {
  display: flex; align-items: center;
  width: max-content; gap: 1.6rem;
  animation: story-scroll 24s linear infinite;
  white-space: nowrap;
}
@keyframes story-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.story-marquee-track span {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-style: italic;
  color: rgba(255,255,255,0.58); letter-spacing: 0.06em;
}
.smq-dot {
  color: var(--gold) !important;
  font-size: 0.65rem !important;
  font-style: normal !important;
  opacity: 0.75;
}
/* ─────────────────────────────────────────────────── */

.story-img-wrap { position: relative; padding-bottom: 2rem; }
.story-img-placeholder {
  aspect-ratio: 16/9; overflow: hidden; position: relative;
  border: 1px solid var(--glass-border);
  background: #060e1c;
  display: flex; align-items: flex-end; padding: 2rem;
}
.story-img-placeholder > img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.9s ease;
}
.story-img-wrap:hover .story-img-placeholder > img { transform: scale(1.04); }
.story-img-placeholder::before { display: none; }
.story-img-placeholder::after {
  content: '';
  position: absolute; bottom: 30%; left: 0; right: 0; height: 22%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(31,165,163,0.12) 30%,
    rgba(31,165,163,0.08) 70%,
    transparent 100%
  );
}
.story-img-text { position: relative; z-index: 3; display: flex; flex-direction: column; gap: 0.3rem; }
.story-img-text span { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--sand); }
.story-img-sub {
  font-family: 'Inter', sans-serif !important; font-size: 0.66rem !important;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold) !important;
}
.story-img-badge { position: absolute; top: 2rem; right: -1.4rem; z-index: 2; }
.badge-circle {
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--gold); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  color: #091c35; gap: 0; padding: 0.5rem;
}
.badge-circle span { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.2; }
.badge-circle strong {
  font-family: 'Playfair Display', serif; font-size: 1.65rem;
  font-weight: 700; display: block; line-height: 1;
}

/* ══════════════════════════════════════════════════════
   NOTRE HISTOIRE — Cinematic entrance animations
══════════════════════════════════════════════════════ */

/* Container itself appears instantly — children carry the animation */
#story .story-text.reveal-up {
  transition-duration: 0.01s !important;
}

/* 1. Eyebrow: accent underline draws left → right */
#story .section-eyebrow { position: relative; display: inline-block; }
#story .section-eyebrow::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1.5px;
  background: linear-gradient(to right, var(--gold), rgba(10,116,218,0.25));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.95s cubic-bezier(0.16,1,0.3,1) 0.2s;
}
#story .story-text.revealed .section-eyebrow::after { transform: scaleX(1); }

/* 2. Title word spans (injected by JS) */
.story-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.story-word-inner {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1),
              opacity 0.5s ease;
}
#story .story-text.revealed .story-word-inner {
  transform: translateY(0);
  opacity: 1;
}

/* 3. Paragraphs: blur + upward fade */
#story .story-text p {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  transition: opacity 0.82s ease,
              transform 0.82s cubic-bezier(0.16,1,0.3,1),
              filter 0.75s ease;
}
#story .story-text.revealed p:nth-child(3) {
  opacity: 1; transform: translateY(0); filter: blur(0);
  transition-delay: 0.62s;
}
#story .story-text.revealed p:nth-child(4) {
  opacity: 1; transform: translateY(0); filter: blur(0);
  transition-delay: 0.84s;
}

/* 4. Stats: blue shimmer pulse on first appear */
@keyframes statShimmer {
  0%   { text-shadow: none; }
  40%  { text-shadow: 0 0 28px rgba(10,116,218,0.85), 0 0 8px rgba(61,154,245,0.5); }
  100% { text-shadow: none; }
}
#story .stat.revealed .stat-num {
  animation: statShimmer 1.8s ease 0.15s both;
}

/* ══════════════════════════════════════════════════════
   SIGNATURE SEAFOOD
══════════════════════════════════════════════════════ */
.seafood-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.seafood-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  padding: 2.6rem; display: flex; gap: 1.6rem;
  transition: all 0.4s ease; cursor: default;
  border-left: 3px solid transparent;
}
.seafood-card:hover {
  border-color: var(--glass-border); border-left-color: var(--gold);
  background: rgba(11,37,69,0.72);
  box-shadow: 0 20px 55px rgba(0,0,0,0.4);
}
.seafood-num {
  font-family: 'Playfair Display', serif; font-size: 3.2rem;
  color: var(--gold-dim); font-weight: 700; line-height: 1;
  flex-shrink: 0; transition: color 0.3s; align-self: flex-start;
}
.seafood-card:hover .seafood-num { color: rgba(212,175,55,0.5); }
.seafood-content h3 {
  font-size: 1.28rem; color: var(--sand); margin-bottom: 0.28rem;
}
.seafood-sub {
  display: block; font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.8rem;
}
.seafood-content p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.75; margin-bottom: 0.9rem; }
.seafood-note { font-size: 0.70rem; color: var(--gold); letter-spacing: 0.04em; }

/* ══════════════════════════════════════════════════════
   MENU
══════════════════════════════════════════════════════ */
.menu-logo-badge {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; margin-bottom: 1.2rem;
}
.menu-logo-img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 1px solid rgba(10,116,218,0.45);
  box-shadow: 0 0 14px rgba(10,116,218,0.3);
}
.menu-logo-name {
  font-family: 'Playfair Display', serif; font-size: 1.15rem;
  color: #fff; letter-spacing: 0.08em; font-style: italic;
}

.menu-divider {
  width: 60px; height: 1px;
  background: linear-gradient(to right, #0a74da, #1ab5b0);
  margin: 0 auto 2.5rem; opacity: 0.8;
}

.menu-tabs {
  display: flex; gap: 0.6rem; margin-bottom: 2.5rem;
  flex-wrap: wrap; border-bottom: none; padding: 0;
}
.tab-btn {
  background: rgba(10,116,218,0.06); border: 1px solid rgba(10,116,218,0.2);
  border-radius: 100px; padding: 0.65rem 1.4rem;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); cursor: pointer; transition: all 0.3s; white-space: nowrap;
}
.tab-btn::after { display: none; }
.tab-btn:hover { color: #7dd3fc; border-color: rgba(10,116,218,0.5); }
.tab-btn.active {
  background: linear-gradient(135deg, #0a74da, #1ab5b0);
  color: #fff; border-color: transparent;
  box-shadow: 0 0 20px rgba(10,116,218,0.4);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: menuFadeIn 0.3s ease forwards; }
@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.menu-item {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 1.2rem 1.3rem;
  background: rgba(10,116,218,0.04);
  border: 1px solid rgba(10,116,218,0.12);
  border-left: 2px solid #0a74da;
  border-radius: 8px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(10,116,218,0.35), 0 6px 24px rgba(0,0,0,0.3);
}
.menu-item-header {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 0.8rem;
}
.menu-item-name {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--sand); font-weight: 500;
}
.menu-item-price {
  font-family: 'Playfair Display', serif; color: var(--gold);
  font-size: 1rem; white-space: nowrap; flex-shrink: 0;
}
.menu-item-desc { font-size: 0.76rem; color: var(--text-muted); line-height: 1.5; }

/* ══════════════════════════════════════════════════════
   MENU BOOK
══════════════════════════════════════════════════════ */
/* Remove section padding so the sticky book fills the full viewport */
#menu.section-dark { padding: 0; }

.book-section {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* Floating header overlay at the top of the book */
.book-section-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  text-align: center;
  padding: 1.2rem 1rem 2.5rem;
  background: transparent;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  pointer-events: none;
}
.book-section-header .section-title  { font-size: clamp(1.1rem,2.5vw,1.5rem); margin-bottom: 0; }
.book-section-header .section-eyebrow{ margin-bottom: 0.3rem; }

.book-outer {
  position: relative;
  width: 100%; height: 100%;
}
.book-wrapper {
  width: 100%; max-width: none;
  height: 100%;
  position: relative;
  touch-action: pan-y;
}
.book {
  width: 100%;
  height: 100%;
  border-radius: 0;
  position: relative;
  overflow: hidden; /* clips sliding pages */
}

/* .page styles for stPageFlip */
.page {
  background: transparent;
  border: none;
  overflow: hidden;
}

.page-inner {
  padding: 1.5rem 1.4rem;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(26,79,168,0.15) transparent;
}
.book-page.exiting-left  { animation: exitLeft   0.65s cubic-bezier(0.4,0,0.2,1) forwards; z-index: 1; }
.book-page.entering-right{ animation: enterRight 0.65s cubic-bezier(0.4,0,0.2,1) forwards; z-index: 2; }
.book-page.exiting-right { animation: exitRight  0.65s cubic-bezier(0.4,0,0.2,1) forwards; z-index: 1; }
.book-page.entering-left { animation: enterLeft  0.65s cubic-bezier(0.4,0,0.2,1) forwards; z-index: 2; }

/* Cover takes full page width */
.page-cover-full {
  flex: 1;
  border-right: none !important;
}

/* Cover page */
.page-cover {
  background: linear-gradient(160deg, #0B1F3A 0%, #0a3060 60%, #0d2548 100%) !important;
  display: flex; align-items: center; justify-content: center;
}
.cover-content {
  text-align: center; padding: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.cover-logo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(212,175,55,0.5); box-shadow: 0 0 20px rgba(212,175,55,0.3); }
.cover-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: #fff; letter-spacing: 0.08em; margin: 0; }
.cover-subtitle { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 0.2em; text-transform: uppercase; }
.cover-divider { width: 50px; height: 1px; background: var(--gold); opacity: 0.6; }
.cover-menu-label { font-family: 'Playfair Display', serif; font-size: 0.85rem; color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase; }
.cover-wave { margin-top: 1rem; opacity: 0.3; }

/* Cream page inner content */
.page-inner {
  height: 100%; overflow-y: auto; padding: 1.5rem 1.4rem;
  scrollbar-width: thin; scrollbar-color: rgba(26,79,168,0.2) transparent;
}
.page-inner::-webkit-scrollbar { width: 3px; }
.page-inner::-webkit-scrollbar-thumb { background: rgba(26,79,168,0.2); border-radius: 2px; }

.page-wave-border {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 28px; pointer-events: none;
}
.page-title {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.15rem; color: #1a4fa8; text-align: center;
  margin: 0.2rem 0 0.8rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.page-wave-sep { text-align: center; margin: 0.5rem 0; opacity: 0.4; }
.page-section { margin-bottom: 1rem; }

.bi-section { margin-bottom: 1.2rem; }
.bi-title {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 0.95rem; color: #1a4fa8; margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.bi-wave { display: block; width: 100%; height: 10px; margin-bottom: 0.5rem; }

.cover-hint { font-size: 0.7rem; color: rgba(255,255,255,0.35); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.5rem; }

.page-cover-back {
  background: linear-gradient(160deg, #0B1F3A 0%, #0a3060 60%, #0d2548 100%) !important;
  display: flex; align-items: center; justify-content: center;
}
.cover-back-content {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 2rem; text-align: center;
}

.bi-list { display: flex; flex-direction: column; gap: 0.15rem; }
.bi-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 0.5rem; padding: 0.2rem 0;
  border-bottom: 1px solid rgba(26,79,168,0.08);
  font-size: 0.78rem; color: #1a1a2e;
}
.bi-name { flex: 1; font-weight: 500; }
.bi-desc { font-size: 0.68rem; color: #666; font-style: italic; font-weight: 400; }
.bi-price { color: #1a4fa8; font-weight: 600; white-space: nowrap; flex-shrink: 0; font-size: 0.75rem; }

.seafood-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.5rem;
}
.seafood-badge { font-size: 0.7rem; letter-spacing: 0.15em; color: #1a4fa8; text-transform: uppercase; font-weight: 600; border: 1px solid rgba(26,79,168,0.3); padding: 0.15rem 0.5rem; border-radius: 3px; }

.intro-page {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: 1.5rem; padding: 2rem;
  background: #F9F4E8;
}
.intro-deco { font-size: 2rem; opacity: 0.4; }
.intro-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.95rem; color: #1a4fa8; text-align: center; line-height: 1.7; }
.intro-addr { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: #888; text-align: center; }

/* Navigation — inside the book */
.book-nav {
  background: rgba(4,10,24,0.45); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff; cursor: pointer;
  transition: all 0.25s; position: absolute; top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(4px);
  z-index: 10;
}
.book-nav:hover:not(:disabled) { background: rgba(10,116,218,0.5); border-color: #0a74da; }
.book-nav:disabled { opacity: 0.2; cursor: not-allowed; }
.book-prev { left: 1.25rem; }
.book-next { right: 1.25rem; }

/* Page counter — floating at the bottom */
.book-counter {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  font-size: 0.75rem; color: rgba(232,220,197,0.8); letter-spacing: 0.12em;
  background: rgba(4,10,24,0.55); padding: 0.25rem 0.9rem; border-radius: 20px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* Mobile book */
@media (max-width: 700px) {
  .book-prev { left: 0.5rem; }
  .book-next { right: 0.5rem; }
  .page-title { font-size: 1rem; }
  .bi-row { font-size: 0.74rem; }
}

.menu-cta {
  text-align: center; padding-top: 2.5rem; margin-top: 2rem;
  border-top: 1px solid var(--glass-border);
}
.menu-cta p { color: var(--text-muted); font-size: 0.84rem; margin-bottom: 1.3rem; }
.btn-outline-gold {
  display: inline-block; text-decoration: none;
  padding: 0.9rem 2.2rem; border: 1px solid var(--gold);
  color: var(--gold); font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.3s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--ocean); }

/* ══════════════════════════════════════════════════════
   HORIZONTAL SCROLL GALLERY
══════════════════════════════════════════════════════ */
/* Outer container sets scroll height */
.h-gallery-wrap {
  position: relative;
  /* height set by JS based on track width */
}
/* Sticky viewport that pins while scrolling */
.h-gallery-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 0;
}
.h-gallery-track {
  display: flex;
  gap: 0;
  padding: 0;
  will-change: transform;
  align-items: center;
  height: 100vh;
}
/* Sliding track */
.h-gallery-track {
  display: flex;
  gap: 16px;
  padding: 0 clamp(1.25rem,5vw,3rem);
  will-change: transform;
  transition: transform 0.1s linear;
}

.h-gallery-item {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #040201;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #040201;
}
.h-gallery-item {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #040201;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #040201;
}

/* Page-reveal overlay */
.h-gal-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: #040201;
  transform-origin: right center;
  transform: scaleX(1);
  pointer-events: none;
  will-change: transform;
}

/* Caption */
.h-gallery-caption {
  position: absolute;
  bottom: 4.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(232,220,197,0.55);
  white-space: nowrap;
}
/* Counter + nav */
.h-gallery-footer {
  position: absolute;
  bottom: 1.5rem;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem,5vw,3rem);
  z-index: 3;
}
.h-gallery-counter {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}
.h-gallery-counter span { color: var(--gold); }
.h-gallery-progress {
  flex: 1; height: 1px;
  background: rgba(232,220,197,0.10);
  margin: 0 2rem;
  position: relative; overflow: hidden;
}
.h-gallery-progress-bar {
  position: absolute; top: 0; left: 0;
  height: 100%; background: var(--gold);
  width: 0%; transition: width 0.3s ease;
}
.h-gallery-nav {
  display: flex;
  gap: 0.6rem;
}
.h-gallery-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--sand); font-size: 1.3rem;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all 0.3s;
}
.h-gallery-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════════════════
   GALLERY — Infinite Horizontal Marquee
══════════════════════════════════════════════════════ */
.gallery-strip {
  padding: 5rem 0 4.5rem;
  background: #06101e;
  overflow: hidden;
}
.gallery-strip-header {
  text-align: center;
  margin-bottom: 3rem;
}
.gallery-strip-header .section-eyebrow { color: var(--gold); }
.gallery-strip-header .section-title   { color: #fff; }

.gallery-marquee { overflow: hidden; }

.gallery-track {
  display: flex;
  width: max-content;
  animation: gallery-scroll 30s linear infinite;
}
.gallery-track.paused { animation-play-state: paused; }

@keyframes gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Luxury Blue-framed photo card — huge */
.gallery-frame {
  flex-shrink: 0;
  width: 750px; height: 500px;
  margin: 0 30px;
  position: relative;
  
  /* Matching the first photos (.story-full-img) */
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 153, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 20px rgba(0, 153, 255, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-frame::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 12px;
  pointer-events: none; z-index: 2;
}
.gallery-frame:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 30px rgba(0, 153, 255, 0.3);
}

.gallery-frame img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: 6px;
  transition: transform 0.6s ease;
}
.gallery-frame:hover img {
}

.gf-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  pointer-events: none;
  z-index: 3;
}

@media (max-width: 600px) {
  .gallery-frame { width: 90vw; max-width: 350px; aspect-ratio: 4/5; height: auto; margin: 0 12px; }
  .gallery-strip { padding: 3.5rem 0 3rem; }
}

/* ══════════════════════════════════════════════════════
   GALLERY (old grid — keep for fallback)
══════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
}
.gallery-item { overflow: hidden; cursor: zoom-in; position: relative; }
.gallery-item.large       { grid-column: span 2; }
.gallery-item.large-bottom{ grid-column: span 2; }
.gallery-placeholder {
  height: 100%; width: 100%;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 1.4rem; position: relative;
  overflow: hidden; background: #0a0806;
}
.gallery-placeholder > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-item:hover .gallery-placeholder > img { transform: scale(1.07); }
.gallery-placeholder::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(4,9,22,0.90) 0%, rgba(4,9,22,0.22) 50%, transparent 100%);
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-placeholder::before { opacity: 0.75; }
.gallery-label {
  position: relative; z-index: 2;
  font-family: 'Playfair Display', serif; font-size: 0.92rem;
  color: var(--sand); letter-spacing: 0.04em; transition: color 0.3s;
}

/* ══════════════════════════════════════════════════════
   LIVE MUSIC
══════════════════════════════════════════════════════ */
.music-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(31,165,163,0.06) 0%, transparent 70%);
}
.music-content { position: relative; z-index: 2; text-align: center; }
.music-badge {
  display: inline-block; border: 1px solid var(--gold-mid);
  padding: 0.42rem 1.6rem; font-size: 0.66rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.6rem;
}
.music-title {
  font-size: clamp(2rem,5.5vw,3.6rem); font-style: italic;
  color: var(--sand); margin-bottom: 1.2rem; line-height: 1.12;
}
.music-sub {
  color: var(--text-muted); max-width: 580px; margin: 0 auto 2.5rem;
  line-height: 1.82; font-size: 0.97rem;
}
.music-times {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; margin-bottom: 2.8rem;
}
.music-time { text-align: center; }
.music-time-label {
  display: block; font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem;
}
.music-time-value {
  font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--sand);
}
.music-time-sep { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 2rem; }
.btn-gold {
  display: inline-block; text-decoration: none;
  background: var(--gold); color: #091c35;
  padding: 1.05rem 2.6rem; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; border-radius: 100px;
  transition: all 0.3s;
}
.btn-gold:hover {
  background: #c4a030; transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(212,175,55,0.42);
}
.music-notes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.note {
  position: absolute; color: rgba(212,175,55,0.10);
  animation: noteFloat 9s ease-in-out infinite;
  font-style: normal;
}
.n1 { left:  6%; bottom: 18%; font-size: 1.6rem; animation-delay: 0s; }
.n2 { left: 18%; bottom:  8%; font-size: 2.8rem; animation-delay: 2.2s; }
.n3 { right:12%; bottom: 22%; font-size: 2rem;   animation-delay: 1.1s; }
.n4 { right:28%; bottom:  6%; font-size: 1.3rem; animation-delay: 3.5s; }
.n5 { left: 40%; bottom: 12%; font-size: 1.8rem; animation-delay: 0.7s; }

/* ══════════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════════ */
#reviews {
  position: relative;
  background: url("e48de2882b434e438d68d30ac5634c46.jpg") center/cover no-repeat;
}
#reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4, 9, 22, 1) 0%, rgba(4, 9, 22, 0.6) 50%, rgba(4, 9, 22, 1) 100%);
  z-index: 0;
}
#reviews > .container {
  position: relative;
  z-index: 1;
}

.reviews-carousel { overflow: hidden; position: relative; }
.reviews-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25,0.1,0.25,1);
}
.review-card { min-width: 100%; padding: 0 clamp(1rem,10vw,7rem); }
.review-stars {
  color: var(--gold); font-size: 1.1rem; margin-bottom: 1.6rem;
  letter-spacing: 0.22em; text-align: center;
}
.review-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem,2.5vw,1.32rem); color: var(--sand);
  line-height: 1.72; font-style: italic;
  text-align: center; max-width: 780px;
  margin: 0 auto 2rem;
}
.review-author {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.review-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.35);
  overflow: hidden; flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
  background: #0a1830;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; color: #fff;
}
.review-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* Fallback gradient classes for user-submitted reviews */
.av-teal  { background: linear-gradient(135deg,#0a6e6a,#1FA5A3); }
.av-gold  { background: linear-gradient(135deg,#7a5500,#D4AF37); }
.av-blue  { background: linear-gradient(135deg,#152e80,#3a6ad4); }
.av-rose  { background: linear-gradient(135deg,#6a0840,#c430a0); }
.av-green { background: linear-gradient(135deg,#0a5030,#1a9a55); }
.av-ocean { background: linear-gradient(135deg,#0a2545,#1FA5A3); }
.review-name  { display: block; font-weight: 600; color: var(--sand); font-size: 0.9rem; }
.review-origin{ display: block; color: var(--text-muted); font-size: 0.76rem; margin-top: 0.18rem; }
/* Leave a review */
.leave-review-wrap {
  margin-top: 3rem; text-align: center;
}
.btn-leave-review {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--glass-border); cursor: pointer;
  padding: 0.85rem 2rem; font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.35s; margin-bottom: 0;
}
.btn-leave-review:hover { border-color: var(--gold); color: var(--gold); }

.review-form-wrap {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
  opacity: 0;
}
.review-form-wrap.open { max-height: 600px; opacity: 1; }

.review-submit-form {
  background: rgba(8,20,48,0.8); border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px); padding: 2rem;
  margin-top: 1.5rem; text-align: left;
}
.star-picker {
  display: flex; gap: 0.3rem; justify-content: center;
  margin-bottom: 1.5rem;
}
.star-btn {
  background: none; border: none; cursor: pointer;
  font-size: 2rem; color: rgba(232,220,197,0.2);
  transition: color 0.15s, transform 0.15s;
  padding: 0 0.1rem; line-height: 1;
}
.star-btn.lit  { color: var(--gold); }
.star-btn:hover{ transform: scale(1.2); }

.rform-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1rem;
}
.rform-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.rform-group label {
  font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
}
.rform-group input,
.rform-group textarea {
  background: rgba(10,28,62,0.7); border: 1px solid var(--glass-border);
  color: var(--sand); padding: 0.8rem 1rem;
  font-size: 0.9rem; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.3s; width: 100%; border-radius: 0;
}
.rform-group input::placeholder,
.rform-group textarea::placeholder { color: rgba(232,220,197,0.28); }
.rform-group input:focus,
.rform-group textarea:focus { border-color: var(--gold-mid); }
.rform-group textarea { resize: vertical; line-height: 1.65; }
.rform-actions { display: flex; gap: 1rem; align-items: center; margin-top: 0.5rem; }
.btn-publish-review {
  background: var(--gold); color: #091c35;
  border: none; cursor: pointer; padding: 0.9rem 2rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; font-family: 'Inter', sans-serif;
  border-radius: 100px;
  transition: all 0.3s;
}
.btn-publish-review:hover { background: #c4a030; transform: translateY(-2px); }
.btn-cancel-review {
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; font-size: 0.82rem; font-family: 'Inter', sans-serif;
  transition: color 0.3s;
}
.btn-cancel-review:hover { color: var(--sand); }

/* User-submitted review cards */
.review-card.user-review .review-avatar { font-size: 1rem; }

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

.carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-top: 2.8rem;
}
.carousel-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--sand); cursor: pointer; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.carousel-btn:hover { border-color: var(--gold); color: var(--gold); }
.carousel-dots { display: flex; gap: 0.5rem; align-items: center; }
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(232,220,197,0.18); border: none; cursor: pointer; transition: all 0.35s;
}
.carousel-dot.active { background: var(--gold); width: 22px; border-radius: 3px; }

/* ══════════════════════════════════════════════════════
   RESERVATION FORM
══════════════════════════════════════════════════════ */
.reserve-form { margin-bottom: 2.5rem; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group-full { margin-bottom: 1rem; }
.form-group label {
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
}
.req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(10,28,62,0.7);
  border: 1px solid var(--glass-border);
  color: var(--sand);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group input[type="date"] { color-scheme: dark; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(232,220,197,0.28); }
.form-group option { background: #0a1830; color: var(--sand); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}
.form-group input.error,
.form-group select.error { border-color: rgba(220,80,80,0.6); }
.form-group textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.form-actions {
  display: flex; gap: 1rem; align-items: center;
  margin-top: 1.4rem; flex-wrap: wrap;
}
.btn-form-submit {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: #007BFF; color: #fff;
  border: none; cursor: pointer;
  padding: 1rem 2rem; font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  border-radius: 100px;
}
.btn-form-submit:hover {
  background: #0056b3; transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0,123,255,0.35);
}
.btn-form-call {
  display: inline-flex; align-items: center; gap: 0.55rem;
  text-decoration: none; color: var(--text-muted);
  font-size: 0.82rem; font-weight: 500;
  border: 1px solid var(--glass-border);
  padding: 1rem 1.5rem; transition: all 0.3s;
  border-radius: 100px;
}
.btn-form-call:hover { border-color: var(--teal); color: var(--teal); }
.form-success {
  margin-top: 1rem; font-size: 0.88rem; color: #4ade80;
  min-height: 1.2rem; line-height: 1.5;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; }
  .btn-form-submit, .btn-form-call { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════
   RESERVATION & MAP
══════════════════════════════════════════════════════ */
.reserve-container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.reserve-info p { color: var(--text-muted); line-height: 1.82; margin-bottom: 2rem; font-size: 0.97rem; }
.reserve-contacts { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.contact-btn {
  display: flex; align-items: center; gap: 1.2rem;
  text-decoration: none; padding: 1.2rem 1.5rem;
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px); transition: all 0.35s;
}
.contact-btn:hover { border-color: var(--gold-mid); transform: translateX(6px); }
.contact-btn.whatsapp svg { color: #25D366; }
.contact-btn.phone svg    { color: var(--teal); }
.contact-btn-label {
  display: block; font-size: 0.64rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted);
}
.contact-btn-value { display: block; color: var(--sand); font-size: 0.93rem; font-weight: 500; }
.reserve-hours h4 {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--sand); margin-bottom: 1rem;
}
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.2rem; }
.hours-grid span { font-size: 0.84rem; color: var(--text-muted); padding: 0.28rem 0; }
.hours-grid span:nth-child(even) { color: var(--sand); }
.map-container { height: 310px; border: 1px solid var(--glass-border); overflow: hidden; }
.map-container iframe { display: block; filter: saturate(0.3) contrast(1.1) brightness(0.55) sepia(0.4); }
.map-info {
  padding: 1.2rem 1.4rem; background: var(--glass);
  border: 1px solid var(--glass-border); border-top: none;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.map-info-item {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.83rem; color: var(--text-muted);
}
.map-info-item svg { color: var(--teal); flex-shrink: 0; }
.map-directions {
  color: var(--gold); text-decoration: none; font-size: 0.78rem;
  letter-spacing: 0.08em; display: inline-block; transition: color 0.2s;
}
.map-directions:hover { color: var(--sand); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer {
  position: relative; z-index: 1;
  background: rgba(4,2,1,0.99);
  padding: clamp(3.5rem,8vw,5.5rem) 0 0;
  border-top: 1px solid var(--glass-border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}
.footer-brand {
  padding-right: 3rem;
  border-right: 1px solid rgba(232,220,197,0.1);
}
.footer-logo-video {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: screen;
  display: block;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(212,175,55,0.2);
}
.footer-logo     { font-size: 1.85rem; color: var(--sand); margin-bottom: 0.2rem; }
.footer-logo-sub {
  font-size: 0.58rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.footer-tagline  { color: rgba(232,220,197,0.65); font-family: 'Playfair Display', serif; font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem; font-style: italic; }
.footer-social   { display: flex; gap: 1rem; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(212,175,55,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--sand); transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); text-decoration: none;
}
.footer-social a:hover { border-color: var(--gold); background: var(--gold); color: #040201; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(212,175,55,0.3); }
.footer-links h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem; position: relative; padding-bottom: 0.8rem;
}
.footer-links h4::after, .footer-contact h4::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 1px; background: var(--gold);
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.footer-links a  {
  text-decoration: none; color: rgba(232,220,197,0.7); font-size: 0.95rem; font-family: 'Inter', sans-serif; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.footer-links a::before {
  content: '—'; color: transparent; font-size: 0.8rem; transition: color 0.3s, transform 0.3s; transform: translateX(-10px);
}
.footer-links a:hover { color: var(--sand); transform: translateX(5px); }
.footer-links a:hover::before { color: var(--gold); transform: translateX(0); }
.footer-contact p { color: rgba(232,220,197,0.65); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.footer-contact a { color: var(--sand); text-decoration: none; transition: color 0.3s; border-bottom: 1px solid transparent; padding-bottom: 2px; }
.footer-contact a:hover { color: var(--gold); border-color: var(--gold); }
.footer-hours { color: var(--gold) !important; font-family: 'Playfair Display', serif; font-size: 1.1rem !important; margin-top: 1.5rem; font-style: italic; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.055); padding: 1.2rem 0;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(232,220,197,0.28); }
.footer-tagline-bottom { font-style: italic; }

/* ══════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════ */
/* reveal from right */
.reveal-right {
  opacity: 0; transform: translateX(52px);
  transition: opacity 1.1s cubic-bezier(0.22,1,0.36,1),
              transform 1.1s cubic-bezier(0.22,1,0.36,1);
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* stat counter pulse */
@keyframes statPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  70%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}
.stat-num.counting { animation: statPop 0.5s ease forwards; }

.reveal-up {
  opacity: 0; transform: translateY(42px);
  transition: opacity 0.95s cubic-bezier(0.22,1,0.36,1),
              transform 0.95s cubic-bezier(0.22,1,0.36,1);
}
.reveal-fade { opacity: 0; transition: opacity 1.15s ease; }
.reveal-up.revealed  { opacity: 1; transform: translateY(0); }
.reveal-fade.revealed{ opacity: 1; }

.delay-0 { transition-delay: 0s; }
.delay-1 { transition-delay: 0.16s; }
.delay-2 { transition-delay: 0.32s; }
.delay-3 { transition-delay: 0.48s; }

/* Hero entrance — CSS-driven, no JS needed */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-anim-1 {
  animation: heroFadeIn 1.1s ease both;
  animation-delay: 0.4s;
}
.hero-anim-2 {
  animation: heroFadeUp 1.2s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.7s;
}
.hero-anim-3 {
  animation: heroFadeUp 1.2s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 1.0s;
}
.hero-anim-4 {
  animation: heroFadeUp 1.2s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 1.3s;
}
.hero-anim-5 {
  animation: heroFadeIn 1.4s ease both;
  animation-delay: 1.6s;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  49%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}
@keyframes noteFloat {
  0%   { transform: translateY(0) rotate(-5deg); opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 0.6; }
  100% { transform: translateY(-130px) rotate(15deg); opacity: 0; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .story-container  { grid-template-columns: 1fr; gap: 3rem; }
  .reserve-container{ grid-template-columns: 1fr; gap: 3rem; }
  .seafood-grid     { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr; gap: 3rem; }
  .footer-brand     { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(232,220,197,0.1); padding-bottom: 3rem; }
  .story-img-badge  { right: 1rem; }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item.large, .gallery-item.large-bottom { grid-column: span 2; }
  .menu-grid  { grid-template-columns: 1fr; }
  .info-item  { padding: 0.9rem 1.4rem; }
  .story-stats{ gap: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-actions   { flex-direction: column; align-items: stretch; text-align: center; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .hero-info-strip{ display: none; }
  .story-stats    { flex-wrap: nowrap; gap: 1rem; overflow-x: auto; scrollbar-width: none; }
  .music-times    { flex-direction: column; gap: 1rem; }
  .gallery-grid   { grid-template-columns: 1fr; }
  .gallery-item.large, .gallery-item.large-bottom { grid-column: auto; }
  /* .carousel-btn   { display: none; } */
  .tab-btn        { padding: 0.7rem 1rem; font-size: 0.7rem; }
}/* ══ GALLERY FLIP ══════════════════════════════════════════════ */
.h-gallery-wrap   { position: relative; }
.h-gallery-sticky {
  position: sticky; top: 0; height: 100vh; width: 100%; overflow: hidden;
}
.flip-scene {
  position: relative; width: 100%; height: 100%;
  perspective: 1800px; perspective-origin: center center;
}
.flip-photo {
  position: absolute; inset: 0;
  transform-origin: center center;
  opacity: 0;
  transform: scale(1.08);
  will-change: transform, opacity;
  background: #040201;
  transition: none;
}
/* Door entrance for first photo */
@keyframes doorEnter {
  0%   { clip-path: inset(0 46% 0 46%); transform: scale(1.18); opacity: 1; filter: brightness(0.3); }
  35%  { clip-path: inset(0 20% 0 20%); transform: scale(1.10); opacity: 1; filter: brightness(0.65); }
  100% { clip-path: inset(0 0%  0 0%);  transform: scale(1);    opacity: 1; filter: brightness(1); }
}
.flip-photo.door-enter {
  animation: doorEnter 2.2s cubic-bezier(0.16,1,0.3,1) forwards;
}
.flip-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
/* Shadow overlay during flip */
.flip-shadow {
  position: absolute; inset: 0; z-index: 20;
  background: rgba(0,0,0,0);
  pointer-events: none;
  transition: background 0.1s;
}
/* Caption */
.flip-caption {
  position: absolute; bottom: 4.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(232,220,197,0.5);
  white-space: nowrap; z-index: 25; pointer-events: none;
  transition: opacity 0.3s ease;
}
/* Footer */
.h-gallery-footer {
  position: absolute; bottom: 1.2rem; left: 0; right: 0;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem,5vw,3rem); z-index: 25;
}
.h-gallery-counter {
  font-size: 0.7rem; letter-spacing: 0.18em;
  color: rgba(232,220,197,0.45);
}
.h-gallery-counter span { color: var(--gold); }
.h-gallery-progress {
  flex: 1; height: 1px;
  background: rgba(232,220,197,0.12);
  margin: 0 2rem; position: relative; overflow: hidden;
}
.h-gallery-progress-bar {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--gold); width: 0%;
}
.h-gallery-nav { display: flex; gap: 0.6rem; }
.h-gallery-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(18,8,2,0.65);
  border: 1px solid rgba(212,175,55,0.22);
  color: var(--sand); font-size: 1.2rem;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: all 0.3s;
}
.h-gallery-btn:hover { border-color: var(--gold); color: var(--gold); }


/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
#hero {
  position: relative; z-index: 2;
  height: 100vh; min-height: 620px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  background: #040201;
  padding: clamp(5.5rem,12vh,8rem) clamp(1.5rem,5vw,3rem) 0;
}
/* ── Ken Burns Photo Slideshow ───────────────────── */
/* ── Entrance Door Animation ────────────────── */
.hero-entrance {
  position: absolute; inset: 0; z-index: 10; overflow: hidden;
  animation: entranceFadeOut 1.4s ease forwards;
  animation-delay: 5.2s;
}
.hero-entrance-photo {
  position: absolute; inset: -12%;
  background: url('uploads/plag bleue 16-52a7c9b3.jpg') center 45%/cover no-repeat;
  animation: entranceDronePan 6.8s cubic-bezier(0.25,0.1,0.25,1) forwards;
}
@keyframes entranceDronePan {
  0%   { transform: translateX(-18%) scale(1.08); filter: brightness(1.05) saturate(1.1); }
  40%  { transform: translateX(-6%)  scale(1.04); filter: brightness(1.02) saturate(1.05); }
  75%  { transform: translateX(6%)   scale(1.01); filter: brightness(0.96); }
  100% { transform: translateX(14%)  scale(1.0);  filter: brightness(0.55) blur(1px); }
}
@keyframes entranceFadeOut {
  0%   { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}
/* ── Hero Video ───────────────────────── */
#hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 1;
}

.hero-overlay { z-index: 1;
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2,1,0,0.50) 0%,
    rgba(2,1,0,0.10) 45%,
    rgba(2,1,0,0.30) 75%,
    rgba(2,1,0,0.75) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 920px; will-change: transform;
  width: 100%;
  display: flex; flex-direction: column;
  align-items: center;
}
.hero-title {
  font-size: clamp(2.8rem, 8.5vw, 6.2rem);
  font-weight: 700; line-height: 1.06; color: var(--sand);
  text-shadow: 0 4px 50px rgba(0,0,0,0.55);
}
.title-line        { display: block; }
.title-line.accent { color: var(--gold); font-style: italic; }
.hero-actions {
  position: relative; z-index: 2;
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: nowrap;
  padding-bottom: 3rem;
}
@media (max-width: 420px) {
  .hero-actions { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; max-width: 280px; justify-content: center; }
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: #091c35;
  text-decoration: none; padding: 1.05rem 2.2rem;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.35s ease;
}
.btn-primary:hover {
  background: #c4a030; transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(212,175,55,0.42);
}
.btn-secondary {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.08); color: var(--sand);
  text-decoration: none; padding: 1.05rem 2.2rem;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid rgba(232,220,197,0.35);
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
}
.btn-secondary:hover {
  border-color: var(--gold); color: var(--gold); transform: translateY(-3px);
  background: rgba(212,175,55,0.08);
}
.hero-scroll-hint {
  position: absolute; bottom: 7.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem; z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.65rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(232,220,197,0.42);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
.hero-info-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: center; align-items: stretch;
  background: rgba(3,8,20,0.72);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-top: 1px solid var(--glass-border);
}
.info-item {
  padding: 1.15rem 2.8rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.18rem;
}
.info-label {
  font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
}
.info-value {
  font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--sand);
}
.info-divider { width: 1px; background: var(--glass-border); margin: 0.8rem 0; }

/* ══════════════════════════════════════════════
   SCROLL-DRIVEN GALLERY
══════════════════════════════════════════════ */
.cine-gallery-wrap {
  position: relative;
}
.cine-gallery-sticky {
  position: sticky; top: 0;
  width: 100%; height: 100vh;
  overflow: hidden;
}
.cine-photo {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0; z-index: 0;
}
.cine-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.h-gal-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 3;
  background: #040201;
  transform-origin: right center;
  transform: scaleX(1);
  pointer-events: none;
  will-change: transform;
}
.cine-hud {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10; display: flex;
  align-items: center; gap: 1rem;
  pointer-events: none;
}
.cine-hud-line {
  width: 40px; height: 1px;
  background: rgba(212,175,55,0.45);
}
.cine-hud-num {
  font-size: 0.68rem; letter-spacing: 0.22em;
  color: rgba(232,220,197,0.45);
}
.cine-hud-num span { color: var(--gold, #D4AF37); }

.cine-caption {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: #fff;
  text-shadow: 0 4px 25px rgba(0,0,0,0.9), 0 2px 10px rgba(0,0,0,0.6);
  text-align: center;
  pointer-events: none;
  z-index: 5;
  width: 90%;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-logo-video {
  width: 90px;
  height: 90px;
  margin-bottom: 1rem;
}



/* Force remove space between story and experience */
#story {
  padding-bottom: 1.5rem !important;
  margin-bottom:  0 !important;
}
#story .story-container {
  padding-bottom: 0 !important;
  margin-bottom:  0 !important;
  gap: 2rem !important;
}
#story .story-img-wrap {
  padding-bottom: 0 !important;
  margin-bottom:  0 !important;
}
#story .story-visual {
  margin-bottom: 0 !important;
}
#story .story-stats {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
#experience {
  padding-top: 0 !important;
  margin-top:  0 !important;
}
#experience .section-header {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ── HTML Menu Pages ─────────────────────────── */
.mnu{background:linear-gradient(150deg,#081726 0%,#0d2137 100%);padding:10px 12px 8px;overflow:hidden;color:#f0f0f0;font-family:Georgia,'Times New Roman',serif;box-sizing:border-box;font-size:10.5px;line-height:1.3}
.mnu-logo{text-align:center;color:#c9a84c;font-size:.65em;letter-spacing:2.5px;text-transform:uppercase;margin-bottom:6px;font-family:sans-serif;opacity:.72}
.mnu-s{margin-bottom:6px}
.mnu-h{color:#c9a84c;font-size:.72em;text-transform:uppercase;letter-spacing:1.8px;border-bottom:1px solid rgba(201,168,76,.22);padding-bottom:2px;margin-bottom:4px;font-family:sans-serif;font-weight:700}
.mnu-row{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:1px}
.mnu-name{font-size:.9em}
.mnu-desc{color:#7a9ab5;font-style:italic;font-size:.76em;margin-bottom:3px;padding-left:3px}
.mnu-note{color:rgba(201,168,76,.65);font-size:.7em;font-style:italic;margin-bottom:3px}
.mnu-div{border-top:1px solid rgba(201,168,76,.14);margin:5px 0}
.mnu-cols{display:flex;gap:8px}
.mnu-col{flex:1;min-width:0}
