/* ═══════════════════════════════════════════════════════════
   STEEVE BLASCO — steeve-blasco.netlify.app
   Palette : Nuit forêt · Vert glacier · Sable chaud
   Typo    : Bebas Neue (display) · Lora (corps) · DM Sans (UI)
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --bg:           #060B08;
  --surface:      #0C1510;
  --surface-2:    #121E16;
  --border:       rgba(255,255,255,0.07);

  --green:        #3E6B50;
  --green-light:  #5A9470;
  --gold:         #B89260;
  --gold-light:   #D4AC7A;

  --text:         #DDD9CF;
  --text-muted:   #7A8E7D;
  --white:        #F0EDE7;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Lora', Georgia, serif;
  --font-ui:      'DM Sans', sans-serif;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h:        72px;
  --max-w:        1280px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
select, input, textarea, button { font-family: inherit; }

/* ── SCROLL BAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--font-ui);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(62,107,80,.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}
.btn-large {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

/* ── TYPOGRAPHY HELPERS ── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: 1.5rem;
}
.section-header { margin-bottom: 3.5rem; }

/* ── SECTION BASE ── */
.section { padding-block: clamp(5rem, 10vw, 8rem); }
.section--dark { background: var(--surface); }

/* ── ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal, .reveal-delay-1, .reveal-delay-2, .reveal-delay-3 {
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) forwards;
}
.reveal          { animation-delay: .1s; }
.reveal-delay-1  { animation-delay: .3s; }
.reveal-delay-2  { animation-delay: .5s; }
.reveal-delay-3  { animation-delay: .7s; }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════
   NAVIGATION
════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  padding-inline: clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  transition: background .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(6,11,8,.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .15em;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: .55rem 1.3rem;
  letter-spacing: .08em !important;
  transition: background .3s !important;
}
.nav-cta:hover { background: var(--green-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 10vh, 8rem);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* Image : monter le cadrage pour voir plus du bonnet, moins des yeux */
.hero-img { object-position: center 5%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,11,8,.05) 0%,
    rgba(6,11,8,.20) 35%,
    rgba(6,11,8,.80) 72%,
    rgba(6,11,8,.98) 100%
  );
}
.exped-caption {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-ui);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-inline: clamp(1.5rem, 6vw, 5rem);
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 12rem);
  line-height: .9;
  color: var(--white);
  letter-spacing: .01em;
  margin-bottom: 1.5rem;
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(221,217,207,.75);
  margin-bottom: 2.5rem;
  font-style: italic;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.5rem, 5vw, 3rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-ui);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: lineGrow 1.5s ease infinite;
}
@keyframes lineGrow {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ════════════════════════════════
   L'HOMME
════════════════════════════════ */
#homme { padding-block: clamp(5rem, 10vw, 9rem); }

.homme-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-template-rows: auto 1fr;
  gap: 2rem 5rem;
  align-items: start;
}
.homme-header {
  grid-column: 1;
  grid-row: 1;
}
.homme-body {
  grid-column: 1;
  grid-row: 2;
}
.homme-portrait {
  grid-column: 2;
  grid-row: 1 / 3;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  aspect-ratio: 3/4;
  overflow: hidden;
}
.homme-portrait img { transition: transform 1s var(--ease-out); }
.homme-portrait:hover img { transform: scale(1.04); }
.homme-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--green);
  pointer-events: none;
  transform: translate(10px, 10px);
  transition: transform .4s var(--ease-out);
}
.homme-portrait:hover::after { transform: translate(5px, 5px); }

.homme-body p {
  font-size: 1.05rem;
  color: rgba(221,217,207,.82);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.homme-body em { color: var(--text); font-style: italic; }

/* Stats intégrées dans le prose */
.homme-stat-inline {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--green);
}
.stat-num-inline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  color: var(--white);
  line-height: 1;
  flex-shrink: 0;
}
.stat-plus { color: var(--green-light); }
.stat-label-inline {
  font-family: var(--font-ui);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 20ch;
}

/* ════════════════════════════════
   EXPÉDITIONS
════════════════════════════════ */
#expeditions { background: var(--surface); }

.exped-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.exped-card--large {
  grid-column: span 3;
  grid-row: 1;
}

.exped-card {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  cursor: default;
}
.exped-card--large { aspect-ratio: 21/9; }
.exped-card:not(.exped-card--large) { aspect-ratio: 4/3; }

.exped-card img {
  transition: transform 1s var(--ease-out);
}
.exped-card:hover img { transform: scale(1.06); }

.exped-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,11,8,.95) 0%,
    rgba(6,11,8,.4) 50%,
    rgba(6,11,8,.1) 100%
  );
  transition: background .4s;
}
.exped-card:hover .exped-overlay {
  background: linear-gradient(
    to top,
    rgba(6,11,8,.98) 0%,
    rgba(6,11,8,.6) 60%,
    rgba(6,11,8,.2) 100%
  );
}

