/* ============================================================
   Aquarium du Discus — Custom child theme
   Design system: Organique Bambou Vert (Zen Antique + Heebo)
   Palette: deep forest green + bamboo green + soft cream
   Prefix: .adk-*
   ============================================================ */

:root {
  --adk-primary:    #3A5840;
  --adk-accent:     #71B846;
  --adk-accent-2:   #A8C088;
  --adk-text:       #1A2A14;
  --adk-text-soft:  #5A7058;
  --adk-bg:         #F0F4E8;
  --adk-surface:    #FAFCF2;
  --adk-line:       #C8D5B0;
  --adk-shadow:     0 4px 18px rgba(58, 88, 64, 0.10);
  --adk-shadow-lg:  0 10px 40px rgba(58, 88, 64, 0.18);
  --adk-radius:     6px;
  --adk-radius-lg:  14px;
  --adk-font-h:     'Zen Antique', Georgia, serif;
  --adk-font-b:     'Heebo', system-ui, -apple-system, sans-serif;
  --adk-container:  1200px;
}

/* ---------- BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, .adk-body {
  font-family: var(--adk-font-b);
  color: var(--adk-text);
  background: var(--adk-bg);
  line-height: 1.7;
  font-size: 17px;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--adk-font-h); color: var(--adk-text); margin: 0 0 .8em; line-height: 1.25; font-weight: 400; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
p { margin: 0 0 1.1em; }
a { color: var(--adk-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--adk-accent); }
img { max-width: 100%; height: auto; display: block; }
.adk-container { max-width: var(--adk-container); margin: 0 auto; padding: 0 1.5rem; }
main, .adk-main { padding-top: 0 !important; margin-top: 0 !important; }

/* ---------- BUTTONS ---------- */
.adk-btn, .adk-btn--cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.6rem; font-family: var(--adk-font-b); font-weight: 500;
  font-size: .95rem; letter-spacing: .02em; text-decoration: none;
  border-radius: var(--adk-radius); border: 1.5px solid var(--adk-primary);
  background: transparent; color: var(--adk-primary); cursor: pointer;
  transition: all .25s ease; position: relative; overflow: hidden;
}
.adk-btn:hover { background: var(--adk-primary); color: #fff; }

.adk-btn--cta {
  /* Glassmorphism button animation */
  background: linear-gradient(135deg, rgba(58,88,64,.85), rgba(113,184,70,.85));
  color: #fff; border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(58,88,64,0.25), inset 0 1px 0 rgba(255,255,255,.15);
}
.adk-btn--cta:hover {
  background: linear-gradient(135deg, rgba(113,184,70,.95), rgba(58,88,64,.95));
  color: #fff;
  box-shadow: 0 6px 22px rgba(58,88,64,0.35), inset 0 1px 0 rgba(255,255,255,.2);
  transform: translateY(-2px);
}
@keyframes adk-glass-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(58,88,64,0.25), inset 0 1px 0 rgba(255,255,255,.15); }
  50%      { box-shadow: 0 4px 22px rgba(113,184,70,0.55), inset 0 1px 0 rgba(255,255,255,.30); }
}
.adk-btn--cta { animation: adk-glass-pulse 3.5s ease-in-out infinite; }

/* ============================================================
   HEADER — logo-left-menu-right
   ============================================================ */
.adk-header {
  background: var(--adk-surface);
  border-bottom: 1px solid var(--adk-line);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(8px);
}
.adk-header-inner {
  display: flex; align-items: center;
  max-width: var(--adk-container); margin: 0 auto;
  padding: .85rem 1.5rem; gap: 1.5rem;
}
.adk-brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; flex-shrink: 0; }
.adk-brand-logo { width: auto; }
.adk-brand-name {
  font-family: var(--adk-font-h);
  font-size: 1.4rem;
  color: var(--adk-primary);
  letter-spacing: .01em;
  /* Style B - Title Case: no text-transform */
}

