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

:root {
  --navy:        #0A1B2E;
  --navy-mid:    #112A45;
  --navy-light:  #1B3A5C;
  --ocean:       #1E5C8F;
  --ocean-light: #4A8BB8;
  --gold:        #C8A96A;
  --gold-light:  #DFC18A;
  --gold-pale:   #F3ECD8;
  --white:       #FFFFFF;
  --off-white:   #F7F5F0;
  --sand:        #EAE3D2;
  --text-dark:   #0E1823;
  --text-mid:    #3D5066;
  --text-light:  #6B8099;
  --border:      rgba(200,169,106,0.25);
  --border-soft: rgba(14,24,35,0.08);

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

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

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

/* height: auto est indispensable : les balises <img> portent des attributs
   width/height explicites (pour reserver la place et eviter le decalage de
   mise en page), et sans cette regle max-width:100% ecraserait la largeur
   sans corriger la hauteur, ce qui deforme les photos. Les images de fond
   qui doivent remplir un cadre imposent leur propre height via leur classe. */
img { display: block; max-width: 100%; height: auto; }

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

.label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
}
.divider.centered { margin: 0 auto; }

/* ─── Top Bar Outremer Partnership ─────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 0.65rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(200,169,106,0.15);
  position: relative;
  z-index: 101;
}

.topbar-left { display: flex; align-items: center; gap: 0.6rem; }
.topbar-left strong { color: var(--gold); letter-spacing: 0.18em; font-weight: 600; }
.topbar-right { display: flex; gap: 1.5rem; }
.topbar-right a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.topbar-right a:hover { color: var(--gold); }

/* ─── Navigation ──────────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(10, 27, 46, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,169,106,0.12);
  transition: padding 0.4s var(--ease-out);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
}

.nav-logo-name {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.nav-logo-tagline {
  font-size: 0.55rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: transparent; color: var(--gold); }

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - 100px);
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,27,46,0.4) 0%, rgba(10,27,46,0.25) 30%, rgba(10,27,46,0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 920px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.2rem;
  background: rgba(200,169,106,0.12);
  border: 1px solid rgba(200,169,106,0.4);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,169,106,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(200,169,106,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(200,169,106,0.05); }
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-separator {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 620px;
  font-weight: 300;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,106,0.3); }
.btn-primary svg { width: 14px; transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.95);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,169,106,0.05); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200,169,106,0.8), transparent);
  animation: scrollAnim 2.2s var(--ease-in-out) infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  30% { opacity: 1; transform: scaleY(1); }
  70% { opacity: 1; transform: scaleY(1); }
}

/* ─── Stat Bar ────────────────────────────────────────────────── */
.stat-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}
.stat-number small { font-size: 1.1rem; opacity: 0.7; }

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  font-weight: 300;
  line-height: 1.4;
}

/* ─── Section Layout ──────────────────────────────────────────── */
section { padding: 7rem 2rem; }

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 4rem;
}
.section-header.centered { align-items: center; text-align: center; }

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}
.section-title.light { color: var(--white); }

.section-body {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 620px;
  font-weight: 300;
}
.section-body.light { color: rgba(255,255,255,0.65); }

/* ─── Outremer Signature ─────────────────────────────────────── */
.signature {
  background: var(--off-white);
  position: relative;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.signature-text { display: flex; flex-direction: column; gap: 1.5rem; }

.signature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
}

.sig-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.sig-stat-num {
  font-family: var(--ff-serif);
  font-size: 1.9rem;
  color: var(--navy);
  font-weight: 500;
}

.sig-stat-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.5;
}

.signature-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.signature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.signature-visual:hover img { transform: scale(1.05); }

.signature-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(10,27,46,0.85);
  backdrop-filter: blur(12px);
  padding: 1rem 1.2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.signature-caption-name { font-family: var(--ff-serif); font-size: 1rem; }
.signature-caption-loc { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }

/* ─── Le Bateau (Specs) ───────────────────────────────────────── */
.boat { background: var(--white); }

