*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

:root {
  --bg: #f7f4ee;
  --ink: #0d1b6e;
  --gold: #B8860B;
  --muted: #5a6080;
  --border: #ddd5c4;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.4rem 4rem 1.5rem;
}

.brand { text-decoration: none; text-align: center; }
.brand-name {
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.5em;
  margin-right: -0.08em;
  color: var(--ink);
  display: block;
}
.brand-tag {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 900;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 0.4rem;
}

.nav-links-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding: 0.65rem 4rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  width: 100%;
}
.nav-links-bar a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B8860B;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links-bar a:not(.cta):hover { color: var(--ink); }

.nav-links-bar a:not(.cta) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  line-height: 1.1;
  white-space: nowrap;
}
.nav-line1 {
  display: block;
}
.nav-line2 {
  display: block;
  text-align: center;
}

.nav-links-bar .cta {
  color: var(--bg);
  background: var(--ink);
  padding: 0.5rem 1.4rem;
  transition: background 0.2s;
}
.nav-links-bar .cta:hover { background: var(--gold); }


.btn-arrow {
  display: inline-block;
  margin-right: 0.6rem;
  font-size: 1.4em;
  font-weight: 900;
  color: var(--bg);
  -webkit-text-stroke: 1.5px var(--bg);
  vertical-align: middle;
  line-height: 1;
  color: var(--muted);
  animation: btnArrow 1.2s ease-in-out infinite;
}
@keyframes btnArrow {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(5px); }
}


.brand-fr {
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-left: -0.3em;
  color: var(--gold);
  opacity: 1;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 5rem;
  align-items: center;
  padding: 0 6rem 4rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  grid-column: 1;
  align-self: start;
  margin-top: 0;
  padding-top: 0;
}

.hero-photo {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  grid-column: 2;
  align-self: start;
  margin-top: 0;
  padding-top: 0;
  border-radius: 0.5rem;
  overflow: hidden;
}

.hero-photo-placeholder {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  background: var(--border);
  border: 2px dashed var(--muted);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-photo-img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 0.5rem;
}

@keyframes up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-pre {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: up 0.6s ease forwards 0.2s;
  line-height: 1.8;
}

.hero h1 {
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: up 0.7s ease forwards 0.4s;
}
.hero h1 em {
  font-style: italic;
  font-size: 0.95em;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 1.5rem;
  text-align: justify;
  opacity: 0;
  animation: up 0.6s ease forwards 0.6s;
}

.hero-actions {
  display: flex; align-items: center; gap: 2.5rem;
  opacity: 0;
  animation: up 0.6s ease forwards 0.8s;
}

.btn {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  color: var(--bg);
  background: var(--ink);
  padding: 1rem 2.8rem;
  width: auto;
}
.btn-dark:hover { background: var(--gold); }
.btn-plain {
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
}
.btn-plain:hover { color: var(--ink); border-color: var(--ink); }

/* ── DIVIDER ── */
.rule {
  height: 1px;
  background: var(--border);
  margin: 0 4rem;
}

/* ── CHIFFRES ── */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 4rem;
  border: 1px solid var(--border);
}
.number {
  padding: 2rem 2rem;
  border-right: 1px solid var(--border);
}
.number:last-child { border-right: none; }
.number-n {
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.number-n span { color: var(--gold); }
.number-l {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.5;
  text-transform: uppercase;
}

/* ── SECTION ── */
section { padding: 0 4rem; margin-top: 4rem; margin-bottom: 4rem; }
section:first-of-type { margin-top: 4rem; }
.rule { margin-top: 0; margin-bottom: 0; }

.section-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 2rem;
}
.section-intro:last-child { margin-bottom: 0; }

.s-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
}

.s-title {
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.s-title em { font-style: italic; color: var(--gold); }

.s-body {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--muted);
}
.s-body p:last-child { margin-bottom: 0; }
section > *:last-child { margin-bottom: 0; }
.about-text p:last-child { margin-bottom: 0; }

/* ── QUOTE BLOCK ── */
.quote-block {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  color: var(--gold);
  text-align: center;
  max-width: 58ch;
  margin: 3rem auto;
  padding: 2rem 1.5rem;
}

