/* ============================================================
   Arbre Blanc - child theme styles (PHP/CSS port of the Claude Design proto)
   ============================================================ */

:root {
  --ab-bg:        #F2EAD7;
  --ab-bg-warm:   #EAE0C8;
  --ab-ink:       #6B4226;
  --ab-primary:   #2D3B2D;
  --ab-accent-1:  #8C2B1F;
  --ab-accent-2:  #D9A441;
  --ab-line:      #6B4226;

  --ab-font-display: "Libre Caslon Text", Georgia, "Times New Roman", serif;
  --ab-font-body:    "DM Sans", system-ui, -apple-system, sans-serif;
  --ab-font-script:  "Caveat", "Brush Script MT", cursive;
  --ab-font-mono:    "JetBrains Mono", "Courier New", monospace;

  --ab-max-w: 1200px;
  --ab-max-read: 700px;
}

/* ---------- Anti-overflow + GP container kill ---------- */
html, body { max-width: 100vw; overflow-x: hidden; }
body.arbre-blanc { background: var(--ab-bg); color: var(--ab-ink); font-family: var(--ab-font-body); font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body.arbre-blanc img, body.arbre-blanc svg, body.arbre-blanc iframe, body.arbre-blanc video { max-width: 100%; height: auto; }
body.arbre-blanc p, body.arbre-blanc h1, body.arbre-blanc h2, body.arbre-blanc h3, body.arbre-blanc h4, body.arbre-blanc li, body.arbre-blanc span, body.arbre-blanc a { word-wrap: break-word; overflow-wrap: break-word; }

body.arbre-blanc #page.site, body.arbre-blanc #page.grid-container { max-width: 100% !important; padding: 0 !important; }
body.arbre-blanc #content.site-content { display: block !important; width: 100% !important; max-width: 100% !important; padding: 0 !important; margin: 0 !important; }
body.arbre-blanc .widget-area, body.arbre-blanc .sidebar { display: none !important; }
body.arbre-blanc main#main { padding: 0 !important; }
body.arbre-blanc .inside-article { padding: 0 !important; background: transparent !important; box-shadow: none !important; border: 0 !important; }
body.arbre-blanc .entry-header, body.arbre-blanc .post-image { display: none !important; }
body.arbre-blanc #comments, body.arbre-blanc .comments-area, body.arbre-blanc #respond { display: none !important; }
body.arbre-blanc .ez-toc-v2_0_72, body.arbre-blanc #ez-toc-container { display: none !important; }

body.arbre-blanc h1, body.arbre-blanc h2, body.arbre-blanc h3, body.arbre-blanc h4, body.arbre-blanc h5, body.arbre-blanc h6 {
  font-family: var(--ab-font-display);
  font-weight: 400;
  color: var(--ab-primary);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.005em;
  text-transform: none;
}
body.arbre-blanc p { margin: 0 0 1em; }
body.arbre-blanc a { color: inherit; text-decoration: none; }

/* Force em to inherit font props from its parent (some plugins / GP customizer
   may apply cursive or oversized em styles otherwise). */
body.arbre-blanc em,
body.arbre-blanc h1 em, body.arbre-blanc h2 em, body.arbre-blanc h3 em,
body.arbre-blanc h4 em, body.arbre-blanc h5 em, body.arbre-blanc h6 em {
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
}

/* Hide GP default footer credits / site-info as a fallback safety net
   (we already remove the action, but if a hook fails we still hide the wrapper). */
body.arbre-blanc .site-info,
body.arbre-blanc .footer-bar,
body.arbre-blanc .footer-widgets,
body.arbre-blanc footer.site-info,
body.arbre-blanc #footer-bar,
body.arbre-blanc #site-footer .inside-site-info {
  display: none !important;
}
/* Hide GP default header masthead as a fallback */
body.arbre-blanc #masthead.site-header,
body.arbre-blanc header#masthead {
  display: none !important;
}

/* Neutralize GP outer footer wrapper styles so our custom footer fills cleanly */
body.arbre-blanc .site-footer:not(.ab-site-footer) {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.arbre-blanc .site-footer > .footer-widgets,
body.arbre-blanc .site-footer > .footer-bar,
body.arbre-blanc .site-footer > .site-info {
  display: none !important;
}

body.arbre-blanc ::selection { background: var(--ab-accent-2); color: var(--ab-primary); }

/* ---------- Container ---------- */
.ab-container { max-width: var(--ab-max-w); margin: 0 auto; padding: 0 32px; }

/* ---------- Em colors ---------- */
.ab-em-brick { color: var(--ab-accent-1); font-style: italic; }
.ab-em-safran { color: var(--ab-accent-2); font-style: italic; }
.arbre-blanc .ab-script { font-family: var(--ab-font-script); font-size: 26px; color: var(--ab-accent-1); display: inline-block; transform: rotate(-1deg); line-height: 1.1; font-weight: 600; }
.arbre-blanc .ab-script--safran { color: var(--ab-accent-2); }
.arbre-blanc .ab-script--small { font-size: 22px; }

/* ---------- Eyebrow / kicker / meta ---------- */
.ab-kicker, .ab-meta, .ab-eyebrow {
  font-family: var(--ab-font-body); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ab-ink); font-weight: 500;
}
.ab-section-kicker { display: block; font-family: var(--ab-font-body); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ab-accent-1); margin-bottom: 14px; }
.ab-section-title { font-family: var(--ab-font-display); font-size: 42px; margin-bottom: 12px; line-height: 1.1; }
.ab-section-title em { color: var(--ab-accent-2); font-style: italic; }

