/* =========================================
   PLAGE LA JETÉE — Juan-les-Pins · 2026
   Style 2026 — Premium Riviera × Tokyo
   ========================================= */

/* ─────────────── 1. RESET + ROOT ─────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-bg); line-height: var(--lh-body); font-size: var(--text-body); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
img, video, svg, iframe { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 200ms var(--ease-out-expo); }
ul, ol { list-style: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }
::selection { background: var(--color-accent-2); color: var(--color-bg); }

:root {
  /* Palette */
  --color-bg: #F5EDD8;
  --color-bg-elevated: #EDE3CC;
  --color-bg-deep: #1F2E25;
  --color-text: #1F2E25;
  --color-text-muted: #5A6B5F;
  --color-text-on-deep: #F5EDD8;
  --color-accent: #1B3E5C;
  --color-accent-2: #D86A3C;
  --color-accent-3: #A8884D;
  --color-border: #D9CDB0;

  /* Gradients */
  --gradient-hero-overlay: linear-gradient(180deg, rgba(31,46,37,0) 0%, rgba(31,46,37,0.30) 60%, rgba(31,46,37,0.78) 100%);
  --gradient-mesh-cta: conic-gradient(from 180deg at 50% 50%,
    #D86A3C 0deg, #1B3E5C 120deg, #1F2E25 240deg, #D86A3C 360deg);
  --gradient-card-subtle: linear-gradient(180deg, rgba(245,237,216,1) 0%, rgba(237,227,204,1) 100%);

  /* Shadows */
  --shadow-1: 0 2px 8px rgba(31,46,37,0.06);
  --shadow-2: 0 8px 32px rgba(31,46,37,0.10);
  --shadow-3: 0 24px 80px rgba(31,46,37,0.14);

  /* Fonts */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-signature: 'Cormorant Garamond', serif;

  /* Type scale */
  --text-hero: clamp(3rem, 8vw, 6.5rem);
  --text-h1: clamp(2.5rem, 6vw, 4.5rem);
  --text-h2: clamp(2rem, 4.5vw, 3.25rem);
  --text-h2-large: clamp(2.5rem, 6vw, 4.75rem);
  --text-h3: clamp(1.4rem, 2.4vw, 1.85rem);
  --text-body: clamp(1rem, 1.05vw, 1.0625rem);
  --text-lead: clamp(1.125rem, 1.4vw, 1.375rem);
  --text-small: 0.875rem;
  --text-eyebrow: 0.75rem;

  --lh-display: 1.05;
  --lh-h2: 1.15;
  --lh-body: 1.65;
  --ls-display: -0.02em;
  --ls-eyebrow: 0.18em;

  /* Tokens */
  --container-max: 1280px;
  --container-pad-inline: clamp(1.5rem, 5vw, 3rem);
  --section-pad-block: clamp(5rem, 10vw, 8rem);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-mid: 500ms;
  --duration-slow: 900ms;
}

/* ─────────────── 2. UTILITIES ─────────────── */
.container { max-width: var(--container-max); margin: 0 auto; padding-inline: var(--container-pad-inline); width: 100%; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 9999; background: var(--color-bg-deep); color: var(--color-text-on-deep); padding: 1rem 1.5rem; border-radius: 0 0 var(--radius-sm) 0; }
.skip-link:focus { left: 0; }

.eyebrow { font-family: var(--font-body); font-size: var(--text-eyebrow); font-weight: 500; letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--color-accent); margin-bottom: 1.25rem; }
.eyebrow-light { color: var(--color-bg); opacity: 0.85; }

.h2 { font-family: var(--font-display); font-size: var(--text-h2); font-weight: 400; line-height: var(--lh-h2); letter-spacing: var(--ls-display); color: var(--color-text); font-optical-sizing: auto; font-variation-settings: "opsz" 80; }
.h2 em { font-style: italic; font-weight: 400; color: var(--color-accent); display: block; font-variation-settings: "opsz" 100; }
.h2-large { font-size: var(--text-h2-large); font-variation-settings: "opsz" 144; }