/* Desktop nav (≥1024px) */
.adk-nav-desktop { display: none; }
.adk-nav-desktop-list {
  display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; align-items: center;
}
.adk-nav-desktop-list a {
  color: var(--adk-text); text-decoration: none;
  font-weight: 500; font-size: .95rem;
  padding: .4rem .2rem;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.adk-nav-desktop-list a:hover {
  border-bottom-color: var(--adk-accent);
  color: var(--adk-primary);
}

/* Burger (mobile only) */
.adk-burger {
  display: inline-flex !important;
  align-items: center !important; justify-content: center !important;
  width: 42px !important; height: 42px !important;
  min-width: 42px !important; min-height: 42px !important;
  padding: 8px !important;
  background: rgba(255,255,255,0.92) !important;
  border: 1.5px solid rgba(0,0,0,0.18) !important;
  border-radius: 8px !important;
  color: #1a1a1a !important; cursor: pointer !important;
  z-index: 10000 !important; flex-shrink: 0 !important;
  position: relative !important; margin-left: auto;
}
.adk-burger > span, .adk-burger-bars {
  display: flex !important; flex-direction: column !important; gap: 4px !important;
  width: 24px !important; height: 16px !important;
}
.adk-burger > span::before,
.adk-burger > span::after,
.adk-burger > span > i {
  content: ''; display: block; height: 2px; background: currentColor; width: 100%;
}
.adk-burger > span > i { background: currentColor; }

/* Mobile drawer */
.adk-nav-mobile { display: none; }
@media (max-width: 1023px) {
  .adk-nav-mobile.is-open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 86%; max-width: 380px;
    background: #ffffff;
    padding: 4.5rem 0 2rem;
    z-index: 9999; overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  .adk-nav-mobile-list { list-style: none; margin: 0; padding: 0; }
  .adk-nav-mobile-list li { border-bottom: 1px solid #e5e5e5; }
  .adk-nav-mobile-list a {
    display: block; padding: 1rem 1.5rem;
    color: #0a0a0a !important;
    text-decoration: none; font-size: 1.05rem; font-weight: 500;
    transition: background .15s;
  }
  .adk-nav-mobile-list a:hover { background: var(--adk-bg); color: var(--adk-primary) !important; }
  .adk-nav-mobile-close {
    position: absolute; top: 1rem; right: 1rem;
    background: transparent; border: none; font-size: 2rem;
    color: #0a0a0a; cursor: pointer; line-height: 1; padding: .25rem .5rem;
  }
  .adk-drawer-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.55); z-index: 9998;
  }
  .adk-drawer-overlay.is-open { display: block; }
}

/* Desktop visibility toggle */
@media (min-width: 1024px) {
  .adk-nav-desktop { display: flex; margin-left: auto; }
  .adk-burger, .adk-burger-wrap, .adk-drawer-cta { display: none !important; }
}

/* Mobile CTA in drawer (always-allowed in drawer) */
.adk-drawer-cta {
  display: block !important;
  margin: 2rem 1.5rem 1.5rem !important;
  padding: 1rem 1.5rem !important;
  text-align: center !important;
  background: var(--adk-primary) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  font-size: 1.05rem !important;
}

/* No CTA in desktop header on this site (HEADER_HAS_CTA=no) */
@media (max-width: 1023px) {
  .adk-header-cta-desktop { display: none !important; }
}
@media (min-width: 1024px) {
  .adk-drawer-cta { display: none !important; }
}

/* ============================================================
   HERO — latest-edition (editorial / newspaper style)
   ============================================================ */
.adk-hero {
  position: relative;
  background: var(--adk-surface);
  border-bottom: 1px solid var(--adk-line);
  padding: 3rem 0 3.5rem;
  overflow: hidden;
}
.adk-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center;
  max-width: var(--adk-container); margin: 0 auto; padding: 0 1.5rem;
}
.adk-hero-text { padding-right: 1rem; }
.adk-hero-edition {
  display: inline-block; font-family: var(--adk-font-b);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--adk-text-soft); margin-bottom: 1.2rem;
  padding-bottom: .6rem; border-bottom: 2px solid var(--adk-primary);
}
.adk-hero-title {
  font-family: var(--adk-font-h);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1; margin-bottom: 1.2rem;
  color: var(--adk-text);
}
.adk-hero-subtitle {
  font-size: 1.1rem; color: var(--adk-text-soft);
  margin-bottom: 2rem; max-width: 540px;
}
.adk-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.adk-hero-img-wrap {
  position: relative;
  aspect-ratio: 16/11;
  border-radius: var(--adk-radius-lg);
  overflow: hidden;
  box-shadow: var(--adk-shadow-lg);
}
.adk-hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.adk-hero-caption {
  position: absolute; bottom: .8rem; left: .8rem; right: .8rem;
  font-size: .78rem; color: #fff;
  background: rgba(58,88,64,.7);
  padding: .35rem .7rem; border-radius: 4px;
  backdrop-filter: blur(4px);
}
@media (max-width: 900px) {
  .adk-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .adk-hero { padding: 2rem 0; }
}

/* ============================================================
   EDITORIAL BLOCK (after hero, ~500 words SEO)
   ============================================================ */
