/* ============================================================
   REBORN & LUMIÈRE — Design System v2
   Magazine éditorial bienveillant
   ============================================================ */

:root {
  /* Palette étendue */
  --cream-50:  #FDFAF5;
  --cream-100: #FAF5F0;
  --cream-200: #F4ECE2;
  --cream-300: #ECDFCF;
  --sand:      #E8D4BD;
  --sand-deep: #C7AC8A;

  --ink:       #2A2522;
  --ink-soft:  #4A413B;
  --smoke:     #6B5F58;
  --muted:     #9A8E86;

  --rose:      #D4A5A5;
  --rose-deep: #B88787;
  --plum:      #7D5A6B;

  --terra:     #B8654C;
  --terra-deep:#964F3B;
  --terra-dark:#6E3826;
  --gold:      #C9A875;

  --line:      rgba(42, 37, 34, 0.10);
  --line-soft: rgba(42, 37, 34, 0.06);

  /* Typo */
  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Échelle d'espace */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4.5rem;
  --s-7: 7rem;

  /* Layout */
  --w-narrow: 680px;
  --w-medium: 920px;
  --w-wide:   1180px;
  --w-full:   1400px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  /* Texture papier subtile via gradient bruit */
  background-image:
    radial-gradient(at 20% 30%, rgba(184, 101, 76, 0.025) 0px, transparent 50%),
    radial-gradient(at 80% 70%, rgba(212, 165, 165, 0.03) 0px, transparent 50%);
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--terra);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}
a:hover { color: var(--terra-deep); }

::selection { background: var(--rose); color: var(--ink); }

/* ============================================================
   TYPOGRAPHIE — Système éditorial
   ============================================================ */

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: var(--terra);
  display: inline-block;
}

.eyebrow--soft {
  color: var(--muted);
}
.eyebrow--soft::before {
  background: var(--muted);
}

.h-mega {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.h-display {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.h-display .accent {
  color: var(--terra);
  font-style: italic;
}

h1, .h1 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h2, .h2 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--ink);
}

h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--ink);
}

p { margin-bottom: var(--s-3); }

.lead {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink-soft);
  letter-spacing: 0.005em;
}

.body-large {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.caption {
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* Drop cap pour les premiers paragraphes d'article */
.dropcap::first-letter {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 4.5em;
  float: left;
  line-height: 0.85;
  padding-right: 0.12em;
  padding-top: 0.1em;
  color: var(--terra);
}

/* ============================================================
   CONTAINERS
   ============================================================ */
.container { max-width: var(--w-wide); margin: 0 auto; padding: 0 var(--s-3); }
.container-narrow { max-width: var(--w-narrow); margin: 0 auto; padding: 0 var(--s-3); }
.container-medium { max-width: var(--w-medium); margin: 0 auto; padding: 0 var(--s-3); }
.container-full { max-width: var(--w-full); margin: 0 auto; padding: 0 var(--s-3); }

/* ============================================================
   HEADER — minimaliste, sticky avec fade
   ============================================================ */
.site-header {
  padding: var(--s-3) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 240, 0.92);
  backdrop-filter: blur(10px) saturate(110%);
  border-bottom: 1px solid var(--line-soft);
}

.site-header__inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
}

.site-logo {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1;
}
.site-logo span {
  color: var(--terra);
  font-weight: 500;
}
.site-logo:hover span { color: var(--terra-deep); }

.site-nav {
  display: flex;
  gap: var(--s-4);
  align-items: center;
}
.site-nav a {
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--terra);
  transition: width 0.3s ease;
}
.site-nav a:hover::after { width: 100%; }
.site-nav a:hover { color: var(--terra); }

@media (max-width: 720px) {
  .site-nav { display: none; }
}

/* ============================================================
   HERO — asymétrique avec ornement SVG
   ============================================================ */
.hero {
  padding: var(--s-6) 0 var(--s-7);
  position: relative;
  overflow: hidden;
}