.lead { font-size: var(--text-lead); line-height: 1.55; color: var(--color-text); }

/* ─────────────── 3. CURSOR + SCROLL PROGRESS ─────────────── */
.cursor, .cursor-dot { position: fixed; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: opacity 300ms ease, width 250ms var(--ease-out-expo), height 250ms var(--ease-out-expo), background-color 250ms; mix-blend-mode: difference; }
.cursor { width: 36px; height: 36px; border: 1.5px solid #F5EDD8; border-radius: 50%; opacity: 0; }
.cursor-dot { width: 6px; height: 6px; background: #F5EDD8; border-radius: 50%; opacity: 0; }
.cursor.is-hover { width: 60px; height: 60px; background-color: rgba(216,106,60,0.16); border-color: #D86A3C; }
@media (hover: hover) and (pointer: fine) {
  body.cursor-ready { cursor: none; }
  body.cursor-ready a, body.cursor-ready button { cursor: none; }
  body.cursor-ready .cursor, body.cursor-ready .cursor-dot { opacity: 1; }
}

.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: var(--color-accent-2); z-index: 1000; transition: width 100ms linear; }

/* ─────────────── 4. NAV ─────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); background: rgba(245,237,216,0.72); border-bottom: 1px solid rgba(31,46,37,0.08); transition: background 300ms, box-shadow 300ms; }
.nav.is-scrolled { background: rgba(245,237,216,0.92); box-shadow: var(--shadow-1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 0.875rem var(--container-pad-inline); max-width: var(--container-max); margin: 0 auto; }
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.brand-script { font-family: var(--font-signature); font-style: italic; font-size: 1.75rem; color: var(--color-text); }
.brand-est { font-family: var(--font-body); font-size: 0.625rem; letter-spacing: 0.2em; color: var(--color-text-muted); margin-top: 2px; }
.nav-links { display: none; gap: 2.25rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--color-text); position: relative; padding: 0.25rem 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform 400ms var(--ease-out-expo); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-hamburger { width: 40px; height: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--color-text); transition: transform 300ms var(--ease-out-expo), opacity 200ms; transform-origin: center; }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 900px) { .nav-hamburger { display: none; } }

.mobile-menu { position: fixed; inset: 0; background: var(--color-bg-deep); color: var(--color-text-on-deep); z-index: 99; padding: 6rem var(--container-pad-inline) 3rem; transform: translateX(100%); transition: transform 400ms var(--ease-out-expo); visibility: hidden; }
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu-inner a { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--color-text-on-deep); border-bottom: 1px solid rgba(245,237,216,0.12); padding-bottom: 1rem; }
.mobile-menu-inner a.btn { font-family: var(--font-body); font-size: 0.95rem; border: 0; padding: 1.1rem 1.6rem; margin-top: 1rem; text-align: center; }

/* ─────────────── 5. BUTTONS ─────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.95rem 1.6rem; font-family: var(--font-body); font-size: 0.9375rem; font-weight: 500; letter-spacing: 0.01em; border-radius: var(--radius-sm); transition: transform 300ms var(--ease-out-expo), box-shadow 300ms, background-color 250ms, color 250ms; white-space: nowrap; }
.btn-pill { border-radius: var(--radius-pill); }
.btn-large { padding: 1.1rem 2rem; font-size: 1rem; }
.btn-coral { background: var(--color-accent-2); color: var(--color-bg); box-shadow: 0 8px 24px rgba(216,106,60,0.28); }
.btn-coral:hover { background: #c25a30; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(216,106,60,0.40); }
.btn-cream { background: var(--color-bg); color: var(--color-text); }
.btn-cream:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn-outline { border: 1px solid var(--color-text); color: var(--color-text); }
.btn-outline:hover { background: var(--color-text); color: var(--color-bg); }
.btn-outline-cream { border: 1px solid var(--color-bg); color: var(--color-bg); }
.btn-outline-cream:hover { background: var(--color-bg); color: var(--color-text); }

/* ─────────────── 6. HERO ─────────────── */
.hero { position: relative; min-height: 100dvh; width: 100%; display: flex; align-items: center; justify-content: center; padding: clamp(5rem, 12vh, 8rem) var(--container-pad-inline); overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: var(--gradient-hero-overlay); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 900px; text-align: center; color: var(--color-bg); }
.hero-content .eyebrow { color: var(--color-bg); opacity: 0.9; }

.hero-title { font-family: var(--font-display); font-size: var(--text-hero); line-height: var(--lh-display); letter-spacing: var(--ls-display); font-weight: 300; font-variation-settings: "opsz" 144; color: var(--color-bg); margin-bottom: 1rem; }
.hero-title .line-1 { display: block; }
.hero-title .line-2 { display: block; font-style: italic; font-weight: 400; }

.hero-signature { font-family: var(--font-signature); font-style: italic; font-size: clamp(1.125rem, 1.6vw, 1.5rem); color: var(--color-bg); opacity: 0.78; margin-bottom: 2rem; letter-spacing: 0.02em; }

.hero-subtitle { font-size: clamp(1rem, 1.3vw, 1.2rem); font-weight: 400; line-height: 1.55; color: var(--color-bg); opacity: 0.92; max-width: 640px; margin: 0 auto 2.5rem; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.scroll-indicator { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.75rem; z-index: 2; color: var(--color-bg); opacity: 0.75; }
.scroll-indicator span { font-size: 0.625rem; letter-spacing: 0.25em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 60px; background: var(--color-bg); position: relative; overflow: hidden; }
.scroll-line::after { content: ""; position: absolute; top: -60px; left: 0; right: 0; height: 60px; background: var(--color-accent-2); animation: scroll-pulse 2.4s ease-in-out infinite; }
@keyframes scroll-pulse { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(120px); } }

/* ─────────────── 7. STRIP COMPTEURS + MARQUEE ─────────────── */
.strip { background: var(--color-bg-elevated); padding-block: clamp(3.5rem, 7vw, 5rem); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.counters { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; text-align: center; }
@media (min-width: 700px) { .counters { grid-template-columns: repeat(5, 1fr); } }
.counter { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.counter-num { font-family: var(--font-display); font-size: clamp(2.5rem, 4.5vw, 3.5rem); font-weight: 400; line-height: 1; color: var(--color-text); font-variation-settings: "opsz" 144; letter-spacing: -0.02em; }
.counter-static { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: var(--color-accent-3); letter-spacing: 0.04em; }
.counter-label { font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; justify-content: center; }
.counter-icon { color: var(--color-accent); }
.stars { display: inline-flex; gap: 1px; }

.marquee { margin-top: 3rem; overflow: hidden; padding-block: 1.25rem; border-top: 1px solid var(--color-border); position: relative; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(to right, var(--color-bg-elevated), transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, var(--color-bg-elevated), transparent); }
.marquee-track { display: flex; gap: 2rem; align-items: center; white-space: nowrap; animation: marquee-scroll 60s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--font-signature); font-style: italic; font-size: clamp(1rem, 1.4vw, 1.25rem); color: var(--color-text); }
.marquee-item em { font-style: normal; color: var(--color-text-muted); font-family: var(--font-body); font-size: 0.8125rem; margin-left: 0.5rem; letter-spacing: 0.05em; }
.marquee-sep { color: var(--color-accent-3); font-size: 1.5rem; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─────────────── 8. HISTOIRE (parallax) ─────────────── */
.histoire { position: relative; background: var(--color-bg-deep); color: var(--color-text-on-deep); padding: clamp(6rem, 12vw, 10rem) 0 clamp(8rem, 14vw, 12rem); overflow: hidden; }
.histoire-parallax { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.parallax-layer { position: absolute; inset: -10% 0; background-size: cover; background-position: center; background-repeat: no-repeat; will-change: transform; }
.parallax-1 { opacity: 0.18; filter: grayscale(0.3) brightness(0.7); }
.parallax-2 { opacity: 0.25; mix-blend-mode: screen; filter: blur(2px); }
.histoire::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,46,37,0.75) 0%, rgba(31,46,37,0.92) 100%); z-index: 1; }
.histoire-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 900px) {
  .histoire-content { grid-template-columns: 1fr 1.3fr; gap: 5rem; }
}
.histoire-left .eyebrow { color: var(--color-accent-2); }
.histoire-left .h2 { color: var(--color-text-on-deep); }
.histoire-left .h2 em { color: var(--color-accent-2); }

.timeline { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.timeline-year { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--color-accent-3); letter-spacing: 0.05em; }
.timeline-divider { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--color-accent-3), transparent); max-width: 200px; }