/* ── ABOUT GRID ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  text-align: justify;
}

/* ── CREDENTIALS ── */
.creds {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.cred {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.cred:last-child { border-bottom: none; padding-bottom: 0; }
.cred-key {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.cred-val {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}
.cred-val strong { color: var(--ink); }

/* ── TIMELINE ── */
.timeline {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-date {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.2rem;
}
.timeline-content h3 {
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.timeline-content p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ── FAQ LIST ── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 2.5rem 1.4rem 0;
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  position: relative;
  line-height: 1.3;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  content: '−';
  transform: translateY(-50%);
}
.faq-item.open .faq-question { color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--muted);
  padding: 0 0 0 0;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 0 1.5rem 0;
}

/* ── SEGMENT GRID (Pour qui) ── */
.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.segment-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.segment-card h3 {
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
}
.segment-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  text-align: justify;
}
.segment-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.segment-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: auto;
  padding-top: 0.8rem;
}

/* ── OFFRES ── */
.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.offer {
  padding: 3rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.25s;
}
.offer:last-child { border-right: none; }
.offer:hover { background: white; }
.offer p { text-align: justify; }
.offer ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.offer li {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}
.offer li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.offer.highlight { background: var(--ink); }
.offer.highlight:hover { background: #1a2a5e; }
.offer.highlight h3 { color: var(--bg); }
.offer.highlight p,
.offer.highlight li { color: rgba(247,244,238,0.85); }
.offer.highlight .offer-badge { background: var(--gold); color: var(--bg); }
.offer-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  background: var(--border);
  color: var(--ink);
}

.offer-num {
  font-family: 'Cormorant', serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--border);
  margin-bottom: 1.5rem;
}
.offer.highlight .offer-num { color: rgba(255,255,255,0.1); }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ── DESKTOP LARGE (>1400px) ── */
@media (min-width: 1400px) {
  .nav-top { padding: 1.8rem 6rem 1.2rem; }
  .nav-links-bar { padding: 0.7rem 6rem; }
  .hero { padding: 4rem 8rem 4rem; }
  .rule { margin: 0 6rem; }
  .numbers { margin: 0 6rem; }
  section { padding: 0 6rem; }
  footer { padding: 2.5rem 6rem; }
}


/* ── INTERMÉDIAIRE (1024px–1400px) ── */
@media (min-width: 1025px) and (max-width: 1399px) {
  .nav-top { padding: 1.4rem 4rem 1rem; }
  .nav-links-bar { padding: 0.65rem 4rem; gap: 2.5rem; }
  .hero { padding: 2rem 4rem 4rem; gap: 4rem; }
  .rule, .numbers { margin: 0 4rem; }
  section { padding: 0 4rem; }
  footer { padding: 2rem 4rem; }
  .hero-photo-placeholder { max-width: 320px; }
  .hero--section .hero-photo-placeholder,
  .hero--section .hero-photo-img { max-width: 100%; }
}

/* ── TABLETTE (max 1024px) ── */
@media (max-width: 1024px) {
  .nav-top { padding: 1.2rem 2.5rem 0.8rem; }
  .nav-links-bar { padding: 0.6rem 2.5rem; gap: 2rem; }
  .hero { padding: 0 3rem 3rem; gap: 3rem; }
  .rule, .numbers { margin: 0 2.5rem; }
  section { padding: 0 2.5rem; }
  footer { padding: 2rem 2.5rem; }
  .section-intro { grid-template-columns: 1fr 1.5fr; gap: 3rem; }
  .about-grid { gap: 4rem; }
  .segment-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-final { padding: 4rem 2.5rem; }
}

