/* ============================================================
   NEBBIA — style.css
   Nature. Luxe. Corse.
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --cream:       #f4f0e6;
  --cream-dark:  #ece7d8;
  --ink:         #18160f;
  --ink-soft:    #2a271e;
  --forest:      #3b5030;
  --forest-mid:  #536e45;
  --gold:        #b8925a;
  --muted:       #7a7260;
  --border:      #d4c9b0;

  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Barlow', 'Helvetica Neue', sans-serif;
  --cond:        'Barlow Condensed', 'Helvetica Neue', sans-serif;

  --pad-section: 120px;
  --header-h:    72px;
  --ease:        0.3s ease;
  --ease-slow:   0.65s ease;
}

/* ── BRUME / FOG ────────────────────────────────────────────── */
/*
  3 couches de brume positionnées en fixed, z-index 1 (entre
  l'overlay hero et le texte). Dissolution contrôlée par JS au scroll.
  Disparaît complètement avant la section L'Esprit.
*/
.nebbia-fog {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  will-change: opacity, transform;
}

.nebbia-fog span {
  display: block;
  position: absolute;
  border-radius: 50%;
}

/* Couche A — nappe principale, très dense */
.fog-a {
  width: 140vw;
  height: 70vh;
  top: 8%;
  left: -20%;
  background: radial-gradient(ellipse 75% 75% at 50% 50%,
    rgba(238, 232, 212, 0.72) 0%,
    rgba(238, 232, 212, 0.38) 38%,
    rgba(238, 232, 212, 0.10) 60%,
    transparent 72%
  );
  filter: blur(28px);
  animation: fog-drift-a 9s ease-in-out infinite alternate;
}

/* Couche B — nappe droite, contrepoint */
.fog-b {
  width: 100vw;
  height: 55vh;
  top: 35%;
  right: -18%;
  background: radial-gradient(ellipse 75% 75% at 50% 50%,
    rgba(230, 224, 202, 0.58) 0%,
    rgba(230, 224, 202, 0.26) 40%,
    rgba(230, 224, 202, 0.08) 60%,
    transparent 72%
  );
  filter: blur(40px);
  animation: fog-drift-b 12s ease-in-out infinite alternate;
}

/* Couche C — voile de fond, large et diffus */
.fog-c {
  width: 120vw;
  height: 80vh;
  top: 10%;
  left: 5%;
  background: radial-gradient(ellipse 75% 75% at 50% 50%,
    rgba(242, 236, 216, 0.42) 0%,
    rgba(242, 236, 216, 0.18) 42%,
    transparent 68%
  );
  filter: blur(55px);
  animation: fog-drift-c 16s ease-in-out infinite alternate;
}

@keyframes fog-drift-a {
  from { transform: translateX(0)     translateY(0); }
  to   { transform: translateX(12vw)  translateY(-7vh); }
}
@keyframes fog-drift-b {
  from { transform: translateX(0)     translateY(0); }
  to   { transform: translateX(-14vw) translateY(8vh); }
}
@keyframes fog-drift-c {
  from { transform: translateX(0)     translateY(0)    scale(1);    }
  to   { transform: translateX(8vw)   translateY(-5vh) scale(1.10); }
}

@media (prefers-reduced-motion: reduce) {
  .nebbia-fog span { animation: none; }
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
sup { font-size: 0.65em; vertical-align: super; }

/* ── TYPOGRAPHY HELPERS ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}

.label {
  font-family: var(--cond);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.label--light { color: rgba(244, 240, 230, 0.45); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ink);
  margin-top: 6px;
}

.rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── PLACEHOLDER IMAGES ─────────────────────────────────────── */
/* Remove these once real photos are in place */
.ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 16px 20px;
}

.ph span {
  font-family: var(--cond);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.5;
}

