/* ═════════════════════════════════════════
   DESIGN TOKENS
═════════════════════════════════════════ */
:root {
  --dune:      #C07048;
  --dune-d:    #D4906A;
  --or:        #C9993A;
  --namib:     #FDFAF5;
  --nuit:      #2D2420;
  --gris:      #7A7469;
  --sable:     #F0E8D8;
  --sable-s:   #D9C9A8;
  --blanc:     #FFFFFF;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;
  --ease:      cubic-bezier(.16,1,.3,1);
  --ease-out:  cubic-bezier(.22,1,.36,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; font-size: 16px; overflow-y: scroll; }
body { font-family: var(--sans); color: var(--nuit); background: var(--namib); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ═════════════════════════════════════════
   GLOBAL UTILITIES
═════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--dune);
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--dune); flex-shrink: 0;
}
.eyebrow--light { color: rgba(201,153,58,.7); }
.eyebrow--light::before { background: rgba(201,153,58,.5); }

/* ── REVEAL ANIMATIONS ── */
.clip-wrap { overflow: hidden; display: block; }
.clip-inner {
  display: block;
  transform: translateY(108%);
  transition: transform 1.1s var(--ease-out);
}
.clip-wrap.is-visible .clip-inner { transform: translateY(0); }
.d1 .clip-inner { transition-delay: .1s; }
.d2 .clip-inner { transition-delay: .22s; }
.d3 .clip-inner { transition-delay: .34s; }
.d4 .clip-inner { transition-delay: .46s; }

.reveal-up {
  opacity: 1; transform: translateY(0);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.js-reveal .reveal-up:not(.is-visible) {
  opacity: 0; transform: translateY(20px);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }
.reveal-up.d1 { transition-delay: .1s; }
.reveal-up.d2 { transition-delay: .22s; }
.reveal-up.d3 { transition-delay: .34s; }
.reveal-up.d4 { transition-delay: .46s; }

.reveal-fade {
  opacity: 1; transition: opacity .8s var(--ease-soft);
}
.js-reveal .reveal-fade:not(.is-visible) { opacity: 0; }
.reveal-fade.is-visible { opacity: 1; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 32px; background: var(--dune); color: var(--blanc);
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--dune); border-radius: 2px;
  transition: background .3s, border-color .3s;
}
.btn-primary:hover { background: var(--dune-d); border-color: var(--dune-d); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 30px; background: transparent; color: rgba(253,250,245,.8);
  font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid rgba(253,250,245,.3); border-radius: 2px;
  transition: border-color .3s, color .3s;
}
.btn-ghost:hover { border-color: rgba(253,250,245,.7); color: var(--blanc); }
.btn-text {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--nuit); border-bottom: 1px solid var(--nuit); padding-bottom: 3px;
  transition: color .3s, border-color .3s, gap .4s var(--ease);
}
.btn-text:hover { color: var(--dune); border-color: var(--dune); gap: 16px; }
.btn-text--light {
  color: rgba(253,250,245,.65); border-color: rgba(253,250,245,.3);
}
.btn-text--light:hover { color: var(--blanc); border-color: rgba(253,250,245,.7); gap: 16px; }
.btn-arrow { display: inline-block; transition: transform .4s var(--ease); }
.btn-text:hover .btn-arrow,
.btn-primary:hover .btn-arrow { transform: translateX(4px); }


/* ═════════════════════════════════════════
   NAVIGATION
═════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px; padding: 0 56px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background .45s ease, backdrop-filter .45s ease, border-color .45s ease;
}
.nav--scrolled {
  background: rgba(253,250,245,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--sable);
}
.nav__logo {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  letter-spacing: -.015em; color: var(--blanc);
  display: flex; align-items: center; gap: 8px;
  transition: color .4s ease;
}
.nav__logo em { font-style: italic; font-weight: 300; color: var(--dune-d); }
.nav__logo-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--dune); flex-shrink: 0;
}
.nav--scrolled .nav__logo { color: var(--nuit); }

.nav__links {
  display: flex; gap: 36px; list-style: none; align-items: center;
}
.nav__links a {
  font-size: 11px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.65); transition: color .3s;
  position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0;
  height: 1px; background: var(--dune);
  transition: width .35s var(--ease-out);
}
.nav__links a:hover { color: var(--blanc); }
.nav__links a:hover::after { width: 100%; }
.nav--scrolled .nav__links a { color: var(--gris); }
.nav--scrolled .nav__links a:hover { color: var(--nuit); }

.nav__cta {
  font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 9px 22px; border: 1px solid rgba(255,255,255,.3); border-radius: 2px;
  color: rgba(255,255,255,.8); transition: all .3s;
}
.nav__cta:hover { background: var(--dune); border-color: var(--dune); color: var(--blanc); }
.nav--scrolled .nav__cta { border-color: var(--sable-s); color: var(--nuit); }
.nav--scrolled .nav__cta:hover { background: var(--dune); border-color: var(--dune); color: var(--blanc); }


/* ═════════════════════════════════════════
   HERO — ASYMMETRIC EDITORIAL
═════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero__bg video, .hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroKenBurns 18s ease-in-out forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1.07) translate(-1%, 0); }
  to   { transform: scale(1) translate(0, 0); }
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(110deg, rgba(45,36,32,.78) 0%, rgba(45,36,32,.48) 42%, rgba(45,36,32,.15) 70%, transparent 100%),
    linear-gradient(to top, rgba(45,36,32,.55) 0%, transparent 40%);
}

/* Content — left bottom */
.hero__body {
  position: relative; z-index: 3;
  flex: 1; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 72px 88px;
  max-width: 900px;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
  animation: fadeIn .8s var(--ease-out) .3s both;
}
.hero__eyebrow-line { width: 32px; height: 1px; background: var(--dune); flex-shrink: 0; }
.hero__eyebrow-text {
  font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.hero__headline {
  font-family: var(--serif);
  font-size: clamp(76px, 10.5vw, 136px);
  font-weight: 600; line-height: .88;
  letter-spacing: -.035em; color: var(--blanc);
  margin-bottom: 38px;
  animation: fadeUp .95s var(--ease-out) .45s both;
}
.hero__headline em { font-style: italic; font-weight: 300; color: var(--dune-d); display: block; }
.hero__sub {
  font-size: 11px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 48px;
  animation: fadeUp .8s var(--ease-out) .65s both;
}
.hero__actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp .8s var(--ease-out) .82s both;
}
.hero__actions .btn-ghost { display: none; }