.histoire-right p { font-size: var(--text-lead); line-height: 1.7; color: rgba(245,237,216,0.86); margin-bottom: 1.5rem; }
.histoire-right p:last-child { margin-bottom: 0; }
.histoire-right strong { color: var(--color-bg); font-weight: 500; font-family: var(--font-display); font-size: 1.25em; letter-spacing: -0.01em; }

.wave-divider { position: absolute; bottom: -1px; left: 0; right: 0; width: 100%; height: 80px; z-index: 3; }

/* ─────────────── 9. RIVIERA × TOKYO ─────────────── */
.rivtokyo { padding-block: var(--section-pad-block); background: var(--color-bg); }
.section-head { max-width: 720px; margin-bottom: 4rem; }
.intro { max-width: 820px; margin: 0 auto 4rem; }
.intro p { font-size: var(--text-lead); line-height: 1.75; color: var(--color-text); }
.intro em { font-style: italic; color: var(--color-accent); }

.cards-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 800px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }

.card-photo { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-1); background: var(--color-bg-elevated); transition: transform 500ms var(--ease-out-expo), box-shadow 500ms; }
.card-photo:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }
.card-photo-img { aspect-ratio: 3/4; overflow: hidden; }
.card-photo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out-expo); }
.card-photo:hover .card-photo-img img { transform: scale(1.05); }
.card-photo-caption { padding: 1.5rem 1.5rem 1.75rem; }
.card-photo-caption h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--text-h3); margin-bottom: 0.5rem; color: var(--color-text); letter-spacing: -0.01em; }
.card-photo-caption p { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.5; }

