/* ═══════════════════════════════════════════════════════════
   FARO · faro.institute
   v2 — Autorité calme
   Cormorant Garamond (300 400 italic) · Jost (300 400 500)
   ═══════════════════════════════════════════════════════════ */

/* ─── Config ────────────────────────────────────────────── */
:root {
  --navy  : #1A2744;
  --gold  : #C9A84C;
  --ivory : #F7F4EF;
  --dark  : #181818;
  --grey  : #838383;
  --rule  : #E2E0DA;
  --white : #FFFFFF;

  --f-display : 'Cormorant Garamond', Georgia, serif;
  --f-ui      : 'Jost', system-ui, sans-serif;

  --nav-h : 60px;
  --sec   : 128px;
  --max   : 1240px;
  --mid   : 720px;
  --gap   : 48px;
}

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

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--f-ui);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--dark);
  background: var(--white);
}

a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

::selection { background: var(--gold); color: var(--navy); }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.container--narrow {
  max-width: var(--mid);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.section          { padding: var(--sec) 0; }
.section--white   { background: var(--white); }
.section--ivory   { background: var(--ivory); }
.section--navy    { background: var(--navy); }

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gap);
  height: 100%;
  display: flex;
  align-items: center;
}

.nav__logo {
  font-family: var(--f-display);
  font-size: 1.1875rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--white);
  flex-shrink: 0;
  margin-right: 60px;
  transition: color 0.2s;
}
.nav__logo:hover { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.nav__link {
  font-family: var(--f-ui);
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.nav__link:hover     { color: rgba(255,255,255,0.8); }
.nav__link--active   { color: var(--gold); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav__cta {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.32);
  padding: 7px 18px;
  transition: border-color 0.2s;
}
.nav__cta:hover { border-color: rgba(201,168,76,0.8); }

.nav__lang {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-ui);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}
.nav__lang-active { color: rgba(255,255,255,0.55); }
.nav__lang-sep    { color: rgba(255,255,255,0.15); }
.nav__lang-other  { color: rgba(255,255,255,0.22); transition: color 0.2s; }
.nav__lang-other:hover { color: rgba(255,255,255,0.55); }

/* ─── Mobile nav ─────────────────────────────────────────── */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.55);
  transition: opacity 0.2s;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--navy);
  flex-direction: column;
  padding: 56px var(--gap) 48px;
  z-index: 99;
  overflow-y: auto;
}
.nav__mobile--open { display: flex; }

.nav__mobile-link {
  font-family: var(--f-display);
  font-size: 1.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.nav__mobile-link:hover { color: rgba(255,255,255,0.85); }

.nav__mobile-cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 40px;
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 11px 24px;
}

.nav__mobile-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-bottom: 32px;
  font-family: var(--f-ui);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
}
.nav__mobile-lang a               { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.nav__mobile-lang a:hover,
.nav__mobile-lang a.active        { color: var(--gold); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  border: none;
  border-radius: 0;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.7; }

/* primary — gold fill */
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}

/* secondary — gold outline */
.btn--gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.45);
  transition: border-color 0.2s, opacity 0.2s;
}
.btn--gold-outline:hover { border-color: var(--gold); opacity: 1; }

/* hero secondary — white text, no background */
.btn--text {
  background: transparent;
  color: rgba(255,255,255,0.48);
  padding: 0;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: color 0.2s;
}
.btn--text:hover { color: rgba(255,255,255,0.78); opacity: 1; }

/* inline gold text link */
.btn--text-gold {
  background: transparent;
  color: var(--gold);
  padding: 0;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: opacity 0.2s;
}
.btn--text-gold:hover { opacity: 0.6; }

/* inline dark text link */
.btn--text-navy {
  background: transparent;
  color: var(--dark);
  padding: 0;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: color 0.2s;
}
.btn--text-navy:hover { color: var(--gold); opacity: 1; }

/* ─── Nav offset (fixed nav spacer) ─────────────────────── */
.nav-offset { height: var(--nav-h); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding-left: var(--gap);
  padding-right: var(--gap);
}

.hero--full {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 96px;
}

.hero--compact {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 68px;
}

.hero__inner     { max-width: var(--max); margin: 0 auto; width: 100%; }
.hero__inner--mid { max-width: 800px; }
/* legacy alias */
.hero__inner--narrow { max-width: 800px; }

