/* ============================================================
   L'ARLEQUIN — Cuisine du Monde | Nouméa
   Design: Clean bistronome, colonial warmth, generous whitespace
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --red: #B22234;
  --gold: #D4A843;
  --green: #2D6A4F;
  --blue: #1B4965;
  --cream: #F5F0E8;
  --brown: #3D2B1F;
  --black: #1A1410;
  --white: #FEFCF9;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto; /* Lenis handles smooth scroll */
}
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--brown);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}
@media (pointer: coarse) {
  body { cursor: auto; }
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; border: none; background: none; }
@media (pointer: coarse) {
  button { cursor: auto; }
}

/* --- Selection --- */
::selection { background: var(--red); color: var(--white); }

/* --- Navigation --- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  height: var(--nav-h);
  background: transparent;
  transition: background 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
#nav.scrolled {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(61, 43, 31, 0.08);
}
.nav-logo img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
#nav.scrolled .nav-logo img { opacity: 1; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
  position: relative;
}
#nav.scrolled .nav-links a { color: var(--brown); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--white);
  border-radius: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--red); border-color: var(--red); color: var(--white) !important; }
#nav.scrolled .nav-cta { border-color: var(--brown); }
#nav.scrolled .nav-cta:hover { background: var(--red); border-color: var(--red); color: var(--white) !important; }

/* Burger */
.nav-burger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  z-index: 101;
}
.nav-burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  transition: transform 0.4s var(--ease-out), opacity 0.3s, background 0.3s;
}
#nav.scrolled .nav-burger span { background: var(--brown); }
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--cream);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--brown);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-cta {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  border: 1px solid var(--brown);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-logo img { opacity: 1; }
}

/* --- HERO --- */
#hero {
  position: relative;
  height: 200vh;
  background: var(--black);
}
#hero-canvas {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}
.hero-content {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  pointer-events: none;
  padding: 0 1rem;
}
.hero-overtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.625rem, 1vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 14vw, 16vw);
  font-weight: 900;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px);
}
.hero-baseline {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 1.5rem;
}
.hero-baseline .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: all;
  opacity: 0;
  transform: translateY(20px);
  transition: background 0.4s, border-color 0.4s;
}
.hero-cta:hover { background: var(--red); border-color: var(--red); }
.hero-cta svg { transition: transform 0.4s var(--ease-out); }
.hero-cta:hover svg { transform: translateX(4px); }

/* Scroll hint */
.hero-scroll-hint {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.6s;
}
.hero-scroll-hint span {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* --- STATEMENT --- */
#statement {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 10vh, 8rem) clamp(1.5rem, 8vw, 12rem);
  background: var(--cream);
}
.statement-inner { text-align: center; max-width: 900px; }
.statement-text {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--brown);
}
.statement-text .word {
  display: inline-block;
  opacity: 0.08;
  transition: opacity 0.1s;
}
.statement-text .word.active { opacity: 1; }
.statement-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(20px);
}
.statement-badge {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.statement-badge strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
}
.statement-divider {
  width: 1px; height: 20px;
  background: rgba(61, 43, 31, 0.2);
}
@media (max-width: 640px) {
  .statement-sub { flex-direction: column; gap: 0.75rem; }
  .statement-divider { width: 40px; height: 1px; }
}

/* --- DIAMOND TRANSITIONS --- */
.diamond-section {
  position: relative;
  height: 100vh;
  background: var(--cream);
}
.diamond-section canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 10;
  pointer-events: none;
}

