/* =============================================
   HOME — aventurehome.fr
   Style principal
   ============================================= */

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

:root {
  --emerald:    #053827;
  --emerald-mid: #0a5c3e;
  --terracotta: #934d0d;
  --creme:      #F5F0E8;
  --white-warm: #FDFAF4;
  --text-dark:  #1a1a1a;
  --text-mid:   #4a4a4a;
  --text-light: #7a7a7a;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.35s ease;
  --shadow:     0 4px 32px rgba(5, 56, 39, 0.10);
  --shadow-lg:  0 8px 48px rgba(5, 56, 39, 0.16);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
}

h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; }

p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-mid);
}

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.container-narrow {
  max-width: 780px;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-creme  { background: var(--creme); }
.section-white  { background: var(--white-warm); }
.section-emerald {
  background: var(--emerald);
  color: #fff;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-light {
  background: var(--white-warm);
  color: var(--emerald);
  border-color: var(--white-warm);
}

.btn-light:hover {
  background: #fff;
  border-color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(253, 250, 244, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(5,56,39,0.08);
  padding: 0.9rem clamp(1.25rem, 5vw, 3rem);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.12em;
  transition: color var(--transition);
}

.nav.scrolled .nav-logo {
  color: var(--emerald);
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  padding: 0.55rem 1.3rem;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 100px;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.nav.scrolled .nav-cta {
  color: var(--emerald);
  border-color: var(--emerald);
}

.nav.scrolled .nav-cta:hover {
  background: var(--emerald);
  color: #fff;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5, 56, 39, 0.72) 0%,
    rgba(5, 56, 39, 0.55) 50%,
    rgba(5, 56, 39, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 1.5rem;
}

/* Titre principal AVENTURE HOME */
.hero-brand {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

/* Sous-titre accroche */
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.8vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.35;
  margin-bottom: 1rem;
}

/* Question en sous-sous-titre */
.hero-question {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  font-style: normal;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-scroll span {
  display: block;
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

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

/* --- SECTION EYEBROW & INTRO --- */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.section-eyebrow-light {
  color: rgba(255,255,255,0.6);
}

.section-title {
  margin-bottom: 1.25rem;
  color: var(--emerald);
}

.section-title-light {
  color: #fff;
}

.section-intro {
  max-width: 620px;
  margin-bottom: 3rem;
}

/* --- SECTION 2 — PROBLÈME --- */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
}

.problem-item {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  padding: 1.25rem 0 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(5, 56, 39, 0.12);
  position: relative;
}

.problem-item::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-style: normal;
}

.problem-pivot {
  background: var(--emerald);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.problem-pivot p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  text-align: center;
}

.problem-pivot em {
  font-style: italic;
  color: rgba(255,255,255,0.8);
}

.problem-promise {
  padding: 1.5rem 0 0;
}

.problem-promise p {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.5vw, 1rem);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.problem-promise-bold {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem) !important;
  font-style: italic;
  color: var(--terracotta) !important;
  line-height: 1.5 !important;
}

/* --- SECTION 3 — CARTES OFFRE --- */
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.card {
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  color: var(--emerald);
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* OFFRE FORMATS */
.offre-formats {
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
}

.offre-formats-intro {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--emerald);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.offre-formats-grid {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.offre-format-option {
  flex: 1;
  min-width: 220px;
}

/* PROGRAMME */
.offre-schedule {
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
}

.offre-schedule-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.offre-schedule-steps {
  display: flex;
  gap: 0;
  align-items: stretch;
  margin-bottom: 1.25rem;
}

.offre-schedule-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(5,56,39,0.12);
}

.offre-schedule-item:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 1.5rem;
}

.offre-schedule-item:not(:first-child):not(:last-child) {
  padding-left: 1.5rem;
}

.offre-schedule-time {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--emerald);
  line-height: 1;
}

.offre-schedule-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.offre-schedule-note {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-light);
  border-top: 1px solid rgba(5,56,39,0.1);
  padding-top: 1rem;
}

/* OFFRE DETAILS */
.offre-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  flex-wrap: wrap;
}

.offre-format {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex: 1;
  flex-wrap: wrap;
}

.offre-format-item {
  flex: 1;
  min-width: 160px;
}

.offre-format-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.offre-format-value {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--emerald);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.offre-format-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
}

.offre-format-divider {
  width: 1px;
  height: 56px;
  background: rgba(5,56,39,0.15);
  align-self: center;
}

.offre-prix {
  text-align: center;
  padding-left: 2rem;
  border-left: 1px solid rgba(5,56,39,0.15);
  min-width: 160px;
}

.prix-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.prix-valeur {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--terracotta);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.prix-detail {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* --- SECTION 4 — NATURE (fond vert) --- */
.nature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.nature-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background var(--transition);
}

.nature-card:hover {
  background: rgba(255,255,255,0.12);
}

.nature-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.nature-card p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.65;
}

/* Encadré nature rando */
.nature-rando {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
}

.nature-rando p {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  text-align: center;
}

/* Encadré science marche */
.nature-science {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
}

.nature-science-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.85rem;
}

.nature-science-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  font-style: italic;
}

/* --- PHOTO RANDO (plus petite, contenue) --- */
.rando-photo {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem) 0;
  overflow: hidden;
}

.rando-photo img {
  width: 100%;
  height: clamp(110px, 16vw, 200px);
  object-fit: cover;
  object-position: center 55%;
  border-radius: var(--radius-lg);
  display: block;
}

.rando-photo-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    to bottom,
    rgba(5,56,39,0.08) 0%,
    rgba(5,56,39,0.02) 100%
  );
  pointer-events: none;
}

