:root {
  --primary: #1e3a5f;
  --primary-dark: #0f2d4f;
  --secondary: #00b4d8;
  --bg: #f8fafc;
  --bg-alt: #eef2f6;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
  --border-radius: 12px;
}

* { box-sizing: border-box; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  line-height: 1.6;
}
h1, h2, h3 { color: var(--primary); line-height: 1.25; }
a { color: var(--secondary); }

/* ─── Nav ─────────────────────────────────────────────────────────────── */
.site-nav { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.site-nav-inner { max-width: 1120px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--primary); font-weight: 700; font-size: 17px; }
.brand img { border-radius: 8px; }
.site-nav-links { display: flex; gap: 28px; flex-wrap: wrap; }
.site-nav-links a { color: var(--text); text-decoration: none; font-weight: 500; font-size: 15px; }
.site-nav-links a:hover { color: var(--secondary); }
.btn-nav { padding: 10px 22px !important; font-size: 14px !important; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; border: none; background: transparent; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle-bar { display: block; width: 100%; height: 2px; background: var(--primary); border-radius: 2px; }
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav-links { display: none; flex-direction: column; width: 100%; gap: 4px; padding: 12px 0 4px; order: 3; }
  .site-nav-links.is-open { display: flex; }
}

/* ─── Buttons / pills ────────────────────────────────────────────────── */
.btn { display: inline-block; text-decoration: none; font-weight: 700; border-radius: var(--border-radius); padding: 14px 28px; border: none; cursor: pointer; transition: transform .15s; }
.btn:hover { transform: scale(1.02); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.btn-secondary { background: linear-gradient(135deg, var(--secondary), #0090ad); color: white; }
.btn-lg { font-size: 18px; padding: 18px 40px; }
.pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.15); color: inherit; border-radius: 999px; padding: 6px 16px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.pill-outline { background: rgba(0,180,216,.1); color: var(--secondary); }
.tag-pill { background: rgba(0,180,216,.12); color: var(--secondary); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 4px 12px; border-radius: 999px; }
.tag-pill-inverse { background: rgba(255,255,255,.15); color: white; }

/* ─── Layout helpers ─────────────────────────────────────────────────── */
.section { padding: 72px 20px; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-inner.narrow { max-width: 760px; }
.section-dark { background: var(--primary); color: white; }
.section-dark h2 { color: white; }
.section-alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.section-lead { color: var(--muted); font-size: 18px; max-width: 640px; margin: 12px auto 0; }


/* ─── Stats bar ──────────────────────────────────────────────────────── */
.stats-bar { background: white; padding: 48px 20px; }
.stats-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 32px; text-align: center; }
@media (min-width: 700px) { .stats-inner { grid-template-columns: repeat(3, 1fr); } }
.stat-emoji { font-size: 32px; margin-bottom: 8px; }
.stat-value { font-size: 30px; font-weight: 800; color: var(--primary); }
.stat-label { color: var(--muted); font-weight: 500; }
.stat-source { font-size: 11px; color: #94a3b8; margin-top: 2px; }

/* ─── Card grids ─────────────────────────────────────────────────────── */
.cards-3, .cards-2 { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
@media (min-width: 700px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } .cards-2 { grid-template-columns: 1fr 1fr; } }
.card { background: white; border-radius: var(--border-radius); padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.card-icon { font-size: 30px; margin-bottom: 14px; }
.step { position: relative; padding-top: 8px; }
.step h3 { color: white; }
.step-num { font-size: 44px; font-weight: 900; color: rgba(255,255,255,.25); position: absolute; top: -20px; left: 0; }
.step p { color: rgba(255,255,255,.85); }

/* ─── Author block ───────────────────────────────────────────────────── */
.author-block { display: flex; gap: 20px; background: white; border-radius: var(--border-radius); padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.05); }
.author-avatar { font-size: 36px; flex-shrink: 0; }
.author-avatar-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-name { font-weight: 700; margin: 0; }
.author-title { color: var(--muted); font-size: 13px; margin: 0 0 10px; }

.disclaimer-block { background: white; border-radius: var(--border-radius); padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.05); margin-top: 24px; }
.disclaimer-block p { color: var(--muted); font-size: 14px; margin: 0; }

/* ─── FAQ ─────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.faq-item { background: white; border-radius: var(--border-radius); padding: 4px 24px; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.faq-item summary { padding: 18px 0; font-weight: 700; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--secondary); font-weight: 900; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--muted); padding-bottom: 18px; margin: 0; }
.cta-emoji { font-size: 48px; margin-bottom: 12px; }

/* ─── Blog ───────────────────────────────────────────────────────────── */
.blog-list { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 700px) { .blog-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .blog-list { grid-template-columns: repeat(3, 1fr); } }
.blog-list .blog-card { display: flex; flex-direction: column; }
.blog-card { background: white; border-radius: var(--border-radius); padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.06); text-decoration: none; color: inherit; display: block; overflow: hidden; }
.blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.blog-card-image { width: calc(100% + 48px); margin: -24px -24px 20px; max-width: none; height: 220px; object-fit: cover; display: block; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-card h2, .blog-card h3 { margin: 0 0 8px; }
.blog-card p { color: var(--muted); margin: 0; }
.blog-card-link { display: inline-block; margin-top: 12px; color: var(--secondary); font-weight: 600; font-size: 14px; }
.article-hero-image { width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--border-radius); margin-bottom: 28px; }
.article-excerpt { font-size: 18px; color: var(--muted); border-left: 4px solid var(--secondary); padding-left: 18px; font-style: italic; margin-bottom: 32px; }
.article-source { font-size: 12px; color: #94a3b8; border-top: 1px solid var(--border); padding-top: 16px; margin-top: 32px; }
.prose-blog h2 { font-size: 24px; margin-top: 36px; }
.prose-blog h3 { font-size: 19px; margin-top: 28px; }
.prose-blog p { color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.prose-blog ul, .prose-blog ol { padding-left: 22px; margin-bottom: 20px; }
.prose-blog li { margin-bottom: 8px; }
.prose-blog strong { color: var(--primary); }
.prose-blog blockquote { border-left: 4px solid var(--secondary); padding-left: 16px; font-style: italic; color: var(--muted); margin: 24px 0; }
.prose-blog img { max-width: 100%; height: auto; display: block; border-radius: var(--border-radius); margin: 24px 0; }

/* ─── Footer ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--bg-alt); padding: 48px 24px; margin-top: 40px; }
.site-footer-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 700px) { .site-footer-inner { grid-template-columns: 1fr 1fr; } }
.footer-brand { color: var(--primary); font-weight: 700; text-decoration: none; display: block; margin-bottom: 8px; }
.site-footer p { color: var(--muted); font-size: 13px; margin: 4px 0; }
.footer-note { max-width: 420px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 700px) { .footer-links { align-items: flex-end; } }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 500; }
.footer-links a:hover { color: var(--primary); }

/* ─── Pages statiques (contact, mentions, etc.) ──────────────────────── */
.page-wrap { max-width: 720px; margin: 0 auto; padding: 48px 20px; }

.contact-form { display: flex; flex-direction: column; gap: 6px; margin: 24px 0; }
.contact-form label { font-weight: 600; font-size: 14px; margin-top: 10px; }
.contact-form input, .contact-form textarea {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--border-radius);
  font-family: inherit; font-size: 15px; resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--secondary); }
.contact-form button { align-self: flex-start; margin-top: 8px; }
.form-success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; border-radius: var(--border-radius); padding: 16px 20px; }
.form-error { color: #dc2626; font-size: 14px; margin: 4px 0 0; }

/* === BEGIN thème généré (Codex, --apply-theme) === */
.hero {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at 12% 14%, color-mix(in srgb, var(--secondary) 10%, white) 0, transparent 20%),
    radial-gradient(circle at 85% 10%, color-mix(in srgb, var(--primary) 8%, white) 0, transparent 18%),
    radial-gradient(circle at 88% 78%, color-mix(in srgb, var(--secondary) 8%, white) 0, transparent 20%),
    linear-gradient(180deg, color-mix(in srgb, var(--secondary) 4%, white) 0%, #fffdf8 42%, #fff9f2 100%);
  border-radius: calc(var(--border-radius) * 2);
  box-shadow:
    0 24px 70px rgba(25, 35, 45, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: 320px;
  height: 320px;
  left: -120px;
  bottom: -140px;
  background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--secondary) 10%, white), transparent 72%);
}

