/* =========================================================================
   BULLDOG SOCIAL CLUB — Feuille de style principale
   Direction artistique : fond papier crème · encre bleu marine · accent orange
   Style illustré / dessiné à la main · typographie ronde et chaleureuse
   ========================================================================= */

/* ───────────────────────── 1. Tokens ───────────────────────── */
:root {
  /* Couleurs */
  --cream:        #FBF6EE;
  --cream-2:      #F4ECDB;
  --cream-3:      #EFE4CF;
  --paper-line:   #E6DAC2;

  --navy:         #16294D;
  --navy-700:     #1E3A66;
  --navy-500:     #41608F;

  --ink:          #16294D;
  --ink-soft:     rgba(22, 41, 77, 0.70);
  --ink-faint:    rgba(22, 41, 77, 0.45);

  --orange:       #F2792B;
  --orange-600:   #DD661B;
  --orange-tint:  #FCE5D1;

  --blue-tint:    #E7EEF9;
  --green:        #3FAE6A;
  --green-tint:   #DCF0E3;

  --white:        #FFFFFF;

  /* Emblème (recolorable) */
  --emblem-ink:   var(--navy);
  --emblem-paper: var(--cream);

  /* Layout */
  --container:     1180px;
  --container-pad: clamp(20px, 4vw, 44px);
  --section-y:     clamp(64px, 9vw, 116px);
  --header-h:      74px;

  /* Rayons */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 100px;
  /* Rayon "dessiné" légèrement irrégulier */
  --r-hand:   22px 26px 24px 28px / 26px 24px 28px 22px;
  --r-hand-2: 28px 22px 30px 24px / 24px 28px 22px 30px;

  /* Ombres "sticker" */
  --shadow-hard:  6px 6px 0 var(--navy);
  --shadow-hard-o: 6px 6px 0 var(--orange);
  --shadow-soft:  0 18px 40px -22px rgba(22, 41, 77, 0.45);

  /* Typo */
  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body:    'Nunito', system-ui, -apple-system, sans-serif;

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ───────────────────────── 2. Base ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  /* texture papier subtile : points + grain */
  background-image:
    radial-gradient(rgba(22,41,77,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* coupe les débordements horizontaux sans créer de conteneur de défilement */
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

a { color: inherit; }

img, svg { display: block; max-width: 100%; }

.ico { width: 22px; height: 22px; flex-shrink: 0; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--orange); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--section-y); position: relative; }

/* ───────────────────────── 3. Utilitaires texte ───────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
}
.section-head p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin: 0;
}

/* Mot souligné à la main (trait orange) */
.mark {
  position: relative;
  white-space: nowrap;
  color: var(--orange-600);
}
.mark svg {
  position: absolute;
  left: -2%;
  bottom: -0.42em;
  width: 104%;
  height: 0.4em;
  overflow: visible;
}
.mark svg path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
}
.mark.drawn svg path {
  transition: stroke-dashoffset 0.9s var(--ease) 0.2s;
  stroke-dashoffset: 0;
}