/* Right elements */
.hero__coords {
  position: absolute; right: 56px; bottom: 88px; z-index: 3;
  text-align: right;
  animation: fadeIn .8s var(--ease-out) 1.1s both;
}
.hero__coord-main {
  font-family: monospace; font-size: 10px; letter-spacing: .18em;
  color: rgba(201,153,58,.55); text-transform: uppercase; margin-bottom: 6px;
  display: block;
}
.hero__coord-sub {
  font-size: 10px; font-weight: 300; letter-spacing: .08em;
  color: rgba(255,255,255,.28); display: block;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute; left: 50%; bottom: 42px; z-index: 3;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  animation: fadeIn 1s var(--ease-out) 1.3s both;
}
.hero__scroll-line {
  width: 1px; height: 56px; background: rgba(255,255,255,.15);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; right: 0;
  height: 40px; background: linear-gradient(to bottom, transparent, var(--dune), transparent);
  animation: scrollDrop 2.4s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -100%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 200%; opacity: 0; }
}
.hero__scroll-lbl {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

@keyframes fadeUp  { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }




/* ═════════════════════════════════════════
   INTRO — EDITORIAL SPLIT
═════════════════════════════════════════ */
.intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; background: var(--namib);
  position: relative; overflow: hidden;
  min-height: 560px;
}
.intro__deco {
  position: absolute; top: 50%; right: -20px; transform: translateY(-50%);
  font-family: var(--serif); font-size: clamp(160px, 18vw, 280px);
  font-weight: 600; color: var(--sable);
  line-height: 1; pointer-events: none; user-select: none; z-index: 0;
}
.intro__left {
  padding: 100px 80px 100px 72px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
  border-right: 1px solid var(--sable);
}
.intro__right {
  padding: 100px 72px 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
.intro__display {
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 66px);
  font-weight: 600; line-height: 1.0; letter-spacing: -.025em;
  color: var(--nuit); margin: 18px 0 0;
}
.intro__display em { font-style: italic; font-weight: 300; color: var(--dune); }
.intro__body {
  font-size: 16px; line-height: 1.85; color: var(--gris);
  font-weight: 300; max-width: 480px; margin-bottom: 32px;
}
.intro__badge {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--sable); padding: 18px 22px;
  border-left: 3px solid var(--dune);
  margin-bottom: 36px;
}
.intro__badge span {
  font-family: var(--serif); font-size: 16px; font-style: italic;
  color: var(--nuit); line-height: 1.55;
}


/* ═════════════════════════════════════════
   CIRCUITS — HORIZONTAL DRAG SCROLL
═════════════════════════════════════════ */
.circuits-v3 {
  background: var(--sable);
  padding: 120px 0 100px;
  overflow: hidden;
}
.circuits-v3__header {
  padding: 0 72px 52px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px;
}
.circuits-v3__title {
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 600; line-height: .97; letter-spacing: -.03em;
  color: var(--nuit); margin-top: 16px;
}
.circuits-v3__title em { font-style: italic; font-weight: 300; color: var(--dune); }
.circuits-v3__hint {
  font-size: 11px; font-weight: 400; color: var(--gris);
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  padding-bottom: 4px;
}
.circuits-v3__hint svg { color: var(--sable-s); }
.circuits-v3__head-main {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; gap: 42px; flex-wrap: wrap;
}
.circuits-v3__water-inline {
  font-family: var(--serif); font-size: clamp(80px, 11vw, 148px);
  font-weight: 700; letter-spacing: -.06em; line-height: .78;
  color: rgba(192,112,72,.09); pointer-events: none; user-select: none;
  position: absolute; right: 0; top: 192px;
  white-space: nowrap; z-index: 0;
}
.circuits-v3__side { display: none; }
.circuits-v3__all {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 10px;
}