/* ── MOBILE (max 768px) ── */
@media (max-width: 768px) {

  /* Nav mobile */
  .nav-top { padding: 1rem 1.5rem 0.6rem; }
  .brand-name { font-size: 1.25rem; letter-spacing: 0.3em; margin-right: -0.3em; }
  .brand-fr { margin-left: -0.16em; }
  .brand-tag { font-size: 0.52rem; }
  .nav-links-bar { padding: 0.5rem 1rem; gap: 0.4rem 1rem; flex-wrap: wrap; justify-content: center; }
  .nav-links-bar a { font-size: 0.55rem; letter-spacing: 0.08em; min-height: 44px; display: inline-flex; align-items: center; padding: 0.3rem 0.4rem; }
  .nav-links-bar .cta { padding: 0.5rem 1rem; font-size: 0.55rem; min-height: 44px; }

  /* Hero mobile — colonne unique */
  .hero {
    grid-template-columns: 1fr;
    grid-column: 1;
    padding: 2rem 1.5rem 3rem;
    gap: 2rem;
  }
  .hero-text { grid-column: 1; }
  .hero-photo { grid-column: 1; justify-content: center; }
  .hero-photo-placeholder { max-width: 100%; aspect-ratio: 4 / 3; }
  .hero-photo-img { max-width: 100%; }
  .hero--section { grid-template-columns: 1fr; padding-top: 0; }
  .hero--section .hero-photo-placeholder,
  .hero--section .hero-photo-img { aspect-ratio: 4 / 3; }
  .hero h1 { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  .hero-sub { font-size: 0.9rem; max-width: 100%; margin-bottom: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Chiffres — 2×2 */
  .numbers { margin: 0 1.5rem; grid-template-columns: 1fr 1fr; }
  .number { padding: 2rem 1.2rem; }
  .number:nth-child(odd) { border-right: 1px solid var(--border); }
  .number:nth-child(even) { border-right: none; }
  .number:nth-child(3),
  .number:nth-child(4) { border-top: 1px solid var(--border); }
  .number-n { font-size: 2.6rem; }
  .number-l { font-size: 0.58rem; line-height: 1.4; }

  /* Sections */
  .rule { margin: 0 1.5rem; }
  section { padding: 0 1.5rem; margin-top: 3rem; margin-bottom: 3rem; }
  .section-intro { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .segment-grid { grid-template-columns: 1fr; }
  .segment-card { padding: 1.8rem 1.5rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi { padding: 1.8rem 1.5rem; }
  .schools { flex-direction: column; }
  .school { padding: 0.7rem 1rem; }
  .s-title { font-size: clamp(2rem, 7vw, 2.8rem); }

  /* Offres */
  .offers { grid-template-columns: 1fr; }
  .offer { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 1.5rem; }
  .offer:last-child { border-bottom: none; }
  .offer-badge { top: 1.5rem; right: 1.5rem; }

  /* Témoignages */
  .testi-grid { grid-template-columns: 1fr; gap: 2px; }
  .testimonials { padding: 2.5rem 1.5rem; }
  .schools { flex-direction: column; }
  .school { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0.8rem 1.5rem; }
  .school:last-child { border-bottom: none; }

  /* À propos */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .timeline-date { padding-top: 0; }
  .quote-block { padding: 1.5rem 1rem; margin: 2rem auto; }

  /* CTA final */
  .cta-final { padding: 2.5rem 1.5rem; }

  /* Footer */
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { display: none; }
}

/* ── TRÈS PETIT (max 380px) ── */
@media (max-width: 380px) {
  .nav-links-bar a:not(.cta) { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { text-align: left; overflow-wrap: break-word; word-break: break-word; }
  .numbers { grid-template-columns: 1fr; }
  .number { border-right: none; border-bottom: 1px solid var(--border); }
  .number:last-child { border-bottom: none; }
}
/* ── HERO TRUST ── */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin-top: 0.8rem; opacity: 0; animation: up 0.6s ease forwards 1s;
}
.trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
}

/* ── PAIN GRID ── */
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border); border: 1px solid var(--border);
}
.pain-item {
  background: var(--bg); padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background 0.2s;
}
.pain-item:hover { background: white; }
.pain-icon { font-size: 1.2rem; line-height: 1; font-weight: 700; }
.pain-item p { font-size: 0.9rem; line-height: 1.7; color: var(--muted); }

/* ── URGENCY BAR ── */
.urgency-bar { background: var(--ink); padding: 2.5rem 4rem; margin-top: 4rem; margin-bottom: 4rem; }
.urgency-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 3rem; align-items: center; max-width: 1200px; margin: 0 auto;
}
.urgency-label {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  writing-mode: vertical-rl; text-orientation: mixed; transform: rotate(180deg);
}
.urgency-items { display: flex; gap: 2rem; align-items: center; }
.urgency-item { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.urgency-date {
  font-family: 'Cormorant', serif; font-size: 1.4rem;
  font-weight: 700; color: var(--gold); line-height: 1;
}
.urgency-text { font-size: 0.75rem; line-height: 1.5; color: rgba(247,244,238,0.7); }
.urgency-sep { width: 1px; height: 3rem; background: rgba(221,213,196,0.2); flex-shrink: 0; }

/* ── DUAL AXIS ── */
.dual-axis {
  display: grid; grid-template-columns: 1fr auto 1fr;
  border: 1px solid var(--border);
}
.axis-card { padding: 4rem 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.axis-num {
  font-family: 'Cormorant', serif; font-size: 4rem;
  font-weight: 500; color: var(--border); line-height: 1;
}
.axis-title {
  font-family: 'Cormorant', serif; font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); line-height: 1.15; color: var(--ink);
}
.axis-title em { font-style: italic; color: var(--gold); }
.axis-sub {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
}
.axis-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.axis-list li {
  font-size: 0.88rem; color: var(--muted);
  padding-left: 1rem; position: relative; line-height: 1.5;
}
.axis-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.axis-promise {
  font-size: 0.88rem; font-style: italic; color: var(--ink);
  line-height: 1.6; border-left: 2px solid var(--gold); padding-left: 1rem;
}
.axis-divider { width: 1px; background: var(--border); }

/* Responsive nouveaux composants */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .urgency-inner { grid-template-columns: 1fr; gap: 2rem; }
  .urgency-label { writing-mode: horizontal-tb; transform: none; }
  .urgency-items { flex-direction: column; gap: 1.5rem; }
  .urgency-sep { width: 100%; height: 1px; }
  .dual-axis { grid-template-columns: 1fr; }
  .axis-divider { width: 100%; height: 1px; }
}
@media (max-width: 768px) {
  .hero-trust { flex-direction: column; gap: 0.6rem; }
  .pain-grid { grid-template-columns: 1fr; }
  .urgency-bar { padding: 2.5rem 1.5rem; margin-top: 3rem; margin-bottom: 3rem; }
}