/* ---------- Badges ---------- */
.ab-badge {
  display: inline-block;
  border: 1.5px solid var(--ab-accent-1);
  border-radius: 2px;
  padding: 6px 12px;
  background: var(--ab-bg);
  color: var(--ab-accent-1);
  font-family: var(--ab-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}
.ab-badge--filled { background: var(--ab-accent-1); color: var(--ab-bg); }
.ab-badge--olive  { border-color: var(--ab-primary); color: var(--ab-primary); }
.ab-badge--ink    { border-color: var(--ab-ink); color: var(--ab-ink); }
.ab-badge--safran { border-color: var(--ab-accent-2); color: var(--ab-accent-2); }

/* ---------- Buttons ---------- */
.ab-btn {
  display: inline-block; background: var(--ab-primary); color: var(--ab-bg); border: none; border-radius: 2px;
  padding: 14px 28px; font-family: var(--ab-font-body); font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 13px; cursor: pointer; transition: background 180ms ease;
  text-decoration: none;
}
.ab-btn:hover { background: var(--ab-accent-1); }
.ab-btn--ghost { background: transparent; color: var(--ab-primary); border: 1.5px solid var(--ab-primary); padding: 12.5px 26.5px; }
.ab-btn--ghost:hover { background: var(--ab-primary); color: var(--ab-bg); }

/* ============================================================
   HEADER
   ============================================================ */
.ab-site-header { background: var(--ab-primary); color: var(--ab-bg); position: relative; z-index: 50; }
.ab-site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; max-width: var(--ab-max-w); margin: 0 auto; gap: 32px;
}
/* Typographic logo - no backdrop, fits cleanly against the dark green header.
   SVG monogram in safran + wordmark in cream + tagline in muted cream. */
.ab-logo {
  display: inline-flex; align-items: center; gap: 14px;
  cursor: pointer; flex-shrink: 0; text-decoration: none;
  color: var(--ab-bg);
}
.ab-logo__mark {
  width: 44px; height: 44px; flex-shrink: 0;
  color: var(--ab-accent-2);
  transition: transform 220ms ease;
}
.ab-logo:hover .ab-logo__mark { transform: rotate(-4deg) scale(1.04); }
.ab-logo__text { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.ab-logo__name {
  font-family: var(--ab-font-display);
  font-size: 28px; letter-spacing: 0.01em; color: var(--ab-bg);
  font-weight: 400;
}
.ab-logo__leaf { color: var(--ab-accent-2); font-style: italic; }
.ab-logo__tag {
  font-family: var(--ab-font-body);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ab-bg); opacity: 0.6; margin-top: 4px;
}
.ab-nav { display: flex; gap: 28px; font-family: var(--ab-font-body); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.ab-nav a { color: var(--ab-bg); opacity: 0.85; cursor: pointer; border-bottom: 1px solid transparent; padding-bottom: 2px; transition: opacity 150ms, border-color 150ms; white-space: nowrap; }
.ab-nav a:hover, .ab-nav a.is-active { opacity: 1; border-color: var(--ab-accent-2); }
.ab-burger { display: none; background: transparent; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.ab-burger span { width: 24px; height: 1.5px; background: var(--ab-bg); display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.ab-site-footer { background: var(--ab-primary); color: var(--ab-bg); padding: 72px 0 32px; margin-top: 0; position: relative; }
.ab-site-footer__inner {
  max-width: var(--ab-max-w); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 64px; align-items: start;
}
.ab-footer-col { min-width: 0; }
.ab-footer-col--brand { padding-right: 24px; }
body.arbre-blanc .ab-site-footer h4 {
  color: var(--ab-bg) !important;
  font-size: 13px; margin: 0 0 22px;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-family: var(--ab-font-body) !important; font-weight: 500;
  padding-bottom: 12px; border-bottom: 1px solid rgba(242, 234, 215, 0.18);
}
.ab-site-footer p, .ab-site-footer a, .ab-site-footer li { color: var(--ab-bg); opacity: 0.78; font-size: 14px; line-height: 1.75; }
.ab-site-footer .ab-footer-col--brand p { max-width: 360px; margin: 16px 0 18px; opacity: 0.82; }
.ab-site-footer ul { list-style: none; padding: 0; margin: 0; }
.ab-site-footer ul li { margin-bottom: 10px; }
.ab-site-footer ul li a { transition: opacity 150ms, color 150ms; }
.ab-site-footer a:hover { opacity: 1; color: var(--ab-accent-2); }
.ab-site-footer .ab-script { display: inline-block; margin-top: 8px; font-size: 24px; }
.ab-site-footer .ab-logo__text {
  color: var(--ab-bg) !important;
  font-family: var(--ab-font-display); font-size: 32px;
  letter-spacing: 0.02em; display: block; margin-bottom: 4px;
}
.ab-footer-bottom {
  max-width: var(--ab-max-w); margin: 56px auto 0; padding: 24px 32px 0;
  border-top: 1px solid rgba(242, 234, 215, 0.18);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ab-bg); opacity: 0.55;
  flex-wrap: wrap; gap: 12px;
}

/* ============================================================
   HOMEPAGE
   ============================================================ */
.ab-hero { padding: 32px 0 80px; }
.ab-hero__stage { position: relative; width: 100%; margin-bottom: 72px; overflow: hidden; }
.ab-hero__photo { width: 100%; height: 640px; object-fit: cover; display: block; }
.ab-hero__stage::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(70% 55% at 50% 55%, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 60%, transparent 100%),
    linear-gradient(180deg, rgba(45, 59, 45, 0.45) 0%, rgba(45, 59, 45, 0.32) 35%, rgba(45, 59, 45, 0.78) 100%);
}
.ab-hero__lede {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 60px 32px; max-width: 900px; margin: 0 auto; left: 0; right: 0;
}
.ab-hero__lede .ab-section-kicker { color: var(--ab-bg); opacity: 0.95; margin-bottom: 18px; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6); }
body.arbre-blanc .ab-hero__lede h1 { font-size: 78px; line-height: 1.05; margin-bottom: 22px; color: var(--ab-bg) !important; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0, 0, 0, 0.7); font-family: var(--ab-font-display); font-weight: 400; }
body.arbre-blanc .ab-hero__lede h1 em { color: var(--ab-accent-2) !important; font-style: italic; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0, 0, 0, 0.7); }
.ab-hero__lede p { font-size: 19px; color: var(--ab-bg); opacity: 0.95; margin: 0 auto; max-width: 580px; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7); }