/* Drag track */
.circuits-track {
  display: flex; gap: 5px;
  padding: 0 72px 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -ms-overflow-style: none; scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.circuits-track::-webkit-scrollbar { display: none; }
.circuits-track.is-dragging { cursor: grabbing; }
.circuits-track.is-dragging * { pointer-events: none; }

.crd {
  flex: 0 0 360px; height: 540px;
  position: relative; overflow: hidden;
  scroll-snap-align: start;
  border-radius: 2px;
  transition: flex .4s var(--ease-soft);
  cursor: pointer;
}
.crd--wide { flex: 0 0 520px; }
/* Lien invisible couvrant toute la carte */
.crd__cover-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: block;
  text-decoration: none;
  background: transparent;
}
.crd__img {
  position: absolute; inset: 0;
}
.crd__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-soft);
}
.crd:hover .crd__img img { transform: scale(1.06); }
.crd__grad {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(45,36,32,.88) 0%, rgba(45,36,32,.22) 50%, transparent 100%);
}
.crd__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 32px 32px;
  z-index: 2;
}
.crd__ref {
  font-family: monospace; font-size: 9px; letter-spacing: .16em;
  color: rgba(201,153,58,.5); margin-bottom: 8px; display: block;
}
.crd__type {
  font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 9px;
}
.crd__title {
  font-family: var(--serif); font-size: 28px; font-weight: 600;
  color: var(--blanc); line-height: 1.05; letter-spacing: -.015em;
  margin-bottom: 5px;
}
.crd--wide .crd__title { font-size: 38px; }
.crd__meta {
  font-size: 11px; font-weight: 300; color: rgba(255,255,255,.38);
  margin-bottom: 20px;
}
.crd__cta {
  position: absolute; top: 14px; right: 14px;
  z-index: 5;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: rgba(45,36,32,.82);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.9) !important;
  text-decoration: none !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background .25s, border-color .25s;
  white-space: nowrap;
}
.crd__cta:hover {
  background: rgba(192,112,72,.9);
  border-color: rgba(255,255,255,.2);
  color: #fff !important;
  text-decoration: none !important;
}

.circuits-v3__footer {
  padding: 36px 72px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.circuits-v3__nav {
  display: flex; gap: 8px;
}
.ctrack-btn {
  width: 44px; height: 44px; border: 1px solid var(--sable-s); border-radius: 50%;
  background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--gris); transition: all .3s;
}
.ctrack-btn:hover { border-color: var(--dune); color: var(--dune); background: rgba(192,112,72,.06); }


/* ═════════════════════════════════════════
   DESTINATIONS SLIDER
═════════════════════════════════════════ */
/* [Scoped styles below] */
.ts-dest-wrap {
  position: relative;
  height: 92vh; min-height: 600px;
  overflow: hidden;
  background: var(--nuit);
}
.ts-slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .9s var(--ease-soft);
  z-index: 0;
}
.ts-slide.ts-active {
  opacity: 1; pointer-events: all; z-index: 1;
}
.ts-slide-bg {
  position: absolute; inset: -4%;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 9s cubic-bezier(.2,0,.1,1);
  will-change: transform;
}
.ts-slide.ts-active .ts-slide-bg { transform: scale(1); }
.ts-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(45,36,32,.78) 0%, rgba(45,36,32,.35) 55%, rgba(45,36,32,.12) 100%);
}
.ts-slide-overlay-bottom {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,36,32,.62) 0%, transparent 42%);
}
.ts-slide-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 72px 72px;
  z-index: 3; display: flex; align-items: flex-end; justify-content: space-between;
}
.ts-slide-left {}
.ts-slide-index {
  font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(201,153,58,.7); margin-bottom: 16px; display: block;
  opacity: 0; transform: translateY(14px);
  transition: opacity .55s ease .1s, transform .55s ease .1s;
}
.ts-slide.ts-active .ts-slide-index { opacity: 1; transform: translateY(0); }
.ts-slide-title {
  font-family: var(--serif);
  font-size: clamp(64px, 8.5vw, 112px);
  font-weight: 700; letter-spacing: -.025em; line-height: .9;
  color: var(--namib); text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease .2s, transform .65s var(--ease-out) .2s;
}
.ts-slide.ts-active .ts-slide-title { opacity: 1; transform: translateY(0); }
.ts-slide-desc {
  font-size: 15px; font-weight: 300; line-height: 1.7;
  color: rgba(253,250,245,.62); max-width: 420px; margin-bottom: 32px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s ease .35s, transform .6s ease .35s;
}
.ts-slide.ts-active .ts-slide-desc { opacity: 1; transform: translateY(0); }
.ts-slide-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px; background: var(--dune); color: var(--namib);
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 2px; position: relative; overflow: hidden;
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s ease .45s, transform .5s ease .45s, background .3s;
}
.ts-slide.ts-active .ts-slide-cta { opacity: 1; transform: translateY(0); }
.ts-slide-cta:hover { background: var(--dune-d); }
.ts-cta-arrow { transition: transform .35s var(--ease); }
.ts-slide-cta:hover .ts-cta-arrow { transform: translateX(5px); }
.ts-slide-right {
  text-align: right; padding-bottom: 8px;
  opacity: 0; transform: translateX(14px);
  transition: opacity .6s ease .5s, transform .6s ease .5s;
}
.ts-slide.ts-active .ts-slide-right { opacity: 1; transform: translateX(0); }
.ts-slide-coords {
  font-family: monospace; font-size: 10px; letter-spacing: .18em;
  color: rgba(201,153,58,.5); display: block; margin-bottom: 6px;
}
.ts-slide-region {
  font-size: 12px; font-weight: 300;
  color: rgba(253,250,245,.3); letter-spacing: .08em;
}
.ts-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 52px; height: 52px;
  border: 1px solid rgba(253,250,245,.18); border-radius: 50%;
  background: rgba(45,36,32,.32); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(253,250,245,.8);
  transition: all .3s;
}
.ts-arrow:hover { background: var(--dune); border-color: var(--dune); }
.ts-arrow-prev { left: 28px; }
.ts-arrow-next { right: 28px; }
.ts-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 12px; align-items: center;
}
.ts-dot {
  position: relative; width: 36px; height: 2px;
  background: rgba(253,250,245,.22); cursor: pointer; border-radius: 1px;
  overflow: hidden; transition: width .3s;
}
.ts-dot.ts-dot-active { width: 56px; }
.ts-dot-fill {
  position: absolute; top: 0; left: 0; height: 100%; width: 0%;
  background: var(--dune); border-radius: 1px;
}
.ts-dot.ts-dot-active .ts-dot-fill { width: 100%; }
.ts-count {
  position: absolute; top: 32px; right: 36px; z-index: 10;
  font-size: 11px; letter-spacing: .14em; color: rgba(253,250,245,.4);
}
.ts-count-current {
  font-family: var(--serif); font-size: 22px; font-weight: 300;
  color: rgba(253,250,245,.72); vertical-align: middle;
}
.ts-top-label {
  position: absolute; top: 32px; left: 72px; z-index: 10;
  font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(253,250,245,.38); display: flex; align-items: center; gap: 12px;
}
.ts-top-label::before {
  content: ''; width: 24px; height: 1px; background: rgba(201,153,58,.45);
}