.hero__decoration {
  position: absolute;
  top: 8%;
  right: -8%;
  width: 540px;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  margin-bottom: var(--s-3);
}

.hero__title {
  max-width: 920px;
  margin-bottom: var(--s-4);
}

.hero__lead {
  max-width: 600px;
  margin-bottom: var(--s-5);
}

.hero__meta {
  display: flex;
  gap: var(--s-3);
  align-items: center;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1;
}

.btn--primary {
  background: var(--ink);
  color: var(--cream-100);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--terra-deep);
  border-color: var(--terra-deep);
  color: var(--cream-100);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream-100);
}

.btn--link {
  background: transparent;
  border-color: transparent;
  color: var(--terra);
  padding: 0.5rem 0;
  font-weight: 500;
  position: relative;
}
.btn--link::after {
  content: "→";
  margin-left: 0.4rem;
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn--link:hover::after { transform: translateX(4px); }

/* ============================================================
   FEATURED STORY — large, image-led, asymétrique
   ============================================================ */
.featured {
  padding: var(--s-6) 0;
  background: var(--cream-200);
  position: relative;
}

.featured__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-6);
  align-items: center;
}

.featured__image {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--sand) 0%, var(--rose) 100%);
  position: relative;
  overflow: hidden;
}
.featured__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.12) 0%, transparent 55%);
  pointer-events: none;
  z-index: 2;
}

.image-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.featured__image img,
.collection__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 25% 50%;
  display: block;
  z-index: 1;
}

.featured__body {
  padding-right: var(--s-3);
}

.featured__eyebrow {
  margin-bottom: var(--s-3);
}

.featured__title {
  margin-bottom: var(--s-3);
}

.featured__excerpt {
  font-family: var(--f-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: var(--s-4);
}

.featured__meta {
  display: flex;
  gap: var(--s-3);
  align-items: center;
  margin-bottom: var(--s-4);
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .featured__inner {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  .featured__image { aspect-ratio: 16 / 10; }
}

/* ============================================================
   EDITOR'S NOTE — lettre, sépia
   ============================================================ */
.note {
  padding: var(--s-6) 0;
  background:
    linear-gradient(180deg, var(--cream-100) 0%, var(--cream-200) 100%);
}

.note__inner {
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}

.note__quote-mark {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 9rem;
  line-height: 1;
  color: var(--rose);
  opacity: 0.5;
  position: absolute;
  top: -3rem;
  left: -2rem;
  z-index: 0;
}

.note__body {
  position: relative;
  z-index: 1;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.note__body p { margin-bottom: var(--s-3); }

.note__signature {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-4);
}

.note__signature-name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  color: var(--terra);
  font-size: 1.2rem;
}

.note__signature-role {
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: var(--muted);
  font-style: normal;
}

/* ============================================================
   JOURNAL FEED — date-led, éditorial
   ============================================================ */
.journal {
  padding: var(--s-6) 0;
}

.journal__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--ink);
  margin-bottom: var(--s-5);
  gap: var(--s-3);
}

.journal__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--ink);
  line-height: 1;
}

.journal__entries {
  display: flex;
  flex-direction: column;
}

.entry {
  display: grid;
  grid-template-columns: 140px 1fr 160px;
  gap: var(--s-5);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.2s ease;
  align-items: start;
}
.entry:hover {
  background: var(--cream-200);
  margin: 0 calc(var(--s-3) * -1);
  padding-left: var(--s-3);
  padding-right: var(--s-3);
  border-radius: 4px;
}

.entry__date {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--terra);
  letter-spacing: 0.02em;
  padding-top: 4px;
}

.entry__date span {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.entry__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.entry__category {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.entry__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--ink);
  text-decoration: none;
  display: block;
}
.entry__title:hover { color: var(--terra); }

.entry__excerpt {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.65;
}

.entry__meta {
  text-align: right;
  font-family: var(--f-body);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding-top: 4px;
}

