/* ==========================================================
   Sylvie Morel — Site auteur
   Palette : crème #faf6f0 · bleu nuit #1e2a44 · terracotta #c97a5d
   Typo    : Playfair Display (titres) + Inter (corps)
   ========================================================== */

:root {
  --cream: #f5efe4;         /* lin naturel */
  --cream-2: #ede4d3;       /* lin plus soutenu */
  --ink: #2d251c;           /* brun encre profond */
  --ink-soft: #4a3f31;      /* brun encre plus doux */
  --sage: #5b6e4f;          /* sauge profond, végétal */
  --sage-dark: #465a3a;
  --terracotta: #b56b47;    /* terre cuite chaude */
  --terracotta-dark: #9a5738;
  --muted: #7d7365;         /* greige */
  --border: #ddd2be;        /* lin bordure */
  --white: #ffffff;

  --serif: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --script: 'Caveat', 'Kalam', cursive;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(30, 42, 68, 0.06);
  --shadow-md: 0 4px 16px rgba(30, 42, 68, 0.08);
  --shadow-lg: 0 12px 40px rgba(30, 42, 68, 0.12);

  --container: 1120px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  position: relative;
}

/* Grain papier — bruit très discret sur toute la page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch' seed='5'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.15  0 0 0 0 0.11  0 0 0 0.09 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-repeat: repeat;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

p { margin: 0 0 1em; }

a {
  color: var(--terracotta-dark);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover { color: var(--ink); }

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

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

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 1rem;
}

.lead { font-size: 1.1rem; color: var(--muted); }

.center { text-align: center; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  text-decoration: none;
  line-height: 1;
}

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

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

.btn-terracotta {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-terracotta:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
}

/* ---------- Header ---------- */

.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(250, 246, 240, 0.92);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand em {
  color: var(--sage);
  font-style: normal;
  font-weight: 400;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink);
}

@media (max-width: 820px) {
  .nav {
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    display: none;
    box-shadow: var(--shadow-md);
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.9rem var(--gutter); width: 100%; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */

.hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 7vw, 5rem);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-portrait {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  max-width: 340px;
  display: block;
}

.hero p.lead { font-size: 1.05rem; margin-bottom: 1.8rem; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-trust {
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  margin-top: 0.6rem;
}
.hero-trust::before {
  content: '✓ ';
  color: var(--terracotta);
  font-weight: 700;
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 280px; margin: 0 auto; }
}

/* ---------- Sections génériques ---------- */

section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-head .lead { margin-top: 0.4rem; }

/* ---------- Piliers (fil rouge) ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pillar-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--sage);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.pillar h3 { margin-bottom: 0.5rem; }
.pillar p { color: var(--muted); font-size: 0.96rem; margin: 0; }

@media (max-width: 820px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ---------- Collection (fiches livres) ---------- */

.collection { background: var(--cream); }

.book-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  border: 1px solid var(--border);
}

.book-cover {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(30, 42, 68, 0.18);
}

.book-tag {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.book-card h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  margin-bottom: 0.4rem;
}
.book-subtitle {
  color: var(--muted);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}
.book-pitch {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

@media (max-width: 700px) {
  .book-card { grid-template-columns: 1fr; text-align: center; }
  .book-cover { max-width: 180px; margin: 0 auto; }
  .book-actions { justify-content: center; }
}

/* ---------- Kits gratuits (bloc bleu nuit) ---------- */

.kits-block {
  background: var(--ink);
  color: var(--cream);
}
.kits-block h2 { color: var(--cream); }
.kits-block .lead { color: rgba(250, 246, 240, 0.75); }
.kits-block .eyebrow { color: var(--terracotta); }

.kits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.kit-card {
  background: var(--ink-soft);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.kit-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 auto 1rem;
}

.kit-card h3 {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.kit-card .kit-meta {
  font-size: 0.88rem;
  color: rgba(250, 246, 240, 0.7);
  margin-bottom: 0.4rem;
}

.kit-card .kit-target {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(250, 246, 240, 0.55);
  margin-bottom: 1.25rem;
}

.kit-card .btn {
  margin-top: auto;
  align-self: center;
}

@media (max-width: 820px) {
  .kits-grid { grid-template-columns: 1fr; }
}

/* ---------- Par où commencer ---------- */

.start-choice {
  background: var(--cream-2);
}

.start-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.start-guide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: 2.5rem auto 0;
}

.start-item {
  padding: 1.25rem;
  border-left: 3px solid var(--terracotta);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.start-item strong { display: block; margin-bottom: 0.35rem; color: var(--ink); }
.start-item span { color: var(--muted); font-size: 0.95rem; }

@media (max-width: 820px) {
  .start-guide { grid-template-columns: 1fr; }
}

/* ---------- À propos (page + section) ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-grid p { color: var(--ink-soft); }

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid img { max-width: 300px; margin: 0 auto 1rem; }
}

/* ---------- Landing kit (pages dédiées) ---------- */

.kit-landing {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.kit-landing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.kit-visual {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
}
.kit-visual .kit-mock {
  display: inline-block;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  font-family: var(--serif);
  color: var(--ink);
  max-width: 260px;
  margin-bottom: 1.5rem;
  border-top: 4px solid var(--terracotta);
}
.kit-mock small {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.kit-mock strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.kit-mock em {
  font-size: 0.9rem;
  font-family: var(--sans);
  font-style: normal;
  color: var(--muted);
}

.kit-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.kit-benefits li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}
.kit-benefits li:last-child { border-bottom: none; }
.kit-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.6rem;
  color: var(--terracotta);
  font-weight: 700;
}

/* ---------- Formulaire capture ---------- */

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-md);
}