.ph--esprit { background: linear-gradient(150deg, #1e3018 0%, #152212 100%); }
.ph--sea    { background: linear-gradient(150deg, #0c1e38 0%, #0a2840 60%, #061520 100%); }
.ph--land   { background: linear-gradient(150deg, #1e2e10 0%, #2a3c18 60%, #161e0c 100%); }
.ph--hidden { background: linear-gradient(150deg, #261e10 0%, #302616 60%, #1a1208 100%); }
.ph--para   { background: linear-gradient(150deg, #10182e 0%, #1a2a46 50%, #0c1220 100%); }
.ph--fish   { background: linear-gradient(150deg, #08141e 0%, #0c2230 55%, #061018 100%); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-outline {
  display: inline-block;
  font-family: var(--cond);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244, 240, 230, 0.9);
  border: 1px solid rgba(244, 240, 230, 0.35);
  padding: 15px 40px;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.btn-dark {
  display: inline-block;
  font-family: var(--cond);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  border: none;
  padding: 15px 48px;
  cursor: pointer;
  transition: background var(--ease);
}

.btn-dark:hover { background: var(--forest); }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal,
.reveal-child {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible,
.reveal-child.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-child:nth-child(2) { transition-delay: 0.12s; }
.reveal-child:nth-child(3) { transition-delay: 0.24s; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  /* Extend behind Dynamic Island / notch */
  box-sizing: border-box;
  height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  transition: background var(--ease), backdrop-filter var(--ease);
}

.header.scrolled {
  background: rgba(18, 16, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-family: var(--cond);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  color: var(--cream);
  transition: opacity var(--ease);
}

.logo-text:hover { opacity: 0.65; }

.header__nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.header__nav a {
  font-family: var(--cond);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 240, 230, 0.7);
  transition: color var(--ease);
}

.header__nav a:hover { color: var(--cream); }

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  font-family: var(--cond);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(244, 240, 230, 0.45);
  border-bottom: 1px solid rgba(244, 240, 230, 0.2);
  padding-bottom: 1px;
  transition: color var(--ease), border-color var(--ease);
}

.lang-switch:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--cream);
  transition: var(--ease);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  inset: calc(var(--header-h) + env(safe-area-inset-top, 0px)) 0 0 0;
  background: var(--ink);
  z-index: 190;
  padding: 56px 32px;
  transform: translateX(100%);
  transition: transform var(--ease-slow);
}

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

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-nav nav a {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--cream);
  font-weight: 300;
  transition: color var(--ease);
}

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

.mobile-nav .mobile-lang {
  font-family: var(--cond) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.2em;
  color: rgba(244, 240, 230, 0.4) !important;
  border-top: 1px solid rgba(244, 240, 230, 0.1);
  padding-top: 24px;
  margin-top: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: #141c10;
}

.hero__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 10, 6, 0.28) 0%,
    rgba(12, 10, 6, 0.52) 50%,
    rgba(12, 10, 6, 0.72) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 780px;
}

/* Emergence depuis la brume — animation de base */
@keyframes fog-emerge {
  from {
    opacity: 0;
    filter: blur(22px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.hero__eyebrow {
  font-family: var(--cond);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fog-emerge 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero__tagline {
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  animation: fog-emerge 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.hero__sub {
  font-family: var(--cond);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 240, 230, 0.65);
  margin-bottom: 44px;
  animation: fog-emerge 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s both;
}

.hero__content .btn-outline {
  animation: fog-emerge 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.7s both;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(244,240,230,0) 0%, rgba(244,240,230,0.5) 100%);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   L'ESPRIT
   ============================================================ */
.esprit {
  padding: var(--pad-section) 0;
  background: var(--cream);
}

.esprit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

/* .esprit__text { max-width: 500px; } */

.esprit__title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-style: italic;
  color: var(--ink);
}

.esprit__text p {
  font-size: 0.97rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 18px;
}

.esprit__quote {
  font-family: var(--serif) !important;
  font-size: 1.05rem !important;
  font-style: italic;
  color: var(--ink) !important;
  font-weight: 400 !important;
  margin-bottom: 0 !important;
}

/* Visual with offset-frame effect */
.esprit__visual {
  position: relative;
  /* height: 560px; */
}

.esprit__visual .ph,
.esprit__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.esprit__visual::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--border);
  z-index: -1;
  pointer-events: none;
}

/* ============================================================
   EXPÉRIENCES
   ============================================================ */
.experiences {
  padding: var(--pad-section) 0;
  background: var(--cream-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .label { display: block; }

/* ── Spotlight Carousel ── */
.exp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.exp-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.exp-nav__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.exp-nav__btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.exp-stage {
  overflow: hidden;
  width: 100%;
  padding: 52px 0 56px;
  cursor: grab;
  user-select: none;
}

.exp-stage:active { cursor: grabbing; }

.exp-track {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.exp-card {
  flex: 0 0 clamp(220px, 26vw, 360px);
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    opacity   0.55s ease,
    box-shadow 0.55s ease;
  transform: scale(0.78);
  opacity: 0.45;
}

.exp-card.is-active {
  transform: scale(1);
  opacity: 1;
  cursor: default;
}

.exp-card.is-adjacent {
  transform: scale(0.85);
  opacity: 0.68;
}

.exp-card.is-far {
  transform: scale(0.76);
  opacity: 0.38;
}

.exp-card__photo {
  position: absolute;
  inset: 0;
}

.exp-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
  filter: brightness(0.92) saturate(1.15) sepia(0.08);
}

.exp-card.is-active .exp-card__photo img { transform: scale(1.04); }

.exp-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 4, 2, 0.96) 0%,
    rgba(6, 4, 2, 0.60) 38%,
    rgba(6, 4, 2, 0.15) 62%,
    transparent 78%
  );
}

.exp-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 26px 28px;
}

.exp-card__cat {
  font-family: var(--cond);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.exp-card__name {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  color: #fff;
  font-weight: 400;
  line-height: 1.08;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.exp-card__arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.exp-card.is-active:hover .exp-card__arrow {
  opacity: 1;
  transform: scale(1);
}

.exp-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.exp-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.exp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.exp-dot.is-active {
  background: var(--gold);
  transform: scale(1.5);
}

.exp-active-desc {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.85;
  max-width: 580px;
  text-align: center;
  margin-top: 22px;
  transition: opacity 0.25s ease;
}

@media (max-width: 768px) {
  .exp-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .exp-card { flex: 0 0 clamp(200px, 72vw, 300px); border-radius: 12px; }
  .exp-card__name { font-size: 1.2rem; }
}

/* ============================================================
   ITINÉRAIRE — Fil du voyage
   ============================================================ */
.itineraire {
  padding: var(--pad-section) 0;
  background: var(--cream);
  overflow: hidden;
}

.iti__sub {
  max-width: 560px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
}

/* Horizontal timeline — 5 columns, dot centred on a gold line */
.iti-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 72px;
  position: relative;
  min-height: 340px;
}

/* The connecting gold thread */
.iti-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold) 8%,
    var(--gold) 92%,
    transparent 100%);
  opacity: 0.45;
  transform: translateY(-50%);
  pointer-events: none;
}

/* CSS Grid guarantees the dot sits at exactly 50% of each column regardless of text length */
.iti-day {
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  padding: 0 14px;
}

.iti-day__content,
.iti-day__empty {
  width: 100%;
}

/* Above days: content aligned to bottom of top row (near the dot) */
.iti-day--above .iti-day__content {
  align-self: end;
  padding-bottom: 28px;
  text-align: center;
}

/* Below days: content aligned to top of bottom row (near the dot) */
.iti-day--below .iti-day__content {
  align-self: start;
  padding-top: 28px;
  text-align: center;
}

/* Numbered circle sitting on the line */
.iti-day__dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background var(--ease), color var(--ease);
}

.iti-day__dot span {
  font-family: var(--cond);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  transition: color var(--ease);
}

.iti-day:hover .iti-day__dot {
  background: var(--gold);
}

.iti-day:hover .iti-day__dot span {
  color: var(--cream);
}

.iti-day__content h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.iti-day__content p {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
}

/* Winter tag in esprit */
.esprit__winter {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 2px solid var(--gold);
  background: var(--cream-dark);
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  font-style: italic;
}

/* ============================================================
   BUILDER — Je construis mon voyage
   ============================================================ */
.builder {
  padding: var(--pad-section) 0;
  background: #191410;
}

.builder .section-title          { color: rgba(240, 234, 216, 0.92); }
.builder .label                   { color: rgba(184, 146, 90, 0.72); }
.builder .builder__sub            { color: rgba(240, 234, 216, 0.46); }
.builder .builder__day-head       { border-color: rgba(240, 234, 216, 0.1); }
.builder .builder__day-name       { color: rgba(240, 234, 216, 0.46); }
.builder .day-slot                { border-color: rgba(240, 234, 216, 0.13); }
.builder .day-slot.drag-over      { background: rgba(184, 146, 90, 0.10); border-color: var(--gold); }
.builder .day-slot__empty         { color: rgba(240, 234, 216, 0.18); }
.builder .builder__palette-label  { color: rgba(240, 234, 216, 0.38); }
.builder .builder__send           { background: var(--gold); color: var(--cream); }
.builder .builder__send:hover     { background: #a07840; }

.builder__sub {
  max-width: 560px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
}

/* ── Day board ── */
.builder__board-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 64px;
}

.builder__days-btn {
  flex-shrink: 0;
  width: 34px;
  height: 56px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--cond);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 2px;
  transition: background var(--ease), color var(--ease);
}

.builder__days-btn:hover {
  background: var(--gold);
  color: var(--ink);
}

.builder__days-btn:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.builder__board {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(var(--builder-days, 5), 1fr);
  gap: 10px;
}

.builder__day {
  display: flex;
  flex-direction: column;
}

.builder__day-head {
  padding: 14px 10px 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
  text-align: center;
}

.builder__day-num {
  display: block;
  font-family: var(--cond);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.builder__day-name {
  display: block;
  font-family: var(--serif);
  font-size: 0.72rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 3px;
}

/* ── Drop zone ── */
.day-slot {
  flex: 1;
  min-height: 200px;
  border: 1px dashed var(--border);
  border-radius: 2px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background var(--ease), border-color var(--ease);
}

.day-slot.drag-over {
  background: rgba(184, 146, 90, 0.08);
  border-color: var(--gold);
  border-style: solid;
}

.day-slot__empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cond);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--border);
  pointer-events: none;
}