.hero::after {
  width: 280px;
  height: 280px;
  right: -90px;
  top: -120px;
  background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--primary) 10%, white), transparent 72%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1540px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  min-height: min(760px, 72vh);
}

.hero-copy {
  position: relative;
  padding: clamp(16px, 1.8vw, 28px) 0;
  max-width: 760px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow:
    44px 0 0 color-mix(in srgb, var(--primary) 85%, white),
    88px 0 0 color-mix(in srgb, var(--primary) 70%, white),
    0 44px 0 color-mix(in srgb, var(--primary) 75%, white),
    44px 44px 0 color-mix(in srgb, var(--primary) 60%, white),
    88px 44px 0 color-mix(in srgb, var(--primary) 45%, white);
  opacity: 0.12;
}

.hero-copy h1 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(3rem, 5.8vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 800;
  text-wrap: balance;
  max-width: 11ch;
}

.hero-actions {
  margin-top: clamp(26px, 3vw, 40px);
}

.hero .btn,
.hero .btn.btn-secondary,
.hero .btn.btn-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), color-mix(in srgb, var(--secondary) 78%, white));
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 14px 28px color-mix(in srgb, var(--secondary) 28%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero .btn:hover,
.hero .btn:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.02);
  box-shadow:
    0 18px 34px color-mix(in srgb, var(--secondary) 34%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.hero-visual {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto 10% 4% 12%;
  height: 20px;
  border-radius: 999px;
  background: rgba(37, 28, 16, 0.08);
  filter: blur(18px);
  z-index: 0;
}

.hero-visual-card {
  position: relative;
  width: min(100%, 760px);
  height: clamp(440px, 35vw, 580px);
}

.hero-blob {
  position: absolute;
  bottom: 12%;
  border-radius: 38px 120px 34px 34px;
}

.hero-blob-left {
  left: 4%;
  width: 34%;
  height: 36%;
  background: linear-gradient(180deg, color-mix(in srgb, var(--secondary) 92%, white), var(--secondary));
  border-top-left-radius: 110px;
  border-top-right-radius: 90px;
  border-bottom-right-radius: 16px;
}

.hero-blob-right {
  right: 3%;
  width: 38%;
  height: 44%;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-top-left-radius: 120px;
  border-top-right-radius: 90px;
  border-bottom-left-radius: 18px;
}

.hero-sun {
  position: absolute;
  top: 6%;
  left: 52%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--secondary) 12%, white), color-mix(in srgb, var(--secondary) 18%, white));
  opacity: 0.72;
}