@media (max-width: 800px) {
  .entry {
    grid-template-columns: 1fr;
    gap: var(--s-2);
  }
  .entry__meta { text-align: left; }
  .entry:hover { margin: 0; padding-left: 0; padding-right: 0; }
}

/* ============================================================
   QUOTE — pull editorial
   ============================================================ */
.quote-section {
  padding: var(--s-7) 0;
  background: var(--ink);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 101, 76, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.quote-section__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.quote-section__label {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--s-4);
  display: inline-block;
}

.quote-section__text {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--cream-100);
}

.quote-section__author {
  margin-top: var(--s-5);
  font-family: var(--f-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--sand);
  text-transform: uppercase;
}
.quote-section__author span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.1em;
}

/* ============================================================
   METHOD — notre méthode (3 colonnes avec numéros géants)
   ============================================================ */
.method {
  padding: var(--s-7) 0;
}

.method__intro {
  max-width: 720px;
  margin-bottom: var(--s-6);
}

.method__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.method__item {
  position: relative;
  padding-top: var(--s-4);
}

.method__number {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 6rem;
  line-height: 1;
  color: var(--rose);
  position: absolute;
  top: -3.5rem;
  left: -0.5rem;
  z-index: 0;
  opacity: 0.7;
}

.method__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: var(--s-2);
  position: relative;
  z-index: 1;
}

.method__text {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

@media (max-width: 800px) {
  .method__grid { grid-template-columns: 1fr; gap: var(--s-5); }
}

/* ============================================================
   COLLECTION GRID — articles featured
   ============================================================ */
.collection {
  padding: var(--s-6) 0;
  background: var(--cream-200);
}

.collection__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--ink);
  margin-bottom: var(--s-5);
}

.collection__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--ink);
  line-height: 1;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.collection__card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  text-decoration: none;
  transition: transform 0.3s ease;
}
.collection__card:hover {
  transform: translateY(-4px);
}

.collection__image {
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--sand) 0%, var(--rose) 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--s-1);
}
.collection__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.collection__card:nth-child(2) .collection__image {
  background: linear-gradient(135deg, var(--rose) 0%, var(--terra) 100%);
}
.collection__card:nth-child(3) .collection__image {
  background: linear-gradient(135deg, var(--plum) 0%, var(--rose-deep) 100%);
}

.collection__category {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
}

.collection__card-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--ink);
}

.collection__meta {
  font-family: var(--f-body);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

@media (max-width: 800px) {
  .collection__grid { grid-template-columns: 1fr; gap: var(--s-5); }
}

/* ============================================================
   NEWSLETTER — éditorial, raffinée
   ============================================================ */
.newsletter {
  background: var(--cream-100);
  padding: var(--s-7) 0;
  position: relative;
  overflow: hidden;
}

.newsletter__decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

.newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter__eyebrow {
  margin-bottom: var(--s-3);
}

.newsletter__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: var(--s-3);
}

.newsletter__text {
  color: var(--ink-soft);
  margin-bottom: var(--s-4);
}

.newsletter__form {
  display: flex;
  gap: var(--s-2);
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter__input {
  flex: 1;
  min-width: 240px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream-50);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 0.95rem;
}
.newsletter__input:focus {
  outline: none;
  border-color: var(--terra);
  background: white;
}

.newsletter__note {
  margin-top: var(--s-3);
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================================
   FOOTER — éditorial avec colonnes
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--cream-200);
  padding: var(--s-6) 0 var(--s-4);
}

.site-footer a {
  color: var(--cream-200);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.site-footer a:hover { color: var(--rose); }

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-5);
}

.site-footer__brand-block {
  padding-right: var(--s-4);
}

.site-footer__brand {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--rose);
  margin-bottom: var(--s-2);
  line-height: 1;
}

.site-footer__tagline {
  color: var(--sand);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 320px;
}

.site-footer__title {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: var(--s-3);
}