.boat-hero {
  position: relative;
  margin-bottom: 4rem;
  background: var(--off-white);
  overflow: hidden;
}
.boat-hero img { width: 100%; height: auto; display: block; }
.boat-hero-tag {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: rgba(10,27,46,0.85);
  backdrop-filter: blur(12px);
  padding: 0.7rem 1.2rem;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.boat-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-soft);
  border-left: 1px solid var(--border-soft);
}

.spec {
  padding: 1.4rem 1.5rem;
  border-right: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.spec-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}

.spec-val {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  color: var(--text-dark);
  font-weight: 500;
}

.spec-val small { font-size: 0.7rem; color: var(--text-light); font-weight: 400; letter-spacing: 0; }

.boat-architects {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--off-white);
}

.architect {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.architect-role {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.architect-name {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  color: var(--navy);
}

/* ─── Galerie ─────────────────────────────────────────────────── */
.gallery { background: var(--navy); padding-bottom: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  filter: brightness(0.85);
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1); }

/* ─── Comment ça marche ───────────────────────────────────────── */
.how { background: var(--white); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.4;
}

.step {
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
}

.step-num {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--gold);
  background: var(--white);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  color: var(--text-dark);
  font-weight: 500;
}

.step-text {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── Comparaison Membre vs Propriétaire ─────────────────────── */
.compare { background: var(--off-white); }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 4rem;
}

.compare-col {
  padding: 2.5rem 2.2rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.compare-col.featured {
  background: var(--navy);
  color: var(--white);
  position: relative;
}

.compare-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}
.compare-col.featured .compare-tag { color: var(--gold); }

.compare-title {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.compare-price {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin: 0.5rem 0;
}
.compare-col.featured .compare-price { color: var(--gold); }

.compare-price small {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-top: 0.4rem;
  font-family: var(--ff-sans);
}
.compare-col.featured .compare-price small { color: rgba(255,255,255,0.5); }

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border-soft);
}
.compare-col.featured .compare-list { border-color: rgba(255,255,255,0.1); }

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.compare-col.featured .compare-item { color: rgba(255,255,255,0.78); }

.compare-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.compare-icon.x { background: rgba(0,0,0,0.06); color: #8B95A3; }
.compare-icon.v { background: rgba(200,169,106,0.18); color: var(--gold); }

/* ─── Formules ──────────────────────────────────────────────── */
.membership { background: var(--white); }
.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 840px;
  margin: 4rem auto 0;
}
.plans-note {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  max-width: 840px; margin: 1.8rem auto 0;
  padding: 1rem 1.5rem; text-align: center;
  background: rgba(200,169,106,0.08);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.94rem; color: var(--text-mid); font-weight: 300;
}
.plans-note strong { color: var(--text-dark); font-weight: 600; }
.plans-note .avail-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,169,106,0.18); flex-shrink: 0;
}

.plan {
  background: var(--white);
  padding: 2.8rem 2.3rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  border: 1px solid var(--border-soft);
  position: relative;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(10,27,46,0.08);
}
.plan.featured {
  background: var(--navy);
  border-color: var(--navy);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  white-space: nowrap;
}

.plan-name {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.plan-title {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  color: var(--text-dark);
  font-weight: 500;
}
.plan.featured .plan-title { color: var(--white); }

.plan-price {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.plan.featured .plan-price { border-color: rgba(255,255,255,0.1); }

.plan-price-value {
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: var(--text-dark);
}
.plan.featured .plan-price-value { color: var(--gold); }

.plan-price-note {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 300;
}
.plan.featured .plan-price-note { color: rgba(255,255,255,0.45); }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.5;
}
.plan.featured .plan-feature { color: rgba(255,255,255,0.7); }

.plan-feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 0.9rem;
  background: var(--gold-pale);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.plan.featured .plan-cta { background: var(--gold); color: var(--navy); }
.plan-cta:hover { background: var(--gold); color: var(--navy); }

/* ─── Témoignages ──────────────────────────────────────────────── */
.testimonials { background: var(--off-white); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial {
  padding: 2.5rem 2.2rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border: 1px solid var(--border-soft);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-family: var(--ff-serif);
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--gold);
}

.author-info { display: flex; flex-direction: column; gap: 0.2rem; }
.author-name { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.author-role { font-size: 0.72rem; color: var(--text-light); font-weight: 300; }

/* ─── CTA Final ─────────────────────────────────────────────── */
.cta-final {
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-final-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.18;
}
.cta-final-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--navy) 0%, rgba(10,27,46,0.85) 100%);
}