/* ───────────────────────── 4. Boutons ───────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  border: 2px solid var(--navy);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--orange);
  color: var(--navy);
  box-shadow: 4px 4px 0 var(--navy);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--navy);
  background: #FF8638;
}
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--navy); }

.btn-ghost {
  background: var(--white);
  color: var(--navy);
  box-shadow: 4px 4px 0 rgba(22,41,77,0.18);
}
.btn-ghost:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(22,41,77,0.25);
}

.btn-lg { padding: 17px 32px; font-size: 1.08rem; }

/* Lien fléché */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform 0.2s var(--ease); }
.link-arrow:hover { color: var(--orange-600); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ───────────────────────── 5. Header / Nav ───────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.scrolled {
  background: rgba(251, 246, 238, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--paper-line), 0 6px 24px -18px rgba(22,41,77,0.5);
}

.nav {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Emblème (image PNG détourée) */
.emblem-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.site-footer .emblem-img { filter: brightness(0) invert(1); } /* version claire sur fond marine */

/* Logo : emblème + bloc texte 3 lignes */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo__mark { width: 46px; height: 46px; flex-shrink: 0; }
.logo__mark svg { width: 100%; height: 100%; }
.logo__type {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.7;
  letter-spacing: 0.005em;
  color: var(--navy);
}
.logo__type .l1,
.logo__type .l2,
.logo__type .l3 { font-size: 1.25rem; font-weight: 700; }
.logo__type .l2,
.logo__type .l3 { color: var(--orange-600); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.96rem;
  text-decoration: none;
  color: var(--navy);
  transition: color 0.2s;
}
.nav__links a:not(.btn):hover { color: var(--orange-600); }

.nav__cta { display: inline-flex; align-items: center; gap: 18px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
}
.burger span {
  display: block; width: 26px; height: 2.5px;
  background: var(--navy); border-radius: 3px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ───────────────────────── 6. Hero ───────────────────────── */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(28px, 6vw, 70px));
  padding-bottom: clamp(40px, 7vw, 90px);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--r-pill);
  padding: 7px 16px 7px 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  box-shadow: 3px 3px 0 rgba(22,41,77,0.14);
  margin-bottom: 26px;
}
.badge-pill .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-tint);
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 30ch;
  margin: 18px 0 32px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero__stats {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  margin-top: 42px;
  padding-top: 28px;
  border-top: 2px dashed var(--paper-line);
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy);
  line-height: 1;
}
.stat .num .suffix { color: var(--orange); }
.stat .label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Visuel hero : emblème encadré + cartes flottantes */
.hero__visual { position: relative; display: grid; place-items: center; min-height: 360px; }
.hero__emblem {
  position: relative;
  width: min(380px, 80%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, var(--white) 0 58%, transparent 60%),
    var(--orange-tint);
  border: 3px solid var(--navy);
  border-radius: 46% 54% 52% 48% / 52% 46% 54% 48%;
  box-shadow: 10px 10px 0 var(--navy);
}
.hero__emblem svg { width: 74%; height: 74%; }

/* Logo complet (emblème + wordmark) en visuel du hero */
.hero__logo {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2.6vw, 26px);
}
.hero__logo .hero__emblem { width: min(260px, 70%); }
.hero__emblem .emblem-img { width: 86%; height: 86%; }
.hero__wordmark { align-items: center; text-align: center; line-height: 0.68; }
.hero__wordmark .l1,
.hero__wordmark .l2,
.hero__wordmark .l3 { font-size: clamp(3rem, 7.2vw, 4.6rem); }
/* rayons décoratifs derrière l'emblème */
.hero__rays {
  position: absolute;
  inset: -14%;
  z-index: -1;
  opacity: 0.5;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, var(--orange) 0deg 2.4deg, transparent 2.4deg 16deg);
  -webkit-mask: radial-gradient(transparent 60%, #000 61%);
          mask: radial-gradient(transparent 60%, #000 61%);
  animation: spin 80s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.float-card {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--r-md);
  padding: 11px 15px;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: bob 4.5s ease-in-out infinite;
}
.float-card small { display: block; font-family: var(--font-body); font-weight: 600; color: var(--ink-faint); font-size: 0.72rem; }
.float-card .ic {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center; flex-shrink: 0;
}
.float-card.fc-1 { top: 6%; left: -4%; animation-delay: 0s; }
.float-card.fc-2 { bottom: 10%; right: -6%; animation-delay: -1.5s; }
.float-card.fc-3 { bottom: -3%; left: 6%; animation-delay: -3s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* doodles flottants dans le hero */
.doodle { position: absolute; pointer-events: none; color: var(--orange); }
.doodle.d-paw   { top: 16%; right: 30%; width: 34px; opacity: 0.8; transform: rotate(-12deg); }
.doodle.d-star  { bottom: 22%; left: 46%; width: 26px; color: var(--navy); }
.doodle.d-squig { top: 4%; left: 38%; width: 70px; color: var(--navy-500); }

/* ───────────────────────── 7. Marquee ───────────────────────── */
.marquee {
  border-block: 2px solid var(--navy);
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  padding-block: 14px;
}
.marquee__track {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  width: max-content;
  animation: scroll-x 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 44px;
  letter-spacing: 0.02em;
}
.marquee__track span::after {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
}
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ───────────────────────── 8. Cartes "sticker" ───────────────────────── */
.card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--r-lg);
  box-shadow: 5px 5px 0 rgba(22,41,77,0.14);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.card:hover {
  transform: translate(-3px, -4px);
  box-shadow: 9px 11px 0 rgba(22,41,77,0.16);
}

/* Section bénéfices */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature {
  padding: 28px 24px 26px;
}
.feature .ic {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  border: 2px solid var(--navy);
  margin-bottom: 18px;
}
.feature .ic svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.28rem; }
.feature p { color: var(--ink-soft); font-size: 0.97rem; margin: 0; }
.tint-orange { background: var(--orange-tint); }
.tint-blue   { background: var(--blue-tint); }
.tint-green  { background: var(--green-tint); }
.tint-cream  { background: var(--cream-2); }