/* ═════════════════════════════════════════
   THÉMATIQUES — ACCORDION STRIPS
═════════════════════════════════════════ */
.themes-v3 {
  background: var(--namib);
  padding: 120px 0;
  overflow: hidden;
}
.themes-v3__header {
  padding: 0 72px 52px;
}
.themes-v3__title {
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 600; line-height: .97; letter-spacing: -.03em;
  color: var(--nuit); margin-top: 16px;
}
.themes-v3__title em { font-style: italic; font-weight: 300; color: var(--dune); }

.themes-accordion {
  display: flex; height: 540px;
}
.ts-strip {
  position: relative; flex: 1; overflow: hidden;
  transition: flex .72s cubic-bezier(.34,1.06,.64,1);
  cursor: pointer;
}
.ts-strip.ts-open { flex: 4.5; }
.ts-strip__img {
  position: absolute; inset: 0;
}
.ts-strip__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-soft);
}
.ts-strip:hover .ts-strip__img img,
.ts-strip.ts-open .ts-strip__img img { transform: scale(1.04); }
.ts-strip__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,36,32,.82) 0%, rgba(45,36,32,.28) 55%, transparent 100%);
  transition: background .5s;
}
.ts-strip.ts-open .ts-strip__overlay {
  background: linear-gradient(to top, rgba(45,36,32,.88) 0%, rgba(45,36,32,.35) 60%, rgba(45,36,32,.1) 100%);
}
/* Vertical label (closed state) */
.ts-strip__vlabel {
  position: absolute; bottom: 72px; left: 0; right: 0;
  text-align: center;
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  letter-spacing: .08em; color: rgba(255,255,255,.85);
  writing-mode: vertical-rl; transform: rotate(180deg);
  transition: opacity .4s;
}
.ts-strip.ts-open .ts-strip__vlabel { opacity: 0; }
/* Expanded content */
.ts-strip__content {
  position: absolute; bottom: 44px; left: 36px; right: 36px;
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s ease .18s, transform .5s var(--ease-out) .18s;
  pointer-events: none;
}
.ts-strip.ts-open .ts-strip__content { opacity: 1; transform: translateY(0); pointer-events: auto; }
.ts-strip__sup {
  font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(201,153,58,.7); margin-bottom: 10px;
}
.ts-strip__name {
  font-family: var(--serif); font-size: 38px; font-weight: 600;
  color: var(--blanc); line-height: 1; letter-spacing: -.02em; margin-bottom: 22px;
}
.ts-strip__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.6); border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 2px;
  transition: color .3s, gap .35s var(--ease), border-color .3s;
}
.ts-strip__link:hover { color: var(--blanc); gap: 14px; border-color: rgba(255,255,255,.65); }


/* ═════════════════════════════════════════
   PARALLAX QUOTE BAND
═════════════════════════════════════════ */
.quote-v3 {
  position: relative; height: 72vh; min-height: 480px;
  display: flex; align-items: center;
  overflow: hidden;
}
.quote-v3__bg {
  position: absolute; inset: -14% 0;
  background-color: var(--nuit); background-position: center; background-size: cover; background-repeat: no-repeat;
  will-change: transform;
}
.quote-v3__overlay {
  position: absolute; inset: 0;
  background: rgba(45,36,32,.72);
}
.quote-v3__inner {
  position: relative; z-index: 2;
  padding: 0 120px; width: 100%; text-align: center;
}
.quote-v3__open {
  font-family: var(--serif); font-size: 120px; font-weight: 300;
  color: rgba(192,112,72,.2); line-height: .5;
  display: block; margin-bottom: 16px;
}
.quote-v3__text {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 300; font-style: italic;
  color: var(--blanc); line-height: 1.45;
  letter-spacing: -.01em; max-width: 880px; margin: 0 auto 28px;
}
.quote-v3__cite {
  font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(201,153,58,.6);
}


/* ═════════════════════════════════════════
   ÉQUIPE — SPLIT SCREEN
═════════════════════════════════════════ */
.equipe-v3 {
  display: grid; grid-template-columns: 54% 46%;
  min-height: 680px;
  background: var(--sable);
}
.equipe-v3__visual {
  position: relative; overflow: hidden;
}
.equipe-v3__img {
  width: 100%; height: 100%; min-height: 580px;
  object-fit: cover; display: block;
  transition: transform 1.4s var(--ease-soft);
}
.equipe-v3:hover .equipe-v3__img { transform: scale(1.04); }
.equipe-v3__img-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 65%, var(--sable));
  pointer-events: none;
}
.equipe-v3__badge {
  position: absolute; bottom: 48px; left: 48px;
  background: var(--nuit); padding: 20px 26px;
}
.equipe-v3__badge strong {
  display: block; font-family: var(--serif); font-size: 52px;
  font-weight: 300; color: var(--dune); line-height: 1;
}
.equipe-v3__badge span {
  font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.42); margin-top: 4px; display: block;
}