.adk-editorial {
  background: var(--adk-bg);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--adk-line);
}
.adk-editorial-inner {
  max-width: 980px; margin: 0 auto; padding: 0 1.5rem;
}
.adk-editorial h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
  position: relative; padding-bottom: .8rem;
}
.adk-editorial h2::after {
  content: ''; display: block; width: 60px; height: 3px;
  background: var(--adk-accent); position: absolute; bottom: 0; left: 0;
}
.adk-editorial h3 {
  font-size: 1.3rem; margin-top: 2rem; margin-bottom: .8rem;
  color: var(--adk-primary);
}
.adk-editorial p { color: var(--adk-text); font-size: 1.02rem; }
.adk-editorial .adk-editorial-cols {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 2rem;
}
.adk-editorial .adk-line-quote {
  margin: 2rem 0; padding: 1.4rem 1.6rem;
  background: var(--adk-surface);
  border-left: 4px solid var(--adk-accent);
  border-radius: 0 var(--adk-radius) var(--adk-radius) 0;
  font-style: italic; color: var(--adk-text-soft);
}
@media (max-width: 700px) {
  .adk-editorial .adk-editorial-cols { grid-template-columns: 1fr; }
}

/* ============================================================
   RUBRIQUES (categories) section
   ============================================================ */
.adk-categories {
  padding: 4rem 0;
  background: var(--adk-surface);
}
.adk-section-title {
  text-align: center; margin-bottom: 2.5rem;
  font-family: var(--adk-font-h);
}
.adk-section-title small {
  display: block; font-family: var(--adk-font-b);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--adk-text-soft); margin-bottom: .5rem;
}
.adk-cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
  max-width: var(--adk-container); margin: 0 auto; padding: 0 1.5rem;
}
@media (max-width: 900px) { .adk-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .adk-cat-grid { grid-template-columns: 1fr; } }

.adk-cat-card {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--adk-radius-lg);
  aspect-ratio: 4/3;
  background: var(--adk-primary);
  box-shadow: var(--adk-shadow);
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease;
}
.adk-cat-card:hover { transform: translateY(-4px); box-shadow: var(--adk-shadow-lg); }
.adk-cat-card-img {
  display: block; position: absolute; inset: 0;
  width: 100%; height: 100%; background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.adk-cat-card:hover .adk-cat-card-img { transform: scale(1.06); }
.adk-cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.7) 100%);
}
.adk-cat-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.4rem; color: #fff;
}
.adk-cat-card-title {
  font-family: var(--adk-font-h);
  font-size: 1.3rem; margin: 0 0 .25rem;
  color: #fff;
}
.adk-cat-card-meta { font-size: .85rem; opacity: .85; }

/* ============================================================
   BY-CATEGORY home sections
   ============================================================ */