.exped-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  z-index: 1;
}
.exped-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: .75rem;
}
.exped-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: .75rem;
}
.exped-content p {
  font-size: .9rem;
  color: rgba(221,217,207,.75);
  line-height: 1.6;
  margin-bottom: .75rem;
  max-width: 50ch;
}
.exped-meta {
  font-family: var(--font-ui);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Prochain défi */
.exped-next {
  margin-top: 2rem;
  border: 1px solid var(--border);
  background: var(--surface-2);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.exped-next::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--green), var(--gold));
}
.exped-next-inner { padding-left: 1.5rem; }
.exped-next-inner h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: .75rem;
  letter-spacing: .02em;
}
.exped-next-inner p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 65ch;
}

/* ════════════════════════════════
   FILM ICELAND
════════════════════════════════ */
.section-film {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.film-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.film-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,11,8,.95) 0%,
    rgba(6,11,8,.6) 50%,
    rgba(6,11,8,.85) 100%
  );
}
/* Affiche officielle ICELAND — cliquable */
.film-poster-wrap {
  position: absolute;
  right: clamp(2rem, 8vw, 8rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: clamp(180px, 20vw, 280px);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.8));
  display: block;
  cursor: pointer;
}
.film-poster {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .4s var(--ease-out), filter .4s;
}
.film-poster-wrap:hover .film-poster {
  transform: scale(1.03);
  filter: brightness(1.1);
}
.film-poster-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.film-poster-play svg { width: 64px; height: 64px; }
.film-poster-wrap:hover .film-poster-play { opacity: 1; }
.film-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 55%;
}
.film-eyebrow { margin-bottom: 1.5rem; }
.film-title {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 14rem);
  color: var(--white);
  line-height: .85;
  letter-spacing: .05em;
  margin-bottom: 2rem;
}
.film-desc {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(221,217,207,.75);
  max-width: 42ch;
  margin-bottom: 3rem;
  font-style: italic;
  line-height: 1.8;
}

/* ════════════════════════════════
   CARPATES DIEM
════════════════════════════════ */
#carpates { padding-block: clamp(5rem, 10vw, 8rem); }

.carpates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.carpates-visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.carpates-visual img { transition: transform 1s var(--ease-out); }
.carpates-visual:hover img { transform: scale(1.04); }
.carpates-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--green);
  pointer-events: none;
  transform: translate(12px, 12px);
  transition: transform .4s var(--ease-out);
}
.carpates-visual:hover::after { transform: translate(6px, 6px); }

.carpates-text p {
  color: rgba(221,217,207,.8);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ════════════════════════════════
   LE LIVRE
════════════════════════════════ */
#livre { background: var(--surface); }

.livre-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: center;
}

/* Livre 3D CSS */
.livre-book {
  display: flex;
  width: 280px;
  max-width: 100%;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.8));
  transform: perspective(800px) rotateY(-10deg);
  transition: transform .6s var(--ease-out);
}
.livre-book:hover {
  transform: perspective(800px) rotateY(-5deg) translateY(-8px);
}
.livre-spine {
  width: 28px;
  background: linear-gradient(to right, #1a2e20, #2d4a35);
  flex-shrink: 0;
}
.livre-front {
  flex: 1;
  min-height: 380px;
  background: linear-gradient(145deg, #1C2E22, #0F1C14);
  border: 1px solid rgba(255,255,255,.06);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.livre-front::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--green), var(--gold));
}
.livre-front-title {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: .01em;
}
.livre-front-author {
  font-family: var(--font-ui);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.livre-front-deco {
  position: absolute;
  bottom: 2rem; right: 1.5rem;
  width: 60px; height: 60px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.livre-subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.livre-text p {
  font-size: 1rem;
  color: rgba(221,217,207,.8);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.livre-royalties {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 2px solid var(--gold);
  background: rgba(184,146,96,.07);
}
.livre-royalties p {
  font-size: .9rem !important;
  margin-bottom: .4rem !important;
  color: rgba(221,217,207,.7) !important;
}
.livre-status {
  font-family: var(--font-ui);
  font-size: .78rem;
  letter-spacing: .05em;
  color: var(--green-light);
  text-transform: uppercase;
}

/* ════════════════════════════════
   FIRE ADVENTURE
════════════════════════════════ */
.section-fire {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-block: clamp(5rem, 10vw, 8rem);
}
.fire-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fire-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6,11,8,.97) 40%,
    rgba(6,11,8,.7) 100%
  );
}
.fire-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.fire-eyebrow { margin-bottom: 1rem; }
.fire-title { margin-bottom: 1.5rem; }
.fire-desc {
  font-size: 1.1rem;
  color: rgba(221,217,207,.8);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 50ch;
}
.fire-focus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: center;
}
.fire-focus img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.08);
}
.fire-focus-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: .03em;
  margin-bottom: 1rem;
}
.fire-focus-text p {
  font-size: .95rem;
  color: rgba(221,217,207,.75);
  line-height: 1.8;
  margin-bottom: .9rem;
}
.fire-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.fire-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.fire-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
}
.fire-step p {
  font-family: var(--font-ui);
  font-size: .95rem;
  color: var(--text-muted);
  padding-top: .3rem;
}