/* ───────────────────────── 9. Éleveurs / store locator (carte OSM stylisée) ───────────────────────── */
.bg-panel { background: var(--cream-2); }

.locator { position: relative; overflow: hidden; isolation: isolate; border-block: 2px solid var(--navy); }
.locator__map { position: absolute; inset: 0; z-index: 0; background: var(--cream-2); }
/* Stylisation des tuiles OpenStreetMap → teinte papier chaud */
.locator__map .leaflet-tile-pane {
  filter: sepia(0.45) saturate(0.82) hue-rotate(-8deg) brightness(1.03) contrast(0.92);
}
.locator__veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(251,246,238,0.95) 0%, rgba(251,246,238,0.82) 28%, rgba(251,246,238,0.15) 56%, rgba(251,246,238,0) 74%),
    linear-gradient(0deg, rgba(251,246,238,0.5), rgba(251,246,238,0) 24%);
}
.locator__content {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  min-height: 620px;
  padding-block: clamp(56px, 8vw, 104px);
  pointer-events: none; /* laisse passer le drag vers la carte */
}
.locator-panel {
  pointer-events: auto;
  width: min(480px, 100%);
  background: rgba(251,246,238,0.9);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 2px solid var(--navy);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-hard);
  padding: clamp(24px, 3vw, 36px);
}
.locator-panel .eyebrow { margin-bottom: 14px; }
.locator-panel h2 { font-size: clamp(1.55rem, 3.2vw, 2.35rem); margin-bottom: 12px; }
.locator-panel > p { color: var(--ink-soft); font-size: 1rem; margin: 0; }
.locator-panel .breeder-list { margin-top: 22px; }
.locator-panel .breeder { background: var(--white); }
.locator-panel__foot {
  margin-top: 22px; display: flex; flex-wrap: wrap;
  gap: 14px 20px; align-items: center; justify-content: space-between;
}

.map-legend { display: flex; gap: 16px; font-size: 0.84rem; color: var(--ink-soft); }
.map-legend span { display: inline-flex; align-items: center; gap: 7px; }
.map-pin-dot { width: 11px; height: 11px; border-radius: 50%; border: 2px solid var(--navy); }