.ab-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; text-align: center; }
.ab-pillar__icon { font-size: 32px; margin-bottom: 14px; display: block; }
.ab-pillar h3 { font-size: 24px; margin: 0 0 10px; font-family: var(--ab-font-display); color: var(--ab-primary); }
.ab-pillar h3 em { color: var(--ab-accent-1); font-style: italic; }
.ab-pillar p { font-size: 15px; color: var(--ab-ink); opacity: 0.85; max-width: 280px; margin: 0 auto; line-height: 1.55; }

/* Founder quote */
.ab-founder { background: var(--ab-bg-warm); padding: 110px 0; }
.ab-founder__inner { max-width: 1080px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center; }
.ab-founder__quote { font-family: var(--ab-font-display); font-style: italic; font-size: 38px; line-height: 1.25; color: var(--ab-accent-1); margin: 0 0 28px; }
.ab-founder__quote::before { content: "« "; color: var(--ab-accent-2); font-style: normal; }
.ab-founder__quote::after  { content: " »"; color: var(--ab-accent-2); font-style: normal; }
.ab-founder__signature { margin-bottom: 28px; }
.ab-founder__bio { font-size: 16px; color: var(--ab-ink); line-height: 1.7; max-width: 480px; }
.ab-founder__portrait { width: 100%; aspect-ratio: 1 / 1; position: relative; overflow: hidden; }
.ab-founder__portrait img { position: absolute; inset: 0; width: 100% !important; height: 100% !important; object-fit: cover; display: block; }

/* Narrative band */
.ab-narrative { padding: 110px 0; text-align: center; }
.ab-narrative__text { font-family: var(--ab-font-display); font-style: italic; font-size: 32px; line-height: 1.45; color: var(--ab-primary); max-width: 820px; margin: 0 auto 28px; }
.ab-narrative__text em { color: var(--ab-accent-1); font-style: italic; }
.ab-narrative__sig { display: block; margin-top: 8px; }

/* Articles grid */
.ab-articles { background: var(--ab-bg-warm); padding: 100px 0 110px; }
.ab-articles__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 48px; border-bottom: 1px solid rgba(107, 66, 38, 0.25); padding-bottom: 20px; gap: 24px; flex-wrap: wrap; }
.ab-articles__head h2 { font-size: 38px; font-family: var(--ab-font-display); color: var(--ab-primary); margin: 0; }
.ab-articles__head h2 em { color: var(--ab-accent-1); font-style: italic; }
.ab-articles__link { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ab-accent-1); border-bottom: 1px solid var(--ab-accent-1); padding-bottom: 2px; cursor: pointer; }

.ab-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.ab-card {
  cursor: pointer; display: flex; flex-direction: column;
  background: var(--ab-bg);
  border: 1.5px solid var(--ab-ink);
  border-radius: 3px; overflow: hidden;
  box-shadow: 0 1px 0 rgba(107, 66, 38, 0.08);
  transition: border-color 200ms ease, transform 220ms ease, box-shadow 220ms ease;
  text-decoration: none;
}
.ab-card:hover {
  border-color: var(--ab-accent-1);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(45, 59, 45, 0.12), 0 0 0 1px var(--ab-accent-1) inset;
}
.ab-card__img { width: 100%; aspect-ratio: 4/3; margin: 0; border-bottom: 1.5px solid var(--ab-ink); position: relative; overflow: hidden; background: var(--ab-bg-warm); }
.ab-card__img img { position: absolute; inset: 0; width: 100% !important; height: 100% !important; object-fit: cover; display: block; }
.ab-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.ab-card .ab-badge { margin-bottom: 14px; align-self: flex-start; }
.ab-card__title { font-family: var(--ab-font-display); font-size: 22px; line-height: 1.2; color: var(--ab-primary); margin: 0 0 14px; transition: color 180ms; font-weight: 400; }
.ab-card:hover .ab-card__title { color: var(--ab-accent-1); }
.ab-card__title em { color: var(--ab-accent-1); font-style: italic; }
.ab-card__meta { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ab-ink); opacity: 0.75; margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(107, 66, 38, 0.28); }
.ab-card__meta .dot { margin: 0 8px; opacity: 0.5; }

.ab-articles .ab-card, .ab-related .ab-card { background: var(--ab-bg); }

/* Rubriques */
.ab-rubriques { padding: 110px 0; }
.ab-rubriques__intro { max-width: 520px; color: var(--ab-ink); opacity: 0.85; margin: 0 0 12px; line-height: 1.6; }
.ab-rubriques__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
.ab-rub-card {
  position: relative; cursor: pointer;
  border: 1.5px solid var(--ab-ink);
  border-radius: 3px;
  background: var(--ab-bg-warm);
  box-shadow: 0 1px 0 rgba(107, 66, 38, 0.08);
  transition: transform 220ms ease, border-color 200ms ease, box-shadow 220ms ease;
  text-decoration: none; display: block; overflow: hidden;
}
.ab-rub-card:hover {
  transform: translateY(-3px);
  border-color: var(--ab-accent-1);
  box-shadow: 0 6px 18px rgba(45, 59, 45, 0.14), 0 0 0 1px var(--ab-accent-1) inset;
}
.ab-rub-card__img { width: 100%; height: 240px; position: relative; overflow: hidden; background: var(--ab-bg); border-bottom: 1.5px solid var(--ab-ink); }
.ab-rub-card__img img { position: absolute; inset: 0; width: 100% !important; height: 100% !important; object-fit: cover; display: block; }
.ab-rub-card__body { padding: 28px 32px 32px; }
.ab-rub-card__icon { font-size: 22px; margin-bottom: 8px; display: block; }
.ab-rub-card h3 { font-family: var(--ab-font-display); font-size: 28px; margin: 0 0 10px; font-weight: 400; color: var(--ab-primary); }
.ab-rub-card h3 em { color: var(--ab-accent-1); font-style: italic; }
.ab-rub-card p { font-size: 15px; color: var(--ab-ink); opacity: 0.85; max-width: 440px; margin: 0; line-height: 1.55; }
.ab-rub-card--feature { grid-column: span 2; }
.ab-rub-card--feature .ab-rub-card__img { height: 320px; }

