/* ==========================================================================
   Frédéric Valleix — Photographe
   Design system : PurephotoArt (noir, Satoshi, accent orange brûlé)
   ========================================================================== */

/* --- Fonts ---------------------------------------------------------------- */
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Variable.woff2") format("woff2-variations");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-VariableItalic.woff2") format("woff2-variations");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

/* --- Tokens ---------------------------------------------------------------- */
:root {
  --black: #000000;
  --white: #ffffff;

  --blue-300: #a9c8ff;
  --blue-500: #5d98ff;

  --orange-300: #f3a58c;
  --orange-500: #eb643f;
  --orange-700: #b8431f;

  --gray-950: #0a0a0a;
  --gray-900: #121212;
  --gray-800: #1e1e1e;
  --gray-700: #2b2b2b;
  --gray-500: #6b6b6b;
  --gray-300: #a3a3a3;

  --surface-canvas: var(--black);
  --surface-raised: var(--gray-900);
  --surface-overlay: rgba(0, 0, 0, 0.72);

  --border-subtle: var(--gray-700);
  --border-strong: var(--gray-500);

  --text-primary: var(--white);
  --text-secondary: var(--gray-300);
  --text-muted: var(--gray-500);

  --accent: var(--orange-500);
  --accent-hover: var(--orange-700);
  --accent-soft: rgba(235, 100, 63, 0.14);

  --link: var(--blue-500);
  --link-hover: var(--blue-300);

  --font-display: "Satoshi", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Satoshi", -apple-system, BlinkMacSystemFont, sans-serif;

  --pad-x: clamp(20px, 4vw, 44px);
  --section-y: clamp(72px, 11vw, 150px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --dur-reveal: 1100ms;
}

/* --- Reset / base ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

[id] { scroll-margin-top: 76px; }

body {
  margin: 0;
  background: var(--surface-canvas);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: var(--link); text-decoration: none; transition: color 200ms ease; }
a:hover { color: var(--link-hover); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0;
}

::selection { background: var(--accent); color: #fff; }

button { font-family: var(--font-body); }

:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
}

/* Entrée de page */
body { animation: pageIn 900ms ease both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* --- Grain photographique (texture premium, très subtile) ------------------ */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 90;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(10) infinite;
}
@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  30% { transform: translate(3%, -2%); }
  50% { transform: translate(-3%, 2%); }
  70% { transform: translate(2%, 3%); }
  90% { transform: translate(-1%, 1%); }
}

/* --- Barre de progression --------------------------------------------------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange-700), var(--accent));
  z-index: 120;
  pointer-events: none;
}

/* --- Curseur personnalisé (desktop uniquement) ------------------------------ */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.55);
    z-index: 200;
    pointer-events: none;
    transform: translate3d(-100px, -100px, 0);
    will-change: transform;
    transition: border-color 250ms ease, background-color 250ms ease;
  }
  .cursor.is-active {
    border-color: var(--accent);
    background: var(--accent-soft);
  }
}

/* --- Navigation -------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  transition: background-color 400ms ease, backdrop-filter 400ms ease, box-shadow 400ms ease;
}
.nav.is-scrolled {
  background: rgba(0, 0, 0, 0.62);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.nav-brand:hover { color: #fff; }
.nav-monogram {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  flex: none;
  transition: background-color 300ms ease, transform 300ms var(--ease-spring);
}
.nav-brand:hover .nav-monogram {
  background: var(--accent);
  transform: rotate(-8deg);
}
.nav-name {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
}
.nav-link {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right 350ms var(--ease-out);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
.nav-link.is-active { color: #fff; }
.nav-link--accent { color: var(--accent); }
.nav-link--accent:hover { color: var(--orange-300); }

/* Burger mobile */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 130;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: #fff;
  margin: 6px 0;
  transition: transform 350ms var(--ease-out), opacity 250ms ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 450ms ease, visibility 450ms ease;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }
.nav-overlay a {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  color: #fff;
  padding: 10px;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out), color 250ms ease;
}
.nav-overlay.is-open a { opacity: 1; transform: none; }
.nav-overlay a:hover { color: var(--accent); }
.nav-overlay.is-open a:nth-child(1) { transition-delay: 80ms; }
.nav-overlay.is-open a:nth-child(2) { transition-delay: 150ms; }
.nav-overlay.is-open a:nth-child(3) { transition-delay: 220ms; }
.nav-overlay.is-open a:nth-child(4) { transition-delay: 290ms; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
}

