/* ═══════════════════════════════════════════════════════════
   VERGERS DU MONDE — Amadou Diallo · Premium Immersive Edition
   Ultra-aéré · Cinématographique · Contrastes forts
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* Palette principale */
  --ink:        #0D1911;    /* presque noir profond */
  --forest:     #1A3828;   /* vert forêt profond */
  --forest-mid: #22503A;
  --gold:       #C9A86C;   /* or chaud */
  --gold-light: #DFC49A;
  --gold-dark:  #9A7A45;
  --cream:      #F8F4ED;   /* crème chaud */
  --cream-2:    #F1EBE0;
  --white:      #FEFEFE;
  --cobalt:     #1B3A5C;   /* bleu nuit accent */
  --rust:       #8B3A2A;   /* rouille accent */
  --sage:       #3D6B52;   /* vert sauge */
  --sand:       #C4A87A;

  /* Typography */
  --serif:  'Playfair Display', 'Georgia', serif;
  --body:   'EB Garamond', 'Garamond', serif;
  --ui:     'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-v: clamp(6rem, 10vw, 10rem);
  --section-v-sm: clamp(4rem, 6vw, 6rem);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--body);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.95;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: var(--gold-dark); text-decoration: none; border-bottom: 1px solid currentColor; transition: opacity .2s; }
a:hover { opacity: .65; }


/* ════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════ */
.label-tag {
  font-family: var(--ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  display: block;
}
.label-tag--light { color: var(--gold-light); }
.label-tag--gold  { color: var(--gold); }

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-h2--light { color: var(--cream); }

.sec-num {
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 6rem);
  font-weight: 900;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}
.sec-num--light { color: var(--gold-light); }

.cite-ref {
  font-family: var(--ui);
  font-size: 0.72rem;
  color: #888;
  letter-spacing: 0.03em;
}


/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  animation: slowZoom 22s var(--ease) forwards;
}
@keyframes slowZoom {
  to { transform: scale(1); }
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(13,25,17,.25) 0%,
      rgba(13,25,17,.05) 35%,
      rgba(13,25,17,.55) 65%,
      rgba(10,18,13,.97) 100%
    );
}

.top-nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  padding: 2.2rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.top-nav__brand {
  justify-self: start;
  font-family: var(--ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,.92);
}
.top-nav__issue {
  justify-self: center;
  text-align: center;
  font-family: var(--ui);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  opacity: .8;
}

/* ── Language Switcher ── */
.lang-switcher {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: rgba(10,18,12,0.55);
  border: 1px solid rgba(201,168,108,0.35);
  border-radius: 2rem;
  padding: 0.45rem 1rem;
  backdrop-filter: blur(8px);
}
.lang-switcher__current {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.lang-switcher__sep {
  color: rgba(201,168,108,0.4);
}
.lang-switcher__link {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color 0.25s;
}
.lang-switcher__link:hover {
  color: var(--gold);
}

.hero__body {
  position: relative;
  z-index: 10;
  padding: 0 3.5rem 9rem;
  max-width: 960px;
  animation: riseUp 1.4s var(--ease) .2s both;
}
@keyframes riseUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-family: var(--ui);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 3rem;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  color: #FEFEFE;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  line-height: 1.05;
}

/* main big title line */
.hero__title-main {
  display: block;
  line-height: 1.05;
}

/* italic subtitle line — clearly separated */
.hero__title-sub {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 0.65em;
  color: var(--gold-light);
  line-height: 1.3;
  letter-spacing: 0.01em;
  padding-top: 0.3rem;
  border-top: 1px solid rgba(201,168,108,0.3);
}

.hero__sub {
  font-family: var(--body);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-style: italic;
  color: rgba(255,255,255,.65);
  margin-bottom: 3.5rem;
  line-height: 1.65;
}

.hero__byline {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.5);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.hero__byline strong { color: rgba(255,255,255,.85); }
.hero__byline .dot { color: var(--gold); }

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem; right: 3.5rem;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: float 2.8s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,108,.6));
}
.hero__scroll-hint span {
  font-family: var(--ui);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,.35);
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}


/* ════════════════════════════════════════
   GEO SECTION
   ════════════════════════════════════════ */