/* ── FAQ ── */
.faq-list { max-width: 800px; }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary {
  font-family: 'Cormorant', serif; font-weight: 700;
  font-size: 1.15rem; color: var(--ink); cursor: pointer;
  padding: 1.5rem 0; list-style: none; display: flex;
  justify-content: space-between; align-items: center;
}
.faq-list summary::after {
  content: '+'; font-family: 'Instrument Sans', sans-serif;
  font-size: 1.2rem; color: var(--gold); transition: transform 0.2s;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-answer {
  font-size: 0.88rem; line-height: 1.7; color: var(--muted);
  padding: 0 0 1.5rem; max-width: 65ch;
}



/* ── FOOTER BRAND (conforme au logo nav) ── */
.footer-brand-name {
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.4em;
  margin-right: -0.4em;
  color: var(--ink);
  display: block;
}

/* ── BRAND INLINE (TUNICA.fr dans le texte éditorial) ── */
.brand-inline {
  font-family: 'Cormorant', serif;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-right: -0.08em;
}
.brand-inline-fr {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--gold);
}

/* ── NEWSLETTER BAR ── */
.newsletter-bar {
  padding: 4rem 4rem;
  background: var(--ink);
  color: var(--bg);
  border-top: 1px solid rgba(221, 213, 196, 0.1);
}
.newsletter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.newsletter-title {
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  color: var(--bg);
  margin-bottom: 0.8rem;
}
.newsletter-title em {
  font-style: italic;
  color: #e8c344;
}
.newsletter-sub {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(247, 244, 238, 0.7);
  max-width: 50ch;
  text-align: justify;
}
.newsletter-form {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(247, 244, 238, 0.2);
  background: transparent;
  color: var(--bg);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder {
  color: rgba(247, 244, 238, 0.45);
}
.newsletter-form input:focus {
  border-color: var(--gold);
}
.newsletter-form button {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--bg);
  color: var(--ink);
}
.newsletter-success {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #e8c344;
  padding: 1rem 0;
}
.newsletter-legal {
  font-size: 0.62rem;
  color: rgba(247, 244, 238, 0.4);
  margin-top: 1rem;
  letter-spacing: 0.04em;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 1024px) {
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .newsletter-sub { max-width: 100%; }
  .newsletter-form { justify-content: center; }
}
@media (max-width: 768px) {
  .newsletter-bar { padding: 3rem 1.5rem; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; min-width: 0; }
  .newsletter-form button { width: 100%; }
}

/* ── PAGE HERO (pages internes) ── */
.page-hero {
  padding: 11rem 6rem 2.5rem;
}
.page-h1 {
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.page-h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-sub {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--muted);
  max-width: 58ch;
  text-align: justify;
  margin-bottom: 0;
}

/* ── HARMONISATION GLOBALE ── */

/* text-align justify sur le body text partout */
.s-body {
  text-align: justify;
}
.s-body p {
  text-align: justify;
}

/* Offer h3 (dans les cards 3-colonnes) */
.offer h3 {
  font-family: 'Cormorant', serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}

/* axis-title margin-bottom manquant */
.axis-title {
  margin-bottom: 0.8rem;
}

/* page-hero responsive */
@media (min-width: 1400px) {
  .page-hero { padding: 11rem 8rem 3rem; }
}
@media (min-width: 1025px) and (max-width: 1399px) {
  .page-hero { padding: 11rem 4rem 2rem; }
}
@media (max-width: 1024px) {
  .page-hero { padding: 10rem 2.5rem 2rem; }
}
@media (max-width: 768px) {
  .page-hero { padding: 8rem 1.5rem 2rem; }
  .page-h1 { font-size: 1.75rem; }
  .page-sub { max-width: 100%; font-size: 0.95rem; }
}