/* --- Hero ---------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: -28px;
  will-change: transform;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  animation: heroZoom 3200ms var(--ease-out) forwards;
}
@keyframes heroZoom { to { transform: scale(1.06); } }

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.88));
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.35));
}

.hero-content {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 10vh;
  max-width: 820px;
}
.hero-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.4rem, 2.9vw, 2.4rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.hero-quote .line {
  display: block;
  overflow: hidden;
}
.hero-quote .line > span {
  display: block;
  transform: translateY(110%);
  animation: lineUp 1200ms var(--ease-out) forwards;
}
.hero-quote .line:nth-child(2) > span { animation-delay: 140ms; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero-author {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  opacity: 0;
  animation: fadeIn 1100ms ease 700ms forwards;
}
.hero-author::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  animation: growLine 900ms var(--ease-out) 800ms forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes growLine { to { transform: scaleX(1); } }

.hero-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  transition: opacity 300ms ease;
}
.hero-cue span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.hero-cue .chevron {
  width: 14px; height: 14px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(45deg);
  animation: float 1.8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50% { transform: rotate(45deg) translate(-5px, -5px); }
}

/* --- Sections : structure éditoriale ------------------------------------------- */
.section-head { margin-bottom: 20px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::after {
  content: "";
  height: 1px;
  width: 52px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before {
  content: "";
  height: 1px;
  width: 52px;
  background: linear-gradient(270deg, var(--accent), transparent);
}

.section-title {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1.12;
  margin-bottom: 18px;
}
.section-text {
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}
.section-hint {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 18px 0 0;
}

/* --- Intro ------------------------------------------------------------------------ */
.intro {
  padding: var(--section-y) var(--pad-x);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.intro h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 22px;
}
.intro h1 em {
  font-style: italic;
  color: var(--accent);
}
.intro p {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

/* --- Reveal au scroll --------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 120ms; }
.reveal-d2 { transition-delay: 240ms; }

/* --- Portraits : carrousel de cartes à retourner -------------------------------------- */
.portraits {
  padding: clamp(48px, 8vw, 96px) var(--pad-x);
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.portraits-rail-wrap { min-width: 0; }
.portraits-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 8px 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.portraits-rail::-webkit-scrollbar { display: none; }

.flip-card {
  scroll-snap-align: center;
  flex: none;
  width: min(270px, 68vw);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  perspective: 1400px;
  background: transparent;
  border: none;
  padding: 0;
}
.flip-inner {
  position: relative;
  width: 100%; height: 100%;
  transition: transform 750ms var(--ease-out);
  transform-style: preserve-3d;
}
.flip-card.is-flipped .flip-inner { transform: rotateY(180deg); }
.flip-front, .flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.flip-front img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.96);
  transition: filter 400ms ease, transform 700ms var(--ease-out);
}
.flip-card:hover .flip-front img { filter: brightness(1.05); }
.flip-back {
  background: var(--surface-raised);
  border: 1px solid var(--border-subtle);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
}
.flip-back::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gray-800);
  pointer-events: none;
}
.flip-back p {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  color: #fff;
}

.portraits-hint { text-align: left; }

@media (max-width: 900px) {
  .portraits { grid-template-columns: 1fr; }
}

/* --- Évènements : pile en éventail ------------------------------------------------------ */
.events {
  padding: clamp(48px, 8vw, 96px) var(--pad-x);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.events .section-head { margin-bottom: clamp(32px, 6vw, 56px); }
.fan {
  position: relative;
  height: clamp(320px, 42vw, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fan-item {
  position: absolute;
  transition: transform 1000ms var(--ease-out);
}
.fan-item:first-child {
  width: min(360px, 62vw);
  aspect-ratio: 4 / 5;
  transform: translate(-90px, 10px) rotate(-9deg);
}
.fan-item:last-child {
  width: min(460px, 78vw);
  aspect-ratio: 16 / 9;
  transform: translate(90px, -20px) rotate(7deg);
  transition-delay: 80ms;
}
.fan.is-settled .fan-item:first-child { transform: translate(-46%, 4%) rotate(-5deg); }
.fan.is-settled .fan-item:last-child { transform: translate(38%, -6%) rotate(3.5deg); }
@media (max-width: 720px) {
  .fan.is-settled .fan-item:first-child { transform: translate(-24%, 14%) rotate(-5deg); }
  .fan.is-settled .fan-item:last-child { transform: translate(14%, -14%) rotate(3.5deg); }
}
.fan img {
  width: 100%; height: 100%;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65), 0 4px 14px rgba(0, 0, 0, 0.5);
  cursor: zoom-in;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 600ms var(--ease-out);
}

/* --- Boutons ------------------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 300ms ease, border-color 300ms ease, transform 150ms ease-out;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 400ms var(--ease-out);
  z-index: -1;
}
.btn:hover { color: #000; border-color: #fff; }
.btn:hover::before { transform: scaleX(1); transform-origin: left; }

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn--primary::before { background: var(--orange-700); }
.btn--primary:hover { color: #fff; border-color: var(--orange-700); }

.fan-caption {
  margin: 26px 0 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.events-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}

/* --- Animalier : hotspots ------------------------------------------------------------------- */
.wildlife {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.wildlife > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.wildlife-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.05) 55%);
}
.wildlife-copy {
  position: relative;
  padding: 0 var(--pad-x) 8vh;
  max-width: 640px;
  z-index: 2;
}
.wildlife-copy .section-text { color: #e2e2e2; }

.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.hotspot-dot {
  position: relative;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 0 0 6px rgba(235, 100, 63, 0.28);
  transition: transform 300ms var(--ease-spring);
}
.hotspot-dot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(235, 100, 63, 0.8);
  animation: pulse 2.2s ease-out infinite;
}
.hotspot-dot:hover { transform: scale(1.25); }
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