.geo {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 8rem;
  padding: clamp(8rem, 12vw, 13rem) clamp(2rem, 6vw, 7rem);
  background: var(--white);
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

/* colonne texte */
.geo__left--text {
  display: flex;
  flex-direction: column;
}

/* colonne stats */
.geo__right--stats {
  display: flex;
  align-items: flex-start;
}

.geo__lead {
  font-family: var(--body);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.95;
  color: var(--ink);
  margin-bottom: 2.5rem;
}
.geo__body {
  font-size: 1rem;
  color: #444;
  line-height: 1.95;
  margin-bottom: 2rem;
}
.geo .section-h2 { margin-bottom: 3.5rem; }

.geo__stats {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-left: 2px solid rgba(201,168,108,.2);
}

/* chaque stat clairement séparée */
.stat {
  padding: 2.8rem 0 2.8rem 3rem;
  border-bottom: 1px solid rgba(201,168,108,.12);
}
.stat:first-child {
  border-top: 1px solid rgba(201,168,108,.12);
}

.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat__num sub {
  font-size: 0.5em;
  font-weight: 400;
  color: var(--gold-dark);
  vertical-align: baseline;
  letter-spacing: 0;
}
.stat__lbl {
  display: block;
  font-family: var(--ui);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  color: #aaa;
  margin-top: 0.8rem;
  text-transform: uppercase;
  line-height: 1.5;
}


/* ════════════════════════════════════════
   BRIDGE PHOTO (hero → geo transition)
   ════════════════════════════════════════ */
.bridge-photo {
  position: relative;
  height: clamp(340px, 45vw, 620px);
  overflow: hidden;
}

.bridge-photo__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 65%;
  transform: scale(1.04);
  transition: transform 10s ease-out;
}
.bridge-photo:hover .bridge-photo__bg {
  transform: scale(1.0);
}

.bridge-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,18,13,.55) 0%,
    rgba(10,18,13,.25) 40%,
    rgba(10,18,13,.65) 100%
  );
}

.bridge-photo__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 0 2rem 3.5rem;
  z-index: 5;
}

.bridge-photo__region {
  font-family: var(--ui);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.bridge-photo__line {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  max-width: 700px;
  line-height: 1.5;
}

/* ════════════════════════════════════════
   PHOTO STRIP (3 horizontal)
   ════════════════════════════════════════ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: clamp(260px, 32vw, 480px);
}

.photo-strip__item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform .6s var(--ease);
}
.photo-strip__item:hover { transform: scale(1.03); z-index: 2; }

.photo-strip__item--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,56,40,.45);
}

.photo-strip__cap {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem;
  font-family: var(--ui);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,.75);
  z-index: 5;
  text-transform: uppercase;
}


/* ════════════════════════════════════════
   PULL QUOTES
   ════════════════════════════════════════ */
.pull-quote {
  padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 8vw, 12rem);
  text-align: center;
}
.pull-quote--green  { background: var(--forest); }
.pull-quote--dark   { background: var(--ink); }
.pull-quote--cream  { background: var(--cream-2); }

.pull-quote__inner { max-width: 820px; margin: 0 auto; }

.pull-quote__mark {
  font-family: var(--serif);
  font-size: 7rem;
  line-height: .6;
  color: var(--gold);
  opacity: .35;
  display: block;
  margin-bottom: 1.5rem;
}
.pull-quote__mark--dark { color: var(--forest); }

.pull-quote p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--cream);
  margin-bottom: 2rem;
}
.pull-quote p em { color: var(--gold-light); }

.pull-quote--cream p,
.pull-quote__text--dark {
  color: var(--ink) !important;
}

.pull-quote cite {
  font-family: var(--ui);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-style: normal;
}
.pull-quote__cite--dark { color: var(--gold-dark) !important; }


/* ════════════════════════════════════════
   EDITORIAL SECTIONS
   ════════════════════════════════════════ */
.editorial {
  padding: var(--section-v) clamp(2rem, 6vw, 7rem);
  background: var(--white);
}
.editorial--dark {
  background: var(--forest);
}

.editorial__meta {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(201,168,108,.2);
  max-width: 880px;
}

.editorial__text {
  max-width: 700px;
}
.editorial__text p {
  margin-bottom: 1.8rem;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 2;
  color: #2a2a2a;
}
.editorial__text--light p { color: rgba(248,244,237,.8); }
.editorial__text--light p:last-child { margin-bottom: 0; }

/* drop cap */
.dropcap {
  float: left;
  font-family: var(--serif);
  font-size: 5.8rem;
  font-weight: 900;
  line-height: .72;
  color: var(--forest);
  margin-right: 0.1em;
  margin-top: 0.06em;
}


/* ════════════════════════════════════════
   FULL-WIDTH FIGURE
   ════════════════════════════════════════ */
.figure-fw {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111;
}
.figure-fw img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .8s var(--ease);
}
.figure-fw:hover img { transform: scale(1.02); }