/* Newsletter */
.ab-newsletter { background: var(--ab-primary); color: var(--ab-bg); padding: 90px 0 100px; text-align: center; }
body.arbre-blanc .ab-newsletter h2 { color: var(--ab-bg) !important; font-size: 40px; margin: 0 0 14px; font-family: var(--ab-font-display) !important; font-weight: 400; line-height: 1.2; }
/* Force em inside newsletter h2 to stay inline italic safran, never cursive — some
   external CSS layer (GP customizer, plugin) was applying script font otherwise. */
body.arbre-blanc .ab-newsletter h2 em {
  font-family: var(--ab-font-display) !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  font-style: italic !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  color: var(--ab-accent-2) !important;
  display: inline !important;
  vertical-align: baseline !important;
}
.ab-newsletter p { opacity: 0.85; font-size: 15px; max-width: 480px; margin: 0 auto 32px; color: var(--ab-bg); }
.ab-newsletter form { display: flex; max-width: 480px; margin: 0 auto; gap: 0; border: 1px solid rgba(242, 234, 215, 0.4); }
.ab-newsletter input { flex: 1; background: transparent; border: 0; padding: 16px 20px; color: var(--ab-bg); font-family: var(--ab-font-body); font-size: 14px; outline: none; min-width: 0; }
.ab-newsletter input::placeholder { color: rgba(242, 234, 215, 0.55); }
.ab-newsletter button { background: var(--ab-accent-2); color: var(--ab-primary); border: 0; padding: 0 28px; font-family: var(--ab-font-body); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; cursor: pointer; transition: background 180ms; white-space: nowrap; }
.ab-newsletter button:hover { background: var(--ab-bg); }
.ab-newsletter__assur { margin-top: 18px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.55; }

/* ============================================================
   LE CHEMIN DE PIERRE - slider centré, fond vert romarin
   pour rupture nette avec la section founder (cream warm) au-dessus.
   ============================================================ */
.ab-pierre-path {
  background: var(--ab-primary);
  color: var(--ab-bg);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* subtle decorative texture */
.ab-pierre-path::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(70% 50% at 10% 0%, rgba(242, 234, 215, 0.06) 0%, transparent 60%),
    radial-gradient(60% 50% at 100% 100%, rgba(217, 164, 65, 0.08) 0%, transparent 60%);
}

.ab-pierre-path__head { text-align: center; max-width: 720px; margin: 0 auto 36px; padding: 0 20px; }
body.arbre-blanc .ab-pierre-path__head .ab-section-kicker { color: var(--ab-accent-2) !important; }
body.arbre-blanc .ab-pierre-path__head h2 { color: var(--ab-bg) !important; margin-bottom: 16px; }
body.arbre-blanc .ab-pierre-path__head h2 em { color: var(--ab-accent-2) !important; font-style: italic; }
.ab-pierre-path__intro { color: var(--ab-bg); opacity: 0.82; max-width: 580px; margin: 0 auto; line-height: 1.65; }

/* Pill nav on dark green */
.ab-pierre-path__nav {
  display: flex; justify-content: center; gap: 4px; flex-wrap: wrap;
  margin: 0 auto 44px; padding: 5px;
  border: 1px solid rgba(242, 234, 215, 0.28);
  background: rgba(0, 0, 0, 0.14);
  width: fit-content;
  border-radius: 4px;
}
.ab-pierre-path__pill {
  background: transparent; color: var(--ab-bg);
  border: 0; padding: 10px 22px;
  font-family: var(--ab-font-mono);
  font-size: 13px; letter-spacing: 0.08em;
  cursor: pointer; transition: background 200ms, color 200ms;
  border-radius: 2px; white-space: nowrap;
  opacity: 0.65;
}
.ab-pierre-path__pill:hover { color: var(--ab-accent-2); opacity: 1; }
.ab-pierre-path__pill.is-active {
  background: var(--ab-accent-2); color: var(--ab-primary);
  font-weight: 500; opacity: 1;
}

/* Viewport - JS controls translateX. No native scroll. */
.ab-pierre-path__viewport {
  overflow: hidden;
  width: 100%;
  padding: 12px 0 24px;
  position: relative;
  touch-action: pan-y;
}
.ab-pierre-path__cards {
  list-style: none;
  display: flex; gap: 32px;
  margin: 0; padding: 0;
  transition: transform 600ms cubic-bezier(0.65, 0.05, 0.36, 1);
  will-change: transform;
}

.ab-pierre-card {
  flex: 0 0 min(720px, 92vw);
  background: var(--ab-bg);
  border: 1.5px solid var(--ab-ink);
  border-radius: 3px;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 0;
  overflow: hidden;
  transition: opacity 500ms ease, transform 500ms ease, box-shadow 500ms ease, border-color 500ms ease;
  position: relative;
  opacity: 0.42;
  transform: scale(0.93);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.ab-pierre-card.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: var(--ab-accent-2);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32), 0 0 0 1px var(--ab-accent-2) inset;
}
.ab-pierre-card__img {
  position: relative;
  width: 100%; height: 100%;
  min-height: 360px;
  overflow: hidden;
  background: var(--ab-bg-warm);
  border-right: 1.5px solid var(--ab-ink);
}
.ab-pierre-card__img img {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
  object-fit: cover; display: block;
}
.ab-pierre-card__step {
  position: absolute; top: 16px; left: 16px;
  background: rgba(45, 59, 45, 0.9); color: var(--ab-bg);
  font-family: var(--ab-font-mono); font-size: 11px; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: 2px;
}
.ab-pierre-card__body { padding: 36px 40px 36px; display: flex; flex-direction: column; flex: 1; gap: 4px; min-width: 0; }
.ab-pierre-card__year {
  font-family: var(--ab-font-display); font-size: 64px;
  line-height: 1; color: var(--ab-accent-1); letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.ab-pierre-card__subtitle {
  font-family: var(--ab-font-body); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ab-ink); opacity: 0.7;
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid rgba(107, 66, 38, 0.22);
}
.ab-pierre-card__title {
  font-family: var(--ab-font-display); font-size: 30px;
  font-weight: 400; color: var(--ab-primary);
  margin: 0 0 16px; line-height: 1.15;
}
.ab-pierre-card__text {
  font-family: var(--ab-font-body); font-size: 15px;
  line-height: 1.7; color: var(--ab-ink); opacity: 0.92;
  margin: 0 0 22px;
}
.ab-pierre-card__note {
  margin-top: auto;
  display: inline-block;
  font-size: 24px;
  color: var(--ab-accent-1);
  transform: rotate(-1deg);
  line-height: 1.2;
}