.hotspot-pop {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 210px;
  background: var(--surface-raised);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms var(--ease-out), transform 350ms var(--ease-out), visibility 350ms;
  z-index: 6;
}
.hotspot.is-open .hotspot-pop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.hotspot-pop img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
}
.hotspot-pop p {
  margin: 0;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
  color: #fff;
}
.hotspot--flip .hotspot-pop {
  top: auto;
  bottom: 36px;
  transform: translateX(-50%) translateY(-8px);
}
.hotspot--flip.is-open .hotspot-pop { transform: translateX(-50%) translateY(0); }

/* --- Nature : comparaison été / hiver ---------------------------------------------------------- */
.nature {
  padding: clamp(48px, 8vw, 96px) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.compare {
  position: relative;
  height: clamp(320px, 38vw, 480px);
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.compare img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.compare-top { clip-path: inset(0 50% 0 0); }
.compare-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1.5px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}
.compare-knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}
.compare-label {
  position: absolute;
  top: 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
}
.compare-label--left { left: 14px; }
.compare-label--right { right: 14px; }

@media (max-width: 900px) {
  .nature { grid-template-columns: 1fr; }
  .nature > .reveal { order: -1; }
}

/* --- Filmstrip nature : défilement continu --------------------------------------------------------- */
.marquee {
  overflow: hidden;
  padding: 8px 0 clamp(48px, 8vw, 96px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marqueeScroll 55s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: clamp(180px, 24vw, 280px);
  width: auto;
  cursor: zoom-in;
  transition: filter 350ms ease, transform 350ms var(--ease-out);
  filter: brightness(0.92);
}
.marquee-track img:hover {
  filter: brightness(1.05);
  transform: scale(1.02);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Voyages : diaporama ------------------------------------------------------------------------- */
.voyages {
  padding: clamp(48px, 8vw, 96px) 0;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}
.voyages .section-head {
  padding: 0 var(--pad-x);
  margin-bottom: clamp(28px, 5vw, 48px);
}
.slider {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.slider-stage {
  position: relative;
  height: clamp(320px, 44vw, 500px);
  overflow: hidden;
}
.slider-stage img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 700ms ease, transform 1200ms var(--ease-out);
  cursor: zoom-in;
  pointer-events: none;
}
.slider-stage img.is-current {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.slider-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-size: 14px;
}
.slider-counter {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}
.slider-counter b {
  color: var(--accent);
  font-weight: 500;
}

.slider-arrow {
  position: absolute;
  top: calc(50% - 22px);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: transform 150ms ease-out, border-color 250ms ease, background-color 250ms ease;
  z-index: 2;
}
.slider-arrow:hover { border-color: var(--accent); background: rgba(235, 100, 63, 0.25); }
.slider-arrow--prev { left: 2px; }
.slider-arrow--next { right: 2px; }

.slider-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}
.slider-dot {
  width: 26px; height: 3px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background-color 300ms ease;
  position: relative;
  overflow: hidden;
}
.slider-dot.is-current { background: rgba(255, 255, 255, 0.35); }
.slider-dot.is-current::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left;
  animation: dotProgress 6s linear forwards;
}
.slider.is-paused .slider-dot.is-current::after { animation-play-state: paused; }
@keyframes dotProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* --- Noir & blanc : crossfade --------------------------------------------------------------------- */
.bw {
  padding: clamp(48px, 8vw, 96px) var(--pad-x);
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.crossfade {
  position: relative;
  height: clamp(320px, 38vw, 480px);
}
.crossfade img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  opacity: 0;
  transition: opacity 1400ms ease;
  pointer-events: none;
}
.crossfade img.is-showing {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 900px) {
  .bw { grid-template-columns: 1fr; }
}