.equipe-v3__content {
  padding: 80px 72px 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.equipe-v3__deco {
  position: absolute; top: -10px; right: -30px;
  font-family: var(--serif); font-size: 220px; font-weight: 600;
  color: rgba(240,232,216,.4); line-height: 1;
  pointer-events: none; user-select: none; z-index: 0;
}
.equipe-v3__heading {
  font-family: var(--serif);
  font-size: clamp(36px, 3.8vw, 52px);
  font-weight: 600; line-height: 1.05; letter-spacing: -.025em;
  color: var(--nuit); margin: 18px 0 24px;
  position: relative; z-index: 1;
}
.equipe-v3__heading em { font-style: italic; font-weight: 300; color: var(--dune); }
.equipe-v3__body {
  font-size: 15px; line-height: 1.82; color: var(--gris);
  font-weight: 300; margin-bottom: 28px; position: relative; z-index: 1;
}
.equipe-v3__pull {
  border-left: 2px solid var(--dune); padding-left: 20px; margin-bottom: 32px;
  position: relative; z-index: 1;
}
.equipe-v3__pull p {
  font-family: var(--serif); font-size: 17px; font-style: italic;
  color: var(--nuit); line-height: 1.6;
}
.equipe-v3__team {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 36px; position: relative; z-index: 1;
}
.team-row {
  display: flex; align-items: center; gap: 10px;
}
.team-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--dune); flex-shrink: 0;
}
.team-name { font-size: 13px; font-weight: 500; color: var(--nuit); }
.team-role { font-size: 12px; color: var(--gris); font-weight: 300; }


/* ═════════════════════════════════════════
   DIFFÉRENCIATEURS — EDITORIAL LIST
═════════════════════════════════════════ */
.diff-v3 {
  padding: 120px 72px;
  background: var(--namib);
}
.diff-v3__header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 72px;
}
.diff-v3__title {
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 600; line-height: .97; letter-spacing: -.03em;
  color: var(--nuit); margin-top: 16px;
}
.diff-v3__title em { font-style: italic; font-weight: 300; color: var(--dune); }
.diff-v3__intro {
  font-size: 15px; line-height: 1.75; color: var(--gris); font-weight: 300;
}

.diff-v3__list { display: flex; flex-direction: column; }
.diff-v3__row {
  display: grid; grid-template-columns: 88px 1fr 40px;
  align-items: start; gap: 48px;
  padding: 40px 0; border-top: 1px solid var(--sable);
  transition: border-top-color .4s;
  cursor: default;
}
.diff-v3__row:last-child { border-bottom: 1px solid var(--sable); }
.diff-v3__row:hover { border-top-color: var(--dune); }
.diff-v3__n {
  font-family: var(--serif); font-size: 68px; font-weight: 300;
  color: rgba(192,112,72,.18); line-height: 1;
  letter-spacing: -.03em; transition: color .4s;
}
.diff-v3__row:hover .diff-v3__n { color: rgba(192,112,72,.38); }
.diff-v3__text {}
.diff-v3__lbl {
  font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--dune); margin-bottom: 10px; display: flex; align-items: center; gap: 10px;
}
.diff-v3__lbl span {
  font-family: var(--serif); font-size: 28px; font-weight: 300; font-style: italic;
  letter-spacing: -.02em; text-transform: none;
  color: var(--nuit); line-height: 1;
}
.diff-v3__desc {
  font-size: 15px; line-height: 1.75; color: var(--gris); font-weight: 300; max-width: 520px;
}
.diff-v3__ico {
  color: var(--sable-s); padding-top: 4px;
  transition: color .4s, transform .5s var(--ease);
}
.diff-v3__row:hover .diff-v3__ico { color: var(--dune); transform: translate(4px,-4px); }

.diff-v3 {
  padding: 108px 72px;
}
.diff-v3__header {
  display: block;
  margin-bottom: 64px;
}
.diff-v3__title {
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: 1.1;
  letter-spacing: 0;
}
.diff-v3__intro { display: none; }
.diff-v3__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sable);
  border: 1px solid var(--sable);
}
.diff-v3__row {
  display: block;
  background: var(--namib);
  padding: 44px 32px;
  border: 0;
  position: relative;
  transition: background .3s ease;
}
.diff-v3__row:last-child { border: 0; }
.diff-v3__row::after {
  content: '';
  position: absolute;
  bottom: 0; left: 32px; right: 32px;
  height: 1px; background: var(--dune);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-soft);
}
.diff-v3__row:hover { background: var(--sable); }
.diff-v3__row:hover::after { transform: scaleX(1); }
.diff-v3__n {
  font-size: 52px;
  color: var(--dune);
  margin-bottom: 8px;
}
.diff-v3__row:hover .diff-v3__n { color: var(--dune); }
.diff-v3__lbl {
  font-size: 9px;
  letter-spacing: .16em;
  margin-bottom: 14px;
  display: block;
}
.diff-v3__lbl span {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dune);
}
.diff-v3__desc {
  font-size: 14px;
  line-height: 1.72;
  max-width: none;
}
.diff-v3__ico { display: none; }