.figure-fw figcaption {
  padding: 1.4rem clamp(2rem, 6vw, 7rem);
  font-family: var(--ui);
  font-size: 0.72rem;
  color: #777;
  line-height: 1.6;
  background: var(--cream-2);
}
.figure-fw figcaption strong { color: var(--ink); }
.figure-fw figcaption em { color: var(--gold-dark); }

.figure-fw--caption-dark figcaption {
  background: var(--ink);
  color: rgba(248,244,237,.5);
}


/* ════════════════════════════════════════
   SPLIT SECTION
   ════════════════════════════════════════ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(320px, 45vw, 600px);
}
.split-section__photo {
  background-size: cover;
  background-position: center;
}
.split-section__text {
  background: var(--cobalt);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 7rem);
}
.split-section__quote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin: 1.5rem 0 2rem;
}
.split-section__body {
  font-family: var(--body);
  font-size: 0.95rem;
  color: rgba(248,244,237,.65);
  line-height: 1.8;
}


/* ════════════════════════════════════════
   PULAAR VOCAB BOX
   ════════════════════════════════════════ */
.vocab-box {
  margin: 3.5rem 0;
  border: 1px solid rgba(201,168,108,.3);
  background: rgba(201,168,108,.05);
  padding: 2.5rem 3rem;
}
.vocab-box__header {
  margin-bottom: 2rem;
}
.vocab-box__label {
  font-family: var(--ui);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}
.vocab-box__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.vocab-word {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.vocab-def {
  font-size: 0.92rem;
  color: rgba(248,244,237,.65);
  line-height: 1.7;
}


/* ════════════════════════════════════════
   DATA CALLOUT
   ════════════════════════════════════════ */
.data-callout {
  margin: 3.5rem 0;
  padding: 3.5rem;
  border-left: 5px solid var(--gold);
  background: rgba(0,0,0,.2);
  text-align: left;
}
.data-callout__num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.data-callout__label {
  font-family: var(--ui);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  color: rgba(248,244,237,.7);
  margin-top: 0.6rem;
}
.data-callout__source {
  font-family: var(--ui);
  font-size: 0.62rem;
  color: rgba(248,244,237,.3);
  margin-top: 0.5rem;
}


/* DARK LIST */
.dark-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}
.dark-list li {
  color: rgba(248,244,237,.75);
  padding: 1rem 0 1rem 2.2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
  font-size: 0.97rem;
  line-height: 1.7;
}
.dark-list li::before {
  content: '✦';
  position: absolute;
  left: 0; top: 1.05rem;
  color: var(--gold);
  font-size: 0.6rem;
}


/* ════════════════════════════════════════
   PHOTO TWIN
   ════════════════════════════════════════ */
.photo-twin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(280px, 38vw, 520px);
}
.photo-twin__item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.photo-twin__item--green::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,56,40,.4);
}
.photo-cap {
  position: absolute;
  bottom: 1.2rem; left: 1.4rem;
  font-family: var(--ui);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.7);
  z-index: 5;
  text-transform: uppercase;
}


/* ════════════════════════════════════════
   PART II DIVIDER
   ════════════════════════════════════════ */
.part2-divider {
  background: var(--cream-2);
  padding: clamp(6rem, 10vw, 10rem) clamp(2rem, 6vw, 7rem);
}
.part2-divider__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.part2-divider__rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
}
.part2-divider__part {
  font-family: var(--ui);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.part2-divider__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.part2-divider__sub {
  font-family: var(--body);
  font-size: 1.1rem;
  font-style: italic;
  color: #777;
  line-height: 1.6;
}


/* ════════════════════════════════════════
   PRINCIPLES GRID
   ════════════════════════════════════════ */
.principles {
  background: var(--white);
  padding: var(--section-v-sm) clamp(2rem, 6vw, 7rem);
}
.principles__intro {
  max-width: 680px;
  margin-bottom: 4rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: #444;
  line-height: 1.9;
}
.principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream-2);
}
.principle-card {
  padding: 4rem 3rem;
  text-align: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.principle-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.principle-card--blue::before  { background: var(--cobalt); }
.principle-card--green::before { background: var(--forest); }
.principle-card--gold::before  { background: var(--gold); }

.principle-card__icon {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 1.5rem;
}
.principle-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.principle-card p {
  font-family: var(--ui);
  font-size: 0.8rem;
  color: #888;
  line-height: 1.6;
}


/* ════════════════════════════════════════
   INSIGHT ROWS
   ════════════════════════════════════════ */
.insight-row {
  display: grid;
  grid-template-columns: 90px 1fr 440px;
  min-height: 600px;
  background: var(--white);
  border-top: 1px solid var(--cream-2);
}
.insight-row--dark {
  background: var(--ink);
  grid-template-columns: 440px 90px 1fr;
}

.insight-row__num {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5.5rem 1rem;
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
}
.insight-row--dark .insight-row__num { color: var(--gold-light); }

.insight-row__body {
  padding: 5.5rem 4rem 5.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.insight-row--dark .insight-row__body {
  padding: 5.5rem 2rem 5.5rem 4rem;
}

.insight-row__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1.6rem;
}
.insight-row--dark .insight-row__title { color: var(--cream); }

.insight-row__intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 3.5rem;
  line-height: 1.95;
}
.insight-row--dark .insight-row__intro { color: rgba(248,244,237,.6); }