/* --- Vues aériennes ---------------------------------------------------------------------------------- */
.aerial {
  position: relative;
  height: 90vh;
  min-height: 520px;
  overflow: hidden;
}
.aerial > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  will-change: transform;
}
.aerial-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.8));
}
.aerial-copy {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 8vh;
  max-width: 640px;
}
.aerial-copy .section-text { color: #e2e2e2; }
.aerial-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.aerial-thumbs img {
  width: clamp(90px, 12vw, 150px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 300ms var(--ease-out), border-color 300ms ease;
}
.aerial-thumbs img:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

/* --- Citation de clôture ------------------------------------------------------------------------------- */
.closing {
  padding: clamp(88px, 13vw, 160px) var(--pad-x);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 24px;
}
.closing-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.closing-quote em { color: var(--accent); font-style: italic; }

/* --- Contact -------------------------------------------------------------------------------------------- */
.contact {
  padding: clamp(64px, 10vw, 110px) var(--pad-x) 56px;
  border-top: 1px solid var(--border-subtle);
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(235, 100, 63, 0.06), transparent);
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 52px;
}
.contact-head { text-align: center; }
.contact-head .section-title { max-width: 640px; margin-left: auto; margin-right: auto; }

.contact-form {
  max-width: 580px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
}
.field {
  position: relative;
}
.field input,
.field textarea {
  width: 100%;
  background: var(--surface-raised);
  border: 1px solid var(--border-subtle);
  color: #fff;
  padding: 16px 18px;
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 250ms ease, background-color 250ms ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--gray-500); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--gray-950);
}
.field::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1.5px;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease-out);
}
.field:focus-within::after { transform: scaleX(1); }

.form-success {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 32px;
  border: 1px solid var(--border-subtle);
  background: var(--gray-950);
}
.form-success p { font-size: 1.1rem; margin: 0; line-height: 1.7; }
.form-success .check {
  display: inline-flex;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 18px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}
.contact-email {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: -0.01em;
  color: #fff;
  position: relative;
}
.contact-email::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -3px;
  height: 1px;
  background: var(--accent);
  transition: right 400ms var(--ease-out);
}
.contact-email:hover { color: #fff; }
.contact-email:hover::after { right: 0; }

.social {
  display: flex;
  gap: 22px;
  align-items: center;
}
.social a {
  display: inline-flex;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.65);
  transition: color 250ms ease, border-color 250ms ease, transform 250ms var(--ease-spring), background-color 250ms ease;
}
.social a:hover {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-3px);
}
.social svg { width: 18px; height: 18px; }

.colophon {
  font-size: 13px;
  color: var(--text-muted);
  margin: 6px 0 0;
  text-align: center;
}

/* --- Lightbox ------------------------------------------------------------------------------------------------ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  cursor: zoom-out;
  opacity: 0;
  visibility: hidden;
  transition: opacity 350ms ease, visibility 350ms;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw;
  max-height: 84vh;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
  transform: scale(0.96);
  transition: transform 450ms var(--ease-out);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox-caption {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  max-width: 80vw;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 48px; height: 48px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  transition: transform 300ms var(--ease-spring), color 250ms ease;
}
.lightbox-close:hover { transform: rotate(90deg); color: var(--accent); }

/* --- Pages intérieures : en-tête commun --------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: clamp(140px, 22vh, 220px) var(--pad-x) clamp(48px, 8vw, 80px);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), #000 96%);
}
.page-hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}
.page-title {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin-bottom: 18px;
}
.page-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
  max-width: 720px;
}
.page-lead strong { color: var(--text-primary); }

.page-body {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 56px) var(--pad-x) clamp(72px, 10vw, 120px);
}

/* Prose éditoriale */
.prose { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; }
.prose h2 {
  color: var(--text-primary);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: clamp(40px, 7vw, 64px) 0 18px;
}
.prose h3 {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0;
  margin: 32px 0 10px;
}
.prose p { margin: 0 0 18px; }
.prose strong { color: var(--text-primary); font-weight: 500; }
.prose ul { margin: 0 0 18px; padding-left: 20px; }
.prose li { margin-bottom: 10px; }
.prose li::marker { color: var(--accent); }