/* --- SECTION 5 — EXPERTISE --- */
.expertise-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 2.5rem 0;
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.expertise-col {
  flex: 1;
  padding: 2.5rem 3rem;
}

.expertise-divider {
  width: 1px;
  background: rgba(5,56,39,0.1);
  align-self: stretch;
}

.expertise-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--emerald);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.expertise-list li {
  font-size: 0.95rem;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(5,56,39,0.08);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.expertise-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.expertise-list li:last-child {
  border-bottom: none;
}

.expertise-couple {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--terracotta);
  text-align: center;
  margin-top: 1rem;
}

/* --- NOTE NATURE --- */
.nature-note {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin: 2rem 0 1.5rem;
}

.nature-note p {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  color: var(--emerald);
  line-height: 1.65;
}

/* --- TÉMOIGNAGE --- */
.temoignage {
  border: none;
  padding: 0;
}

.temoignage-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-style: italic;
  color: var(--emerald);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.temoignage-suite {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.temoignage-author {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* Poème témoignage */
.temoignage-poeme {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(5,56,39,0.1);
}

.temoignage-poeme-intro {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.poeme {
  border-left: 2px solid var(--terracotta);
  padding-left: 1.5rem;
}

.poeme p {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  color: var(--emerald);
  line-height: 2;
}

/* Titre FAQ inline */
.section-title-light-inline {
  color: var(--text-mid);
  font-style: italic;
}

/* CTA closing */
.cta-closing {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  text-align: center;
  margin-top: 2.5rem;
}

/* --- SECTION 6 — ÉTAPES --- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(5,56,39,0.1);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(5,56,39,0.12);
  line-height: 1;
  min-width: 56px;
  transition: color var(--transition);
}

.step:hover .step-num {
  color: var(--terracotta);
}

.step-content h3 {
  color: var(--emerald);
  margin-bottom: 0.5rem;
}

/* --- SECTION 7 — COACHS --- */
.coaches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.coach-card {
  background: var(--creme);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.coach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Photo complète : on laisse l'image à sa hauteur naturelle */
.coach-photo {
  width: 100%;
  overflow: hidden;
  background: var(--creme);
}

.coach-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.coach-card:hover .coach-photo img {
  transform: scale(1.03);
}

.coach-info {
  padding: 1.75rem 2rem 2rem;
}

.coach-info h3 {
  font-size: 1.5rem;
  color: var(--emerald);
  margin-bottom: 0.75rem;
}

.coach-superpower {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--terracotta);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.coach-bio {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

.coach-domaines {
  font-size: 0.82rem;
  color: var(--emerald);
  letter-spacing: 0.03em;
}

/* --- SECTION 8 — FAQ --- */
.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(5,56,39,0.12);
}

.faq-item:first-child {
  border-top: 1px solid rgba(5,56,39,0.12);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--emerald);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--terracotta);
}

.faq-chevron {
  font-size: 1.4rem;
  color: var(--terracotta);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* --- SECTION 9 — CTA FINAL --- */
.cta-intro {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.parrainage {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  text-align: center;
}

.parrainage-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

/* --- FOOTER --- */
.footer {
  background: var(--emerald);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.12em;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* --- MENTIONS LÉGALES PAGE --- */
.mentions-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 7rem clamp(1.25rem, 5vw, 3rem) 5rem;
}

.mentions-container h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--emerald);
  margin-bottom: 2rem;
}

.mentions-container h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--emerald);
  margin: 2rem 0 0.75rem;
}

.mentions-container p,
.mentions-container address {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-style: normal;
  margin-bottom: 0.5rem;
}

.mentions-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--emerald);
  margin-bottom: 2rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.mentions-back:hover {
  opacity: 1;
}

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

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

.cards-row .reveal:nth-child(2) { transition-delay: 0.1s; }
.cards-row .reveal:nth-child(3) { transition-delay: 0.2s; }
.nature-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.nature-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.steps .reveal:nth-child(2) { transition-delay: 0.08s; }
.steps .reveal:nth-child(3) { transition-delay: 0.16s; }
.steps .reveal:nth-child(4) { transition-delay: 0.24s; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .cards-row {
    grid-template-columns: 1fr;
  }

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

  .coaches-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .offre-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .offre-prix {
    border-left: none;
    border-top: 1px solid rgba(5,56,39,0.15);
    padding-left: 0;
    padding-top: 1.5rem;
    width: 100%;
    text-align: left;
  }

  .expertise-grid {
    flex-direction: column;
  }

  .expertise-divider {
    width: 100%;
    height: 1px;
  }

  .expertise-col {
    padding: 2rem 1.75rem;
  }
}

@media (max-width: 600px) {
  .nav-cta {
    display: none;
  }

  .hero-brand {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .problem-pivot {
    padding: 2rem 1.5rem;
  }

  .offre-format {
    flex-direction: column;
    gap: 1.25rem;
  }

  .offre-format-divider {
    display: none;
  }

  .offre-details {
    padding: 2rem 1.5rem;
  }

  .offre-schedule {
    padding: 1.5rem;
  }

  .offre-schedule-steps {
    flex-direction: column;
    gap: 0.75rem;
  }

  .offre-schedule-item {
    border-right: none;
    border-bottom: 1px solid rgba(5,56,39,0.1);
    padding: 0 0 0.75rem 0 !important;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .offre-schedule-item:last-child {
    border-bottom: none;
  }

  .step {
    gap: 1.25rem;
  }

  .step-num {
    font-size: 2.5rem;
    min-width: 40px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 340px;
  }

  .nature-science {
    padding: 1.5rem;
  }
}