.hero-dots {
  position: absolute;
  top: 16%;
  left: 30%;
  width: 90px;
  height: 90px;
  opacity: 0.18;
  background-image: radial-gradient(var(--primary) 0 4px, transparent 5px);
  background-size: 30px 30px;
}

.hero-bowl {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: 54%;
  height: 34%;
  border-radius: 0 0 160px 160px / 0 0 110px 110px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 64% 48%, rgba(215, 191, 160, 0.2) 0 2px, transparent 3px),
    linear-gradient(180deg, #fffdf8 0%, #f7eee2 100%);
  border: 1px solid rgba(212, 195, 171, 0.48);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.9),
    0 18px 30px rgba(83, 63, 37, 0.12);
  z-index: 3;
}

.hero-bowl::before {
  content: "";
  position: absolute;
  inset: 8% 3% auto;
  height: 14%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(114, 89, 62, 0.18), rgba(255, 255, 255, 0));
}

.hero-bowl::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -16px;
  height: 26px;
  border-radius: 999px;
  background: rgba(73, 55, 33, 0.1);
  filter: blur(8px);
}

.hero-ingredient {
  position: absolute;
  z-index: 2;
}

.hero-avocado {
  left: 55%;
  bottom: 31%;
  width: 18%;
  height: 34%;
  border-radius: 55% 55% 48% 48% / 44% 44% 58% 58%;
  background: linear-gradient(180deg, #f6efb4 0%, #d9d789 58%, #9bbb5b 100%);
  border: 5px solid #58774a;
  transform: rotate(3deg);
}

.hero-avocado::before {
  content: "";
  position: absolute;
  inset: 14% 18% 18%;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff7cb, #d9e29f);
}

.hero-avocado::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 45%;
  width: 28%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #8d5835 0%, #714221 72%, #5b3418 100%);
  transform: translate(-50%, -50%);
  box-shadow: inset -4px -6px 0 rgba(255, 255, 255, 0.12);
}

.hero-lemon {
  left: 45%;
  bottom: 23%;
  width: 13%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0 14%, transparent 15%),
    conic-gradient(from 0deg, #ffd95a 0 14%, #fff4c2 14% 16%, #ffd95a 16% 30%, #fff4c2 30% 32%, #ffd95a 32% 46%, #fff4c2 46% 48%, #ffd95a 48% 62%, #fff4c2 62% 64%, #ffd95a 64% 78%, #fff4c2 78% 80%, #ffd95a 80% 94%, #fff4c2 94% 96%, #ffd95a 96% 100%);
  border: 6px solid #f8c53c;
  z-index: 4;
}

.hero-cup {
  position: absolute;
  left: 22%;
  bottom: 11%;
  width: 14%;
  height: 11%;
  border-radius: 18px 18px 28px 28px;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2);
  z-index: 4;
}