/* Cartes tarif */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.price-card {
  border: 1px solid var(--border-subtle);
  background: var(--gray-950);
  padding: 28px;
  position: relative;
  transition: border-color 300ms ease, transform 300ms var(--ease-out);
}
.price-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.price-card .price {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--text-primary);
  margin: 6px 0 4px;
}
.price-card .price small {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.price-card .price-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.price-card p { font-size: 0.95rem; line-height: 1.7; margin: 12px 0 0; }

/* Liste matériel */
.gear {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.gear li {
  border: 1px solid var(--border-subtle);
  padding: 18px 20px;
  font-size: 0.95rem;
  line-height: 1.65;
  transition: border-color 300ms ease;
}
.gear li:hover { border-color: var(--border-strong); }
.gear b {
  display: block;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 4px;
}

/* Galerie de page (grille) */
.page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 26px 0;
}
.page-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  cursor: zoom-in;
  filter: brightness(0.95);
  transition: filter 350ms ease, transform 350ms var(--ease-out);
}
.page-grid img:hover { filter: brightness(1.06); transform: scale(1.015); }
.page-grid--wide img { aspect-ratio: 3 / 2; }

/* Cartes service */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.service-card {
  position: relative;
  border: 1px solid var(--border-subtle);
  background: var(--gray-950);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 300ms ease, transform 350ms var(--ease-out);
}
.service-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 400ms ease, transform 600ms var(--ease-out);
}
.service-card:hover img { filter: brightness(1.02); transform: scale(1.04); }
.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.service-card h2 {
  font-size: 1.5rem;
  margin: 0;
}
.service-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
}
.service-card .btn { align-self: flex-start; }

/* Accordéon FAQ */
.faq-group { margin-bottom: clamp(36px, 6vw, 56px); }
.faq-group-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 20px;
}
.faq-group-title .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-size: 0.8em;
}
.acc {
  border: 1px solid var(--border-subtle);
  border-bottom: none;
  background: var(--gray-950);
}
.acc:last-child { border-bottom: 1px solid var(--border-subtle); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 250ms ease;
}
.acc-head:hover { color: var(--orange-300); }
.acc-head .acc-icon {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
}
.acc-icon::before, .acc-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1.5px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 350ms var(--ease-out);
}
.acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc.is-open .acc-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 450ms var(--ease-out);
}
.acc-body-inner {
  padding: 0 22px 22px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-secondary);
}
.acc-body-inner p { margin: 0 0 12px; }
.acc-body-inner p:last-child { margin-bottom: 0; }

/* Cartes blog */
.blog-list {
  display: grid;
  gap: 20px;
}
.blog-card {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  border: 1px solid var(--border-subtle);
  background: var(--gray-950);
  overflow: hidden;
  color: inherit;
  transition: border-color 300ms ease, transform 350ms var(--ease-out);
}
.blog-card:hover { border-color: var(--border-strong); transform: translateY(-3px); color: inherit; }
.blog-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 190px;
  filter: brightness(0.9);
  transition: filter 400ms ease;
}
.blog-card:hover img { filter: brightness(1.02); }
.blog-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-card-body .date {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.blog-card-body h2 { font-size: 1.5rem; margin: 0; }
.blog-card-body p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
}
.blog-card-body .more {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
@media (max-width: 640px) {
  .blog-card { grid-template-columns: 1fr; }
}

/* Articles de blog */
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.article-meta .author { color: var(--accent); }
.prose figure {
  margin: 30px 0;
}
.prose figure img {
  width: 100%;
  height: auto;
  cursor: zoom-in;
}
.prose figcaption {
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 10px;
  border-left: 2px solid var(--accent);
  padding-left: 12px;
  margin-top: 10px;
}
.prose hr {
  border: none;
  height: 1px;
  background: var(--border-subtle);
  margin: clamp(36px, 6vw, 56px) 0;
}
.tip {
  border: 1px solid var(--border-subtle);
  border-left: 2px solid var(--accent);
  background: var(--gray-950);
  padding: 22px 24px;
  margin: 26px 0;
}
.tip-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}
.tip p:last-child, .tip ul:last-child { margin-bottom: 0; }
.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: clamp(48px, 8vw, 72px);
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}
.article-nav a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 46%;
  color: var(--text-primary);
}
.article-nav a:hover { color: var(--orange-300); }
.article-nav .dir {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.article-nav .next { margin-left: auto; text-align: right; }
@media (max-width: 640px) {
  .article-nav a { max-width: 100%; }
  .article-nav .next { margin-left: 0; text-align: left; }
}

/* Pied de page commun des pages intérieures */
.page-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 40px var(--pad-x);
  text-align: center;
}
.page-footer p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.page-footer .btn { margin-top: 4px; }