.hero__tag {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero__h1 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__chapeau {
  font-family: var(--f-ui);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.82;
  color: rgba(255,255,255,0.42);
  max-width: 520px;
  margin-bottom: 60px;
}
.hero--compact .hero__chapeau { margin-bottom: 0; }

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

/* ─── Editorial ──────────────────────────────────────────── */
.editorial {
  padding: var(--sec) 0;
  background: var(--ivory);
  text-align: center;
}

.editorial__text {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  line-height: 1.55;
  color: var(--navy);
  max-width: 680px;
  margin: 0 auto;
}

.editorial__sub {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-top: 24px;
}

/* ─── Formats éditoriaux ─────────────────────────────────── */
.formats { padding: var(--sec) 0; background: var(--white); }

.formats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.format-card {
  padding: 56px 44px;
  border-right: 1px solid var(--rule);
}
.format-card:last-child { border-right: none; }

.format-card__name {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.format-card__type {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--grey);
  margin-bottom: 20px;
}

.format-card__def {
  font-family: var(--f-ui);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--navy);
}

.formats__cta {
  text-align: center;
  margin-top: 52px;
}

/* ─── Method blocks ──────────────────────────────────────── */
.method { padding: var(--sec) 0; background: var(--white); }
.method__grid { display: block; }

.method-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-rows: auto auto;
  column-gap: 80px;
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.method-block:first-child { border-top: 1px solid var(--rule); }

.method-block__name {
  grid-column: 1; grid-row: 1;
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.05;
  align-self: end;
  padding-bottom: 2px;
}

.method-block__tag {
  grid-column: 1; grid-row: 2;
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 10px;
}

.method-block__def {
  grid-column: 2; grid-row: 1;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.375rem;
  color: var(--navy);
  line-height: 1.5;
  padding-top: 6px;
}

.method-block__detail {
  grid-column: 2; grid-row: 2;
  font-family: var(--f-ui);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.82;
  max-width: 580px;
  padding-top: 16px;
}

/* ─── Gouvernance ────────────────────────────────────────── */
.gouvernance { padding: var(--sec) 0; background: var(--ivory); }

.gouvernance__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 96px;
  align-items: start;
}

.gouvernance__title {
  font-family: var(--f-display);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 28px;
}

.gouvernance__body {
  font-family: var(--f-ui);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--dark);
  margin-bottom: 16px;
  max-width: 600px;
}

.gouvernance__bold {
  font-family: var(--f-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.75;
  max-width: 600px;
}

.gouvernance__quote {
  padding-top: 36px;
  border-top: 1px solid var(--rule);
  margin-top: 56px;
}
/* If left column has less content, reset quote position */
.gouvernance__grid > div:last-child .gouvernance__quote {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.gouvernance__quote blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--navy);
}

/* ─── Stats ──────────────────────────────────────────────── */
.stats {
  padding: var(--sec) 0;
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  padding: 56px 40px;
  text-align: center;
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: none; }

.stat__number {
  display: block;
  font-family: var(--f-display);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}

.stat__label {
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.5;
}

.stats__cta {
  text-align: center;
  margin-top: 64px;
}

/* ─── Offers ─────────────────────────────────────────────── */
.offers { padding: var(--sec) 0; background: var(--white); }

/* 1px rule-coloured gap creates a clean hairline separator */
.offers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
}

.offer {
  padding: 60px 56px;
  background: var(--white);
}
.offer--navegacion { background: var(--navy); }

/* Subtle gold top rule on LECTURA only */
.offer--lectura { border-top: 1px solid var(--gold); }

.offer__premium-tag {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.offer__name {
  font-family: var(--f-display);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 8px;
}
.offer--lectura .offer__name    { color: var(--navy); }
.offer--navegacion .offer__name { color: var(--white); }

.offer__price {
  display: block;
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 20px;
}

.offer__tagline {
  font-family: var(--f-ui);
  font-style: italic;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.72;
  margin-bottom: 36px;
  padding-bottom: 32px;
}
.offer--lectura .offer__tagline    {
  color: var(--grey);
  border-bottom: 1px solid var(--rule);
}
.offer--navegacion .offer__tagline {
  color: rgba(255,255,255,0.38);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offer__includes-label {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.offer--lectura .offer__includes-label    { color: var(--grey); }
.offer--navegacion .offer__includes-label { color: rgba(255,255,255,0.28); }

.offer__includes {
  list-style: none;
  margin-bottom: 28px;
}
.offer__includes li {
  font-family: var(--f-ui);
  font-size: 1.0625rem;
  font-weight: 400;
  padding: 9px 0 9px 18px;
  position: relative;
  line-height: 1.5;
}
.offer__includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.875rem;
}
.offer--lectura .offer__includes li {
  color: var(--dark);
  border-bottom: 1px solid var(--rule);
}
.offer--navegacion .offer__includes li {
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.offer__includes li:last-child { border-bottom: none; }

.offer__note {
  font-family: var(--f-ui);
  font-style: italic;
  font-weight: 300;
  font-size: 0.8125rem;
  line-height: 1.75;
  margin-bottom: 40px;
}
.offer--lectura .offer__note    { color: var(--grey); }
.offer--navegacion .offer__note { color: rgba(255,255,255,0.3); }

.offer__cta {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--navy);
  transition: opacity 0.2s;
  margin-bottom: 14px;
}
.offer__cta:hover { opacity: 0.72; }

.offer__micro {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 300;
  text-align: center;
}
.offer--lectura .offer__micro    { color: var(--grey); }
.offer--navegacion .offer__micro { color: rgba(255,255,255,0.22); }

/* ─── Cadrage ────────────────────────────────────────────── */
.cadrage { padding: var(--sec) 0; background: var(--ivory); text-align: center; }
.cadrage__text {
  font-family: var(--f-ui);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--dark);
  max-width: 640px;
  margin: 0 auto 16px;
}
.cadrage__text:last-child { margin-bottom: 0; }

/* ─── Guide de choix ─────────────────────────────────────── */
.guide { padding: var(--sec) 0; background: var(--ivory); }

.guide__title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 52px;
  line-height: 1.15;
}