.site-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer__bottom {
  padding-top: var(--s-3);
  border-top: 1px solid rgba(232, 212, 189, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: var(--s-2);
}

@media (max-width: 720px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand-block { grid-column: 1 / -1; }
}

/* ============================================================
   ARTICLE PAGE — éditorial étendu
   ============================================================ */
.breadcrumbs {
  padding: var(--s-3) 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-family: var(--f-body);
}
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--terra); }
.breadcrumbs span { margin: 0 0.45rem; color: var(--muted); }

.article-header {
  padding: var(--s-5) 0 var(--s-4);
  text-align: left;
  max-width: var(--w-narrow);
  margin: 0 auto;
}

.article-eyebrow {
  margin-bottom: var(--s-3);
}

.article-title {
  margin-bottom: var(--s-3);
}

.article-lead {
  color: var(--ink-soft);
}

.article-byline {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line-soft);
  font-size: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.article-byline strong {
  color: var(--ink);
  font-weight: 600;
}

.article-hero {
  margin: var(--s-5) auto;
  max-width: var(--w-medium);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--sand) 0%, var(--rose) 100%);
  position: relative;
}
.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.18) 0%, transparent 50%);
}

.article-body {
  max-width: var(--w-narrow);
  margin: 0 auto;
  padding: 0 var(--s-3) var(--s-6);
}

.article-body h2 {
  margin-top: var(--s-6);
  margin-bottom: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line-soft);
  position: relative;
}
.article-body h2::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 60px;
  height: 1px;
  background: var(--terra);
}

.article-body h3 {
  margin-top: var(--s-4);
  margin-bottom: var(--s-2);
}

.article-body p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink-soft);
}

.article-body ul, .article-body ol {
  margin: var(--s-3) 0 var(--s-3) var(--s-3);
  padding-left: var(--s-2);
  color: var(--ink-soft);
}
.article-body li { margin-bottom: 0.6rem; line-height: 1.7; }
.article-body li strong { color: var(--ink); font-weight: 600; }

.article-body a {
  color: var(--terra);
  border-bottom: 1px solid var(--rose);
  transition: all 0.2s ease;
}
.article-body a:hover {
  color: var(--terra-deep);
  border-bottom-color: var(--terra);
}

.article-body strong { color: var(--ink); font-weight: 600; }
.article-body em { color: var(--terra); font-style: italic; }

/* Pull quote dans article */
.pullquote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.4;
  color: var(--ink);
  text-align: center;
  margin: var(--s-6) auto;
  padding: var(--s-4) var(--s-3);
  max-width: 600px;
  position: relative;
}
.pullquote::before, .pullquote::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--terra);
  margin: 0 auto;
}
.pullquote::before { margin-bottom: var(--s-3); }
.pullquote::after { margin-top: var(--s-3); }

/* Tip box */
.tip-box {
  background: var(--cream-200);
  border-left: 3px solid var(--terra);
  padding: var(--s-3) var(--s-4);
  margin: var(--s-4) 0;
  border-radius: 0 4px 4px 0;
}
.tip-box__label {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.5rem;
}
.tip-box p { margin-bottom: 0; }

/* Caring box (deuil, Alzheimer, sujets sensibles) */
.caring-box {
  background: rgba(212, 165, 165, 0.18);
  border-left: 3px solid var(--plum);
  padding: var(--s-3) var(--s-4);
  margin: var(--s-4) 0;
  border-radius: 0 4px 4px 0;
}
.caring-box__label {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 0.5rem;
}
.caring-box p { margin-bottom: 0; }

/* Related */
.related {
  background: var(--cream-200);
  padding: var(--s-6) 0;
}

/* ============================================================
   DECORATIVE SVG STYLES (curves, swirls)
   ============================================================ */
.swirl-stroke {
  stroke: var(--terra);
  stroke-width: 1.5;
  fill: none;
  opacity: 0.5;
}
.dot-pattern {
  fill: var(--rose-deep);
  opacity: 0.4;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--s-1); }