/* ─────────────── 10. CARTE ─────────────── */
.carte { background: var(--color-bg-elevated); padding-block: var(--section-pad-block); }
.menu-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 700px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.menu-card { background: var(--gradient-card-subtle); border: 1px solid var(--color-accent-3); border-radius: var(--radius-md); padding: 2rem 1.75rem; transition: transform 400ms var(--ease-out-expo), box-shadow 400ms, border-color 400ms; position: relative; overflow: hidden; }
.menu-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--color-accent-3); opacity: 0.4; }
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--color-accent-2); }
.menu-card h3 { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: 1.5rem; margin-bottom: 1.25rem; color: var(--color-accent); letter-spacing: -0.01em; }
.menu-card ul li { font-size: 0.9375rem; color: var(--color-text); padding: 0.5rem 0; border-bottom: 1px dashed rgba(168,136,77,0.25); }
.menu-card ul li:last-child { border-bottom: 0; }
.menu-card ul li em { color: var(--color-text-muted); font-size: 0.85rem; font-style: italic; }

.carte-mention { text-align: center; font-family: var(--font-signature); font-style: italic; font-size: 1.25rem; color: var(--color-text-muted); }

/* ─────────────── 11. SHOWREEL ─────────────── */
.showreel { position: relative; padding-block: var(--section-pad-block); background: var(--color-bg-deep); overflow: hidden; }
.showreel-halo { position: absolute; top: 20%; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(216,106,60,0.25) 0%, transparent 65%); filter: blur(60px); z-index: 0; }
.showreel-frame { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.12); box-shadow: var(--shadow-3); background: #000; }
.showreel-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.showreel-caption { position: relative; z-index: 1; text-align: center; margin-top: 2rem; font-family: var(--font-signature); font-style: italic; font-size: clamp(1.25rem, 2vw, 1.65rem); color: var(--color-bg); letter-spacing: 0.01em; }