/* Controls (arrows + progress) on dark green */
.ab-pierre-path__controls {
  display: flex; align-items: center; gap: 24px;
  max-width: 480px; margin: 40px auto 0;
}
.ab-pierre-path__arrow {
  width: 52px; height: 52px; flex-shrink: 0;
  border: 1.5px solid rgba(242, 234, 215, 0.5);
  background: transparent;
  color: var(--ab-bg);
  cursor: pointer;
  border-radius: 50%;
  transition: background 180ms, color 180ms, border-color 180ms, transform 180ms;
  display: inline-flex; align-items: center; justify-content: center;
}
.ab-pierre-path__arrow svg { display: block; }
.ab-pierre-path__arrow:hover:not(:disabled) {
  background: var(--ab-accent-2); color: var(--ab-primary); border-color: var(--ab-accent-2);
  transform: scale(1.06);
}
.ab-pierre-path__arrow:disabled { opacity: 0.32; cursor: not-allowed; }
.ab-pierre-path__progress {
  flex: 1; height: 2px; background: rgba(242, 234, 215, 0.25);
  position: relative; overflow: hidden;
}
.ab-pierre-path__progress-bar {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--ab-accent-2);
  width: 20%;
  transition: width 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

/* Tablet/Mobile */
@media (max-width: 900px) {
  .ab-pierre-path { padding: 70px 0 60px; }
  .ab-pierre-card { grid-template-columns: 1fr; flex: 0 0 min(540px, 88vw); }
  .ab-pierre-card__img { min-height: 0; aspect-ratio: 16/10; border-right: 0; border-bottom: 1.5px solid var(--ab-ink); }
  .ab-pierre-card__body { padding: 26px 24px 26px; }
  .ab-pierre-card__year { font-size: 48px; }
  .ab-pierre-card__title { font-size: 24px; }
  .ab-pierre-card__text { font-size: 14.5px; }
  .ab-pierre-path__cards { gap: 18px; }
  .ab-pierre-path__pill { padding: 8px 14px; font-size: 12px; }
}

@media (max-width: 540px) {
  .ab-pierre-path { padding: 56px 0 48px; }
  .ab-pierre-card { flex: 0 0 88vw; max-width: 460px; }
  .ab-pierre-path__cards { gap: 14px; }
  .ab-pierre-card__year { font-size: 40px; }
  .ab-pierre-card__title { font-size: 22px; }
  .ab-pierre-card__body { padding: 22px 22px 24px; }
  .ab-pierre-path__nav { gap: 2px; padding: 4px; }
  .ab-pierre-path__pill { padding: 7px 11px; font-size: 11px; }
  .ab-pierre-path__arrow { width: 44px; height: 44px; }
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.ab-article-head { position: relative; padding: 0; text-align: center; color: var(--ab-bg); isolation: isolate; overflow: hidden; margin-bottom: 80px; }
.ab-article-head__bg { position: absolute; inset: 0; z-index: 0; }
.ab-article-head__bg img { position: absolute; inset: 0; width: 100% !important; height: 100% !important; object-fit: cover; display: block; }
.ab-article-head::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(70% 60% at 50% 50%, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.32) 60%, transparent 100%),
    linear-gradient(180deg, rgba(45, 59, 45, 0.55) 0%, rgba(45, 59, 45, 0.55) 40%, rgba(45, 59, 45, 0.88) 100%);
}
.ab-article-head .ab-container { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 120px; min-height: 620px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.ab-article-head .ab-badge { margin-bottom: 28px; background: rgba(140, 43, 31, 0.95); color: var(--ab-bg); border-color: var(--ab-bg); }
body.arbre-blanc .ab-article-head h1 { font-size: 66px; line-height: 1.06; max-width: 900px; margin: 0 auto 24px; color: var(--ab-bg) !important; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.8); font-family: var(--ab-font-display); font-weight: 400; }
body.arbre-blanc .ab-article-head h1 em { color: var(--ab-accent-2) !important; font-style: italic; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.8); }
.ab-article-head__lede { font-family: var(--ab-font-display); font-style: italic; font-size: 22px; color: var(--ab-bg); opacity: 0.97; max-width: 680px; margin: 0 auto 32px; line-height: 1.5; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.75); }
.ab-article-head__meta { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ab-bg); opacity: 0.92; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75); }
.ab-article-head__meta .dot { margin: 0 12px; }

.ab-article-layout {
  max-width: 1180px; margin: 0 auto; padding: 0 32px 80px;
  display: grid; grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 64px; align-items: start;
}
.ab-toc-aside { position: relative; }
.ab-toc-aside__sticky { position: sticky; top: 32px; padding: 22px 22px 24px; border-left: 2px solid var(--ab-accent-1); background: rgba(234, 224, 200, 0.28); }
.ab-toc-aside__kicker {
  display: block; font-family: var(--ab-font-body); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ab-accent-1);
  margin-bottom: 18px; font-weight: 500;
}
.ab-toc-aside__list { display: flex; flex-direction: column; gap: 12px; }
.ab-toc-aside__list a {
  display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: baseline;
  padding: 6px 0; color: var(--ab-ink); transition: color 180ms, transform 180ms;
  font-family: var(--ab-font-body); font-size: 14px; line-height: 1.45;
  border-bottom: 1px dotted rgba(107, 66, 38, 0.22);
}
.ab-toc-aside__list a:last-child { border-bottom: 0; }
.ab-toc-aside__num {
  font-family: var(--ab-font-mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--ab-accent-1); opacity: 0.8;
}
.ab-toc-aside__text { font-family: var(--ab-font-display); font-size: 15px; }
.ab-toc-aside__list a:hover, .ab-toc-aside__list a.is-active { color: var(--ab-accent-1); transform: translateX(2px); }
.ab-toc-aside__list a.is-active { font-weight: 500; }
.ab-toc-aside__list a.is-active .ab-toc-aside__num { opacity: 1; }