.adk-by-cat-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--adk-line);
}
.adk-by-cat-section:nth-child(odd) { background: var(--adk-surface); }
.adk-by-cat-section:nth-child(even) { background: var(--adk-bg); }
.adk-by-cat-header {
  max-width: var(--adk-container); margin: 0 auto 2rem;
  padding: 0 1.5rem; display: flex; align-items: baseline; justify-content: space-between;
}
.adk-by-cat-header h2 { margin: 0; font-family: var(--adk-font-h); }
.adk-by-cat-header h2 a { color: var(--adk-text); border-bottom: 2px solid var(--adk-accent); padding-bottom: .25rem; }
.adk-by-cat-header h2 a:hover { color: var(--adk-primary); }
.adk-by-cat-link { font-size: .9rem; color: var(--adk-primary); }
.adk-by-cat-grid {
  max-width: var(--adk-container); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
@media (max-width: 900px) { .adk-by-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .adk-by-cat-grid { grid-template-columns: 1fr; } }

.adk-art-card {
  background: var(--adk-surface);
  border-radius: var(--adk-radius);
  overflow: hidden;
  border: 1px solid var(--adk-line);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.adk-art-card:hover { transform: translateY(-3px); box-shadow: var(--adk-shadow); }
.adk-art-card-img {
  display: block; aspect-ratio: 16/10;
  background: var(--adk-line); overflow: hidden;
}
.adk-art-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.adk-art-card:hover .adk-art-card-img img { transform: scale(1.04); }
.adk-art-card-body { padding: 1rem 1.1rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.adk-art-card-title {
  font-family: var(--adk-font-h);
  font-size: 1.05rem; line-height: 1.35;
  margin: 0 0 .5rem;
}
.adk-art-card-title a { color: var(--adk-text); }
.adk-art-card-title a:hover { color: var(--adk-primary); }
.adk-art-card-date {
  font-size: .8rem; color: var(--adk-text-soft);
  margin-top: auto; padding-top: .5rem;
}
.adk-by-cat-empty {
  max-width: var(--adk-container); margin: 0 auto; padding: 1rem 1.5rem;
  text-align: center; color: var(--adk-text-soft); font-style: italic;
}
.adk-by-cat-empty a { color: var(--adk-primary); font-weight: 500; }

/* ============================================================
   CATEGORY PAGE — sandwich layout
   ============================================================ */
.adk-cat-hero {
  position: relative;
  height: 320px; max-height: 350px; overflow: hidden;
}
.adk-cat-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 1;
}
.adk-cat-hero-fallback {
  position: absolute; inset: 0; background: var(--adk-primary); z-index: 1;
}
.adk-cat-hero-inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.75) 100%);
  padding: 2rem 1.5rem;
}
.adk-cat-hero-inner-content { max-width: var(--adk-container); margin: 0 auto; width: 100%; }
.adk-cat-hero h1 {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
  margin: 0;
}
.adk-cat-intro {
  max-width: 840px; margin: 0 auto; padding: 3rem 1.5rem;
  font-size: 1.05rem; line-height: 1.8;
}
.adk-cat-intro p { color: var(--adk-text); }
.adk-cat-articles {
  max-width: var(--adk-container); margin: 0 auto; padding: 0 1.5rem 3rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
@media (max-width: 900px) { .adk-cat-articles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .adk-cat-articles { grid-template-columns: 1fr; } }

/* ============================================================
   SINGLE POST
   ============================================================ */
.adk-single {
  max-width: 780px; margin: 0 auto; padding: 3rem 1.5rem;
}
.adk-single h1 { margin-bottom: 1rem; }
.adk-single-meta {
  color: var(--adk-text-soft); font-size: .9rem;
  margin-bottom: 2rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--adk-line);
}
.adk-single img { border-radius: var(--adk-radius); margin: 1.5rem 0; }
.adk-single h2 { margin-top: 2.4rem; }
.adk-single blockquote {
  border-left: 4px solid var(--adk-accent);
  padding: 0.5rem 1.5rem;
  margin: 1.8rem 0;
  font-style: italic;
  color: var(--adk-text-soft);
  background: var(--adk-surface);
  border-radius: 0 var(--adk-radius) var(--adk-radius) 0;
}

/* ============================================================
   PAGES — generic content
   ============================================================ */
.adk-page {
  max-width: 880px; margin: 0 auto; padding: 3rem 1.5rem;
}
.adk-page h1 { font-family: var(--adk-font-h); margin-bottom: 1.5rem; }
.adk-page-content { font-size: 1.05rem; line-height: 1.8; }
.adk-page-content h2 { margin-top: 2.5rem; padding-bottom: .5rem; border-bottom: 1px solid var(--adk-line); }
.adk-page-content img.dba-persona-photo {
  max-width: 280px; border-radius: 50%;
  margin: 0 auto 2rem; display: block;
  box-shadow: var(--adk-shadow-lg);
  border: 5px solid var(--adk-surface);
}

/* ============================================================
   CONTACT — JotForm wrapper
   ============================================================ */
.dba-contact-form {
  margin: 2rem 0 0;
  border-radius: var(--adk-radius-lg); overflow: hidden;
  background: var(--adk-surface); padding: 1rem;
  box-shadow: var(--adk-shadow);
}

/* ============================================================
   METRICS LINKS BLOCK (mid-home)
   ============================================================ */