/* ─────────────── 12. JOURNÉE ─────────────── */
.journee { padding-block: var(--section-pad-block); background: var(--color-bg); }
.moment { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; margin-bottom: clamp(4rem, 8vw, 6.5rem); }
.moment:last-child { margin-bottom: 0; }

@media (min-width: 900px) {
  .moment { grid-template-columns: 1.2fr 1fr; gap: 4.5rem; }
  .moment-right { grid-template-columns: 1fr 1.2fr; }
  .moment-right .moment-photo { order: 2; }
  .moment-right .moment-text { order: 1; }
}

.moment-photo { position: relative; aspect-ratio: 3/2; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-2); }
.moment-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out-expo); }
.moment-photo:hover img { transform: scale(1.04); }
.moment-hour { font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--color-accent-2); margin-bottom: 1rem; }
.moment-text h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.75rem, 3.5vw, 2.5rem); line-height: 1.15; margin-bottom: 1rem; color: var(--color-text); letter-spacing: -0.02em; font-variation-settings: "opsz" 80; }
.moment-text p { font-size: var(--text-lead); line-height: 1.65; color: var(--color-text); max-width: 480px; }
.moment-text p em { font-family: var(--font-signature); font-style: italic; font-size: 1.1em; color: var(--color-accent); }

/* ─────────────── 13. CTA MESH ─────────────── */
.cta-mesh { position: relative; padding-block: clamp(7rem, 14vw, 11rem); overflow: hidden; isolation: isolate; }
.cta-mesh-bg { position: absolute; inset: -40%; z-index: 0; background: var(--gradient-mesh-cta); animation: mesh-rotate 35s linear infinite; filter: saturate(1.1); }
.cta-mesh-blur { position: absolute; inset: 0; z-index: 1; backdrop-filter: blur(80px) saturate(110%); -webkit-backdrop-filter: blur(80px) saturate(110%); background: rgba(31,46,37,0.20); }
@keyframes mesh-rotate { 0% { transform: rotate(0deg) scale(1.2); } 100% { transform: rotate(360deg) scale(1.2); } }