.insight-row__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.insight-col__label {
  font-family: var(--ui);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.insight-col--benefit .insight-col__label {
  color: var(--forest);
}
.insight-row--dark .insight-col--benefit .insight-col__label {
  color: var(--gold-light);
}

.insight-col ul {
  list-style: none;
  padding: 0;
}
.insight-col ul li {
  padding: .55rem 0 .55rem 1.6rem;
  position: relative;
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
  border-bottom: 1px solid var(--cream-2);
}
.insight-row--dark .insight-col ul li {
  color: rgba(248,244,237,.65);
  border-color: rgba(255,255,255,.07);
}
.insight-col ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.insight-col--benefit {
  background: rgba(201,168,108,.07);
  padding: 1.5rem;
  border: 1px solid rgba(201,168,108,.2);
}
.insight-row--dark .insight-col--benefit {
  background: rgba(201,168,108,.08);
  border-color: rgba(201,168,108,.25);
}
.insight-col--benefit p {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.8;
  margin: 0;
}
.insight-row--dark .insight-col--benefit p {
  color: rgba(248,244,237,.75);
}

.insight-row__photo {
  background-size: cover;
  background-position: center;
  min-height: 380px;
}
.insight-row__photo--left { order: -1; }


/* ════════════════════════════════════════
   AUDIENCE + LIMITS
   ════════════════════════════════════════ */
.audience-section {
  background: var(--forest);
  padding: var(--section-v) clamp(2rem, 6vw, 7rem);
}
.audience-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
}

.audience-block__title,
.limits-block__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--cream);
  margin-bottom: 2.5rem;
  font-weight: 700;
}

.audience-tags {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.audience-tags span {
  display: block;
  padding: 1.1rem 1.5rem;
  font-family: var(--ui);
  font-size: 0.85rem;
  color: rgba(248,244,237,.8);
  border-bottom: 1px solid rgba(201,168,108,.2);
  transition: background .2s, color .2s;
}
.audience-tags span:hover {
  background: rgba(201,168,108,.1);
  color: var(--gold-light);
  padding-left: 2rem;
}

.limits-block p {
  font-size: 0.97rem;
  color: rgba(248,244,237,.7);
  line-height: 1.9;
}
.limits-block strong { color: var(--gold-light); }


/* ════════════════════════════════════════
   FINAL INSIGHT SECTION
   ════════════════════════════════════════ */
.final-section {
  background: var(--cream-2);
  padding: var(--section-v) clamp(2rem, 6vw, 7rem);
}
.final-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1200px;
}
.final-section__perspective h3,
.final-section__insight h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--forest);
  margin-bottom: 1.5rem;
}
.final-section__perspective p {
  font-size: 1rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 1rem;
}
.final-section__perspective em { color: var(--forest); font-style: italic; }

.final-insight-badge {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.final-section__insight p {
  font-size: 1rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 1rem;
}
.final-section__insight strong { color: var(--forest); }


/* ════════════════════════════════════════
   REFERENCES
   ════════════════════════════════════════ */
.refs-section {
  background: var(--ink);
  padding: var(--section-v) clamp(2rem, 6vw, 7rem);
}
.refs-inner { max-width: 900px; }

.refs-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--gold);
  margin-bottom: 3.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(201,168,108,.25);
}

.refs-list {
  list-style: none;
  padding: 0;
}
.refs-list li {
  font-size: 0.9rem;
  color: rgba(248,244,237,.6);
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  line-height: 1.75;
}
.refs-list__author {
  font-weight: 500;
  color: rgba(248,244,237,.85);
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--ui);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.refs-list em { color: var(--gold-light); font-style: italic; }
.refs-list a {
  font-family: var(--ui);
  font-size: 0.75rem;
  color: var(--gold-light);
  border-bottom-color: rgba(201,168,108,.35);
  display: inline-block;
  margin-top: .3rem;
}