.hero-cup::before {
  content: "";
  position: absolute;
  inset: 10% 12% auto;
  height: 34%;
  border-radius: 999px;
  background: linear-gradient(180deg, #e6d5ac, #c9ac74);
}

.hero-cup::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 70%;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(76, 58, 35, 0.12);
  filter: blur(4px);
}

.hero-leaf {
  position: absolute;
  border-radius: 80% 20% 80% 20% / 80% 20% 80% 20%;
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 60%, white), color-mix(in srgb, var(--primary) 42%, #92b36d));
  transform-origin: bottom center;
  opacity: 0.74;
}

.hero-leaf::after {
  content: "";
  position: absolute;
  left: 48%;
  top: 10%;
  bottom: 10%;
  width: 2px;
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(8deg);
}

.hero-leaf-1 { width: 16%; height: 33%; left: 38%; bottom: 32%; transform: rotate(-24deg); z-index: 2; }
.hero-leaf-2 { width: 14%; height: 28%; left: 31%; bottom: 29%; transform: rotate(-46deg); z-index: 2; }
.hero-leaf-3 { width: 18%; height: 39%; left: 43%; bottom: 44%; transform: rotate(-4deg); z-index: 1; }
.hero-leaf-4 { width: 13%; height: 33%; right: 16%; bottom: 30%; transform: rotate(38deg); z-index: 1; }
.hero-leaf-5 { width: 12%; height: 25%; right: 8%; bottom: 17%; transform: rotate(62deg); z-index: 1; }
.hero-leaf-6 { width: 10%; height: 22%; right: 24%; bottom: 52%; transform: rotate(14deg); z-index: 1; }

.hero-sprig {
  position: absolute;
  right: 19%;
  bottom: 30%;
  width: 18%;
  height: 54%;
  z-index: 2;
}

.hero-sprig::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2%;
  bottom: 3%;
  width: 3px;
  background: color-mix(in srgb, var(--primary) 40%, #84a360);
  transform: rotate(12deg);
  border-radius: 999px;
}

.hero-sprig span {
  position: absolute;
  display: block;
  width: 42%;
  height: 16%;
  border-radius: 80% 20% 80% 20% / 80% 20% 80% 20%;
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 46%, white), color-mix(in srgb, var(--primary) 30%, #90b16b));
}

.hero-sprig span:nth-child(1) { left: 3%; top: 2%; transform: rotate(-38deg); }
.hero-sprig span:nth-child(2) { right: 0; top: 14%; transform: rotate(28deg); }
.hero-sprig span:nth-child(3) { left: 8%; top: 30%; transform: rotate(-26deg); }
.hero-sprig span:nth-child(4) { right: 4%; top: 44%; transform: rotate(32deg); }
.hero-sprig span:nth-child(5) { left: 14%; top: 60%; transform: rotate(-24deg); }
.hero-sprig span:nth-child(6) { right: 9%; top: 76%; transform: rotate(36deg); }

@media (max-width: 640px) {
  .hero {
    padding: 18px 14px 24px;
    border-radius: var(--border-radius);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .hero-copy {
    order: 2;
    padding: 4px 2px 0;
    max-width: none;
    text-align: left;
  }

  .hero-copy::before {
    left: auto;
    right: 6px;
    top: -6px;
    transform: scale(0.72);
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.05em;
    max-width: 12ch;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero .btn,
  .hero .btn.btn-secondary,
  .hero .btn.btn-lg {
    width: 100%;
    min-height: 56px;
    font-size: 1.05rem;
    padding: 0 20px;
  }

  .hero-visual {
    order: 1;
    min-height: 270px;
  }

  .hero-visual-card {
    height: 270px;
    width: 100%;
  }

  .hero-sun {
    left: 50%;
    width: 32%;
  }

  .hero-blob-left {
    left: 2%;
    width: 40%;
    height: 33%;
  }

  .hero-blob-right {
    right: 0;
    width: 42%;
    height: 37%;
  }

  .hero-bowl {
    width: 63%;
    height: 33%;
    bottom: 8%;
  }

  .hero-cup {
    left: 15%;
    width: 16%;
    height: 10%;
  }

  .hero-dots {
    left: 8%;
    top: 8%;
    transform: scale(0.72);
  }

  .hero-sprig {
    right: 10%;
    width: 20%;
    height: 50%;
  }
}
/* === END thème généré (Codex) === */

/* ─── CTA capture email (fin d'article, cta_variants.py type="email_capture") ────────── */
.cta-email-form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 24px auto 0; max-width: 480px; }
.cta-email-form input[type="email"] {
  flex: 1 1 220px; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--border-radius);
  font-family: inherit; font-size: 15px;
}
.cta-email-form input[type="email"]:focus { outline: none; border-color: var(--secondary); }