.cta-content { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; text-align: center; color: var(--color-bg); }
.cta-content .h2-large { color: var(--color-bg); }
.cta-content .h2-large em { color: #FBD9C5; font-style: italic; }
.cta-sub { font-size: var(--text-lead); margin: 1.5rem 0 2.5rem; opacity: 0.92; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.cta-mention { font-size: 0.875rem; opacity: 0.85; letter-spacing: 0.02em; }
.cta-mention a { color: inherit; border-bottom: 1px solid rgba(245,237,216,0.4); }
.cta-mention a:hover { border-bottom-color: var(--color-bg); }

/* ─────────────── 14. FOOTER ─────────────── */
.footer { background: var(--color-bg-deep); color: var(--color-text-on-deep); padding: clamp(4rem, 8vw, 6rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 4rem; } }

.footer-script { font-family: var(--font-signature); font-style: italic; font-size: 2.5rem; line-height: 1; color: var(--color-bg); margin-bottom: 0.25rem; }
.footer-est { font-size: 0.625rem; letter-spacing: 0.25em; color: var(--color-accent-3); margin-bottom: 1.5rem; }
.footer address { font-style: normal; font-size: 0.9375rem; line-height: 1.7; color: rgba(245,237,216,0.82); margin-bottom: 1.5rem; }
.footer-legal { font-size: 0.75rem; color: rgba(245,237,216,0.5); letter-spacing: 0.04em; }

.footer-col h4 { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: 1.25rem; color: var(--color-accent-3); margin-bottom: 1.25rem; letter-spacing: 0; }

.footer-hours { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1rem; font-size: 0.9rem; color: rgba(245,237,216,0.82); }
.footer-hours dt { color: var(--color-bg); font-weight: 500; }
.footer-hours dd { color: rgba(245,237,216,0.7); }

.footer-contact li { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; }
.footer-contact a { color: rgba(245,237,216,0.85); font-size: 0.9375rem; transition: color 200ms; }
.footer-contact a:hover { color: var(--color-accent-2); }
.footer-contact svg { color: var(--color-accent-3); flex-shrink: 0; }

.footer-map { aspect-ratio: 16/5; border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(245,237,216,0.12); margin-bottom: 2rem; filter: hue-rotate(20deg) saturate(0.7) brightness(0.8); }
.footer-map iframe { width: 100%; height: 100%; }

.footer-bottom { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 2rem; border-top: 1px solid rgba(245,237,216,0.12); font-size: 0.8125rem; color: rgba(245,237,216,0.55); }
@media (min-width: 700px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-bottom a { color: var(--color-accent-3); border-bottom: 1px solid transparent; transition: border-color 200ms; }
.footer-bottom a:hover { border-bottom-color: var(--color-accent-3); }

/* ─────────────── 15. MOBILE CTA ─────────────── */
.mobile-cta { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 60px; height: 60px; border-radius: 50%; background: var(--color-accent-2); color: var(--color-bg); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px rgba(216,106,60,0.45); z-index: 80; opacity: 0; pointer-events: none; transform: scale(0.7); transition: opacity 400ms var(--ease-out-expo), transform 400ms var(--ease-out-expo); }
.mobile-cta.is-visible { opacity: 1; pointer-events: auto; transform: scale(1); }
@media (min-width: 900px) { .mobile-cta { display: none; } }

/* ─────────────── 16. REVEAL ANIMATIONS ─────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 900ms var(--ease-out-expo), transform 900ms var(--ease-out-expo); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal > * { transition-delay: 0ms; }

/* Stagger for direct children of reveal */
.reveal.is-visible > *:nth-child(2) { animation-delay: 80ms; }
.reveal.is-visible > *:nth-child(3) { animation-delay: 160ms; }
.reveal.is-visible > *:nth-child(4) { animation-delay: 240ms; }

/* Stagger for grids */
.cards-3.reveal.is-visible .card-photo,
.menu-grid.reveal.is-visible .menu-card { opacity: 0; animation: fadeInUp 800ms var(--ease-out-expo) forwards; }
.cards-3.reveal.is-visible .card-photo:nth-child(1),
.menu-grid.reveal.is-visible .menu-card:nth-child(1) { animation-delay: 60ms; }
.cards-3.reveal.is-visible .card-photo:nth-child(2),
.menu-grid.reveal.is-visible .menu-card:nth-child(2) { animation-delay: 140ms; }
.cards-3.reveal.is-visible .card-photo:nth-child(3),
.menu-grid.reveal.is-visible .menu-card:nth-child(3) { animation-delay: 220ms; }
.menu-grid.reveal.is-visible .menu-card:nth-child(4) { animation-delay: 300ms; }
.menu-grid.reveal.is-visible .menu-card:nth-child(5) { animation-delay: 380ms; }
.menu-grid.reveal.is-visible .menu-card:nth-child(6) { animation-delay: 460ms; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ─────────────── 17. REDUCED MOTION ─────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .cta-mesh-bg { animation: none; }
}

/* ─────────────── 18. PRINT ─────────────── */
@media print {
  .nav, .mobile-menu, .scroll-progress, .scroll-indicator, .cursor, .cursor-dot, .mobile-cta, .hero-video, .showreel video, .cta-mesh-bg { display: none !important; }
  body { background: white; color: black; }
}