.cta-final-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.cta-final-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--white);
  line-height: 1.2;
}

.cta-final-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── Form ──────────────────────────────────────────────────── */
form {
  width: 100%;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.9rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

input, select, textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,169,106,0.3);
  color: white;
  padding: 1rem 1.2rem;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  outline: none;
  width: 100%;
  transition: border-color 0.25s;
  font-weight: 300;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.5); }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
select { color: rgba(255,255,255,0.6); cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23C8A96A' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.2rem center; }
select option { background: var(--navy); color: white; }
textarea { resize: vertical; min-height: 110px; }

.form-msg {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--gold);
  display: none;
}

/* ─── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2.5rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 1.2rem; }

.footer-logo {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 500;
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  font-weight: 300;
  max-width: 320px;
}

.footer-partner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: rgba(200,169,106,0.06);
  border: 1px solid rgba(200,169,106,0.2);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: flex-start;
}
.footer-partner strong { color: var(--gold-light); }

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.75rem;
  transition: border-color 0.25s, color 0.25s;
}
.social-icon svg { width: 18px; height: 18px; display: block; }
.social-icon:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 300;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

/* ─── Reveal ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .topbar { padding: 0.6rem 1.5rem; flex-direction: column; gap: 0.4rem; font-size: 0.62rem; }
  .topbar-right { gap: 1rem; }
  #navbar { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .signature-grid { grid-template-columns: 1fr; gap: 3rem; }
  .boat-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .boat-architects { grid-template-columns: 1fr; gap: 1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps::before { display: none; }
  .compare-grid { grid-template-columns: 1fr; }
  .plans, .testimonial-grid { grid-template-columns: 1fr; }
  .stat-bar-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 5rem 1.5rem; }
  .hero-title { font-size: 2.2rem; }
  .steps { grid-template-columns: 1fr; }
  .stat-bar-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ─── Terrain de jeu / Zones de navigation ─────────── */
.circuit { background: var(--off-white); }
.zone-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.zone-photo {
  position: relative; border-radius: 6px; overflow: hidden;
  aspect-ratio: 3 / 4; min-height: 440px;
  box-shadow: 0 18px 45px rgba(10,27,46,0.16);
  display: flex; align-items: flex-end;
}
.zone-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 1.2s var(--ease-out);
}
.zone-photo:hover img { transform: scale(1.06); }
.zone-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,16,28,0.9) 0%, rgba(6,16,28,0.4) 42%, rgba(6,16,28,0.05) 100%);
}
.zone-photo-content { position: relative; z-index: 2; padding: 2rem 1.9rem; color: #fff; }
.zone-photo-season {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.55rem;
}
.zone-photo-content h3 { font-size: 1.7rem; font-weight: 500; margin-bottom: 0.7rem; color: #fff; }
.zone-photo-content p { font-size: 0.9rem; line-height: 1.6; font-weight: 300; color: rgba(255,255,255,0.82); }
@media (max-width: 860px) {
  .zone-photos { grid-template-columns: 1fr; }
  .zone-photo { aspect-ratio: 16 / 10; min-height: 300px; }
}

/* ─── FAQ ───────────────────────────────────────────────────────── */
.faq { background: var(--off-white); }

.faq-list {
  max-width: 820px;
  margin: 3.5rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
  background: var(--white);
  border-radius: 2px;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 2px rgba(14, 24, 35, 0.04);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.35rem 3rem 1.35rem 1.6rem;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  transition: color 0.25s var(--ease-out);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  position: absolute;
  right: 1.6rem;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s var(--ease-out);
}

.faq-item[open] summary { color: var(--ocean); }
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }

.faq-item summary:hover { color: var(--ocean); }

.faq-item p {
  padding: 0 3rem 1.6rem 1.6rem;
  font-size: 0.92rem;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text-mid);
}