.mt-2 { margin-top: var(--s-2); }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }

.mb-1 { margin-bottom: var(--s-1); }
.mb-2 { margin-bottom: var(--s-2); }
.mb-3 { margin-bottom: var(--s-3); }
.mb-4 { margin-bottom: var(--s-4); }
.mb-5 { margin-bottom: var(--s-5); }

/* ============================================================
   ARTICLE — additions v2 (TOC, hero img, pullquote cite)
   ============================================================ */

.article-hero {
  margin: var(--s-5) auto;
  max-width: var(--w-medium);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--cream-200);
}
.article-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.article-hero__caption {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--smoke);
  text-align: center;
  padding: var(--s-2) var(--s-3) 0;
  line-height: 1.5;
}

.toc {
  max-width: var(--w-narrow);
  margin: var(--s-5) auto var(--s-6);
  padding: var(--s-3) var(--s-4);
  background: var(--cream-200);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}
.toc__label {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: var(--s-2);
}
.toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
}
.toc__list li {
  counter-increment: toc-counter;
  position: relative;
  padding: 6px 0 6px 28px;
  border-bottom: 1px solid var(--line-soft);
}
.toc__list li:last-child {
  border-bottom: 0;
}
.toc__list li::before {
  content: counter(toc-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 6px;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--terra);
  font-size: 0.9rem;
  font-weight: 500;
}
.toc__list a {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.toc__list a:hover {
  color: var(--terra);
}

.pullquote__cite {
  display: block;
  margin-top: var(--s-3);
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
}

/* Inline article figures (smaller than hero) */
.article-figure {
  margin: var(--s-5) calc(var(--s-3) * -1);
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.article-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.article-figure__caption {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--smoke);
  text-align: center;
  padding: var(--s-2) var(--s-3) 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .article-figure {
    margin: var(--s-4) 0;
  }
}

/* ============================================================
   CONTACT FORM — minimal, cohérent avec le design system
   ============================================================ */
.contact-form {
  max-width: var(--w-narrow);
  margin: var(--s-4) auto var(--s-5);
  background: var(--cream-200);
  padding: var(--s-4);
  border-radius: 4px;
  border-left: 3px solid var(--terra);
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: var(--s-3);
}

.contact-form__label {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-form__input,
.contact-form__textarea {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--muted);
  font-style: italic;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--terra);
  background: white;
}

.contact-form__actions {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  align-items: flex-start;
  margin-top: var(--s-3);
}

.contact-form__note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .contact-form {
    padding: var(--s-3);
  }
}

/* Comparison table (article comparatif) */
.comparison-table {
  margin: var(--s-5) calc(var(--s-3) * -1) var(--s-5);
  overflow-x: auto;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--cream-50);
}
.comparison-table thead {
  background: var(--cream-200);
}
.comparison-table th {
  text-align: left;
  padding: var(--s-2) var(--s-3);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.comparison-table th:first-child {
  width: 26%;
}
.comparison-table td {
  padding: var(--s-2) var(--s-3);
  vertical-align: top;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  line-height: 1.55;
}
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}
.comparison-table tbody tr:hover {
  background: var(--cream-100);
}
.comparison-table td:first-child {
  font-weight: 500;
  color: var(--ink);
}
@media (max-width: 768px) {
  .comparison-table {
    margin: var(--s-4) 0;
    font-size: 0.88rem;
  }
}

/* ============================================================
   INDEX PAGES (blog, glossaire, faq) — shared editorial intro
   ============================================================ */
.index-header {
  padding: var(--s-5) 0 var(--s-4);
  max-width: var(--w-medium);
  margin: 0 auto;
}
.index-header__eyebrow {
  margin-bottom: var(--s-3);
}
.index-header__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: var(--s-3);
}
.index-header__lead {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: var(--s-3);
}
.index-header p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* ============================================================
   BLOG INDEX — cards grid (article previews)
   ============================================================ */