.guide__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.guide__item-tag {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.guide__item-text {
  font-family: var(--f-ui);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.82;
  color: var(--dark);
}

/* ─── Access note ────────────────────────────────────────── */
.access-note {
  padding: 72px 0;
  background: var(--ivory);
  border-top: 1px solid var(--rule);
  text-align: center;
}

.access-note__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.access-note__text {
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 6px;
}

/* ─── CTA Band ───────────────────────────────────────────── */
.cta-band {
  padding: 108px var(--gap);
  background: var(--navy);
  text-align: center;
}

.cta-band__text {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.5vw, 1.4375rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 44px;
}

.cta-band__cta {
  display: inline-flex;
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--navy);
  transition: opacity 0.2s;
}
.cta-band__cta:hover { opacity: 0.72; }

.cta-band__micro {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  margin-top: 16px;
  letter-spacing: 0.04em;
}

.cta-band__secondary {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  margin-top: 24px;
  transition: color 0.2s;
}
.cta-band__secondary:hover { color: rgba(255,255,255,0.55); }

/* ─── Publications ───────────────────────────────────────── */
.pub-intro {
  padding: 80px 0;
  background: var(--ivory);
}

.pub-intro__text {
  font-family: var(--f-ui);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--dark);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.pub-cards { padding: var(--sec) 0; background: var(--white); }

.pub-cards__grid { display: block; }

.pub-card {
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
}
.pub-card:first-child { border-top: 1px solid var(--rule); }

.pub-card__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.pub-card__format {
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.pub-card__type {
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--grey);
}

.pub-card__date {
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(0,0,0,0.18);
  margin-left: auto;
}

.pub-card__title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.pub-card__extract {
  font-family: var(--f-ui);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.82;
  color: var(--dark);
  margin-bottom: 28px;
  max-width: 760px;
}

.pub-card__access {
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--grey);
  margin-bottom: 16px;
}

.pub-cta-bar {
  padding: 72px 0;
  background: var(--ivory);
  border-top: 1px solid var(--rule);
  text-align: center;
}

.pub-cta-bar__text {
  font-family: var(--f-ui);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 28px;
}

/* ─── À propos ───────────────────────────────────────────── */
.apropos-section {
  padding: var(--sec) 0;
  background: var(--white);
}
.apropos-section + .apropos-section {
  border-top: 1px solid var(--rule);
}
.apropos-section--ivory { background: var(--ivory); }

.apropos-section__title {
  font-family: var(--f-display);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.15;
}

.apropos-section__body {
  font-family: var(--f-ui);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--dark);
  max-width: 720px;
  margin-bottom: 18px;
}

.apropos-section__bold {
  font-family: var(--f-ui);
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  max-width: 720px;
}

.apropos-section__italic {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.0625rem;
  color: var(--grey);
  max-width: 640px;
  margin-top: 14px;
}

/* ─── Contact ────────────────────────────────────────────── */
.contact-layout { padding: var(--sec) 0; background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.contact-info__title {
  font-family: var(--f-display);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 36px;
  line-height: 1.15;
}

.contact-info__step {
  font-family: var(--f-ui);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}

.contact-info__italic {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--grey);
  margin-top: 24px;
  line-height: 1.6;
}

.contact-info__email {
  display: inline-block;
  font-family: var(--f-ui);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--gold);
  margin-top: 32px;
  transition: opacity 0.2s;
}
.contact-info__email:hover { opacity: 0.65; }