/* ═════════════════════════════════════════
   TÉMOIGNAGES — PULL QUOTE
═════════════════════════════════════════ */
.temo-v3 {
  background: var(--sable);
  padding: 120px 72px;
}
.temo-v3__header { margin-bottom: 64px; }
.temo-v3__title {
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 600; line-height: .97; letter-spacing: -.03em;
  color: var(--nuit); margin-top: 16px;
}
.temo-v3__title em { font-style: italic; font-weight: 300; color: var(--dune); }

.temo-v3__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3px; margin-bottom: 60px;
}
.tc {
  background: var(--namib); padding: 48px 40px;
}
.tc--feat { background: var(--nuit); }
.tc__qm {
  font-family: var(--serif); font-size: 72px; font-weight: 300;
  color: var(--dune); line-height: .5; margin-bottom: 24px; display: block;
}
.tc--feat .tc__qm { color: rgba(192,112,72,.35); }
.tc__stars {
  display: flex; gap: 2px; margin-bottom: 16px;
}
.tc__star { color: var(--dune); font-size: 12px; }
.tc__text {
  font-family: var(--serif); font-size: 17px; font-style: italic;
  color: var(--nuit); line-height: 1.7; margin-bottom: 28px;
}
.tc--feat .tc__text { font-size: 21px; color: rgba(253,250,245,.82); }
.tc__hr { width: 28px; height: 1px; background: var(--sable-s); margin-bottom: 20px; }
.tc--feat .tc__hr { background: rgba(255,255,255,.12); }
.tc__author { display: flex; align-items: center; gap: 14px; }
.tc__avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--sable-s);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--nuit); flex-shrink: 0;
}
.tc--feat .tc__avatar { background: rgba(255,255,255,.08); color: rgba(253,250,245,.65); }
.tc__name { font-size: 13px; font-weight: 500; color: var(--nuit); margin-bottom: 2px; }
.tc--feat .tc__name { color: rgba(253,250,245,.78); }
.tc__meta { font-size: 11px; color: var(--gris); font-weight: 300; }
.tc--feat .tc__meta { color: rgba(253,250,245,.38); }

.temo-v3__bottom {
  display: flex; align-items: center; gap: 32px;
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--namib);
  border: 1px solid rgba(28,28,26,.07);
  border-radius: 3px;
}
.temo-v3__score {
  font-family: var(--serif); font-size: 68px; font-weight: 300;
  color: var(--nuit); line-height: 1;
}
.temo-v3__score em { font-style: italic; color: var(--dune); }
.temo-v3__score-sup { font-family: var(--serif); font-size: 28px; color: var(--gris); }
.temo-v3__score-lbl {
  font-size: 12px; font-weight: 300; color: var(--gris);
  max-width: 200px; line-height: 1.6;
}
.temo-v3__cta {
  margin-left: auto;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--nuit); border-bottom: 1px solid var(--sable-s); padding-bottom: 3px;
  transition: color .3s, border-color .3s, gap .4s var(--ease);
}
.temo-v3__cta:hover { color: var(--dune); border-color: var(--dune); gap: 16px; }


/* ═════════════════════════════════════════
   GUIDES — ASYMMETRIC GRID
═════════════════════════════════════════ */
.guides-v3 {
  padding: 120px 72px;
  background: var(--namib);
}
.guides-v3__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 52px; gap: 32px;
}
.guides-v3__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 600; line-height: .97; letter-spacing: -.03em;
  color: var(--nuit); margin-top: 16px;
}
.guides-v3__title em { font-style: italic; font-weight: 300; color: var(--dune); }
.guides-v3__grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px; height: 560px;
}
.gcard {
  position: relative; overflow: hidden; border-radius: 2px;
}
.gcard--feat { grid-row: 1 / 3; }
/* Lien invisible couvrant toute la carte guide */
.gcard__cover-link {
  position: absolute; inset: 0; z-index: 5;
  display: block; text-decoration: none; background: transparent;
}
/* S'assure que le body et les liens restent cliquables au-dessus */
.gcard__body { z-index: 6; }
.gcard__link { position: relative; z-index: 7; }
.gcard__img {
  position: absolute; inset: 0;
}
.gcard__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-soft);
}
.gcard:hover .gcard__img img { transform: scale(1.05); }
.gcard__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,36,32,.9) 0%, transparent 55%);
}
.gcard__body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 28px;
}
.gcard__cat {
  display: inline-block;
  font-size: 8px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: #fff;
  background: rgba(45,36,32,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 4px 8px;
  margin-bottom: 10px;
}
.gcard--feat .gcard__cat { font-size: 9px; }
.gcard__title {
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  color: var(--blanc); line-height: 1.25; margin-bottom: 14px;
}
.gcard--feat .gcard__title { font-size: 26px; }
.gcard__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .3s, gap .35s var(--ease);
}
.gcard:hover .gcard__link { color: var(--blanc); gap: 12px; }
.guides-v3__more {
  text-align: center; margin-top: 52px;
}


/* ═════════════════════════════════════════
   CTA BAND
═════════════════════════════════════════ */
.cta-v3 {
  position: relative; min-height: 580px;
  display: flex; align-items: center; overflow: hidden;
}
.cta-v3__bg {
  position: absolute; inset: 0;
  background-color: var(--nuit); background-position: center; background-size: cover; background-repeat: no-repeat;
}
.cta-v3__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(45,36,32,.72) 0%, rgba(45,36,32,.42) 50%, rgba(45,36,32,.14) 100%);
}
.cta-v3__body {
  position: relative; z-index: 2;
  padding: 0 72px; max-width: 800px;
}
.cta-v3__title {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 600; line-height: .92; letter-spacing: -.035em;
  color: var(--blanc); margin: 24px 0 48px;
}
.cta-v3__title em { font-style: italic; font-weight: 300; color: var(--dune-d); display: block; }
.cta-v3__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-v3__coords {
  position: absolute; right: 72px; bottom: 40px; z-index: 2;
  font-family: monospace; font-size: 9px; letter-spacing: .14em;
  color: rgba(201,153,58,.3); text-transform: uppercase;
}