/* ── BURGER MENU ── */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── BOUTON COMPACT (CTA inline) ── */
.btn-compact {
  padding: 0.8rem 1.8rem;
  font-size: 0.62rem;
}

/* ── HERO SECTION (Pourquoi, etc.) — ratio golden texte/photo ── */
.hero--section {
  grid-template-columns: 61fr 39fr;
  align-items: center;
}
section:has(.hero--section) { padding-left: 0; padding-right: 0; }
.hero--section .hero-photo {
  align-self: center;
  justify-content: flex-end;
  margin-top: 1rem;
}
.hero--section .hero-photo-placeholder,
.hero--section .hero-photo-img {
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  .hero--section { grid-template-columns: 1fr; padding: 2rem 1.5rem 3rem; gap: 2rem; }
  .hero--section .hero-photo { justify-content: center; }
  .hero--section .hero-photo-placeholder,
  .hero--section .hero-photo-img { aspect-ratio: 4 / 5; width: 100%; }
  .s-title { font-size: clamp(2.4rem, 8vw, 3.2rem); }
}

/* ── PLACEHOLDER PAYSAGE ── */
.hero-photo-placeholder--landscape {
  aspect-ratio: 16 / 9;
  max-width: 100%;
  width: 100%;
  border-radius: 0.5rem;
}

/* ── PAIN GRID DUAL (Avant / Après) ── */
.pain-grid-dual {
  grid-template-columns: 1fr 1fr;
}

/* ── PAGE CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.reassurance-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.reassurance-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.reassurance-list .r-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}
.reassurance-list p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.6;
}
.cif-mentions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.6;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--ink);
  background: white;
  border-radius: 0.3rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* ── TÉMOIGNAGES ── */
.testimonials {
  padding: 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.testi {
  background: var(--bg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
}
.testi p {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
}
.testi cite {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.schools {
  display: flex;
  justify-content: center;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-top: none;
}
.school {
  background: var(--bg);
  padding: 1rem 2rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  flex: 1;
  text-align: center;
}

/* ── CTA FINAL ── */
.cta-final {
  padding: 5rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.cta-final h2 {
  font-family: 'Cormorant', serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
  color: var(--ink);
}
.cta-final h2 em { font-style: italic; color: var(--gold); }
.cta-final > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ── ESPACEMENT SECTION ── */
.mt-section { margin-top: 5rem; }
.cta-wrap { text-align: center; padding: 1.5rem 4rem 0; }

/* ── FOOTER TAG ── */
.footer-tag {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
}

/* ── FOOTER FULL (multi-colonnes) ── */
.footer-full { border-top: 1px solid var(--border); padding: 4rem; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; margin-bottom: 2rem; }
.footer-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.6; margin-top: 1rem; max-width: 28ch; }
.footer-nav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-title { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.4rem; }
.footer-col a { font-size: 0.8rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border); }
.footer-legal-links { display: flex; gap: 2rem; }
.footer-legal-links a { font-size: 0.62rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--ink); }

/* ── RESPONSIVE ADDENDUM ── */
@media (min-width: 1400px) {
  .footer-full { padding: 4rem 6rem; }
}
@media (min-width: 1025px) and (max-width: 1399px) {
  .footer-full { padding: 4rem; }
}
@media (max-width: 1024px) {
  .footer-full { padding: 3rem 2.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  /* Burger */
  .nav-top { position: relative; flex-direction: row; justify-content: center; }
  .burger {
    display: flex;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-links-bar {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem 1.2rem;
    gap: 0.8rem;
  }
  .nav-links-bar.open { display: flex; }
  .nav-links-bar a:not(.cta) { flex-direction: row; gap: 0.3rem; }

  /* Bouton compact */
  .btn-compact { font-size: 0.7rem; padding: 0.9rem 1.5rem; }

  /* Placeholder paysage → portrait sur mobile */
  .hero-photo-placeholder--landscape { aspect-ratio: 16 / 9; }

  /* Pain grid dual → 1 col */
  .pain-grid-dual { grid-template-columns: 1fr; }

  /* Espacement section */
  .mt-section { margin-top: 3rem; }
  .cta-wrap { padding: 1.5rem 1.5rem 0; }

  /* Format grid (cards 2-col) → 1 col */
  .format-grid { grid-template-columns: 1fr; }

  /* Footer full */
  .footer-full { padding: 3rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { text-align: center; }
  .footer-desc { max-width: 100%; text-align: center; }
  .footer-nav-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col { align-items: center; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}