/* ════════════════════════════════════════
   AUTHOR
   ════════════════════════════════════════ */
.author {
  background: var(--white);
  padding: var(--section-v) clamp(2rem, 6vw, 7rem);
}
.author__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1000px;
}

.author__photo {
  width: 100%;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  box-shadow: 0 12px 48px rgba(0,0,0,.15);
}

.author__label {
  font-family: var(--ui);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.7rem;
}
.author__name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.author__location {
  font-family: var(--ui);
  font-size: 0.72rem;
  color: #999;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-2);
}
.author__bio p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.author__bio em { color: var(--forest); }
.author__series {
  font-family: var(--ui);
  font-size: 0.7rem;
  color: var(--gold-dark);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-2);
  letter-spacing: 0.05em;
}


/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  padding: 5rem clamp(2rem, 6vw, 7rem);
  text-align: center;
}
.site-footer__tagline {
  font-family: var(--body);
  font-size: 1rem;
  font-style: italic;
  color: rgba(248,244,237,.5);
  margin-bottom: 0.7rem;
}
.site-footer__brand {
  font-family: var(--ui);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.site-footer__copy {
  font-family: var(--ui);
  font-size: 0.62rem;
  color: rgba(248,244,237,.22);
  letter-spacing: 0.04em;
}


/* ════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════ */
.reveal-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-section.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1100px) {
  .insight-row          { grid-template-columns: 70px 1fr 340px; }
  .insight-row--dark    { grid-template-columns: 340px 70px 1fr; }
  .geo                  { grid-template-columns: 1fr; gap: 5rem; padding: var(--section-v) 3rem; }
  .geo__stats           { flex-direction: row; flex-wrap: wrap; padding-left: 0; padding-top: 0; }
  .stat                 { padding: 2rem 2rem; min-width: 160px; flex: 1; }
}

@media (max-width: 900px) {
  .split-section        { grid-template-columns: 1fr; }
  .split-section__photo { height: 320px; }
  .photo-strip          { grid-template-columns: 1fr; height: auto; }
  .photo-strip__item    { height: 220px; }
  .photo-twin           { grid-template-columns: 1fr; height: auto; }
  .photo-twin__item     { height: 260px; }
  .audience-section__inner { grid-template-columns: 1fr; gap: 4rem; }
  .final-section__inner { grid-template-columns: 1fr; gap: 4rem; }
  .principles__grid     { grid-template-columns: 1fr; gap: 2px; }
  .author__inner        { grid-template-columns: 1fr; gap: 3rem; }
  .author__photo        { max-width: 180px; }
  .vocab-box__grid      { grid-template-columns: 1fr; }
  .insight-row          { grid-template-columns: 1fr; }
  .insight-row--dark    { grid-template-columns: 1fr; }
  .insight-row__photo   { height: 280px; order: -1; }
  .insight-row__photo--left { order: -1; }
  .insight-row__num     { display: none; }
  .insight-row__body    { padding: 3rem 2rem !important; }
  .insight-row__cols    { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .top-nav              { padding: 1.5rem 1.5rem; grid-template-columns: 1fr 1fr; }
  .top-nav__issue       { display: none; }
  .lang-switcher        { justify-self: end; }
  .hero__body           { padding: 0 1.5rem 4rem; }
  .hero__title          { font-size: 2.8rem; }
  .editorial            { padding: var(--section-v-sm) 1.5rem; }
  .editorial__meta      { flex-direction: column; gap: 0.5rem; }
  .editorial__meta .sec-num { font-size: 3rem; }
  .part2-divider        { padding: var(--section-v-sm) 1.5rem; }
  .geo                  { padding: var(--section-v-sm) 1.5rem; }
  .refs-section, .author { padding: var(--section-v-sm) 1.5rem; }
  .audience-section, .final-section, .principles { padding: var(--section-v-sm) 1.5rem; }
  .data-callout         { padding: 2rem 1.5rem; }
  .pull-quote           { padding: 4rem 1.5rem; }
  .hero__scroll-hint    { display: none; }
}

/* ════════════════════════════════════════
   PRINT
   ════════════════════════════════════════ */
@media print {
  @page { size: A4 portrait; margin: 2cm; }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  .hero { height: 100vh; }
  .hero__scroll-hint, .scroll-line { display: none; }
  .reveal-section { opacity: 1 !important; transform: none !important; }
  .editorial, .editorial--dark, .geo, .audience-section,
  .final-section, .refs-section, .author, .principles,
  .part2-divider { page-break-before: always; }
  .figure-fw img { max-height: 60vh; object-fit: contain; }
}