.form-card h3 { margin-bottom: 0.5rem; }
.form-card .form-intro { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; }

.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.form-field input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .15s ease;
}
.form-field input:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 1rem 0 1.25rem;
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--terracotta);
  flex-shrink: 0;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

.form-legal {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.5;
}

.form-legal a { text-decoration: underline; }

@media (max-width: 820px) {
  .kit-landing-grid { grid-template-columns: 1fr; }
}

/* ---------- Contenu article (mentions, politique) ---------- */

.article {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  max-width: 760px;
  margin: 0 auto;
}
.article h2 { margin-top: 2.5rem; font-size: 1.4rem; }
.article h3 { margin-top: 1.75rem; font-size: 1.1rem; }
.article ul { padding-left: 1.5rem; margin-bottom: 1em; }
.article li { margin-bottom: 0.4rem; }
.article p, .article li { color: var(--ink-soft); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 4rem) 0 1.5rem;
  margin-top: 3rem;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.site-footer h4 {
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.site-footer .brand {
  color: var(--cream);
  display: inline-block;
  margin-bottom: 0.75rem;
}
.site-footer p, .site-footer a { color: rgba(250, 246, 240, 0.75); font-size: 0.92rem; }
.site-footer a:hover { color: var(--terracotta); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.55);
}

@media (max-width: 820px) {
  .site-footer .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .site-footer .container { grid-template-columns: 1fr; }
}

/* ---------- Message succès (post-form) ---------- */

.success-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 3rem auto;
}
.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* ==========================================================
   Univers Sylvie — composants signature
   ========================================================== */

/* ---------- Un mot de moi (citation encadrée + signature) ---------- */

.word-from-me {
  background: var(--cream-2);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  position: relative;
}

.word-from-me::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
}

.word-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}

.word-mark {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--sage);
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.4;
}

.word-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 2rem;
  letter-spacing: -0.005em;
}

.word-quote em {
  color: var(--terracotta-dark);
  font-style: italic;
}

.signature-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
}

.signature {
  font-family: var(--script);
  font-size: 2.2rem;
  color: var(--ink);
  line-height: 1;
  transform: rotate(-2deg);
  font-weight: 500;
}

.signature-meta {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Timeline (fil rouge chronologie) ---------- */

.timeline {
  position: relative;
  max-width: 960px;
  margin: 3rem auto 0;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 3.75rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--sage) 0 6px, transparent 6px 12px);
  opacity: 0.6;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.timeline-step {
  text-align: center;
  padding: 0 0.5rem;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--sage);
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--cream);
}

.timeline-step:nth-child(2) .timeline-dot {
  border-color: var(--terracotta);
}
.timeline-step:nth-child(3) .timeline-dot {
  background: var(--ink);
  border-color: var(--ink);
}

.timeline-moment {
  font-family: var(--script);
  font-size: 1.25rem;
  color: var(--terracotta-dark);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.timeline-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.timeline-step p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 700px) {
  .timeline::before { display: none; }
  .timeline-track { grid-template-columns: 1fr; gap: 2.5rem; }
  .timeline-step { border-left: 2px solid var(--sage); padding-left: 1.5rem; text-align: left; }
  .timeline-step:nth-child(2) { border-color: var(--terracotta); }
  .timeline-step:nth-child(3) { border-color: var(--ink); }
  .timeline-dot { margin: 0 0 0.75rem; box-shadow: none; }
  .timeline-step p { margin-left: 0; margin-right: 0; }
}

/* ---------- Extraits vivants (fiches livres) ---------- */

.book-excerpt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-soft);
  border-left: 2px solid var(--sage);
  padding: 0.25rem 0 0.25rem 1rem;
  margin: 0.5rem 0 1.25rem;
  line-height: 1.55;
}

/* ---------- Hero adjustments (portrait plus intégré) ---------- */

.hero-portrait-wrap {
  position: relative;
  display: block;
  max-width: 340px;
  justify-self: end;
}
.hero-portrait-wrap::after {
  content: '';
  position: absolute;
  top: 14px; left: 14px; right: -14px; bottom: -14px;
  border: 1.5px solid var(--sage);
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}
.hero-portrait { position: relative; z-index: 1; }