/* ── Activity card ── */
.act-card {
  position: relative;
  border-radius: 2px;
  padding: 14px 12px 12px;
  cursor: grab;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  user-select: none;
  flex-shrink: 0;
}

/* Background photo layer */
.act-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
  filter: brightness(0.90) saturate(1.12) sepia(0.10);
}

.act-card:hover .act-card__bg { transform: scale(1.06); }

/* Touch states */
.act-card--selected {
  box-shadow: 0 0 0 2px var(--gold), 0 4px 18px rgba(184, 146, 90, 0.35);
  transform: scale(1.03);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.day-slot.touch-hint {
  border-color: var(--gold);
  border-style: dashed;
  background: rgba(184, 146, 90, 0.07);
}

/* Dark gradient overlay so text stays readable */
.act-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 5, 2, 0.82) 0%,
    rgba(6, 5, 2, 0.35) 55%,
    rgba(6, 5, 2, 0.12) 100%
  );
}

.act-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.32); }
.act-card:active { cursor: grabbing; }
.act-card.dragging { opacity: 0.35; transform: scale(0.96); }

/* Text sits above image overlay */
.act-card__label,
.act-card__sub,
.act-card__remove { position: relative; z-index: 1; }

.act-card__label {
  font-family: var(--serif);
  font-size: 0.88rem;
  color: rgba(244, 240, 230, 0.92);
  font-weight: 400;
  line-height: 1.2;
}