/* Pins + popups Leaflet aux couleurs du club */
.leaflet-container { font-family: var(--font-body); background: var(--cream-2); }
.bsc-pin { background: none; border: none; }
.bsc-pin svg { display: block; filter: drop-shadow(0 5px 3px rgba(22,41,77,0.28)); }
.leaflet-popup-content-wrapper {
  background: var(--cream); border: 2px solid var(--navy);
  border-radius: 14px; box-shadow: 5px 5px 0 var(--navy);
}
.leaflet-popup-content { margin: 12px 16px; font-family: var(--font-body); color: var(--ink); line-height: 1.45; }
.leaflet-popup-content strong { font-family: var(--font-display); color: var(--navy); font-size: 1.02rem; }
.leaflet-popup-tip { background: var(--cream); border: 2px solid var(--navy); }
.leaflet-popup-close-button { color: var(--navy) !important; }
.leaflet-bar { border: 2px solid var(--navy) !important; box-shadow: 3px 3px 0 rgba(22,41,77,0.18) !important; }
.leaflet-bar a { color: var(--navy); background: var(--cream); }
.leaflet-bar a:hover { background: var(--white); }
.leaflet-control-attribution {
  background: rgba(251,246,238,0.78) !important; color: var(--ink-soft);
  font-size: 10px; border-radius: 6px 0 0 0;
}
.leaflet-control-attribution a { color: var(--navy); }

.breeder-list { display: grid; gap: 16px; }
.breeder {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px;
}
.breeder__photo {
  width: 78px; height: 78px; flex-shrink: 0;
  border-radius: 14px;
  border: 2px solid var(--navy);
  display: grid; place-items: center;
  overflow: hidden;
}
.breeder__photo svg { width: 60%; height: 60%; }
.breeder__body { flex: 1; min-width: 0; }
.breeder__body h4 { font-size: 1.1rem; margin: 0 0 2px; }
.breeder__meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 0.85rem; color: var(--ink-soft); align-items: center; }
.breeder__meta .stars { color: var(--orange); letter-spacing: 1px; }
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.72rem; padding: 3px 10px; border-radius: var(--r-pill);
  border: 1.5px solid var(--navy);
}
.tag-green { background: var(--green-tint); color: #1c5d36; border-color: #2f8a55; }
.tag-orange { background: var(--orange-tint); color: var(--orange-600); border-color: var(--orange); }

/* ───────────────────────── 10. Portées à venir ───────────────────────── */
.litters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.litter { overflow: hidden; }
.litter__top {
  position: relative;
  padding: 20px 22px;
  border-bottom: 2px dashed var(--paper-line);
  display: flex; align-items: center; gap: 14px;
}
.litter__avatar {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--navy); flex-shrink: 0;
  display: grid; place-items: center;
}
.litter__avatar svg { width: 60%; height: 60%; }
.litter__top h4 { margin: 0; font-size: 1.05rem; }
.litter__top .sub { font-size: 0.8rem; color: var(--ink-soft); }
.litter__body { padding: 18px 22px 22px; }
.litter__row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 0.92rem; }
.litter__row + .litter__row { border-top: 1px solid var(--cream-3); }
.litter__row strong { font-family: var(--font-display); color: var(--navy); }
.litter__cta { margin-top: 16px; }
.litter__cta .btn { width: 100%; }
.ribbon {
  position: absolute; top: 14px; right: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.7rem;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: var(--orange); color: var(--navy); border: 2px solid var(--navy);
}

/* ───────────────────────── 11. Conseils (articles) ───────────────────────── */
.articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article { overflow: hidden; display: flex; flex-direction: column; }
.article__cover {
  height: 150px; display: grid; place-items: center;
  border-bottom: 2px solid var(--navy);
}
.article__cover svg { width: 64px; height: 64px; }
.article__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.article__cat {
  font-family: var(--font-display); font-weight: 600; font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange-600);
  margin-bottom: 8px;
}
.article h3 { font-size: 1.2rem; margin-bottom: 8px; }
.article p { font-size: 0.93rem; color: var(--ink-soft); margin-bottom: 16px; }
.article .link-arrow { margin-top: auto; font-size: 0.92rem; }