.ab-article-body { max-width: var(--ab-max-read); margin: 0 auto; padding: 0 0 0; font-size: 18px; line-height: 1.75; color: var(--ab-ink); position: relative; }
.ab-article-body p { margin: 0 0 1.4em; }
.ab-article-body > p:first-of-type::first-letter { font-family: var(--ab-font-display); font-size: 64px; float: left; line-height: 1; padding: 6px 12px 0 0; color: var(--ab-accent-1); }
.ab-article-body h2 { font-size: 34px; margin: 56px 0 18px; font-family: var(--ab-font-display); color: var(--ab-primary); font-weight: 400; line-height: 1.2; }
.ab-article-body h2 em { color: var(--ab-accent-2); font-style: italic; }
.ab-article-body h3 { font-size: 24px; margin: 40px 0 12px; font-family: var(--ab-font-display); font-weight: 400; color: var(--ab-primary); }
.ab-article-body h3 em { color: var(--ab-accent-1); font-style: italic; }
.ab-article-body blockquote {
  margin: 50px 0; padding: 36px 20px; text-align: center;
  font-family: var(--ab-font-display); font-style: italic; font-size: 30px; line-height: 1.35;
  color: var(--ab-accent-1); border-top: 1px solid rgba(140, 43, 31, 0.4); border-bottom: 1px solid rgba(140, 43, 31, 0.4);
}
.ab-article-body figure { margin: 48px 0; }
.ab-article-body figure img { width: 100%; height: auto; display: block; }
.ab-article-body figcaption { margin-top: 12px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ab-ink); opacity: 0.65; text-align: center; }
.ab-article-body ul { margin: 24px 0 32px; padding-left: 0; list-style: none; }
.ab-article-body ul li { position: relative; padding-left: 24px; margin-bottom: 10px; }
.ab-article-body ul li::before { content: "▸"; position: absolute; left: 0; color: var(--ab-accent-1); font-size: 0.9em; line-height: 1.7; }
.ab-article-body ol { margin: 24px 0 32px; padding-left: 24px; }
.ab-article-body ol li { margin-bottom: 10px; padding-left: 6px; }
.ab-article-body img { max-width: 100%; height: auto; display: block; margin: 24px 0; border: 1px solid rgba(107, 66, 38, 0.18); }

/* Author bio block */
.ab-author-bio { max-width: 820px; margin: 0 auto 100px; padding: 48px; background: var(--ab-bg-warm); border: 1px solid rgba(107, 66, 38, 0.2); display: grid; grid-template-columns: 130px 1fr; gap: 32px; align-items: center; }
.ab-author-bio__portrait { width: 130px; height: 130px; border-radius: 50%; overflow: hidden; position: relative; }
.ab-author-bio__portrait img { position: absolute; inset: 0; width: 100% !important; height: 100% !important; object-fit: cover; display: block; }
.ab-author-bio h4 { font-family: var(--ab-font-display); font-size: 22px; margin: 0 0 6px; font-weight: 400; color: var(--ab-primary); }
.ab-author-bio p { font-size: 15px; margin-bottom: 8px; line-height: 1.6; }
.ab-author-bio .ab-script { font-size: 24px; }

/* Related */
.ab-related { background: var(--ab-bg-warm); padding: 90px 0 110px; }
.ab-related h2 { font-size: 30px; margin: 0 0 36px; text-align: center; font-family: var(--ab-font-display); color: var(--ab-primary); font-weight: 400; }
.ab-related h2 em { color: var(--ab-accent-1); font-style: italic; }

/* ============================================================
   RUBRIQUE PAGE - riche, narrative, avec décor variable par catégorie
   ============================================================ */
.ab-rub-head {
  position: relative;
  padding: 100px 0 80px;
  border-bottom: 1px solid rgba(107, 66, 38, 0.22);
  overflow: hidden;
  isolation: isolate;
}
.ab-rub-head::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 600px at 90% 10%, color-mix(in srgb, var(--ab-accent-2) 14%, transparent), transparent 60%),
    radial-gradient(700px 500px at 5% 95%, color-mix(in srgb, var(--ab-primary) 12%, transparent), transparent 60%),
    var(--ab-bg);
}
.ab-rub-head__deco {
  position: absolute; top: 28px; right: 4%; z-index: 0;
  font-size: 240px; line-height: 1; opacity: 0.10; pointer-events: none;
  filter: grayscale(0.2);
}
.ab-rub-head__band {
  position: absolute; left: 0; right: 0; bottom: 0; height: 6px; z-index: 1;
  background: linear-gradient(90deg, var(--ab-accent-1) 0, var(--ab-accent-2) 60%, var(--ab-primary) 100%);
}
.ab-rub-head__inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1.25fr 1fr; gap: 70px; align-items: end; }
.ab-rub-head__main { position: relative; }
.ab-rub-head__crumbs { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ab-ink); opacity: 0.7; margin-bottom: 22px; }
.ab-rub-head__crumbs span { color: var(--ab-accent-1); }
.ab-rub-head__crumbs a:hover { color: var(--ab-accent-1); }
.ab-rub-head__kicker { display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 8px; border: 1px solid rgba(107, 66, 38, 0.32); background: rgba(255, 255, 255, 0.45); border-radius: 999px; margin-bottom: 22px; }
.ab-rub-head__icon { font-size: 18px; line-height: 1; }
.ab-rub-head__label { font-family: var(--ab-font-body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ab-ink); }
.ab-rub-head h1 { font-size: 84px; line-height: 1; margin: 0 0 24px; letter-spacing: -0.015em; font-family: var(--ab-font-display); font-weight: 400; color: var(--ab-primary); }
.ab-rub-head h1 em { color: var(--ab-accent-1); font-style: italic; }
.ab-rub-head__side { position: relative; padding-left: 28px; border-left: 2px solid var(--ab-accent-1); }
.ab-rub-head__intro { font-family: var(--ab-font-display); font-style: italic; font-size: 19px; color: var(--ab-ink); line-height: 1.65; margin: 0 0 14px; }
.ab-rub-head__sig { display: inline-block; margin-top: 8px; }
.ab-rub-head__count { margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(107, 66, 38, 0.18); display: flex; align-items: baseline; gap: 12px; }
.ab-rub-head__count strong { font-family: var(--ab-font-display); font-size: 44px; line-height: 1; color: var(--ab-accent-1); font-weight: 400; }
.ab-rub-head__count span { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ab-ink); opacity: 0.7; }