.act-card__sub {
  font-family: var(--cond);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(184, 146, 90, 0.8);
  margin-top: 5px;
}

.act-card__remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(244, 240, 230, 0.55);
  background: rgba(6, 4, 2, 0.60);
  color: rgba(244, 240, 230, 0.90);
  font-size: 0.82rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  padding: 0;
  z-index: 2;
}

.act-card__remove:hover {
  background: rgba(184, 146, 90, 0.85);
  border-color: var(--gold);
  color: #fff;
}

/* ── Custom activity card ── */
.act-card--custom {
  background: var(--cream) !important;
  border: 1px dashed var(--gold);
  cursor: default !important;
  height: auto !important;
  min-height: 130px;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 12px;
}

.act-card--custom:hover { box-shadow: none; }

.act-custom__title {
  font-family: var(--cond);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.act-custom__name {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--ink);
  padding: 3px 0 5px;
  width: 100%;
  outline: none;
  transition: border-color var(--ease);
}

.act-custom__name:focus { border-bottom-color: var(--gold); }
.act-custom__name::placeholder { color: var(--muted); opacity: 0.55; }

.act-custom__row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.act-custom__btn {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  transition: border-color var(--ease), color var(--ease);
  padding: 0;
  flex-shrink: 0;
}

.act-custom__btn:hover { border-color: var(--gold); color: var(--gold); }

.act-custom__val {
  font-family: var(--cond);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  min-width: 26px;
  text-align: center;
}

.act-custom__add {
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--cond);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 1px;
  transition: background var(--ease), color var(--ease);
  white-space: nowrap;
}

.act-custom__add:hover { background: var(--gold); color: var(--cream); }

/* ── Palette ── */
.builder__palette-wrap {
  margin-top: 44px;
}

.builder__palette-label {
  font-family: var(--cond);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 18px;
}

.builder__palette {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.builder__palette .act-card {
  width: clamp(130px, 15vw, 180px);
  cursor: grab;
}

/* ── CTA ── */
.builder__footer {
  margin-top: 56px;
  text-align: center;
}

.builder__send {
  padding: 18px 52px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
}

/* ============================================================
   SUR MESURE / BESPOKE
   ============================================================ */
.bespoke {
  position: relative;
  padding: var(--pad-section) 0;
  overflow: hidden;
}

.bespoke__bg {
  position: absolute;
  inset: 0;
  background-color: #101610;
  background-image: url('../images/bespoke.webp');
  background-size: cover;
  background-position: center;
}

.bespoke__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(10, 8, 4, 0.9) 0%,
    rgba(20, 30, 14, 0.82) 100%
  );
}

.bespoke__content {
  position: relative;
  z-index: 2;
}

.bespoke__title {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  max-width: 680px;
  margin-bottom: 28px;
}

.bespoke__p1 {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(244, 240, 230, 0.75);
  max-width: 540px;
  line-height: 1.85;
  margin-bottom: 10px;
}

.bespoke__p2 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 60px;
}

.bespoke__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(244, 240, 230, 0.12);
  padding-top: 48px;
}

.pillar h4 {
  font-family: var(--cond);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 10px;
}

.pillar p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(244, 240, 230, 0.55);
  line-height: 1.75;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--pad-section) 0;
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 88px;
  align-items: start;
}