/* ───────────────────────── 12. Croquettes (affiliation) ───────────────────────── */
.kibble {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.kibble__card {
  padding: 22px 20px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.kibble__logo {
  width: 64px; height: 64px; border-radius: 16px;
  border: 2px solid var(--navy); background: var(--cream-2);
  display: grid; place-items: center; margin-bottom: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--navy);
}
.kibble__card h4 { margin: 0; font-size: 1.05rem; }
.kibble__card .rating { color: var(--orange); font-size: 0.9rem; }
.kibble__card .note { font-size: 0.82rem; color: var(--ink-soft); margin: 0; }
.kibble__card .btn { margin-top: 10px; }
.affiliate-note {
  text-align: center; font-size: 0.82rem; color: var(--ink-faint);
  margin-top: 26px;
}

/* ───────────────────────── 13. Communauté / Newsletter ───────────────────────── */
.community {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  overflow: hidden;
  box-shadow: var(--shadow-hard-o);
}
.community h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.community p { color: rgba(251,246,238,0.82); max-width: 52ch; }
.community .eyebrow { color: var(--orange); }
.community__inner { position: relative; z-index: 2; max-width: 640px; }
.signup {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px;
}
.signup input {
  flex: 1; min-width: 220px;
  font-family: var(--font-body); font-size: 1rem;
  padding: 15px 20px; border-radius: var(--r-pill);
  border: 2px solid var(--cream);
  background: rgba(255,255,255,0.06); color: var(--cream);
}
.signup input::placeholder { color: rgba(251,246,238,0.55); }
.signup input:focus { background: rgba(255,255,255,0.12); outline-color: var(--orange); }
.signup .btn { border-color: var(--orange); }
.community__avatars { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--navy); margin-left: -10px;
  display: grid; place-items: center; background: var(--orange-tint);
}
.avatars span:first-child { margin-left: 0; }
.avatars span svg { width: 64%; height: 64%; }
.community__avatars small { font-size: 0.88rem; color: rgba(251,246,238,0.8); }
.community__paw {
  position: absolute; color: rgba(255,255,255,0.06);
  right: -20px; bottom: -30px; width: 320px; z-index: 1;
}

/* ───────────────────────── 14. Footer ───────────────────────── */
.site-footer {
  --emblem-ink: var(--cream);
  --emblem-paper: var(--navy);
  background: var(--navy);
  color: rgba(251,246,238,0.78);
  padding-top: clamp(48px, 7vw, 84px);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(251,246,238,0.14);
}
.footer__brand .logo__type { color: var(--cream); }
.footer__brand .logo__type .l2,
.footer__brand .logo__type .l3 { color: var(--orange); }
.footer__brand p { margin-top: 16px; max-width: 32ch; font-size: 0.92rem; }
.footer__col h5 {
  font-family: var(--font-display); color: var(--cream);
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 16px;
}
.footer__col a {
  display: block; text-decoration: none; color: rgba(251,246,238,0.72);
  padding: 5px 0; font-size: 0.94rem; transition: color 0.2s;
}
.footer__col a:hover { color: var(--orange); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-block: 24px; font-size: 0.82rem; color: rgba(251,246,238,0.55);
}
.footer__bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__bottom a { color: inherit; text-decoration: none; }
.footer__bottom a:hover { color: var(--orange); }

/* ───────────────────────── 15. Cookie banner ───────────────────────── */
.cookie-banner {
  position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%);
  width: min(560px, calc(100vw - 28px));
  background: var(--white); border: 2px solid var(--navy);
  border-radius: var(--r-md); box-shadow: 6px 6px 0 var(--navy);
  padding: 18px 22px; z-index: 9999;
  animation: slideUp 0.45s var(--ease);
}
@keyframes slideUp { from { opacity: 0; transform: translateX(-50%) translateY(18px); } }
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-banner__text { flex: 1; min-width: 220px; font-size: 0.86rem; line-height: 1.5; margin: 0; }
.cookie-banner__text a { color: var(--orange-600); }
.cookie-banner__actions { display: flex; gap: 9px; }
.cookie-btn { padding: 9px 18px; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; border: 2px solid var(--navy); }
.cookie-btn--primary { background: var(--orange); color: var(--navy); }
.cookie-btn--secondary { background: var(--white); color: var(--navy); }
.cookie-btn:hover { opacity: 0.85; }