/* ═════════════════════════════════════════
   FOOTER
═════════════════════════════════════════ */
.footer-v3 {
  background: var(--sable);
  padding: 80px 72px 48px;
}
.footer-v3__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 56px;
  border-bottom: 1px solid var(--sable-s);
}
.footer-v3__logo {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--nuit); margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.footer-v3__logo em { font-style: italic; font-weight: 300; color: var(--dune); }
.footer-v3__tagline {
  font-family: var(--serif); font-size: 14px; font-style: italic;
  color: rgba(45,36,32,.45); margin-bottom: 10px;
}
.footer-v3__coords {
  font-family: monospace; font-size: 9px; color: rgba(192,112,72,.5);
  letter-spacing: .14em; margin-bottom: 18px;
}
.footer-v3__desc {
  font-size: 13px; font-weight: 300; line-height: 1.7;
  color: var(--gris); margin-bottom: 24px; max-width: 280px;
}
.footer-v3__socials { display: flex; gap: 8px; }
.footer-v3__social {
  width: 34px; height: 34px; border: 1px solid var(--sable-s);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--gris); border-radius: 2px;
  transition: border-color .3s, color .3s;
}
.footer-v3__social:hover { border-color: var(--dune); color: var(--dune); }
.footer-v3__col-title {
  font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(45,36,32,.38); margin-bottom: 20px;
}
.footer-v3__links {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.footer-v3__links a {
  font-size: 13px; font-weight: 300; color: var(--gris); transition: color .3s;
}
.footer-v3__links a:hover { color: var(--nuit); }
.footer-v3__bottom {
  display: flex; justify-content: space-between; align-items: center; padding-top: 28px;
}
.footer-v3__copy {
  font-family: monospace; font-size: 10px; color: rgba(45,36,32,.3); letter-spacing: .06em;
}
.footer-v3__legal { display: flex; gap: 20px; }
.footer-v3__legal a {
  font-size: 11px; color: rgba(45,36,32,.3); transition: color .3s;
}
.footer-v3__legal a:hover { color: rgba(45,36,32,.65); }


/* ═════════════════════════════════════════
   RESPONSIVE
═════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav { padding: 0 36px; }
  .nav__links { gap: 24px; }
  .intro { grid-template-columns: 1fr; }
  .intro__deco { display: none; }
  .intro__left { padding: 72px 36px 48px; border-right: none; border-bottom: 1px solid var(--sable); }
  .intro__right { padding: 48px 36px 72px; }
  .diff-v3__header { grid-template-columns: 1fr; gap: 24px; }
  .equipe-v3 { grid-template-columns: 1fr; }
  .equipe-v3__img { min-height: 420px; }
  .equipe-v3__img-grad { display: none; }
  .equipe-v3__content { padding: 56px 36px; }
  .footer-v3__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .hero__body { padding: 0 24px 72px; max-width: 100%; }
  .hero__scroll { display: none; }
  .hero__coords { right: 24px; bottom: 72px; }
  .hero__headline { font-size: clamp(56px, 14vw, 80px); }
  .circuits-v3__header { padding: 0 24px 36px; flex-direction: column; align-items: flex-start; }
  .circuits-track { padding: 0 24px 16px; }
  .crd { flex: 0 0 300px; height: 440px; }
  .crd--wide { flex: 0 0 300px; }
  .circuits-v3__footer { padding: 28px 24px 0; flex-direction: column; align-items: flex-start; gap: 16px; }
  .ts-slide-content { padding: 0 24px 72px; flex-direction: column; align-items: flex-start; }
  .ts-slide-right { display: none; }
  .ts-slide-title { font-size: 56px; }
  .themes-v3__header { padding: 0 24px 36px; }
  .quote-v3__inner { padding: 0 36px; }
  .diff-v3 { padding: 80px 24px; }
  .diff-v3__row { grid-template-columns: 60px 1fr 32px; gap: 24px; }
  .diff-v3__n { font-size: 48px; }
  .temo-v3 { padding: 80px 24px; }
  .temo-v3__grid { grid-template-columns: 1fr; }
  .guides-v3 { padding: 80px 24px; }
  .guides-v3__grid { grid-template-columns: 1fr; height: auto; grid-template-rows: 360px 200px 200px; }
  .gcard--feat { grid-row: auto; }
  .cta-v3__body { padding: 0 24px; }
  .footer-v3 { padding: 60px 24px 36px; }
  .footer-v3__top { grid-template-columns: 1fr; gap: 32px; }
  .footer-v3__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .intro__left, .intro__right { padding: 56px 24px; }
}

/* ══════════════════════════════════════════
   COUCHE PERSONNALITÉ
══════════════════════════════════════════ */

/* ── CUSTOM CURSOR (desktop uniquement) ── */
.cur, .cur-ring { display: none !important; }

/* ── GRAIN CINÉMATIQUE SUR LE HERO ── */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 5;
  pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── TRAITEMENT CHAUD SUR TOUTES LES PHOTOS ── */
.crd__img::after,
.gcard__img::after,
.ts-strip__img::after,
.equipe-v3__visual::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: rgba(192,112,72,.07); mix-blend-mode: multiply; pointer-events: none;
  transition: opacity .6s ease;
}
.crd:hover .crd__img::after,
.gcard:hover .gcard__img::after,
.ts-strip.ts-open .ts-strip__img::after { opacity: 0; }