.contact__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic;
  margin-top: 6px;
  margin-bottom: 14px;
}

.contact__sub {
  font-size: 0.97rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 44px;
  line-height: 1.8;
}

.contact__coords { display: flex; flex-direction: column; gap: 20px; }

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

.coord__label {
  font-family: var(--cond);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.coord__value {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  transition: color var(--ease);
}

.coord__value:hover { color: var(--forest); }

/* Form */
.field { margin-bottom: 18px; }

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  resize: none;
  transition: border-color var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  font-weight: 300;
}

.field input:focus,
.field textarea:focus { border-color: var(--ink); }

.contact__form-wrap .btn-dark { margin-top: 10px; }

.field--error input,
.field--error textarea {
  border-color: #b84040 !important;
  outline: none;
}

.form-error {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: #c05050;
  letter-spacing: 0.02em;
}

[data-theme="dirt"] .form-error { color: #e07070; }

.form-success {
  padding: 20px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--forest);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  padding: 56px 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.footer__brand .logo-text { display: block; font-size: 1.15rem; margin-bottom: 6px; }

.footer__brand p {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(244, 240, 230, 0.38);
  letter-spacing: 0.04em;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer__nav a {
  font-family: var(--cond);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 240, 230, 0.4);
  transition: color var(--ease);
}

.footer__nav a:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.footer__legal {
  font-size: 0.72rem;
  color: rgba(244, 240, 230, 0.28);
  font-weight: 300;
}

.footer__legal-links {
  display: flex;
  gap: 20px;
}

.footer__legal-links a {
  font-size: 0.68rem;
  font-family: var(--cond);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 240, 230, 0.24);
  transition: color var(--ease);
}