@media (max-width: 640px) {
  .faq-item summary { padding: 1.15rem 2.6rem 1.15rem 1.1rem; font-size: 0.9rem; }
  .faq-item p { padding: 0 1.5rem 1.3rem 1.1rem; }
}

/* ─── Fil d'Ariane ──────────────────────────────────────────────── */
.breadcrumb {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.5rem 2.5rem 0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}

.breadcrumb a { color: var(--text-light); text-decoration: none; transition: color 0.2s var(--ease-out); }
.breadcrumb a:hover { color: var(--ocean); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.5; }

/* ─── En-tête de page intérieure ────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 8.5rem 0 4.5rem;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

/* Le voile est lateral, pas uniforme : dense a gauche pour que le titre reste
   lisible, presque transparent a droite pour que la photographie se voie. */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(10, 27, 46, 0.90) 0%,
      rgba(10, 27, 46, 0.80) 34%,
      rgba(10, 27, 46, 0.42) 62%,
      rgba(10, 27, 46, 0.20) 100%),
    linear-gradient(180deg,
      rgba(10, 27, 46, 0.35) 0%,
      rgba(10, 27, 46, 0) 30%,
      rgba(10, 27, 46, 0) 70%,
      rgba(10, 27, 46, 0.30) 100%);
}

/* En colonne etroite, le texte couvre toute la largeur : voile plus uniforme. */
@media (max-width: 900px) {
  .page-hero::after {
    background: linear-gradient(180deg, rgba(10, 27, 46, 0.74) 0%, rgba(10, 27, 46, 0.88) 100%);
  }
}

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

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  color: var(--white);
  max-width: 18ch;
  margin-bottom: 1.4rem;
}

.page-hero .page-lead {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 62ch;
}

.page-hero .breadcrumb { padding: 0 0 1.6rem; color: rgba(255, 255, 255, 0.55); }
.page-hero .breadcrumb a { color: rgba(255, 255, 255, 0.55); }
.page-hero .breadcrumb a:hover { color: var(--gold-light); }

/* ─── Corps de page éditoriale ──────────────────────────────────── */
.prose {
  max-width: 760px;
  margin: 0 auto;
}

.prose h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 3.2rem 0 1.2rem;
  color: var(--text-dark);
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-size: 1.2rem;
  margin: 2.2rem 0 0.9rem;
  color: var(--text-dark);
}

.prose p,
.prose li {
  font-size: 0.97rem;
  line-height: 1.85;
  font-weight: 300;
  color: var(--text-mid);
}

.prose p { margin-bottom: 1.2rem; }
.prose ul, .prose ol { margin: 0 0 1.4rem 1.2rem; }
.prose li { margin-bottom: 0.55rem; }
.prose strong { font-weight: 500; color: var(--text-dark); }

.prose a {
  color: var(--ocean);
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 92, 143, 0.3);
  transition: border-color 0.2s var(--ease-out);
}

.prose a:hover { border-bottom-color: var(--ocean); }

.prose figure { margin: 2.4rem 0; }
.prose figure img { border-radius: 2px; }

.prose figcaption {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
}

.prose blockquote {
  border-left: 2px solid var(--gold);
  padding: 0.3rem 0 0.3rem 1.4rem;
  margin: 2rem 0;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
}

.prose .note {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.4rem 1.6rem;
  margin: 2.2rem 0;
}

.prose .note p { margin: 0; font-size: 0.9rem; }
.prose .note p + p { margin-top: 0.8rem; }

/* ─── Tableau comparatif ────────────────────────────────────────── */
.table-wrap { overflow-x: auto; margin: 2.2rem 0; }

.comparison {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.comparison th,
.comparison td {
  text-align: left;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--border-soft);
  font-weight: 300;
  color: var(--text-mid);
  vertical-align: top;
}

.comparison thead th {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--gold);
}