/* ── SATURATION IMAGE SUR HOVER ── */
.crd__img img, .gcard__img img {
  filter: saturate(.92); transition: filter .8s ease, transform .9s var(--ease-soft);
}
.crd:hover .crd__img img, .gcard:hover .gcard__img img {
  filter: saturate(1.08) contrast(1.02);
}

/* ── DIAMANT ORNEMENTAL AVANT LES TITRES ── */
.intro__display::before,
.circuits-v3__title::before,
.themes-v3__title::before,
.equipe-v3__heading::before,
.diff-v3__title::before,
.temo-v3__title::before,
.guides-v3__title::before,
.cta-v3__title::before {
  content: '';
  display: block; width: 6px; height: 6px;
  background: var(--dune); border-radius: 1px;
  transform: rotate(45deg); opacity: .55;
  margin-bottom: 18px;
}

/* ── WATERMARKS DE SECTION ── */
.sec-water {
  position: absolute; pointer-events: none; user-select: none;
  font-family: var(--serif); font-weight: 700; letter-spacing: -.06em;
  color: rgba(192,112,72,.05); line-height: 1; z-index: 0;
}
.circuits-v3 { position: relative; }
.diff-v3     { position: relative; }

/* ── GRILLE SUBTILE SUR CTA ── */
.cta-v3__grid {
  display: none;
}

/* ── LIGNE DÉCORATIVE AVANT FOOTER ── */
.footer-v3::before {
  content: ''; display: block; height: 1px;
  background: linear-gradient(to right, transparent, var(--dune) 30%, var(--dune) 70%, transparent);
  opacity: .18; margin-bottom: 0;
}

/* ── OVERRIDE ANIMATIONS CSS (GSAP prend le relais) ── */
.hero__eyebrow,
.hero__headline,
.hero__sub,
.hero__actions,
.hero__coords,
.hero__scroll {
  animation: none;
  opacity: 1;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cur, .cur-ring { display: none !important; }
  .hero__eyebrow, .hero__headline, .hero__sub,
  .hero__actions, .hero__coords, .hero__scroll {
    opacity: 1 !important; transform: none !important;
  }
  .reveal-up { opacity: 1 !important; transform: none !important; }
  html { scroll-snap-type: none !important; }
}

/* ═══════════════════════════════════════════
   FULL-PAGE SCROLL SNAP
═══════════════════════════════════════════ */

/* Heights */
.hero          { height: 100dvh; min-height: unset; }
.intro         { height: 100dvh; min-height: unset; }
.ts-dest-wrap  { height: 100dvh; min-height: unset; }
.quote-v3      { height: 100dvh; min-height: unset; }
.equipe-v3     { height: 100dvh; min-height: unset; }
.cta-v3        { height: 100dvh; min-height: unset; }

/* Circuits — padding réduit */
.circuits-v3   { height: 100dvh; padding: 64px 0 48px; overflow: hidden; position: relative; }

/* Destinations slider — déjà presque plein écran */
.ts-dest-wrap  { height: 100dvh; }

/* Thématiques */
.themes-v3     { height: 100dvh; padding: 52px 0 0; overflow: hidden; }
.themes-accordion { height: calc(100dvh - 188px); }

/* Diff — 4 colonnes, centré verticalement */
.diff-v3       { height: 100dvh; padding: 60px 72px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.diff-v3__header { margin-bottom: 40px; }

/* Témoignages — scroll interne */
.temo-v3       { height: 100dvh; padding: 64px 72px; overflow: hidden; }
.temo-v3__header { margin-bottom: 40px; }
.temo-v3__grid { margin-bottom: 32px; }

/* Guides — grid remplit la hauteur restante */
.guides-v3     { height: 100dvh; padding: 64px 72px; display: flex; flex-direction: column; overflow: hidden; }
.guides-v3__header { margin-bottom: 36px; }
.guides-v3__grid   { flex: 1; height: auto; min-height: 0; }

/* ─────────────────────────────────────────
   DOT NAVIGATION
───────────────────────────────────────── */
.snap-dots {
  position: fixed; right: 20px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 9px; z-index: 200; padding: 4px 0;
}
.snap-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(192,112,72,.22);
  border: none; padding: 0; cursor: pointer;
  transition: background .35s var(--ease), transform .35s var(--ease), height .35s var(--ease), border-radius .35s var(--ease);
  flex-shrink: 0;
}
.snap-dot:hover { background: rgba(192,112,72,.5); transform: scale(1.5); }
.snap-dot.is-active {
  background: var(--dune);
  height: 22px;
  border-radius: 2.5px;
  transform: none;
}
/* Mobile — scroll natif, hauteurs automatiques */
@media (max-width: 767px) {
  .snap-dots { display: none; }
  .hero, .intro, .circuits-v3, .ts-dest-wrap, .themes-v3,
  .quote-v3, .equipe-v3, .diff-v3, .temo-v3, .guides-v3, .cta-v3 {
    height: auto; min-height: unset;
  }
  .themes-accordion { height: 460px; }
  .guides-v3__grid   { height: 480px; flex: none; }
  .diff-v3, .guides-v3 { padding: 72px 24px; display: block; }
  .temo-v3 { padding: 72px 24px; display: block; overflow-y: auto; }
  .circuits-v3 { padding: 72px 0 56px; }
}