/* --- Pages secondaires (blog / FAQ) ---------------------------------------------------------------------------- */
.subpage {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.subpage-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 64px;
  position: relative;
  overflow: hidden;
}
.subpage-bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
}
.subpage-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.4);
}
.subpage-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, #000 85%);
}
.subpage-card {
  position: relative;
  max-width: 540px;
  z-index: 1;
}
.subpage-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}
.subpage-card > p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 32px;
}
.subpage-footer {
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
}

/* --- Ajustements mobile --------------------------------------------------------------------------------------------- */
@media (max-width: 720px) {
  /* Grain statique : économise batterie et GPU */
  .grain { animation: none; }

  /* Hero : plus d'air entre la citation et le repère de scroll */
  .hero-content { bottom: 13vh; }
  .hero-quote { font-size: clamp(1.25rem, 6vw, 1.6rem); }

  /* Galeries de pages intérieures : deux colonnes */
  .page-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .page-grid--wide { grid-template-columns: 1fr; }

  /* Popover animalier : plus étroit, recadré par JS */
  .hotspot-pop { width: min(190px, 56vw); }

  /* Diaporama : flèches plus discrètes */
  .slider-arrow { width: 38px; height: 38px; font-size: 16px; }

  /* Éventail : légère réduction de hauteur */
  .fan { height: clamp(300px, 88vw, 420px); }

  /* Tableaux de prix et matériel : respiration réduite */
  .price-card { padding: 22px; }
  .gear li { padding: 15px 16px; }

  /* Titres de page moins hauts */
  .page-hero { padding-top: clamp(110px, 18vh, 150px); }

  /* Boutons confortables au pouce */
  .btn { padding: 14px 26px; }
  .events-actions .btn { flex: 1 1 auto; justify-content: center; }
}

@media (max-width: 400px) {
  .nav-name { font-size: 14px; }
  .nav-monogram { width: 34px; height: 34px; font-size: 12px; }
}

/* Écrans peu hauts : on masque le repère de scroll */
@media (max-height: 540px) {
  .hero-cue { display: none; }
}

/* --- Accessibilité : mouvement réduit ---------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .grain { display: none; }
  .cursor { display: none !important; }
}

/* =================================================================================================
   Direction éditoriale 2026 — pages intérieures
   ================================================================================================= */

:root {
  --surface-canvas: #0b0b0a;
  --surface-raised: #171714;
  --surface-sunken: #11110f;
  --accent-primary: #ef6a4c;
  --accent: #ef6a4c;
  --accent-primary-hover: #cf4d31;
}

body { background: var(--surface-canvas); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: #f4f0e7;
  color: #0b0b0a;
  transform: translateY(-150%);
  transition: transform 200ms ease;
}
.skip-link:focus { transform: translateY(0); }