.comparison tbody th {
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

.comparison .highlight { background: rgba(200, 169, 106, 0.07); }

/* ─── Bloc d'appel en fin de page ───────────────────────────────── */
.page-cta {
  background: var(--navy);
  color: var(--white);
  padding: 4.5rem 2.5rem;
  text-align: center;
}

.page-cta h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 1.1rem; }

.page-cta p {
  max-width: 58ch;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

/* ─── Liens connexes ────────────────────────────────────────────── */
.related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.related-card {
  display: block;
  padding: 1.7rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.related-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.related-card .rc-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.related-card .rc-title {
  font-family: var(--ff-serif);
  font-size: 1.12rem;
  color: var(--text-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.related-card .rc-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ─── Liste d'actualités ────────────────────────────────────────── */
.news-list { max-width: 820px; margin: 0 auto; }

.news-item {
  display: block;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-soft);
  text-decoration: none;
}

.news-item time {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.news-item h2 {
  font-family: var(--ff-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0.6rem 0 0.7rem;
  transition: color 0.25s var(--ease-out);
}

.news-item:hover h2 { color: var(--ocean); }

.news-item p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ─── Page 404 ──────────────────────────────────────────────────── */
.error-page {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 2rem 5rem;
}

.error-page .error-code {
  font-family: var(--ff-serif);
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

/* Texte réservé aux lecteurs d'écran */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Menu mobile ───────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(200, 169, 106, 0.4);
  border-radius: 2px;
  width: 42px;
  height: 38px;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease-out), opacity 0.2s linear;
}

.nav-toggle span { top: 50%; margin-top: -0.75px; }
.nav-toggle span::before { top: -6px; left: 0; transform: none; }
.nav-toggle span::after { top: 6px; left: 0; transform: none; }

.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 27, 46, 0.985);
    border-top: 1px solid var(--border);
    padding: 0.6rem 0 1.1rem;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 0.95rem 1.6rem;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-cta { display: none; }
}

/* ─── Emplacement photo en attente ──────────────────────────────── */
.photo-slot {
  margin: 2.6rem 0;
  border: 1px dashed var(--border);
  background: var(--off-white);
  border-radius: 2px;
  aspect-ratio: 3 / 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 0.6rem;
}

.photo-slot .ps-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.photo-slot .ps-desc {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 46ch;
  line-height: 1.7;
}

/* ─── Engagements du club ───────────────────────────────────────── */
.pledges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  margin-top: 4rem;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}

.pledge {
  background: var(--white);
  padding: 2.4rem 2rem;
  position: relative;
  transition: background 0.4s var(--ease-out);
}

.pledge:hover { background: var(--off-white); }

.pledge-num {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 1.1rem;
}

.pledge-num::after {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.7rem;
  opacity: 0.5;
}

.pledge h3 {
  font-family: var(--ff-serif);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.pledge p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
}

@media (max-width: 640px) {
  .pledges { margin-top: 2.6rem; }
  .pledge { padding: 1.9rem 1.5rem; }
}

/* ─── Reprises mobiles ──────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Le bandeau du haut passe en colonne : son texte doit pouvoir revenir
     a la ligne au lieu de sortir du cadre. */
  .topbar-left,
  .topbar-right {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
  }

  /* En-tete de page : un titre long doit tenir dans la colonne. */
  .page-hero { padding: 6.5rem 0 3.2rem; }
  .page-hero-inner { padding: 0 1.5rem; }

  .page-hero h1 {
    font-size: clamp(1.55rem, 6.4vw, 2.4rem);
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .page-hero .page-lead { font-size: 0.95rem; max-width: 100%; }
  .breadcrumb { padding: 1.2rem 1.5rem 0; font-size: 0.66rem; }
  .page-hero .breadcrumb { padding: 0 0 1.2rem; }

  /* Corps editorial et blocs d'appel. */
  .prose h2 { font-size: clamp(1.35rem, 5.4vw, 1.8rem); }
  .page-cta { padding: 3.5rem 1.5rem; }
  .page-cta h2 { font-size: clamp(1.4rem, 5.6vw, 2rem); }
}