.contact-form__group { margin-bottom: 32px; }

.contact-form__label {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 10px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  font-family: var(--f-ui);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}
.contact-form__input:focus,
.contact-form__textarea:focus { border-bottom-color: var(--navy); }
.contact-form__textarea { resize: vertical; min-height: 112px; line-height: 1.7; }

.contact-form__submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}
.contact-form__submit:hover { opacity: 0.72; }

.contact-form__micro {
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--grey);
  margin-top: 14px;
  font-style: italic;
}

/* ─── Legal ──────────────────────────────────────────────── */
.legal { padding: var(--sec) 0; background: var(--white); }

.legal__h1 {
  font-family: var(--f-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
  line-height: 1.1;
}

.legal__section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.legal__section:last-child { border-bottom: none; margin-bottom: 0; }

.legal__section-title {
  font-family: var(--f-ui);
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--grey);
  margin-bottom: 12px;
}

.legal__text {
  font-family: var(--f-ui);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--dark);
  max-width: 680px;
}

.legal__update {
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--grey);
  font-style: italic;
  margin-top: 48px;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 84px 0 44px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 80px;
  margin-bottom: 64px;
}

.footer__logo {
  display: block;
  font-family: var(--f-display);
  font-size: 1.1875rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--white);
  margin-bottom: 10px;
}

.footer__tagline {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(201,168,76,0.55);
  margin-bottom: 6px;
}

.footer__identity {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.01em;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
  align-content: flex-start;
  padding-top: 4px;
}

.footer__nav-link {
  font-family: var(--f-ui);
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(255,255,255,0.32);
  padding: 2px 0;
  transition: color 0.2s;
}
.footer__nav-link:hover { color: rgba(255,255,255,0.6); }

.footer__contact-email {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(201,168,76,0.7);
  margin-bottom: 6px;
  transition: opacity 0.2s;
  padding-top: 4px;
}
.footer__contact-email:hover { opacity: 0.65; }

.footer__contact-url {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255,255,255,0.18);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.18);
}

.footer__legal-links { display: flex; gap: 24px; }

.footer__legal-link {
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.18);
  transition: color 0.2s;
}
.footer__legal-link:hover { color: rgba(255,255,255,0.42); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {

  :root {
    --sec: 84px;
    --gap: 28px;
  }

  .nav__links  { display: none; }
  .nav__cta    { display: none; }
  .nav__lang   { display: none; }
  .nav__burger { display: flex; }

  .hero--full    { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 72px; }
  .hero--compact { padding-top: calc(var(--nav-h) + 32px); padding-bottom: 52px; }
  .hero__chapeau { margin-bottom: 48px; }

  .editorial__text { font-size: 1.25rem; }

  .formats__grid { grid-template-columns: 1fr; }
  .format-card {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 40px 0;
  }
  .format-card:last-child { border-bottom: none; }

  .method-block {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    column-gap: 0;
    padding: 44px 0;
  }
  .method-block__name   { grid-column: 1; grid-row: 1; padding-bottom: 0; margin-bottom: 4px; font-size: 2rem; }
  .method-block__tag    { grid-column: 1; grid-row: 2; padding-top: 4px; margin-bottom: 20px; }
  .method-block__def    { grid-column: 1; grid-row: 3; padding-top: 0; }
  .method-block__detail { grid-column: 1; grid-row: 4; padding-top: 12px; }

  .gouvernance__grid { grid-template-columns: 1fr; gap: 48px; }
  .gouvernance__quote { margin-top: 0; padding-top: 32px; }

  .stats__grid { grid-template-columns: 1fr; }
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 40px 0;
    text-align: left;
  }
  .stat:last-child { border-bottom: none; }

  .offers__grid { grid-template-columns: 1fr; }
  .offer         { padding: 44px 28px; }
  .offer--navegacion { order: -1; }

  .guide__grid { grid-template-columns: 1fr; gap: 40px; }

  .contact-grid { grid-template-columns: 1fr; gap: 56px; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__h1     { font-size: 2.625rem; }
  .offer        { padding: 36px 20px; }
  .method-block__name { font-size: 1.875rem; }
}

/* ─── Publication links (Fondateur) ─────────────────────── */
.apropos-section__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.apropos-section__link {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  transition: opacity 0.2s;
  text-decoration: none;
}
.apropos-section__link:first-child { border-top: 1px solid var(--rule); }
.apropos-section__link:hover { opacity: 0.65; }

.apropos-section__link-title {
  font-family: var(--f-display);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 4px;
}

.apropos-section__link-media {
  font-family: var(--f-ui);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.04em;
}