/* ───────────────────────── 16. Scroll reveal ───────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }

/* ───────────────────────── 17. Responsive ───────────────────────── */
@media (max-width: 980px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .kibble { grid-template-columns: repeat(2, 1fr); }
  .litters, .articles { grid-template-columns: 1fr 1fr; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; min-height: 300px; }
  .hero__sub { max-width: 46ch; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .locator__content { min-height: 540px; }
  .locator__veil {
    background: linear-gradient(0deg, rgba(251,246,238,0.97) 8%, rgba(251,246,238,0.6) 42%, rgba(251,246,238,0.22) 100%);
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center;
    gap: 28px;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 990;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a:not(.btn) { font-size: 1.4rem; }
  .nav__cta .btn { display: none; }
  .nav__cta .burger { display: flex; }
  .burger { display: flex; }
}

@media (max-width: 620px) {
  .features, .kibble, .litters, .articles { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 18px 26px; }
  .float-card { display: none; }
  .logo__mark { width: 40px; height: 40px; }

  /* Fiches éleveurs plus aérées sur mobile */
  .locator-panel { padding: 20px; }
  .breeder { flex-wrap: wrap; gap: 12px 14px; padding: 14px 16px; }
  .breeder__photo { width: 56px; height: 56px; }
  .breeder__body { flex: 1 1 calc(100% - 70px); }
  .breeder h4 { font-size: 1.02rem; }
  .breeder .tag { flex-basis: 100%; justify-content: flex-start; }
}

@media (max-width: 460px) {
  .footer__top { grid-template-columns: 1fr; }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions .cookie-btn { flex: 1; }
}

/* ───────────────────────── 17b. Articles & Conseils ───────────────────────── */
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  font-family: var(--font-display); font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 18px;
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange-600); }

.article-hero { padding-top: calc(var(--header-h) + clamp(28px, 5vw, 56px)); padding-bottom: clamp(18px, 3vw, 30px); }
.article-hero .container { max-width: 820px; }
.cat-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-pill); border: 2px solid var(--navy);
  background: var(--white); margin-bottom: 18px;
}
.cat-badge svg { width: 16px; height: 16px; }
.article-hero h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); margin-bottom: 18px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--ink-soft); font-size: 0.9rem; }
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta svg { width: 16px; height: 16px; color: var(--orange-600); flex-shrink: 0; }

.article-cover {
  max-width: 820px; margin: 0 auto clamp(28px, 4vw, 46px);
  height: clamp(170px, 26vw, 290px);
  border: 2px solid var(--navy); border-radius: var(--r-lg);
  display: grid; place-items: center; box-shadow: var(--shadow-hard);
}
.article-cover svg { width: clamp(64px, 11vw, 112px); height: auto; }