.footer__legal-links a:hover { color: rgba(244, 240, 230, 0.7); }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  :root { --pad-section: 88px; }

  .container { padding: 0 32px; }
  .header__inner { padding: 0 32px; }

  .esprit__grid { gap: 52px; }
  .esprit__visual { height: 460px; }

  .builder__board {
    grid-template-columns: repeat(3, 1fr);
  }

  .bespoke__pillars { grid-template-columns: 1fr; gap: 28px; }

  .contact__grid { gap: 56px; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --pad-section: 72px;
    --header-h: 60px;
  }

  /* ── Scroll snap: section-by-section navigation ── */
  body {
    scroll-snap-type: y proximity;
  }

  .hero,
  .esprit,
  .experiences,
  .bespoke,
  .contact {
    scroll-snap-align: start;
    min-height: 100svh;
  }

  .container  { padding: 0 20px; }
  .header__inner { padding: 0 20px; }

  /* Header: always opaque on mobile to cover Dynamic Island safe area */
  .header {
    background: rgba(12, 8, 4, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  /* Header: hide desktop nav, show hamburger */
  .header__nav { display: none; }
  .nav-toggle  { display: flex; }
  .mobile-nav  { display: block; }

  /* Esprit: stack vertically, image on top */
  .esprit__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .esprit__visual {
    height: 42vmax;
    order: -1;
  }

  .esprit__visual::after { display: none; }
  .esprit__text { max-width: 100%; }

  /* Itinerary: collapse to vertical on mobile */
  .iti-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: auto;
    padding-left: 56px;
  }

  .iti-timeline::before {
    top: 0; bottom: 0;
    left: 23px; right: auto;
    width: 1px; height: auto;
    transform: none;
    background: linear-gradient(180deg, transparent 0%, var(--gold) 4%, var(--gold) 96%, transparent 100%);
  }

  .iti-day {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    grid-template-rows: none;
    padding: 0 0 28px 0;
    min-height: auto;
  }

  .iti-day__empty { display: none; }

  .iti-day__dot {
    flex-shrink: 0;
    margin-right: 18px;
    margin-left: -56px;
    margin-top: 2px;
  }

  .iti-day--above .iti-day__content,
  .iti-day--below .iti-day__content {
    padding: 0;
    text-align: left;
    align-self: auto;
    flex: 1;
  }

  .iti-day--above .iti-day__content { order: 1; }
  .iti-day--above .iti-day__dot     { order: 0; }

  /* Builder: vertical layout on mobile — 1 day per row, buttons top/bottom */
  .builder__board-wrap {
    flex-direction: column;
    margin-top: 40px;
  }

  .builder__days-btn {
    width: 100%;
    height: 40px;
  }

  .builder__board {
    width: 100%;
    grid-template-columns: 1fr !important;
  }

  /* Placed cards fill full day column width */
  .day-slot .act-card {
    width: 100%;
  }

  .builder__palette .act-card { width: clamp(110px, 28vw, 160px); }

  /* Contact: stack */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Footer: stack */
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .footer__nav { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer__legal { text-align: center; }
}

/* ============================================================
   THEMES — Nuit & Granit (dev switcher)
   ============================================================ */

/* ════════════════════════════════════════════════════════════
   DIRT — Autre site, autre vie
   Huckberry editorial · adventure magazine · golden hour
   Condensed bold · warm parchment · copper rust · film grain
   ════════════════════════════════════════════════════════════ */

/* ── Palette ── */
[data-theme="dirt"] {
  --cream:       #ede2c4;
  --cream-dark:  #e4d6ac;
  --ink:         #1a0e04;
  --ink-soft:    #2e1c08;
  --forest:      #3c2a10;
  --forest-mid:  #5a4220;
  --gold:        #c46018;
  --muted:       #7a5c38;
  --border:      #c4a860;
}

/* ── Film grain overlay (SVG fractal noise en fixed) ── */
[data-theme="dirt"] body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.030;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.dirt-num { display: none; }

/* ── Typo globale : labels + règles ── */
[data-theme="dirt"] .label {
  color: var(--gold);
  letter-spacing: 0.32em;
  font-size: 0.65rem;
}
[data-theme="dirt"] .label--light { color: rgba(196, 96, 24, 0.68); }
[data-theme="dirt"] .rule { width: 56px; height: 3px; background: var(--gold); margin: 24px 0 30px; }

/* Tous les grands titres → condensed bold uppercase */
[data-theme="dirt"] .section-title,
[data-theme="dirt"] .esprit__title,
[data-theme="dirt"] .bespoke__title,
[data-theme="dirt"] .contact__title {
  font-family: var(--cond);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 0.90;
  font-style: normal;
}
[data-theme="dirt"] .section-title  { font-size: clamp(2.8rem, 5.5vw, 7.5rem); }
[data-theme="dirt"] .esprit__title  { font-size: clamp(3rem, 5.5vw, 8rem); color: var(--ink); margin-bottom: 0; }
[data-theme="dirt"] .bespoke__title { font-size: clamp(3.2rem, 6.5vw, 10rem); }
[data-theme="dirt"] .contact__title { font-size: clamp(2.8rem, 5vw, 7rem); color: rgba(237, 226, 196, 0.93); }

/* ── Header ── */
[data-theme="dirt"] .header.scrolled {
  background: rgba(20, 10, 2, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
[data-theme="dirt"] .mobile-nav { background: #160c02; }
[data-theme="dirt"] .mobile-nav nav a { color: rgba(237, 226, 196, 0.85); }

/* ── Fog : nappe ambre ── */
[data-theme="dirt"] .fog-a {
  background: radial-gradient(ellipse 75% 75% at 50% 50%,
    rgba(212, 168, 72, 0.64) 0%, rgba(212, 168, 72, 0.28) 38%,
    rgba(212, 168, 72, 0.07) 60%, transparent 72%);
  filter: blur(28px);
}
[data-theme="dirt"] .fog-b {
  background: radial-gradient(ellipse 75% 75% at 50% 50%,
    rgba(188, 136, 48, 0.48) 0%, rgba(188, 136, 48, 0.18) 40%,
    rgba(188, 136, 48, 0.05) 60%, transparent 72%);
  filter: blur(40px);
}
[data-theme="dirt"] .fog-c {
  background: radial-gradient(ellipse 75% 75% at 50% 50%,
    rgba(228, 188, 96, 0.32) 0%, rgba(228, 188, 96, 0.12) 42%,
    transparent 68%);
  filter: blur(55px);
}

/* ─────────────── HERO ─────────────── */
/* Contenu ancrée en bas à gauche */
[data-theme="dirt"] .hero { align-items: flex-end; }
[data-theme="dirt"] .hero__content {
  text-align: left;
  max-width: none;
  width: 100%;
  padding: 0 clamp(36px, 7vw, 120px) 12vh;
}

/* Overlay vignette + brun chaud */
[data-theme="dirt"] .hero__overlay {
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, transparent 35%, rgba(16, 6, 2, 0.70) 100%),
    linear-gradient(to bottom, rgba(16, 6, 2, 0.10) 0%, rgba(20, 8, 2, 0.42) 55%, rgba(24, 10, 3, 0.86) 100%);
}

[data-theme="dirt"] .hero__eyebrow {
  color: var(--gold);
  letter-spacing: 0.36em;
  font-size: 0.68rem;
  margin-bottom: 20px;
}

/* Tagline : condensed black, massive */
[data-theme="dirt"] .hero__tagline {
  font-family: var(--cond);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(4.5rem, 13vw, 17rem);
  line-height: 0.84;
  letter-spacing: -0.03em;
  font-style: normal;
  color: #fff;
  max-width: 14ch;
  margin-bottom: 28px;
}

[data-theme="dirt"] .hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  color: rgba(237, 226, 196, 0.62);
  max-width: 40ch;
  margin-bottom: 36px;
}

/* CTA : texte seul, pas de bouton */
[data-theme="dirt"] .hero__content .btn-outline {
  border: none;
  background: transparent;
  padding: 0 0 3px;
  font-family: var(--cond);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: rgba(237, 226, 196, 0.50);
  border-bottom: 1px solid rgba(237, 226, 196, 0.20);
  border-radius: 0;
}
[data-theme="dirt"] .hero__content .btn-outline:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
[data-theme="dirt"] .hero__scroll { display: none; }

/* ─────────────── L'ESPRIT ─────────────── */
/* Photo plein-bord à gauche, texte à droite */
[data-theme="dirt"] .esprit { background: var(--cream); padding: 0; overflow: visible; }
[data-theme="dirt"] .esprit .container { max-width: none; padding: 0; }
[data-theme="dirt"] .esprit__grid {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 78vh;
  gap: 0;
  align-items: stretch;
}
[data-theme="dirt"] .esprit__visual {
  order: -1;
  overflow: hidden;
  display: flex;
  align-self: stretch;
}
[data-theme="dirt"] .esprit__visual img {
  width: 100%;
  min-height: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.86) saturate(1.22) sepia(0.16);
  display: block;
  flex: 1;
}
[data-theme="dirt"] .esprit__text {
  padding: clamp(56px, 7vw, 112px) clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream-dark);
  position: relative;
}
[data-theme="dirt"] .esprit__text p {
  font-size: 0.9rem;
  line-height: 1.88;
  color: var(--muted);
  max-width: 44ch;
}
[data-theme="dirt"] .esprit__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem !important;
  color: var(--ink) !important;
  max-width: none !important;
}
[data-theme="dirt"] .esprit__winter {
  background: rgba(196, 96, 24, 0.07);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  font-style: italic;
  font-size: 0.88rem !important;
  color: var(--muted) !important;
  max-width: none !important;
}