/* Per-category deco color tinting via data-cat */
.ab-rub-head[data-cat="gastronomie-terroir"]::before { background:
    radial-gradient(900px 600px at 90% 10%, color-mix(in srgb, var(--ab-accent-1) 18%, transparent), transparent 60%),
    radial-gradient(700px 500px at 5% 95%, color-mix(in srgb, var(--ab-accent-2) 14%, transparent), transparent 60%),
    var(--ab-bg);
}
.ab-rub-head[data-cat="bio-bien-etre"]::before { background:
    radial-gradient(900px 600px at 90% 10%, color-mix(in srgb, var(--ab-primary) 22%, transparent), transparent 60%),
    radial-gradient(700px 500px at 5% 95%, color-mix(in srgb, var(--ab-accent-2) 12%, transparent), transparent 60%),
    var(--ab-bg);
}
.ab-rub-head[data-cat="ecologie-nature"]::before { background:
    radial-gradient(900px 600px at 90% 10%, color-mix(in srgb, var(--ab-ink) 16%, transparent), transparent 60%),
    radial-gradient(700px 500px at 5% 95%, color-mix(in srgb, var(--ab-primary) 14%, transparent), transparent 60%),
    var(--ab-bg);
}
.ab-rub-head[data-cat="maison-decoration"]::before { background:
    radial-gradient(900px 600px at 90% 10%, color-mix(in srgb, var(--ab-accent-2) 22%, transparent), transparent 60%),
    radial-gradient(700px 500px at 5% 95%, color-mix(in srgb, var(--ab-accent-1) 10%, transparent), transparent 60%),
    var(--ab-bg);
}

.ab-rub-toolbar { padding: 28px 0; border-bottom: 1px solid rgba(107, 66, 38, 0.18); display: flex; justify-content: space-between; align-items: center; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ab-ink); flex-wrap: wrap; gap: 16px; }
.ab-rub-toolbar__filters { display: flex; gap: 24px; flex-wrap: wrap; }
.ab-rub-toolbar__filters span { padding-bottom: 4px; border-bottom: 1px solid transparent; }
.ab-rub-toolbar__filters span.is-active { color: var(--ab-accent-1); border-color: var(--ab-accent-1); }
.ab-rub-toolbar__sort { opacity: 0.7; }

.ab-rub-grid { padding: 60px 0 100px; }
.ab-rub-grid .ab-cards { row-gap: 56px; }

.ab-rub-grid__feature {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 0; margin-bottom: 64px; align-items: stretch;
  border: 1.5px solid var(--ab-ink); border-radius: 3px;
  background: var(--ab-bg);
  box-shadow: 0 1px 0 rgba(107, 66, 38, 0.08);
  transition: border-color 200ms, box-shadow 220ms, transform 220ms;
  text-decoration: none; overflow: hidden;
}
.ab-rub-grid__feature:hover {
  border-color: var(--ab-accent-1);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(45, 59, 45, 0.14), 0 0 0 1px var(--ab-accent-1) inset;
}
.ab-rub-grid__feature > div:not(.ab-rub-grid__feature__img) { padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.ab-rub-grid__feature__img { position: relative; min-height: 380px; overflow: hidden; background: var(--ab-bg-warm); border-right: 1.5px solid var(--ab-ink); }
.ab-rub-grid__feature__img img { position: absolute; inset: 0; width: 100% !important; height: 100% !important; object-fit: cover; display: block; }
.ab-rub-grid__feature h2 { font-size: 44px; line-height: 1.1; margin: 16px 0; font-family: var(--ab-font-display); color: var(--ab-primary); font-weight: 400; }
.ab-rub-grid__feature h2 em { color: var(--ab-accent-1); font-style: italic; }
.ab-rub-grid__feature .ab-badge { margin-bottom: 8px; }
.ab-rub-grid__feature p { font-size: 16px; line-height: 1.65; margin: 0 0 14px; color: var(--ab-ink); }
.ab-rub-grid__feature .ab-card__meta { padding-top: 12px; border-top: 1px solid rgba(107, 66, 38, 0.18); }

/* ============================================================
   PAGES (À propos, Contact)
   ============================================================ */
.ab-page { padding: 80px 0 100px; }
.ab-page__inner { max-width: var(--ab-max-read); margin: 0 auto; padding: 0 24px; }
.ab-page h1 { font-family: var(--ab-font-display); font-size: 60px; line-height: 1.05; margin: 0 0 18px; color: var(--ab-primary); font-weight: 400; }
.ab-page h1 em { color: var(--ab-accent-1); font-style: italic; }
.ab-page__lede { font-family: var(--ab-font-display); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--ab-ink); margin: 0 0 36px; opacity: 0.95; }
.ab-page__body { font-size: 17px; line-height: 1.75; color: var(--ab-ink); }
.ab-page__body p { margin: 0 0 1.4em; }
.ab-page__body h2 { font-size: 28px; margin: 40px 0 14px; font-family: var(--ab-font-display); color: var(--ab-primary); font-weight: 400; }
.ab-page__body h2 em { color: var(--ab-accent-1); font-style: italic; }
.ab-page__portrait { display: block; max-width: 320px; margin: 0 0 32px; aspect-ratio: 4/5; position: relative; overflow: hidden; }
.ab-page__portrait img { position: absolute; inset: 0; width: 100% !important; height: 100% !important; object-fit: cover; display: block; }
.ab-page__signature { display: block; margin-top: 32px; font-size: 28px; }