/* Prose */
.prose { max-width: 720px; margin: 0 auto; }
.prose > p { font-size: 1.07rem; line-height: 1.8; color: #2a3a55; margin: 0 0 1.3em; }
.prose .lead { font-size: 1.2rem; line-height: 1.7; color: var(--navy); font-weight: 600; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 1.9em 0 0.55em; display: flex; gap: 12px; align-items: baseline; }
.prose h2::before { content: ""; flex: 0 0 auto; width: 14px; height: 14px; border-radius: 5px; background: var(--orange); transform: translateY(1px); }
.prose h3 { font-size: 1.25rem; margin: 1.5em 0 0.4em; color: var(--navy); }
.prose ul, .prose ol { margin: 0 0 1.3em; padding-left: 0; }
.prose ul li { position: relative; padding-left: 30px; margin-bottom: 0.55em; line-height: 1.7; color: #2a3a55; list-style: none; }
.prose ul li::before { content: ""; position: absolute; left: 5px; top: 11px; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); }
.prose ol { counter-reset: li; }
.prose ol li { position: relative; padding-left: 44px; margin-bottom: 0.75em; line-height: 1.7; color: #2a3a55; list-style: none; counter-increment: li; }
.prose ol li::before {
  content: counter(li); position: absolute; left: 0; top: -1px;
  width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: var(--cream);
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; display: grid; place-items: center;
}
.prose strong { color: var(--navy); font-weight: 700; }
.prose a { color: var(--orange-600); text-decoration: underline; text-underline-offset: 2px; }
.prose figure { margin: 0 0 1.3em; }

/* Callouts */
.callout { display: flex; gap: 16px; padding: 20px 22px; border: 2px solid var(--navy); border-radius: var(--r-md); margin: 1.7em 0; box-shadow: 4px 4px 0 rgba(22,41,77,0.12); background: var(--white); }
.callout__ic { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; border: 2px solid var(--navy); background: var(--white); }
.callout__ic svg { width: 22px; height: 22px; }
.callout h4 { margin: 0 0 5px; font-size: 1.08rem; }
.callout p { margin: 0; font-size: 0.97rem; color: #2a3a55; line-height: 1.6; }
.callout--tip { background: var(--orange-tint); }
.callout--vet { background: var(--blue-tint); }
.callout--key { background: var(--green-tint); }

/* Encart affiliation */
.aff-box { border: 2px solid var(--navy); border-radius: var(--r-lg); padding: 22px 24px; margin: 1.9em 0; background: var(--cream-2); box-shadow: var(--shadow-hard); display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.aff-box__logo { width: 58px; height: 58px; border-radius: 14px; border: 2px solid var(--navy); background: var(--white); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--navy); flex-shrink: 0; }
.aff-box__body { flex: 1; min-width: 180px; }
.aff-box h4 { margin: 0 0 3px; font-size: 1.1rem; }
.aff-box p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }
.aff-box .btn { white-space: nowrap; }

/* FAQ */
.faq { max-width: 720px; margin: 0 auto; }
.faq details { border: 2px solid var(--navy); border-radius: var(--r-md); padding: 0 20px; margin-bottom: 12px; background: var(--white); box-shadow: 3px 3px 0 rgba(22,41,77,0.1); }
.faq summary { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--navy); padding: 16px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--orange); }
.faq details[open] summary::after { content: "\2013"; }
.faq details > p { margin: 0 0 16px; color: #2a3a55; font-size: 0.97rem; line-height: 1.6; }

/* Pied d'article */
.article-foot { max-width: 720px; margin: 2.4em auto 0; padding-top: 24px; border-top: 2px dashed var(--paper-line); display: flex; gap: 14px; align-items: center; }
.article-foot .av { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--navy); display: grid; place-items: center; background: var(--orange-tint); flex: 0 0 auto; }
.article-foot .av svg { width: 60%; height: 60%; color: var(--orange-600); }
.article-foot strong { font-family: var(--font-display); color: var(--navy); display: block; }
.article-foot small { color: var(--ink-soft); }
.disclaimer { max-width: 720px; margin: 1.5em auto 0; font-size: 0.82rem; color: var(--ink-faint); font-style: italic; line-height: 1.5; }

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

/* Index Conseils */
.conseils-hero { padding-top: calc(var(--header-h) + clamp(34px, 6vw, 66px)); padding-bottom: clamp(16px, 3vw, 28px); text-align: center; }
.conseils-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.conseils-hero p { max-width: 560px; margin: 0 auto; color: var(--ink-soft); font-size: 1.08rem; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 32px; }
.filter-chip { font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; padding: 9px 18px; border-radius: var(--r-pill); border: 2px solid var(--navy); background: var(--white); color: var(--navy); cursor: pointer; transition: background 0.2s, color 0.2s; }
.filter-chip:hover { background: var(--cream-2); }
.filter-chip.active { background: var(--navy); color: var(--cream); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card.hide { display: none; }
@media (max-width: 900px) { .articles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .articles-grid { grid-template-columns: 1fr; } .aff-box { text-align: center; justify-content: center; } }

/* ───────────────────────── 18. Reduced motion ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