/* --- GALERIE (Horizontal scroll) --- */
#galerie {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.galerie-header {
  position: absolute;
  top: clamp(1.5rem, 4vh, 3rem);
  left: clamp(1.5rem, 4vw, 3rem);
  z-index: 5;
}
.galerie-header .section-title {
  color: var(--white);
}
.galerie-track {
  display: flex;
  height: 100vh;
  will-change: transform;
}
.galerie-slide {
  flex: 0 0 80vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
}
.galerie-slide:first-child { margin-left: 10vw; }
.galerie-slide:last-child { margin-right: 10vw; }
.galerie-img-wrap {
  width: 100%;
  max-width: 70vw;
  max-height: 65vh;
  overflow: hidden;
  position: relative;
}
.galerie-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s var(--ease-out);
}
.galerie-slide.active .galerie-img-wrap img { transform: scale(1); }
.galerie-caption {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 1.25rem;
}
.galerie-counter {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 3rem);
  right: clamp(1.5rem, 4vw, 3rem);
  z-index: 5;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
}
.galerie-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

@media (max-width: 768px) {
  .galerie-slide { flex: 0 0 90vw; }
  .galerie-slide:first-child { margin-left: 5vw; }
  .galerie-slide:last-child { margin-right: 5vw; }
  .galerie-img-wrap { max-width: 85vw; }
}

/* --- SECTION TITLES --- */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--brown);
  letter-spacing: -0.02em;
}
.section-title--light { color: var(--white); }
.section-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
}

/* --- CHEF --- */
#chef {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(4rem, 10vh, 8rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--cream);
  overflow: hidden;
}
.chef-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}
.chef-image-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}
.chef-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.2s var(--ease-out), transform 1.5s var(--ease-out);
}
.chef-image-wrap.revealed img {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}
.chef-overtitle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.chef-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--brown);
  margin-bottom: 2rem;
}
.chef-name .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
}
.chef-description p {
  font-size: clamp(0.875rem, 1.1vw, 1.0625rem);
  line-height: 1.8;
  color: rgba(61, 43, 31, 0.75);
  margin-bottom: 1.5rem;
}
.chef-signature {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(61, 43, 31, 0.1);
}
.chef-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--red);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .chef-grid { grid-template-columns: 1fr; gap: 2rem; }
  .chef-image-wrap { max-height: 60vh; }
}

/* --- LA CARTE --- */
#carte {
  position: relative;
  min-height: 100vh;
  padding: clamp(6rem, 12vh, 10rem) 0;
  background: var(--brown);
  overflow: hidden;
}
#spice-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.15;
}
.carte-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
.carte-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}
.carte-note {
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  margin-top: 1.25rem;
}
.carte-category {
  margin-bottom: clamp(2.5rem, 4vh, 3.5rem);
}
.carte-cat-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}
.carte-item {
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(15px);
}
.carte-item-top {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.carte-item-name {
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.carte-item-name em {
  color: var(--gold);
  font-style: italic;
  font-size: 0.8125rem;
}
.carte-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255,255,255,0.15);
  min-width: 2rem;
  margin-bottom: 0.25rem;
}
.carte-item-price {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.carte-item-price small {
  font-size: 0.6875rem;
  font-weight: 400;
  opacity: 0.5;
  margin-left: 0.15rem;
}
.carte-item--signature {
  background: rgba(178, 34, 52, 0.08);
  padding: 0.875rem 1rem;
  margin: 0 -1rem;
  border-bottom-color: rgba(178, 34, 52, 0.15);
}

/* --- AVIS --- */
#avis {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(6rem, 12vh, 10rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--cream);
}
.avis-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.avis-inner .section-title { text-align: center; margin-bottom: clamp(3rem, 6vh, 5rem); }
.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}
.avis-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--white);
  border: 1px solid rgba(61, 43, 31, 0.06);
  opacity: 0;
  transform: translateY(30px);
  transition: box-shadow 0.4s var(--ease-out);
}
.avis-card:hover { box-shadow: 0 12px 40px rgba(61, 43, 31, 0.06); }
.avis-text {
  font-family: var(--font-serif);
  font-size: clamp(0.9375rem, 1.2vw, 1.125rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--brown);
  margin-bottom: 1.25rem;
}
.avis-source {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-style: normal;
  color: rgba(61, 43, 31, 0.5);
}
.avis-stars { color: var(--gold); font-size: 0.875rem; letter-spacing: 0.05em; }
.avis-badges {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);
}
.avis-badge {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}
.avis-badge strong {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--red);
}
.avis-badge span {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(61, 43, 31, 0.4);
}
.avis-badge small {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(61, 43, 31, 0.5);
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .avis-grid { grid-template-columns: 1fr; }
  .avis-badges { flex-direction: column; align-items: center; gap: 1.5rem; }
}