.blog-list {
  padding: var(--s-5) 0 var(--s-6);
}
.blog-list__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--ink);
  margin-bottom: var(--s-5);
  flex-wrap: wrap;
  gap: var(--s-3);
}
.blog-list__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--ink);
  line-height: 1.1;
}
.blog-list__note {
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: var(--muted);
}
.blog-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  text-decoration: none;
  padding: var(--s-3);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: var(--cream-50);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: var(--line);
  background: var(--cream-100);
}
.blog-card__cover {
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--sand) 0%, var(--rose) 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--s-2);
}
.blog-card:nth-child(2) .blog-card__cover {
  background: linear-gradient(135deg, var(--rose) 0%, var(--terra) 100%);
}
.blog-card:nth-child(3) .blog-card__cover {
  background: linear-gradient(135deg, var(--plum) 0%, var(--rose-deep) 100%);
}
.blog-card__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.15) 0%, transparent 55%);
}
.blog-card__category {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
}
.blog-card__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--ink);
}
.blog-card__excerpt {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.65;
}
.blog-card__meta {
  margin-top: auto;
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding-top: var(--s-2);
}

.blog-soon {
  padding: var(--s-6) 0;
  background: var(--cream-200);
}
.blog-soon__head {
  margin-bottom: var(--s-4);
}
.blog-soon__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--ink);
  margin-bottom: var(--s-2);
}
.blog-soon__intro {
  color: var(--ink-soft);
  max-width: 680px;
}
.blog-soon__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
.blog-teaser {
  padding: var(--s-3) var(--s-4);
  background: var(--cream-50);
  border-left: 3px solid var(--rose);
  border-radius: 0 4px 4px 0;
}
.blog-teaser__category {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 0.4rem;
  display: block;
}
.blog-teaser__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.blog-teaser__text {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 800px) {
  .blog-list__grid,
  .blog-soon__grid {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
}

/* ============================================================
   GLOSSARY — alphabetical layout
   ============================================================ */
.glossary {
  padding: var(--s-4) 0 var(--s-6);
}
.glossary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: var(--s-3) 0;
  margin-bottom: var(--s-4);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: sticky;
  top: 64px;
  background: rgba(250, 245, 240, 0.92);
  backdrop-filter: blur(8px);
  z-index: 50;
}
.glossary-nav__label {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: var(--s-2);
  align-self: center;
}
.glossary-nav a {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--cream-50);
  transition: all 0.2s ease;
}
.glossary-nav a:hover {
  color: var(--cream-100);
  background: var(--terra);
  border-color: var(--terra);
}
.glossary-section {
  margin-bottom: var(--s-5);
  padding-top: var(--s-3);
}
.glossary-section__letter {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--terra);
  line-height: 1;
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--ink);
  margin-bottom: var(--s-4);
}
.glossary-term {
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line-soft);
}
.glossary-term:last-child {
  border-bottom: 0;
}
.glossary-term__name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.glossary-term__name .pronounce {
  font-family: var(--f-mono);
  font-style: normal;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: none;
}
.glossary-term__def {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ============================================================
   FAQ — accordion-style listing
   ============================================================ */
.faq-list {
  padding: var(--s-4) 0 var(--s-6);
}
.faq-group {
  margin-bottom: var(--s-5);
}
.faq-group__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--ink);
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--ink);
}
.faq-item {
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line-soft);
}
.faq-item:last-child {
  border-bottom: 0;
}
.faq-item__q {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: var(--s-2);
  line-height: 1.35;
}
.faq-item__a {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.faq-item__a p {
  margin-bottom: var(--s-2);
}
.faq-item__a p:last-child {
  margin-bottom: 0;
}
.faq-item__a a {
  color: var(--terra);
  border-bottom: 1px solid var(--rose);
}
.faq-item__a a:hover {
  color: var(--terra-deep);
  border-bottom-color: var(--terra);
}
