/* ─── Variables ──────────────────────────────────────────────────────────── */
:root {
  --rigo-black: #0F1014;
  --rigo-ink: #1F2024;
  --rigo-orange: #E88728;
  --rigo-orange-dark: #D97617;
  --rigo-muted: #6B6E73;
  --rigo-text: #3D3F44;
  --rigo-bg-soft: #F4F5F7;
  --rigo-bg-warm: #FAF7F2;
  --rigo-line: #E5E6E8;
  --rigo-white: #FFFFFF;
  --rigo-border-dark: #2A2C32;
  --rigo-muted-dark: #B8B9BC;
  --rigo-featured-bg: #FFF9F0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--rigo-ink); background: var(--rigo-white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero { background: var(--rigo-black); color: #FFF; padding: 96px 0 80px; position: relative; overflow: hidden; }
.hero-content { max-width: 820px; position: relative; padding-left: 20px; }
.hero-content::before { content: ""; position: absolute; top: 6px; left: 0; width: 3px; height: 44px; background: var(--rigo-orange); }
.eyebrow { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rigo-orange); font-weight: 500; margin-bottom: 22px; }
.hero h1 { font-family: 'Fraunces', serif; font-size: 56px; line-height: 1.05; font-weight: 400; letter-spacing: -0.025em; margin-bottom: 26px; color: #FFF; }
.hero h1 em { font-style: italic; color: var(--rigo-orange); font-weight: 400; }
.hero-sub { font-size: 20px; line-height: 1.55; color: var(--rigo-muted-dark); max-width: 640px; }

/* ─── CHAPITRES ──────────────────────────────────────────────────────────── */
.chapter { padding: 96px 0; border-bottom: 0.5px solid var(--rigo-line); }
.chapter:last-of-type { border-bottom: none; }
.chapter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.chapter-grid.reverse .chapter-text { order: 2; }
.chapter-grid.reverse .chapter-image { order: 1; }
.chapter-number {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  color: var(--rigo-orange);
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.chapter-title {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--rigo-black);
  margin-bottom: 28px;
}
.chapter-title em { font-style: italic; color: var(--rigo-orange); }
.chapter-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--rigo-text);
  margin-bottom: 18px;
}
.chapter-text p:last-child { margin-bottom: 0; }
.chapter-text strong { color: var(--rigo-black); font-weight: 500; }
.chapter-image { position: relative; }
.chapter-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.chapter-image::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: var(--rigo-bg-warm);
  border-radius: 12px;
  z-index: -1;
}
.chapter-grid.reverse .chapter-image::before {
  left: -20px;
  right: 20px;
  background: var(--rigo-featured-bg);
}

/* ─── AUJOURD'HUI ────────────────────────────────────────────────────────── */
.today-section { background: var(--rigo-black); color: #FFF; padding: 96px 0; }
.today-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.today-photo {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--rigo-orange);
  justify-self: end;
}
.today-photo img { width: 100%; height: 100%; object-fit: cover; }
.today-text h2 {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: #FFF;
}
.today-text h2 em { font-style: italic; color: var(--rigo-orange); }
.today-text .intro {
  font-size: 18px;
  line-height: 1.65;
  color: var(--rigo-muted-dark);
  margin-bottom: 24px;
}
.today-text .intro strong { color: #FFF; font-weight: 500; }
.today-list { list-style: none; padding: 0; margin: 0 0 32px 0; }
.today-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--rigo-muted-dark);
  font-size: 15px;
  line-height: 1.55;
  border-bottom: 0.5px solid var(--rigo-border-dark);
}
.today-list li:last-child { border-bottom: none; }
.today-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--rigo-orange);
  font-family: 'Fraunces', serif;
  font-size: 18px;
}
.today-quote {
  padding: 24px 32px;
  border-left: 3px solid var(--rigo-orange);
  background: rgba(232, 135, 40, 0.06);
  border-radius: 0 8px 8px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: #FFF;
}
.today-quote strong { font-style: normal; font-weight: 500; color: var(--rigo-orange); }

/* ─── CTA FINAL ──────────────────────────────────────────────────────────── */
.cta-final { background: var(--rigo-bg-warm); padding: 96px 0; text-align: center; }
.cta-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rigo-orange);
  font-weight: 500;
  margin-bottom: 16px;
}
.cta-final h2 {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--rigo-black);
  margin: 0 auto 20px;
  max-width: 720px;
}
.cta-final h2 em { font-style: italic; color: var(--rigo-orange); }
.cta-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--rigo-text);
  margin: 0 auto 40px;
  max-width: 580px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  gap: 8px;
}
.btn-primary { background: var(--rigo-orange); color: var(--rigo-black); }
.btn-primary:hover { background: var(--rigo-orange-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--rigo-black);
  border: 1px solid var(--rigo-black);
}
.btn-ghost:hover { background: var(--rigo-black); color: #FFF; }

/* ─── Pull quote chapitre ────────────────────────────────────────────────── */
.chapter-pullquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.45em;
  line-height: 1.5;
  color: var(--rigo-black);
  border-left: 3px solid var(--rigo-orange);
  background: var(--rigo-bg-warm);
  padding: 28px 32px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0 0;
}
.chapter-pullquote strong { font-style: normal; font-weight: 500; }

/* ─── Today — intro text ─────────────────────────────────────────────────── */
.today-intro-text {
  font-size: 18px;
  line-height: 1.65;
  color: var(--rigo-muted-dark);
  margin-bottom: 28px;
}
.today-intro-text strong { color: #FFF; font-weight: 500; }

/* ─── Today — 2 colonnes ─────────────────────────────────────────────────── */
.today-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.today-col-head {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rigo-muted-dark);
  margin-bottom: 14px;
}
.today-col-list { list-style: none; padding: 0; margin: 0; }
.today-col-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--rigo-muted-dark);
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 0.5px solid var(--rigo-border-dark);
}
.today-col-list li:last-child { border-bottom: none; }
.today-col-list--obtain li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--rigo-orange);
  font-family: 'Fraunces', serif;
  font-size: 16px;
}
.today-col-list--avoid li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--rigo-muted);
  font-size: 16px;
}

/* ─── CTA intermédiaire ──────────────────────────────────────────────────── */
.cta-mid { padding: 40px 0; text-align: center; background: var(--rigo-white); }

/* ─── Phrase humaine CTA final ───────────────────────────────────────────── */
.cta-human {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--rigo-muted);
  text-align: center;
  margin: 0 auto 32px;
  max-width: 480px;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 17px; }
  .chapter { padding: 64px 0; }
  .chapter-grid { grid-template-columns: 1fr; gap: 40px; }
  .chapter-grid.reverse .chapter-text { order: 2; }
  .chapter-grid.reverse .chapter-image { order: 1; }
  .chapter-title { font-size: 30px; }
  .chapter-image::before { display: none; }
  .today-section { padding: 64px 0; }
  .today-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .today-photo { width: 220px; height: 220px; margin: 0 auto; justify-self: center; }
  .today-text h2 { font-size: 32px; }
  .today-cols { grid-template-columns: 1fr; gap: 16px; }
  .today-col-list li { text-align: left; }
  .chapter-pullquote { font-size: 1.2em; padding: 20px 24px; }
  .cta-final { padding: 64px 0; }
  .cta-final h2 { font-size: 32px; }
}