/* ─────────────── EXPÉRIENCES ─────────────── */
[data-theme="dirt"] .experiences { background: #120a04; }
[data-theme="dirt"] .experiences .section-title { color: rgba(237, 226, 196, 0.94); }
[data-theme="dirt"] .experiences .label { color: var(--gold); }

/* Nav arrows */
[data-theme="dirt"] .exp-nav__btn {
  border-color: rgba(237, 226, 196, 0.18);
  color: rgba(237, 226, 196, 0.60);
}
[data-theme="dirt"] .exp-nav__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* Stage plus grand */
[data-theme="dirt"] .exp-stage { padding: 60px 0 72px; }

/* Cards : angles vifs, typographie condensed */
[data-theme="dirt"] .exp-card { border-radius: 3px; }
[data-theme="dirt"] .exp-card__photo img {
  filter: brightness(0.82) saturate(1.45) sepia(0.28) hue-rotate(-10deg);
}
[data-theme="dirt"] .exp-card__gradient {
  background: linear-gradient(to top,
    rgba(18, 5, 2, 0.98) 0%, rgba(18, 5, 2, 0.72) 34%,
    rgba(18, 5, 2, 0.20) 58%, transparent 76%);
}
[data-theme="dirt"] .exp-card__cat {
  letter-spacing: 0.28em;
  font-size: 0.64rem;
}
[data-theme="dirt"] .exp-card__name {
  font-family: var(--cond);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.3vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 0.92;
}

/* Dots + description */
[data-theme="dirt"] .exp-dot { background: rgba(237, 226, 196, 0.18); }
[data-theme="dirt"] .exp-dot.is-active { background: var(--gold); }
[data-theme="dirt"] .exp-active-desc { color: rgba(237, 226, 196, 0.44); }

/* ─────────────── BUILDER ─────────────── */
[data-theme="dirt"] .builder { background: #1c1006; position: relative; }
[data-theme="dirt"] .builder .section-title { color: rgba(237, 226, 196, 0.92); }
[data-theme="dirt"] .builder .label         { color: var(--gold); }
[data-theme="dirt"] .builder .builder__sub  { color: rgba(237, 226, 196, 0.42); }
[data-theme="dirt"] .builder .builder__day-num  { color: var(--gold); }
[data-theme="dirt"] .builder .builder__day-head { border-color: rgba(237, 226, 196, 0.09); }
[data-theme="dirt"] .builder .builder__day-name { color: rgba(237, 226, 196, 0.42); }
[data-theme="dirt"] .builder .day-slot           { border-color: rgba(237, 226, 196, 0.11); }
[data-theme="dirt"] .builder .day-slot.drag-over { background: rgba(196, 96, 24, 0.10); border-color: var(--gold); }
[data-theme="dirt"] .builder .day-slot__empty    { color: rgba(237, 226, 196, 0.16); }
[data-theme="dirt"] .builder .builder__palette-label { color: rgba(237, 226, 196, 0.36); }
[data-theme="dirt"] .builder .act-card__bg {
  filter: brightness(0.82) saturate(1.30) sepia(0.22) hue-rotate(-8deg);
}
[data-theme="dirt"] .builder .act-card--custom {
  background: rgba(237, 226, 196, 0.05) !important;
  border-color: rgba(196, 96, 24, 0.38);
}
[data-theme="dirt"] .builder .act-custom__name {
  color: rgba(237, 226, 196, 0.82);
  border-bottom-color: rgba(237, 226, 196, 0.18);
}
[data-theme="dirt"] .builder .act-custom__name::placeholder { color: rgba(237, 226, 196, 0.28); }
[data-theme="dirt"] .builder .builder__send { background: var(--gold); color: #fff; }
[data-theme="dirt"] .builder .builder__send:hover { background: #a04e14; }
[data-theme="dirt"] .builder .builder__days-btn { border-color: rgba(196, 96, 24, 0.55); color: rgba(237, 226, 196, 0.55); }
[data-theme="dirt"] .builder .builder__days-btn:hover { background: var(--gold); color: #fff; }

/* ─────────────── SUR MESURE ─────────────── */
[data-theme="dirt"] .bespoke { position: relative; }
[data-theme="dirt"] .bespoke__bg {
  filter: brightness(0.72) saturate(1.28) sepia(0.28) hue-rotate(-8deg);
}
[data-theme="dirt"] .bespoke__overlay {
  background: linear-gradient(
    135deg,
    rgba(16, 6, 2, 0.78) 0%,
    rgba(20, 8, 2, 0.55) 50%,
    rgba(12, 5, 2, 0.80) 100%
  );
}
[data-theme="dirt"] .bespoke__content .label--light { color: var(--gold); opacity: 0.75; }
[data-theme="dirt"] .bespoke__p1 {
  font-style: italic;
  font-size: 1.05rem;
  max-width: 52ch;
}
[data-theme="dirt"] .bespoke__p2 {
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  letter-spacing: 0.02em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 12px;
}
[data-theme="dirt"] .pillar h4 {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

/* ─────────────── CONTACT ─────────────── */
[data-theme="dirt"] .contact { background: #160c04; position: relative; }
[data-theme="dirt"] .contact .label { color: var(--gold); }
[data-theme="dirt"] .contact .contact__sub {
  color: rgba(237, 226, 196, 0.46);
  font-style: italic;
}
[data-theme="dirt"] .contact .coord__label { color: rgba(237, 226, 196, 0.38); }
[data-theme="dirt"] .contact .coord__value { color: rgba(237, 226, 196, 0.78); }
[data-theme="dirt"] .contact input,
[data-theme="dirt"] .contact textarea {
  background: transparent;
  border-bottom-color: rgba(237, 226, 196, 0.18);
  color: rgba(237, 226, 196, 0.88);
}
[data-theme="dirt"] .contact input::placeholder,
[data-theme="dirt"] .contact textarea::placeholder { color: rgba(237, 226, 196, 0.28); }
[data-theme="dirt"] .contact input:focus,
[data-theme="dirt"] .contact textarea:focus { border-bottom-color: var(--gold); }
[data-theme="dirt"] .contact .btn-dark { background: var(--gold); color: #fff; }
[data-theme="dirt"] .contact .btn-dark:hover { background: #a04e14; }

/* ─────────────── FOOTER ─────────────── */
[data-theme="dirt"] .footer { background: #0e0802; }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 900px) {
  [data-theme="dirt"] .esprit__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  [data-theme="dirt"] .esprit__visual { height: 56vw; order: -1; }
  [data-theme="dirt"] .esprit__text { padding: 48px clamp(24px, 6vw, 56px); }
}
@media (max-width: 600px) {
  [data-theme="dirt"] .hero__tagline { font-size: clamp(3.5rem, 16vw, 7rem); }
  [data-theme="dirt"] .hero__content { padding-bottom: 10vh; }
}


/* ── Theme toggle button (dev tool) ── */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(184, 146, 90, 0.35);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  font-family: var(--cond);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: border-color var(--ease), background var(--ease);
  white-space: nowrap;
}

.theme-toggle:hover {
  border-color: var(--gold);
  background: rgba(184, 146, 90, 0.08);
}

.theme-toggle__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

[data-theme="dirt"] .theme-toggle__dot { background: #c46018; }
[data-theme="dirt"] .theme-toggle { color: #c46018; border-color: rgba(196, 96, 24, 0.40); }

@media (max-width: 480px) {
  .exp-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .bespoke__title { font-size: 2.2rem; }

  .mobile-nav { padding: 44px 20px; }
  .mobile-nav nav a { font-size: 1.8rem; }
}