/* --- RESERVATION --- */
#reservation {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(6rem, 12vh, 10rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--white);
}
.resa-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  align-items: start;
}
.resa-intro {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(61, 43, 31, 0.65);
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.resa-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.resa-phone, .resa-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--brown);
  transition: color 0.3s;
}
.resa-phone:hover, .resa-email:hover { color: var(--red); }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(61, 43, 31, 0.5);
  margin-bottom: 0.5rem;
}
.form-group label small {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.form-group input,
.form-group select {
  padding: 0.875rem 1rem;
  border: 1px solid rgba(61, 43, 31, 0.12);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--brown);
  border-radius: 0;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(178, 34, 52, 0.08);
}
.form-group input::placeholder { color: rgba(61, 43, 31, 0.3); }
.form-group input.error,
.form-group select.error { border-color: var(--red); }
.form-error {
  font-size: 0.6875rem;
  color: var(--red);
  margin-top: 0.25rem;
  min-height: 1rem;
}
.form-submit {
  width: 100%;
  padding: 1.125rem 2rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  transition: background 0.4s, transform 0.3s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--brown); transform: translateY(-1px); }
.form-submit:active { transform: translateY(0); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.form-feedback {
  margin-top: 1rem;
  padding: 1rem;
  font-size: 0.875rem;
  text-align: center;
  display: none;
}
.form-feedback.success {
  display: block;
  background: rgba(45, 106, 79, 0.08);
  color: var(--green);
  border: 1px solid rgba(45, 106, 79, 0.2);
}
.form-feedback.error {
  display: block;
  background: rgba(178, 34, 52, 0.08);
  color: var(--red);
  border: 1px solid rgba(178, 34, 52, 0.2);
}

@media (max-width: 768px) {
  .resa-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* --- INFOS --- */
#infos {
  padding: clamp(6rem, 12vh, 10rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--cream);
}
.infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.infos-address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(61, 43, 31, 0.7);
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.infos-horaires h3,
.infos-paiements h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.75rem;
}
.infos-horaires table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.infos-horaires td {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: rgba(61, 43, 31, 0.7);
  border-bottom: 1px solid rgba(61, 43, 31, 0.06);
}
.infos-horaires td:first-child { font-weight: 500; color: var(--brown); }
.infos-paiements p {
  font-size: 0.875rem;
  color: rgba(61, 43, 31, 0.7);
  margin-bottom: 1.5rem;
}
.infos-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.infos-options span {
  padding: 0.375rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(61, 43, 31, 0.12);
  color: rgba(61, 43, 31, 0.6);
}
.infos-map-col { position: relative; }
.infos-map-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(61, 43, 31, 0.05);
}
@media (max-width: 768px) {
  .infos-grid { grid-template-columns: 1fr; }
}

/* --- FOOTER --- */
#footer {
  padding: clamp(3rem, 6vh, 5rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--black);
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand { margin-bottom: 1.5rem; }
.footer-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-links a {
  font-size: 0.8125rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.6875rem;
}
.footer-bottom p { margin-bottom: 0.25rem; }
.footer-credit a { color: var(--gold); transition: color 0.3s; }
.footer-credit a:hover { color: var(--white); }

/* --- Utility: prevent FOUC on split text --- */
[data-split] .char,
[data-split-words] .word {
  will-change: transform, opacity;
}

/* --- Loading state --- */
body.loading { overflow: hidden; }