@media (max-width: 820px) {
  .hero-portrait-wrap { justify-self: center; margin: 0 auto 1.5rem; order: -1; }
}

.hero-signature {
  font-family: var(--script);
  font-size: 1.5rem;
  color: var(--terracotta-dark);
  transform: rotate(-2deg);
  display: inline-block;
  margin-top: 0.5rem;
  line-height: 1;
}

/* ---------- Kits block — retint sage/terre ---------- */

.kits-block { background: var(--ink); }
.kit-num { background: var(--terracotta); }

/* ---------- Book tag en sage ---------- */

.book-tag { color: var(--sage); font-weight: 700; }

/* ==========================================================
   Illustrations SVG (silhouettes trait fin)
   ========================================================== */

.animal-mark {
  color: var(--sage);
  opacity: 0.35;
  pointer-events: none;
}

.animal-mark--corner {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  width: 56px;
  height: 56px;
}

.timeline-animal {
  color: var(--sage);
  opacity: 0.55;
  width: 68px;
  height: 44px;
  margin: 0 auto 0.75rem;
  display: block;
}
.timeline-step:nth-child(2) .timeline-animal { color: var(--terracotta-dark); }
.timeline-step:nth-child(3) .timeline-animal { color: var(--ink); opacity: 0.4; }

.book-card { position: relative; overflow: hidden; }

.section-decoration {
  color: var(--sage);
  opacity: 0.25;
  width: 42px;
  height: 42px;
  margin: 0 auto 1rem;
  display: block;
}

/* ==========================================================
   Cachet postal
   ========================================================== */

.stamp {
  display: inline-block;
  padding: 0.6rem 1rem 0.5rem;
  border: 1.5px solid var(--terracotta-dark);
  border-radius: 4px;
  background: transparent;
  color: var(--terracotta-dark);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-3.5deg);
  line-height: 1.3;
  text-align: center;
  box-shadow: inset 0 0 0 3px var(--cream);
  outline: 1.5px dashed var(--terracotta-dark);
  outline-offset: -6px;
}

.stamp small {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-top: 0.15rem;
  opacity: 0.85;
}

/* ==========================================================
   KITS BLOCK — refonte cream + bordures dessinées
   ========================================================== */

.kits-block {
  background: var(--cream-2);
  color: var(--ink);
  position: relative;
}
.kits-block::before, .kits-block::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--sage) 0 8px, transparent 8px 16px);
  opacity: 0.5;
}
.kits-block::before { top: 0; }
.kits-block::after { bottom: 0; }
.kits-block h2 { color: var(--ink); }
.kits-block .lead { color: var(--muted); }
.kits-block .eyebrow { color: var(--sage); }

.kit-card {
  background: var(--cream);
  border: 1.5px dashed var(--sage);
  border-radius: var(--radius);
  color: var(--ink);
  position: relative;
  transition: transform .2s ease;
}
.kit-card:hover { transform: translateY(-3px); }

.kit-card .kit-meta { color: var(--muted); }
.kit-card .kit-target { color: var(--terracotta-dark); font-style: italic; }
.kit-card h3 { color: var(--ink); }

.kit-num {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px var(--terracotta);
}

/* Petit "coin corné" à droite des cartes kit */
.kit-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 22px; height: 22px;
  background: linear-gradient(225deg, var(--cream-2) 0 50%, transparent 50%);
  border-left: 1px dashed var(--sage);
  border-bottom: 1px dashed var(--sage);
  opacity: 0.6;
}

/* ---------- Micro-accents manuscrits ---------- */

.script-accent {
  font-family: var(--script);
  color: var(--terracotta-dark);
  font-size: 1.2rem;
  font-weight: 500;
  display: inline-block;
  transform: rotate(-3deg);
}

.script-arrow::after {
  content: ' ↝';
  font-family: var(--script);
  color: var(--terracotta-dark);
  font-weight: 500;
}

/* Décalage volontaire du portrait */
.hero-portrait-wrap { transform: rotate(-0.8deg); }
.hero-portrait-wrap:hover { transform: rotate(0); transition: transform .4s ease; }

/* ==========================================================
   Form card — état "Bientôt disponible"
   ========================================================== */

.form-card--coming-soon {
  border: 1.5px dashed var(--terracotta);
  position: relative;
  overflow: hidden;
}

.form-card--coming-soon::before {
  content: 'BIENTÔT';
  position: absolute;
  top: 14px; right: -30px;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 0.3rem 2.5rem;
  transform: rotate(35deg);
  box-shadow: var(--shadow-sm);
}

.coming-soon-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--script);
  color: var(--terracotta-dark);
  font-size: 1.15rem;
  margin: 0 0 1rem;
  transform: rotate(-1deg);
}
.coming-soon-note::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--terracotta-dark);
}

.coming-soon-secondary {
  display: block;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  font-style: italic;
}