.ab-contact-form .wpcf7-form-control:not([type="submit"]) { width: 100%; padding: 14px 16px; background: var(--ab-bg-warm); border: 1px solid rgba(107, 66, 38, 0.3); font-family: var(--ab-font-body); color: var(--ab-ink); font-size: 15px; }
.ab-contact-form textarea { min-height: 160px; resize: vertical; }
.ab-contact-form label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 6px; color: var(--ab-ink); }
.ab-contact-form .wpcf7-submit, .ab-contact-form input[type="submit"] {
  background: var(--ab-primary); color: var(--ab-bg); border: 0; padding: 14px 28px; font-family: var(--ab-font-body); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px; cursor: pointer;
}
.ab-contact-form .wpcf7-submit:hover { background: var(--ab-accent-1); }
.ab-contact-form p { margin: 0 0 18px; }

/* ============================================================
   Reveal animations
   ============================================================ */
.ab-reveal { opacity: 0; transform: translateY(18px); transition: opacity 800ms ease, transform 800ms ease; }
.ab-reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  /* Force header full-width edge-to-edge with no top/bottom space leakage */
  body.arbre-blanc { margin: 0 !important; padding: 0 !important; }
  body.arbre-blanc .ab-site-header { margin: 0 !important; padding: 0 !important; width: 100%; max-width: 100%; }
  body.arbre-blanc .ab-main { margin-top: 0 !important; padding-top: 0 !important; }

  .ab-burger { display: flex; }
  .ab-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--ab-primary); padding: 18px 20px 24px; gap: 16px; border-top: 1px solid rgba(242, 234, 215, 0.18); z-index: 60; }
  .ab-nav.is-open { display: flex; }
  .ab-nav a { padding: 8px 0; }

  .ab-site-header__inner {
    padding: 12px 16px;
    gap: 12px;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .ab-logo { gap: 10px; }
  .ab-logo__mark { width: 36px; height: 36px; }
  .ab-logo__name { font-size: 22px; }
  .ab-logo__tag { font-size: 9px; letter-spacing: 0.18em; }
}

@media (max-width: 480px) {
  .ab-site-header__inner { padding: 10px 12px; gap: 8px; }
  .ab-logo__mark { width: 32px; height: 32px; }
  .ab-logo__name { font-size: 19px; }
  .ab-logo__tag { display: none; }
  .ab-burger { padding: 4px; }
}

@media (max-width: 980px) {
  .ab-article-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px 60px;
  }
  .ab-toc-aside__sticky { position: relative; top: auto; padding: 16px 18px; }
  .ab-toc-aside__list a { padding: 4px 0; }
}

@media (max-width: 900px) {
  .ab-pillars,
  .ab-cards,
  .ab-rubriques__grid,
  .ab-site-footer__inner,
  .ab-founder__inner,
  .ab-rub-head__inner,
  .ab-rub-grid__feature {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ab-rub-head__deco { font-size: 160px; opacity: 0.08; }
  .ab-rub-head__side { padding-left: 20px; }
  .ab-rub-head__count strong { font-size: 32px; }
  .ab-rub-card--feature { grid-column: span 1; }
  .ab-hero { padding: 16px 0 50px; }
  .ab-hero__photo { height: 420px; }
  body.arbre-blanc .ab-hero__lede h1 { font-size: 36px !important; line-height: 1.08; margin-bottom: 18px; }
  body.arbre-blanc .ab-hero__lede p { font-size: 15px; }
  .ab-hero__lede { padding: 40px 24px; }
  body.arbre-blanc .ab-article-head h1 { font-size: 36px !important; }
  .ab-article-head__lede { font-size: 17px; }
  .ab-article-head .ab-container { padding-top: 80px; padding-bottom: 80px; min-height: 440px; }
  .ab-rub-head h1 { font-size: 56px; }
  .ab-section-title { font-size: 28px; }
  .ab-articles__head h2 { font-size: 26px; }
  .ab-articles { padding: 70px 0 80px; }
  .ab-rubriques { padding: 70px 0; }
  .ab-founder { padding: 70px 0; }
  .ab-founder__quote { font-size: 26px; line-height: 1.3; }
  body.arbre-blanc .ab-newsletter h2 { font-size: 28px; }
  .ab-page { padding: 60px 0 80px; }
  .ab-page h1 { font-size: 36px; }
  .ab-page__lede { font-size: 18px; }
  .ab-author-bio { grid-template-columns: 1fr; padding: 32px; }
  .ab-author-bio__portrait { margin: 0 auto; }
  .ab-rub-grid__feature__img { min-height: 240px; height: 240px; border-right: 0; border-bottom: 1.5px solid var(--ab-ink); }
  .ab-rub-grid__feature > div:not(.ab-rub-grid__feature__img) { padding: 28px 24px; }
  .ab-rub-grid__feature h2 { font-size: 30px; }
  .ab-footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .ab-container, .ab-site-footer__inner, .ab-founder__inner, .ab-rub-head__inner { padding-left: 20px; padding-right: 20px; }
  .ab-article-body blockquote { margin: 30px 0; font-size: 22px; padding: 24px 16px; }
}

@media (max-width: 540px) {
  body.arbre-blanc .ab-hero__lede h1 { font-size: 28px !important; line-height: 1.1; margin-bottom: 14px; }
  body.arbre-blanc .ab-hero__lede p { font-size: 14px; max-width: 100%; }
  .ab-hero__lede .ab-section-kicker { font-size: 11px; margin-bottom: 12px; }
  .ab-hero__photo { height: 360px; }
  .ab-hero__lede { padding: 32px 20px; }
  .ab-section-title { font-size: 24px; }
  .ab-rub-head h1 { font-size: 42px; }
  body.arbre-blanc .ab-article-head h1 { font-size: 26px !important; }
  .ab-article-head__lede { font-size: 15px; }
  .ab-article-head .ab-container { padding-top: 60px; padding-bottom: 60px; min-height: 340px; }
  .ab-page h1 { font-size: 30px; }
  .ab-cards, .ab-rubriques__grid { gap: 22px; }
  .ab-articles, .ab-rubriques, .ab-founder { padding: 56px 0; }
  .ab-pillar h3 { font-size: 22px; }
  .ab-articles__head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ab-rub-head { padding: 70px 0 50px; }
  .ab-rub-grid { padding: 40px 0 60px; }
}