/* ════════════════════════════════
   PRESSE
════════════════════════════════ */
#presse { background: var(--bg); }
.presse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.presse-card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: border-color .3s, transform .3s;
}
.presse-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}
.presse-source {
  font-family: var(--font-ui);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-light);
}
.presse-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: .02em;
}
.presse-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.presse-date {
  font-family: var(--font-ui);
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
#contact { background: var(--surface); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-text p {
  font-size: 1.05rem;
  color: rgba(221,217,207,.75);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-email {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: .9rem;
  color: var(--green-light);
  border-bottom: 1px solid var(--green);
  padding-bottom: .2rem;
  transition: color .3s;
}
.contact-email:hover { color: var(--white); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-group { width: 100%; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .9rem 1.2rem;
  font-size: .95rem;
  outline: none;
  transition: border-color .3s;
  font-family: var(--font-body);
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { cursor: pointer; color: var(--text-muted); }
.form-group select option { background: var(--surface-2); color: var(--text); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--green); }

/* ════════════════════════════════
   MENTIONS LÉGALES
════════════════════════════════ */
.mentions-legales {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: 1.25rem;
}
.mentions-legales p {
  font-family: var(--font-ui);
  font-size: .7rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}
.mentions-legales a {
  color: var(--green-light);
  transition: color .3s;
}
.mentions-legales a:hover { color: var(--white); }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: 3.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.footer-brand { text-align: left; }
.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: .35rem;
}
.footer-sub {
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--font-ui);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .3s;
}
.footer-nav a:hover { color: var(--white); }
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color .3s, border-color .3s, transform .3s;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-3px);
}
.footer-copy {
  font-family: var(--font-ui);
  font-size: .72rem;
  color: var(--text-muted);
  text-align: right;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */

@media (max-width: 1024px) {
  .homme-wrap { grid-template-columns: 1fr; }
  .homme-portrait { display: none; }
  .homme-body { grid-row: 2; grid-column: 1; }
  .livre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .livre-book { width: 240px; }
  .carpates-grid { grid-template-columns: 1fr; gap: 3rem; }
  .exped-grid { grid-template-columns: 1fr 1fr; }
  .exped-card--large { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-right { align-items: center; }
  .footer-copy { text-align: center; }
  .film-poster-wrap { width: clamp(140px, 18vw, 220px); right: 2rem; }
  .film-content { max-width: 65%; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(6,11,8,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 2rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: 1rem 2rem;
    font-size: .85rem;
    color: var(--text);
  }
  .nav-cta { margin: .5rem 2rem 0; display: block !important; text-align: center; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(4rem, 20vw, 8rem); }
  .hero-content { padding-inline: 1.5rem; }

  .homme-stat-inline { margin: 1.5rem 0; }

  .exped-grid { grid-template-columns: 1fr; }
  .exped-card--large { grid-column: span 1; aspect-ratio: 16/9; }
  .exped-card:not(.exped-card--large) { aspect-ratio: 3/2; }

  .presse-grid { grid-template-columns: 1fr; }

  .film-title { font-size: clamp(4rem, 18vw, 8rem); }
  .film-poster-wrap { display: none; }
  .film-content { max-width: 100%; align-items: center; text-align: center; }
  .film-desc { text-align: center; }

  .fire-steps { gap: 1rem; }
  .fire-focus { grid-template-columns: 1fr; }
  .fire-focus img { height: 220px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(3.5rem, 22vw, 6rem); }
  .hero-actions { flex-direction: column; gap: .75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stat-num-inline { font-size: 2.5rem; }
  .livre-book { width: 200px; }
  .livre-front { min-height: 280px; }
}

/* ════════════════════════════════
   AUDIO PLAYER — bouton fixe scroll
════════════════════════════════ */
.audio-player {
  position: fixed;
  right: 1.5rem;
  bottom: 40%;
  transform: translateY(50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  transition: bottom .1s linear;
}

.audio-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(6,11,8,.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.audio-btn:hover {
  background: rgba(62,107,80,.6);
  border-color: var(--green);
  color: var(--white);
  transform: scale(1.1);
}
.audio-btn.playing {
  background: rgba(62,107,80,.5);
  border-color: var(--green-light);
  color: var(--white);
}
.audio-btn svg {
  width: 18px;
  height: 18px;
}
.icon-pause { display: none; }
.audio-btn.playing .icon-play  { display: none; }
.audio-btn.playing .icon-pause { display: block; }

/* Label vertical */
.audio-label {
  font-family: var(--font-ui);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transition: color .3s;
}
.audio-player:hover .audio-label { color: rgba(255,255,255,.5); }

/* Barre de progression verticale */
.audio-progress {
  width: 2px;
  height: 60px;
  background: rgba(255,255,255,.1);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}
.audio-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--green-light);
  border-radius: 1px;
  transition: height .5s linear;
}

@media (max-width: 768px) {
  .audio-player {
    right: 1rem;
    bottom: 2rem;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
  }
  .audio-label { writing-mode: horizontal-tb; }
  .audio-progress { width: 40px; height: 2px; }
  .audio-progress-bar {
    bottom: auto;
    left: 0;
    width: 0%;
    height: 100%;
    transition: width .5s linear;
  }
}