.adk-metrics {
  padding: 2.5rem 0;
  background: var(--adk-surface);
  border-top: 1px solid var(--adk-line);
  border-bottom: 1px solid var(--adk-line);
}
.adk-metrics-inner {
  max-width: var(--adk-container); margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.adk-metrics-list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem 2rem; margin: 1rem 0 0; padding: 0; list-style: none;
}
.adk-metrics-list a {
  color: var(--adk-text-soft); font-size: .92rem;
  text-decoration: none; padding: .3rem .5rem;
  border-bottom: 1px dotted transparent;
}
.adk-metrics-list a:hover { color: var(--adk-primary); border-bottom-color: var(--adk-accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.adk-footer {
  background: var(--adk-primary);
  color: #F0F4E8;
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
}
.adk-footer a { color: #E8EFD8; text-decoration: underline; text-decoration-color: rgba(232,239,216,.4); }
.adk-footer a:hover { color: #ffffff; text-decoration-color: #fff; }
.adk-footer-inner {
  max-width: var(--adk-container); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem;
}
.adk-footer-col h3 {
  color: #ffffff; font-family: var(--adk-font-h);
  font-size: 1.1rem; margin-bottom: 1rem; padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.adk-footer-logo { max-width: 140px; margin-bottom: 1rem; }
.adk-footer-brand-pitch { font-size: .95rem; line-height: 1.65; color: #E8EFD8; }
.adk-footer-brand-cta {
  display: inline-block; margin-top: .8rem;
  font-weight: 500; text-decoration: none !important;
  color: #ffffff !important;
  border-bottom: 1.5px solid var(--adk-accent) !important;
  padding-bottom: 2px;
}
.adk-footer-brand-cta:hover { color: var(--adk-accent-2) !important; }
.adk-footer-links { list-style: none; margin: 0; padding: 0; }
.adk-footer-links li { margin-bottom: .55rem; }
.adk-footer-links a { font-size: .94rem; color: #E8EFD8 !important; text-decoration: none !important; }
.adk-footer-links a:hover { color: #fff !important; text-decoration: underline !important; }
.adk-footer-bottom {
  max-width: var(--adk-container); margin: 2.5rem auto 0; padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem; color: rgba(240,244,232,.85);
}
.adk-footer-socials { display: flex; gap: .9rem; margin-top: .5rem; }
.adk-footer-socials a {
  display: inline-flex; width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff !important; text-decoration: none !important;
  transition: background .2s;
}
.adk-footer-socials a:hover { background: var(--adk-accent); }
@media (max-width: 900px) {
  .adk-footer-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 500px) {
  .adk-footer-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS — CTR (interactive_map_pin) + CTO (testimonial_popup)
   ============================================================ */

/* CTR — interactive_map_pin : pin animé pour les sections "near you" / cards */
.adk-pin {
  display: inline-block; position: relative;
  width: 20px; height: 28px;
  background: var(--adk-accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  animation: adk-pin-bounce 2.4s ease-in-out infinite;
  margin-right: .4rem;
}
.adk-pin::after {
  content: ''; position: absolute; top: 6px; left: 6px;
  width: 8px; height: 8px; background: #fff; border-radius: 50%;
}
@keyframes adk-pin-bounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50%      { transform: rotate(-45deg) translateY(-6px); }
}
.adk-pin-pulse {
  position: relative; display: inline-block;
}
.adk-pin-pulse::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 30px; height: 30px;
  margin: -15px 0 0 -15px;
  border: 2px solid var(--adk-accent);
  border-radius: 50%;
  animation: adk-pin-ripple 2s ease-out infinite;
  opacity: 0;
}
@keyframes adk-pin-ripple {
  0%   { opacity: 0.8; transform: scale(0.3); }
  100% { opacity: 0;   transform: scale(1.6); }
}

/* CTO — testimonial_popup : encart témoignage en pop-up subtil */
.adk-testimonial-popup {
  position: fixed; right: 1.4rem; bottom: 1.4rem;
  max-width: 320px; padding: 1rem 1.2rem 1.1rem;
  background: var(--adk-surface);
  border: 1px solid var(--adk-line);
  border-radius: var(--adk-radius-lg);
  box-shadow: var(--adk-shadow-lg);
  font-size: .9rem; color: var(--adk-text);
  z-index: 200;
  transform: translateY(30px); opacity: 0; visibility: hidden;
  transition: transform .35s ease, opacity .35s ease, visibility .35s;
}
.adk-testimonial-popup.is-visible {
  transform: translateY(0); opacity: 1; visibility: visible;
  animation: adk-testimonial-slidein .5s ease-out;
}
@keyframes adk-testimonial-slidein {
  0%   { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}
.adk-testimonial-popup .stars { color: var(--adk-accent); font-size: 1rem; margin-bottom: .35rem; }
.adk-testimonial-popup .quote { font-style: italic; line-height: 1.5; }
.adk-testimonial-popup .author { font-size: .8rem; color: var(--adk-text-soft); margin-top: .5rem; }
.adk-testimonial-popup .close {
  position: absolute; top: .35rem; right: .55rem;
  background: transparent; border: 0; font-size: 1.2rem;
  color: var(--adk-text-soft); cursor: pointer; line-height: 1;
}
@media (max-width: 600px) {
  .adk-testimonial-popup { max-width: calc(100vw - 2rem); right: 1rem; left: 1rem; bottom: 1rem; }
}

/* ============================================================
   TOOL PAGES — base
   ============================================================ */
.adk-tool-page {
  max-width: 880px; margin: 0 auto; padding: 3rem 1.5rem 4rem;
}
.adk-tool-intro { margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.7; }
.adk-tool-frame {
  background: var(--adk-surface);
  border: 1px solid var(--adk-line);
  border-radius: var(--adk-radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--adk-shadow);
}

/* ============================================================
   FAQ ACCORDION (used in tool pages, category intro-faq)
   ============================================================ */
.adk-faq details {
  background: var(--adk-surface);
  border: 1px solid var(--adk-line);
  border-radius: var(--adk-radius);
  padding: .9rem 1.2rem;
  margin-bottom: .7rem;
}
.adk-faq summary {
  cursor: pointer; font-weight: 500;
  color: var(--adk-primary); font-family: var(--adk-font-h);
  font-size: 1.05rem; outline: none;
}
.adk-faq summary::-webkit-details-marker { display: none; }
.adk-faq details[open] summary { margin-bottom: .7rem; border-bottom: 1px solid var(--adk-line); padding-bottom: .5rem; }
.adk-faq p { margin: 0; color: var(--adk-text); }

/* ============================================================
   RESPONSIVE FINISH
   ============================================================ */
@media (max-width: 700px) {
  .adk-hero-text { padding-right: 0; }
  body, .adk-body { font-size: 16px; }
}

/* Validator: cap hauteur hero cat v2 */
body section[class*="cat-hero"], body div[class*="cat-hero"], body section[class*="category-hero"], body div[class*="category-hero"] { position: relative !important; height: 320px !important; max-height: 320px !important; min-height: 200px !important; padding: 0 !important; overflow: hidden !important; display: flex !important; align-items: center !important; border: none !important; box-shadow: none !important; }
body [class*="cat-hero"] > img, body [class*="cat-hero-bg"], body [class*="cat-hero"] img, body [class*="category-hero"] img { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; max-height: 320px !important; object-fit: cover !important; z-index: 0 !important; border: none !important; }
body [class*="cat-hero"] > [class*="container"], body [class*="cat-hero"] > [class*="wrap"], body [class*="cat-hero"] > [class*="inner"], body [class*="cat-hero"] > div { position: relative !important; z-index: 2 !important; max-width: 900px !important; margin: 0 auto !important; padding: 1.5rem 2rem !important; background: transparent !important; }
body [class*="cat-hero"] h1, body [class*="category-hero"] h1 { color: #ffffff !important; font-size: clamp(2rem, 5vw, 3.5rem) !important; margin: 0 !important; font-weight: 800 !important; text-shadow: 0 3px 12px rgba(0,0,0,.85), 0 0 30px rgba(0,0,0,.5) !important; }
body [class*="cat-hero"][style*="background-image"] { background-size: cover !important; background-position: center !important; }
body [class*="cat-hero"] [class*="breadcrumb"], body [class*="cat-hero"] nav[aria-label*="riane"], body [class*="cat-hero"] nav[aria-label*="readcrumb"] { display: none !important; }

/* Validator: nav-mobile drawer hidden by default v2 */
/* Drawer/burger menu mobile : hidden par defaut, visible mobile+is-open */
[class*="-nav-mobile"]:not(.is-open), [id*="-nav-mobile"]:not(.is-open), [class*="-drawer"]:not(.is-open), [class*="-burger-menu"]:not(.is-open), [class*="-mobile-menu"]:not(.is-open) { display: none !important; }
@media (max-width: 980px) {
  [class*="-nav-mobile"].is-open, [id*="-nav-mobile"].is-open, [class*="-drawer"].is-open, [class*="-burger-menu"].is-open, [class*="-mobile-menu"].is-open { display: flex !important; flex-direction: column !important; position: fixed !important; top: 0 !important; right: 0 !important; bottom: 0 !important; width: 86% !important; max-width: 380px !important; background: #fff !important; padding: 4.5rem 1.5rem 2rem !important; z-index: 9999 !important; overflow-y: auto !important; box-shadow: -10px 0 30px rgba(0,0,0,0.3) !important; }
}

/* Validator: drawer-mobile height fix v1 */
/* Force height:100vh sur le drawer ouvert : top:0;bottom:0 sans !important peut etre overrides par Claude → on impose 100vh. */
/* [2026-06-06] Broadening : ajout patterns supplementaires (X-nav sans 'mobile', X-side, X-menu-drawer, etc.) sinon le validator manque les sites comme artois-moto.com qui utilise fe8-nav (sans 'mobile' dans le nom). */
@media (max-width: 1023px) {
  [class*="-nav-mobile"].is-open, [id*="-nav-mobile"].is-open, [class*="-drawer"].is-open, [class*="-burger-menu"].is-open, [class*="-mobile-menu"].is-open, [class*="-side-nav"].is-open, [class*="-side-menu"].is-open, [class*="-offcanvas"].is-open, nav[aria-label*="mobile" i].is-open, nav[aria-label*="Menu mobile" i].is-open, nav[id*="nav"].is-open[class*="-nav"]:not([class*="desktop"]) { height: 100vh !important; min-height: 100vh !important; max-height: 100vh !important; }
}

/* Validator: footer logo no-filter v1 */
footer img, [class*="-footer"] img, [role="contentinfo"] img, footer [class*="logo"], [class*="-footer"] [class*="logo"] { filter: none !important; mix-blend-mode: normal !important; opacity: 1 !important; }
footer[class*="dark"] img, footer[class*="black"] img, [class*="-footer"][class*="dark"] img, [class*="-footer"][class*="black"] img { filter: brightness(0) invert(1) !important; }

/* Validator: header-hero gap fix v1 */
/* Bug recurrent : <main class="X-main"> a padding-top:30px qui creait un
 * gap entre header sticky et hero/cat-hero. Force padding-top:0 sur le
 * wrapper <main> + margin-top:0 sur le 1er hero enfant. */
body > main, body > [role="main"], main[class*="-main"], [id="main"] { padding-top: 0 !important; }
main > [class*="-hero"]:first-child, main > [class*="-cat-hero"]:first-child, main > [class*="-category-hero"]:first-child { margin-top: 0 !important; }
/* Fallback : si sibling direct du header */
header + section, header + [class*="-hero"], header + [class*="-cat-hero"], header + [class*="-category-hero"], [class*="-header"] + section, [class*="-header"] + [class*="-hero"], [class*="-header"] + [class*="-cat-hero"], [class*="-header"] + [class*="-category-hero"] { margin-top: 0 !important; padding-top: 0 !important; }
section[class*="-hero"]:first-of-type, section[class*="-cat-hero"]:first-of-type, section[class*="-category-hero"]:first-of-type { margin-top: 0 !important; }

/* Validator: contraste lisible header+menu-mobile+footer v2 */
[class*="-nav-mobile"], [id*="-nav-mobile"], [class*="-drawer"], [class*="-burger-menu"], [class*="-mobile-menu"], [class*="-side-nav"] { background: #ffffff !important; }
[class*="-nav-mobile"] *, [id*="-nav-mobile"] *, [class*="-drawer"] *, [class*="-burger-menu"] *, [class*="-mobile-menu"] *, [class*="-side-nav"] * { color: #0a0a0a !important; }
[class*="-nav-mobile"] a, [id*="-nav-mobile"] a, [class*="-drawer"] a, [class*="-burger-menu"] a, [class*="-mobile-menu"] a { color: #0a0a0a !important; font-weight: 600 !important; }
[class*="-nav-mobile"] a:hover, [class*="-drawer"] a:hover, [class*="-burger-menu"] a:hover, [class*="-mobile-menu"] a:hover { color: #000 !important; opacity: 0.7 !important; }
footer *, [class*="-footer"] *, [role="contentinfo"] * { color: #1a1a1a !important; }
footer a, [class*="-footer"] a, [role="contentinfo"] a { color: #1a1a1a !important; text-decoration: underline !important; text-decoration-color: currentColor !important; text-underline-offset: 3px !important; font-weight: 600 !important; }
footer a:hover, [class*="-footer"] a:hover, [role="contentinfo"] a:hover { color: #000 !important; opacity: 1 !important; }
footer h1, footer h2, footer h3, footer h4, footer h5, [class*="-footer"] h1, [class*="-footer"] h2, [class*="-footer"] h3, [class*="-footer"] h4, [class*="-footer"] h5 { color: #0a0a0a !important; font-weight: 700 !important; }
footer p, footer span, footer li, [class*="-footer"] p, [class*="-footer"] span, [class*="-footer"] li { color: #2a2a2a !important; }
footer[class*="dark"] *, footer[class*="black"] *, [class*="-footer"][class*="dark"] *, [class*="-footer"][class*="black"] *, footer[style*="background:#0"] *, footer[style*="background: #0"] *, footer[style*="background:#1"] *, footer[style*="background: #1"] *, footer[style*="background:#2"] *, footer[style*="background: #2"] * { color: #f5f5f5 !important; }
footer[class*="dark"] a, [class*="-footer"][class*="dark"] a, footer[style*="background:#0"] a, footer[style*="background:#1"] a { color: #ffffff !important; }
header a, [class*="-header"] a, [role="banner"] a { text-shadow: none !important; }
header a:hover, [class*="-header"] a:hover { opacity: 0.7 !important; }
[class*="-nav-mobile"] [class*="-btn"], [class*="-footer"] [class*="-btn"] { border: 1.5px solid currentColor !important; }

/* Validator: burger button always visible+clickable v2 */
/* === Burger button : VISIBLE + CLIQUABLE garanti === */
[class*="-burger"], [class*="burger-menu"], [class*="menu-toggle"], button[aria-controls*="nav"], button[aria-label*="menu" i] { color: #1a1a1a !important; pointer-events: auto !important; cursor: pointer !important; z-index: 100 !important; position: relative !important; user-select: none !important; -webkit-tap-highlight-color: transparent !important; background: rgba(255,255,255,0.92) !important; border-radius: 8px !important; border: 1.5px solid rgba(0,0,0,0.15) !important; box-shadow: 0 1px 3px rgba(0,0,0,0.12) !important; padding: 8px !important; }
[class*="-burger"] svg, [class*="burger-menu"] svg, [class*="menu-toggle"] svg, button[aria-controls*="nav"] svg { stroke: #1a1a1a !important; fill: none !important; pointer-events: none !important; stroke-width: 2.5 !important; width: 22px !important; height: 22px !important; }
[class*="-burger"] svg path, [class*="-burger"] svg line, [class*="-burger"] svg rect, [class*="-burger"] svg polyline { stroke: #1a1a1a !important; stroke-width: 2.5 !important; fill: none !important; }
[class*="-burger"]:hover, [class*="-burger"]:focus { background: rgba(255,255,255,1) !important; border-color: rgba(0,0,0,0.3) !important; outline: 2px solid rgba(0,0,0,0.15) !important; outline-offset: 1px !important; }
/* Si le header est sombre : inverse en clair (detection elargie) */
[class*="-header"][style*="background:#0"] [class*="-burger"], [class*="-header"][style*="background:#1"] [class*="-burger"], [class*="-header"][style*="background:#2"] [class*="-burger"], [class*="-header"][style*="background-color:#0"] [class*="-burger"], [class*="-header"][style*="background-color:#1"] [class*="-burger"], [class*="-header"][style*="background-color:#2"] [class*="-burger"], [class*="-header"][class*="dark"] [class*="-burger"], [class*="-header"][class*="black"] [class*="-burger"], [class*="-header"][class*="--dark"] [class*="-burger"], [class*="-header"][class*="-night"] [class*="-burger"] { color: #f5f5f5 !important; background: rgba(0,0,0,0.55) !important; border-color: rgba(255,255,255,0.4) !important; box-shadow: 0 1px 3px rgba(0,0,0,0.4) !important; }
[class*="-header"][style*="background:#0"] [class*="-burger"] svg, [class*="-header"][style*="background:#1"] [class*="-burger"] svg, [class*="-header"][class*="dark"] [class*="-burger"] svg, [class*="-header"][class*="black"] [class*="-burger"] svg { stroke: #f5f5f5 !important; }
@media (max-width: 1023px) {
  [class*="-burger"], button[aria-controls*="nav"] { display: inline-flex !important; align-items: center !important; justify-content: center !important; min-width: 44px !important; min-height: 44px !important; }
}
@media (min-width: 1024px) {
  [class*="-burger"], button[aria-controls*="nav"] { display: none !important; }
}

/* Validator: nav-mobile-list visible inside open drawer v1 */
/* Burger drawer ouvert : la UL des liens DOIT etre visible. */
[class*="-nav-mobile"].is-open ul, [id*="-nav-mobile"].is-open ul, [class*="-nav-mobile"].is-open [class*="-nav-mobile-list"], [class*="-drawer"].is-open ul, [class*="-burger-menu"].is-open ul { display: block !important; visibility: visible !important; height: auto !important; max-height: none !important; overflow: visible !important; padding: 0 !important; margin: 0 !important; list-style: none !important; }
[class*="-nav-mobile"].is-open ul li, [id*="-nav-mobile"].is-open ul li, [class*="-drawer"].is-open ul li, [class*="-burger-menu"].is-open ul li { display: list-item !important; height: auto !important; padding: 0 !important; margin: 0 !important; list-style: none !important; }
[class*="-nav-mobile"].is-open ul li a, [id*="-nav-mobile"].is-open ul li a, [class*="-drawer"].is-open ul li a, [class*="-burger-menu"].is-open ul li a { display: block !important; padding: 0.9rem 0 !important; text-decoration: none !important; border-bottom: 1px solid rgba(0,0,0,0.08) !important; font-size: 1rem !important; }