.nav {
  position: fixed;
  min-height: 84px;
  padding: 14px clamp(22px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(11,11,10,.65), transparent);
}
.nav.is-scrolled {
  min-height: 70px;
  background: rgba(11,11,10,.88);
  border-color: rgba(244,240,231,.16);
  backdrop-filter: blur(16px);
}
.nav-monogram { width: 42px; height: 42px; border-color: var(--accent); }
.nav-link { font-weight: 650; letter-spacing: .11em; }
.nav-link--accent {
  padding: 11px 17px;
  border: 1px solid rgba(244,240,231,.48);
  color: #fff;
}
.nav-link--accent:hover { background: #f4f0e7; border-color: #f4f0e7; color: #0b0b0a; }

.page-hero {
  min-height: min(78svh, 820px);
  display: flex;
  align-items: flex-end;
  padding: clamp(170px, 24vh, 260px) clamp(22px, 6vw, 92px) clamp(64px, 9vw, 110px);
}
.page-hero-bg { opacity: .72; }
.page-hero-bg img { transform: scale(1.025); }
.page-hero-bg::after {
  background:
    linear-gradient(90deg, rgba(11,11,10,.94) 0%, rgba(11,11,10,.63) 46%, rgba(11,11,10,.12) 80%),
    linear-gradient(0deg, #0b0b0a 0%, rgba(11,11,10,.4) 44%, rgba(11,11,10,.3) 100%);
}
.page-hero-inner { width: 100%; max-width: 1280px; margin: 0 auto; }
.page-title {
  max-width: 11ch;
  margin: 0 0 25px;
  font-size: clamp(3.5rem, 7.2vw, 7.2rem);
  font-weight: 360;
  letter-spacing: -.065em;
  line-height: .94;
}
.page-lead { max-width: 760px; color: #d0ccc3; font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 1.65; }
.eyebrow { font-weight: 700; letter-spacing: .2em; }

.page-body {
  width: 100%;
  max-width: 1280px;
  padding: clamp(70px, 9vw, 130px) clamp(22px, 5vw, 72px) clamp(100px, 12vw, 170px);
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(170px, .55fr) minmax(0, 1.45fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: start;
  margin: 0 0 clamp(55px, 8vw, 100px);
  padding: 30px 0;
  border-top: 1px solid rgba(244,240,231,.18);
  border-bottom: 1px solid rgba(244,240,231,.18);
}
.page-intro span { padding-top: 7px; color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.page-intro p { max-width: 820px; margin: 0; color: #e0dcd3; font-size: clamp(1.45rem, 2.7vw, 2.55rem); font-weight: 360; letter-spacing: -.035em; line-height: 1.25; }

.prose { color: #aaa79f; font-size: 1.05rem; }
.prose > h2 {
  padding-top: clamp(34px, 6vw, 70px);
  border-top: 1px solid rgba(244,240,231,.16);
  font-size: clamp(2.25rem, 4.5vw, 4.7rem);
  font-weight: 370;
  letter-spacing: -.055em;
  line-height: 1;
}
.prose > h3 { margin-top: 38px; color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.service-card { border: 0; background: #151512; }
.service-card:nth-child(even) { transform: translateY(55px); }
.service-card:nth-child(even):hover { transform: translateY(47px); }
.service-card img { aspect-ratio: 16 / 11; filter: brightness(.92); }
.service-card-body { gap: 16px; padding: clamp(25px, 3.2vw, 42px); }
.service-index { color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.service-card h2 { max-width: 14ch; font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 380; letter-spacing: -.045em; line-height: 1.05; }
.service-card p { font-size: 1rem; }
.service-card .btn { margin-top: 8px; }

.about-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 8vw, 120px); align-items: start; }
.about-statement { margin: 0 !important; color: #f4f0e7; font-size: clamp(2.6rem, 5.4vw, 5.8rem); font-weight: 350; letter-spacing: -.06em; line-height: 1.02 !important; }
.about-intro > div { padding-top: 12px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: clamp(70px, 10vw, 130px) 0; background: rgba(244,240,231,.16); }
.about-values article { min-height: 280px; padding: clamp(25px, 3vw, 42px); background: #0b0b0a; }
.about-values span { color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .18em; }
.about-values h2 { margin: 65px 0 15px !important; padding: 0 !important; border: 0 !important; color: #f4f0e7; font-size: clamp(1.7rem, 2.5vw, 2.6rem) !important; }
.about-values p { margin: 0; color: #aaa79f; font-size: .98rem; line-height: 1.65; }
.about-gallery { margin-top: 0; }
.about-gallery img:nth-child(2) { transform: translateY(45px); }
.about-gallery img:nth-child(2):hover { transform: translateY(45px) scale(1.015); }

.pricing { gap: 1px; margin: 35px 0 90px; background: rgba(244,240,231,.16); }
.price-card { min-height: 330px; padding: clamp(28px, 4vw, 52px); border: 0; background: #151512; }
.price-card .price { margin: 45px 0 12px; font-size: clamp(2.6rem, 4vw, 4.4rem); letter-spacing: -.05em; }
.price-card .price-label { font-weight: 700; }
.gear { gap: 1px; background: rgba(244,240,231,.16); }
.gear li { min-height: 180px; padding: 25px; border: 0; background: #0b0b0a; }

.page-grid { gap: 7px; margin: 34px 0 clamp(65px, 9vw, 110px); }
.page-grid img { filter: brightness(.93); }
.page-grid--wide { grid-template-columns: 1.15fr .85fr 1fr; align-items: start; }
.page-grid--wide img { aspect-ratio: 4 / 5; }

.faq-group { max-width: 1000px; margin: 0 auto clamp(60px, 8vw, 100px); }
.faq-group-title { margin-bottom: 25px; font-size: clamp(1.7rem, 3vw, 2.8rem); font-weight: 380; letter-spacing: -.04em; }
.acc { border-left: 0; border-right: 0; background: transparent; }
.acc-head { min-height: 78px; padding: 22px 4px; font-size: clamp(1rem, 1.5vw, 1.18rem); }
.acc-body-inner { max-width: 820px; padding: 0 4px 28px; }
.faq-visual { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 7px; margin: 0 0 clamp(75px, 10vw, 130px); }
.faq-visual img { width: 100%; height: clamp(300px, 43vw, 620px); object-fit: cover; }
.faq-visual img:nth-child(2) { margin-top: 60px; }
.faq-visual figcaption { position: absolute; left: 22px; bottom: 20px; max-width: 430px; padding: 13px 16px; background: rgba(11,11,10,.82); color: #ded9cf; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; backdrop-filter: blur(10px); }

.blog-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.blog-card { display: flex; flex-direction: column; border: 0; background: #151512; }
.blog-card img { height: clamp(240px, 27vw, 390px); min-height: 0; }
.blog-card-body { flex: 1; padding: clamp(25px, 3vw, 38px); }
.blog-card-body h2 { font-size: clamp(1.65rem, 2.6vw, 2.6rem); font-weight: 390; letter-spacing: -.04em; line-height: 1.08; }
.blog-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr .8fr; }
.blog-card--featured img { height: 100%; min-height: 430px; }
.blog-card--featured .blog-card-body { justify-content: center; }

.inner-cta {
  display: grid;
  place-items: center;
  margin-top: clamp(90px, 13vw, 170px);
  padding: clamp(70px, 10vw, 125px) clamp(22px, 5vw, 70px);
  border: 1px solid rgba(244,240,231,.17);
  background: #151512;
  text-align: center;
}
.inner-cta .eyebrow { margin-bottom: 22px; color: var(--accent); }
.inner-cta h2 { max-width: 850px; margin: 0 0 35px !important; padding: 0 !important; border: 0 !important; color: #f4f0e7; font-size: clamp(2.3rem, 5vw, 5.2rem) !important; font-weight: 360; letter-spacing: -.06em; line-height: 1.02; }

.page-footer { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 40px clamp(22px, 5vw, 72px); text-align: left; }
.page-footer p { margin: 0; }
.page-footer .btn { margin: 0; }

.page-contact-float { display: none; }

@media (max-width: 860px) {
  .page-hero { min-height: 72svh; }
  .page-title { font-size: clamp(3.25rem, 12vw, 6.2rem); }
  .page-intro,
  .about-intro { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(even),
  .service-card:nth-child(even):hover { transform: none; }
  .about-values { grid-template-columns: 1fr; }
  .about-values article { min-height: 240px; }
  .page-grid--wide { grid-template-columns: repeat(2, 1fr); }
  .page-grid--wide img:last-child { grid-column: 1 / -1; width: 60%; justify-self: center; }
  .faq-visual { grid-template-columns: 1fr 1fr; }
  .blog-list { grid-template-columns: 1fr; }
  .blog-card--featured { grid-column: auto; display: flex; }
  .blog-card--featured img { height: clamp(260px, 55vw, 430px); min-height: 0; }
}

@media (max-width: 640px) {
  .nav { min-height: 70px; padding-inline: 18px; }
  .nav-link--accent { border: 0; padding: 0; color: var(--accent); }
  .page-hero { min-height: 78svh; padding: 145px 18px 68px; }
  .page-hero-bg { opacity: .65; }
  .page-hero-bg::after { background: linear-gradient(0deg, #0b0b0a 0%, rgba(11,11,10,.67) 48%, rgba(11,11,10,.28) 100%); }
  .page-title { font-size: clamp(3rem, 15vw, 4.8rem); }
  .page-body { padding: 70px 18px 125px; }
  .page-intro p { font-size: 1.55rem; }
  .about-statement { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .about-gallery { grid-template-columns: 1fr 1fr; }
  .about-gallery img:nth-child(2),
  .about-gallery img:nth-child(2):hover { transform: none; }
  .faq-visual { grid-template-columns: 1fr; }
  .faq-visual img { height: 62vw; }
  .faq-visual img:nth-child(2) { margin-top: 0; }
  .faq-visual figcaption { position: static; padding: 14px 0; background: transparent; }
  .page-grid--wide img:last-child { width: 100%; }
  .page-footer { display: grid; padding-bottom: 95px; text-align: center; }
  .page-footer .btn { justify-self: center; }
  .page-contact-float {
    position: fixed;
    z-index: 80;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    justify-content: space-between;
    padding: 15px 18px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    box-shadow: 0 10px 35px rgba(0,0,0,.45);
  }
}
