/* ============ ÉLEVAGE DU ROC NOIR — berger allemand de travail ============ */
/* DA ROOOF : blanc neutre + vert sapin, titres sans-serif majuscules (Montserrat), corps General Sans. */
:root {
  --bg: #FBFAFC;
  --bg-alt: #F1EDF5;
  --line: #E1DAE9;
  --ink: #1E1826;
  --slate: #4B4059;
  --muted: #786C88;
  --pine: #5C4A72;
  --pine-soft: #756192;
  --celadon: #D9CDE6;
  --white: #FFFFFF;
  --head: 'Hepta Slab', 'Switzer', 'General Sans', -apple-system, sans-serif;
  --sans: 'General Sans', 'Inter', -apple-system, sans-serif;
  --violet: #8A63B5;
}
::selection { background: var(--celadon); color: var(--ink); }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

h1, h2, h3 {
  font-family: var(--head); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.02em;
  line-height: 1.14;
}
.section-label {
  font-family: var(--head);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  color: var(--pine); margin-bottom: 28px;
}
.section-title em { font-style: normal; color: var(--ink); }

/* ============ RIDEAU V2 — PLONGÉE CIRCULAIRE DEPUIS LE CLIC ============ */
.curtain {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--pine);
  display: flex; align-items: center; justify-content: center;
  clip-path: circle(0% at 50% 50%);
  pointer-events: none;
}
.curtain.cover { clip-path: none; }
.curtain-mark {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  opacity: 0; transition: opacity 0.3s ease;
}
.curtain.cover .curtain-mark { opacity: 1; }
.curtain-paw { width: 46px; height: 46px; fill: var(--celadon); }
.curtain-logo { width: min(150px, 34vw); filter: invert(1); }
.curtain.cover .curtain-logo, .curtain.cover .curtain-paw { animation: pawPop 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); }
@keyframes pawPop {
  from { transform: scale(0.35) rotate(-16deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}
.curtain-mark span {
  font-family: var(--head); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: #FFFFFF; padding-left: 0.34em;
}

/* ============ LOADER — cercle + empreintes (accueil) ============ */
.ldx {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.9s ease, visibility 0.9s;
}
.ldx.done { opacity: 0; visibility: hidden; pointer-events: none; }
.ldx-inner { text-align: center; }
.ldx-stage { position: relative; width: min(190px, 44vw); margin: 0 auto 30px; }
.ldx-ring {
  width: 100%; height: auto; aspect-ratio: 1;
  display: block;
  transform: rotate(-90deg);
}
.ldx-crest {
  position: absolute; top: 50%; left: 50%;
  width: 62%; transform: translate(-50%, -50%);
  opacity: 0; animation: ldxCrest 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
@keyframes ldxCrest {
  from { opacity: 0; transform: translate(-50%, -50%) scale(1.35) rotate(-5deg); filter: blur(8px); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0deg); filter: blur(0); }
}
.ldx-ring-bg { fill: none; stroke: var(--line); stroke-width: 1; }
.ldx-ring-fill {
  fill: none; stroke: var(--pine); stroke-width: 1.5; stroke-linecap: round;
  stroke-dasharray: 490; stroke-dashoffset: 490;
  transition: stroke-dashoffset 0.5s ease;
}
#ldx-paws { transform: rotate(90deg); transform-origin: 100px 100px; }
.ldx-paw { opacity: 0; transition: opacity 0.35s ease; }
.ldx-paw.on { opacity: 1; }
.ldx-word {
  font-family: var(--head); font-weight: 600;
  font-size: clamp(1.3rem, 3.2vw, 1.9rem);
  letter-spacing: 0.34em; color: var(--ink); padding-left: 0.34em;
  text-transform: uppercase;
  opacity: 0; animation: ldxIn 1.1s ease 0.15s forwards;
}
.ldx-sub {
  font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-top: 14px; opacity: 0; animation: ldxIn 1.1s ease 0.45s forwards;
}
@keyframes ldxIn { to { opacity: 1; } }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 44px;
  background: linear-gradient(to bottom, rgba(250,251,250,0.92), rgba(250,251,250,0));
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), background 0.4s;
}
.nav.scrolled { background: rgba(250,251,250,0.96); box-shadow: 0 1px 0 rgba(22,33,31,0.07); }
.nav.hide-nav { transform: translateY(-100%); }
.nav-logo {
  font-family: var(--head); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
  display: flex; align-items: center; gap: 12px;
}
.nav-logo em { font-style: normal; color: var(--pine); }
.nav-logo-img {
  height: 46px; width: auto;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-logo:hover .nav-logo-img { transform: scale(1.08) rotate(-2deg); }
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; color: var(--slate);
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px;
  background: var(--pine); transition: width 0.35s cubic-bezier(0.2,0.8,0.2,1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { width: 100%; }
.nav-tel {
  font-family: var(--head);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  border: 1px solid var(--pine); color: var(--pine);
  padding: 10px 20px; border-radius: 100px; transition: background 0.3s, color 0.3s;
}
.nav-tel:hover { background: var(--pine); color: var(--white); }

/* ============ HERO ÉDITORIAL (accueil) ============ */
.hero2 {
  position: relative; min-height: 100svh;
  padding: 132px 44px 72px;
  display: flex; flex-direction: column; justify-content: center;
  background:
    radial-gradient(900px 520px at 80% 12%, rgba(217, 205, 230, 0.5), transparent 65%),
    radial-gradient(720px 460px at 4% 88%, rgba(117, 97, 146, 0.16), transparent 62%),
    var(--bg);
  overflow: hidden;
}
.hero2-crest {
  position: relative; z-index: 3;
  width: clamp(150px, 17vw, 235px);
  margin-bottom: 6px; margin-left: -10px;
}
.hero2-eyebrow {
  font-family: var(--head);
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.hero2-logo {
  position: relative; z-index: 3;
  font-family: var(--head); font-weight: 600; text-transform: uppercase;
  font-size: clamp(3rem, 10.5vw, 10rem);
  line-height: 0.95; letter-spacing: -0.015em; color: var(--ink);
  pointer-events: none;
}
.h2l { display: inline-block; }
.hero2-logo em { font-style: normal; color: var(--pine); }
.hero2-stage {
  position: relative; z-index: 1;
  display: flex; justify-content: flex-end; align-items: flex-start;
  margin-top: clamp(-60px, -4vw, -24px);
  padding: 0 2vw;
}
.hero2-photo { width: min(44vw, 600px); margin-right: 3vw; }
.hero2-photo2 {
  position: absolute; left: 5vw; bottom: -6px;
  width: min(22vw, 300px); z-index: 2;
}
.hero2-photo-frame {
  overflow: hidden; border-radius: 4px;
  box-shadow: 0 30px 70px rgba(22,33,31,0.18);
  background: var(--bg-alt);
}
.hero2-photo .hero2-photo-frame { aspect-ratio: 4 / 5; }
.hero2-photo2 .hero2-photo-frame { aspect-ratio: 3 / 4; }
.hero2-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.museum {
  display: flex; align-items: center; gap: 12px;
  margin-top: 14px;
  font-size: 0.76rem; letter-spacing: 0.04em; color: var(--muted);
}
.museum-line { display: inline-block; width: 26px; height: 1px; background: var(--pine); flex-shrink: 0; }
.hero2-foot {
  position: relative; z-index: 3;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 26px; margin-top: clamp(36px, 5vw, 64px);
}
.hero2-note {
  font-size: clamp(1rem, 1.35vw, 1.18rem); color: var(--slate); line-height: 1.6;
}
.hero2-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-block;
  font-family: var(--head);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 100px; transition: all 0.35s cubic-bezier(0.2,0.8,0.2,1);
  border: none; cursor: pointer;
}
.btn-ink { background: var(--pine); color: var(--white); }
.btn-ink:hover { background: var(--pine-soft); transform: translateY(-2px); }
.btn-line { border: 1px solid var(--pine); color: var(--pine); }
.btn-line:hover { background: var(--pine); color: var(--white); transform: translateY(-2px); }
.btn-solid { background: var(--ink); color: var(--white); }
.btn-solid:hover { background: var(--slate); transform: translateY(-2px); }

/* ============ HERO DE PAGE INTÉRIEURE ============ */
.phero {
  padding: 168px 44px 64px;
  background: var(--bg);
}
.phero-eyebrow {
  font-family: var(--head);
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.phero h1 {
  font-size: clamp(1.9rem, 4.4vw, 3.6rem);
  line-height: 1.1; max-width: 24ch; color: var(--ink);
}
.phero h1 em { font-style: normal; color: var(--pine); }
.phero-intro {
  max-width: 560px; margin-top: 26px;
  font-size: 1.02rem; color: var(--slate);
}

/* ============ LA COURSE — séquence scroll-driven (accueil) ============ */
.cine { position: relative; }
.cine-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  background: #10201E;
}
#cine-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.cine-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(16,32,30,0.55) 0%, rgba(16,32,30,0.06) 34%),
    linear-gradient(to bottom, rgba(16,32,30,0.4) 0%, rgba(16,32,30,0) 26%);
}
.cine-chapters { position: absolute; inset: 0; }
.cine-ch {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 44px 110px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.6s ease;
}
.cine-ch.visible { opacity: 1; pointer-events: auto; }
.cine-eyebrow {
  font-family: var(--head);
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: #D9CDE6; margin-bottom: 18px;
  transform: translateY(18px); opacity: 0;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1) 0.1s, opacity 0.6s 0.1s;
}
.cine-ch h2 {
  font-family: var(--head); font-weight: 600; text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 5.2rem); line-height: 1.02; letter-spacing: 0.03em;
  color: #FFFFFF; max-width: 14ch;
  transform: translateY(26px); opacity: 0;
  transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1) 0.18s, opacity 0.7s 0.18s;
}
.cine-ch p {
  margin-top: 18px; max-width: 480px;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem); color: rgba(255,255,255,0.82);
  transform: translateY(20px); opacity: 0;
  transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1) 0.28s, opacity 0.7s 0.28s;
}
.cine-ch .cine-ctas {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px;
  transform: translateY(20px); opacity: 0;
  transition: transform 0.7s cubic-bezier(0.2,0.8,0.2,1) 0.38s, opacity 0.7s 0.38s;
}
.cine-ch.visible .cine-eyebrow,
.cine-ch.visible h2,
.cine-ch.visible p,
.cine-ch.visible .cine-ctas { transform: translateY(0); opacity: 1; }
.btn-white { background: #FFFFFF; color: var(--pine); }
.btn-white:hover { background: #D9CDE6; transform: translateY(-2px); }
.btn-wline { border: 1px solid rgba(255,255,255,0.7); color: #FFFFFF; }
.btn-wline:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.cine-progress {
  position: absolute; left: 44px; right: 44px; bottom: 54px;
  height: 2px; background: rgba(255,255,255,0.2); overflow: hidden;
}
.cine-progress span {
  position: absolute; inset: 0; background: #D9CDE6;
  transform: scaleX(0); transform-origin: left;
}
.cine-hint {
  position: absolute; right: 44px; bottom: 66px;
  font-family: var(--head);
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ============ LIGNE SAPIN SCROLL-DRIVEN (accueil) ============ */
.gl-wrap { position: relative; }
.goldline {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  pointer-events: none; z-index: 0;
}
.goldline svg { width: 2px; height: 100%; overflow: visible; }
.goldline path { stroke: var(--pine); stroke-width: 1.5; fill: none; opacity: 0.4; }

/* ============ MANIFESTE — mots qui s'allument au scroll ============ */
.manif { position: relative; background: var(--bg); }
.manif-sticky {
  position: sticky; top: 0; min-height: 100vh;
  display: flex; align-items: center;
}
.manif-inner { max-width: 940px; margin: 0 auto; padding: 0 40px; text-align: center; position: relative; z-index: 2; }
.manif-label {
  font-family: var(--head);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 34px;
}
.manif-text {
  font-family: var(--head); font-weight: 500; text-transform: uppercase;
  font-size: clamp(1.3rem, 2.7vw, 2.3rem); line-height: 1.5; letter-spacing: 0.04em;
  color: var(--ink);
}
.manif-text .mw { opacity: 0.12; display: inline-block; }
.manif-text em { font-style: normal; color: var(--pine); }
/* Décor du manifeste : trace de pas + empreinte filigrane */
.manif-decor { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.manif-paw-big { position: absolute; top: 9%; right: 6%; width: clamp(180px, 23vw, 330px); height: auto; fill: var(--celadon); opacity: 0.17; transform: rotate(-14deg); }
.manif-step { position: absolute; width: 30px; height: 30px; fill: var(--celadon); opacity: 0; }
.manif-step.pine { fill: var(--pine); }
@media (max-width: 820px) {
  .manif-paw-big { width: 36vw; top: 5%; right: 4%; }
  .manif-step { width: 23px; height: 23px; }
}
/* La longe : fil cognac qui se dessine au scroll, tissé sous le contenu */
html { background: var(--bg); }
body { background: transparent; }
.manif, .tease:not(.tease-alt), .faq { background: transparent; }
/* Sandwich : fonds de section (dessous) < fil + dessins < contenu (dessus).
   Le fil reste donc visible en traversant les panneaux, mais passe derrière textes et photos. */
.longe-wrap { position: absolute; left: 0; width: 100%; z-index: 1; pointer-events: none; }
.tease .wrap, .faq .wrap { position: relative; z-index: 2; }
.longe-wrap svg { display: block; width: 100%; height: 100%; }
.longe-path { fill: none; stroke: #B06B3A; stroke-width: 2.5; stroke-linecap: round; opacity: 0.95; }
.longe-halo { fill: none; stroke: #B06B3A; stroke-width: 9; stroke-linecap: round; opacity: 0.07; }
.longe-fig { position: absolute; pointer-events: none; opacity: 0; }
/* sur mobile la longe traverse les textes : on la coupe */
@media (max-width: 820px) { .longe-wrap { display: none; } }

/* ============ CADRE PHOTO ÉDITORIAL RÉUTILISABLE ============ */
.frame { position: relative; }
.frame-inner {
  overflow: hidden; border-radius: 4px;
  box-shadow: 0 26px 60px rgba(22,33,31,0.16);
  background: var(--bg-alt);
}
.frame-inner img { width: 100%; height: 100%; object-fit: cover; }

/* ============ TEASERS ÉDITORIAUX (accueil) ============ */
.tease { padding: 120px 0; background: var(--bg); position: relative; }
.tease-alt { background: var(--bg-alt); }
.tease-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.tease-grid.rev .tease-txt { order: -1; }

/* ── LA PHOTO QUI TIENT LA DROITE ──────────────────────────────────
   Le texte défile à gauche, la photo reste calée à droite pendant toute
   la traversée de la section. Trois conditions, toutes nécessaires :
   1. `align-items: start` — avec `center`, l'élément collant n'a aucune
      course : il est centré dans sa cellule et ne bouge jamais.
   2. la colonne de gauche doit être PLUS HAUTE que la photo, sinon il n'y
      a rien à faire défiler et l'effet ne se voit pas. D'où les valeurs
      empilées les unes sous les autres plutôt qu'en trois colonnes.
   3. la photo est élevée d'un cran : un élément collant crée son propre
      contexte d'empilement, et le polaroid qui déborde passerait derrière
      le texte sans ça. */
.tease-grid.tease-fixe { align-items: start; }

.tease-grid.tease-fixe > .frame {
  position: sticky;
  top: 12vh;
  z-index: 2;
}

/* Les trois valeurs s'empilent : c'est ce qui donne sa course au défilement. */
/* L écart entre les valeurs EST la duree de l effet : plus la colonne de
   gauche est haute, plus la photo reste tenue longtemps. A 46 px, elle ne
   tenait que trois cents pixels — on ne voyait presque rien. */
.tease-fixe .vals {
  grid-template-columns: 1fr;
  gap: 96px;
  margin-top: 80px;
}

.tease-fixe .val { padding-top: 34px; }
.tease-fixe .val p { max-width: 42ch; }
.tease-fixe .tease-txt { padding-bottom: 18vh; }

/* Un téléphone n'a pas deux colonnes : la photo redevient une image normale,
   posée au-dessus du texte, et rien ne colle. */
@media (max-width: 900px) {
  .tease-grid.tease-fixe > .frame { position: static; }
  .tease-fixe .vals { grid-template-columns: 1fr; gap: 30px; margin-top: 40px; }
  .tease-fixe .tease-txt { padding-bottom: 0; }
}
.tease-txt p { color: var(--slate); font-size: 1rem; max-width: 460px; margin-bottom: 18px; }
.tease-txt .btn { margin-top: 16px; }
.tease .frame-inner { aspect-ratio: 4 / 5; }
.tease-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.tease-duo .frame-inner { aspect-ratio: 3 / 4; }
.chiprow { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 8px; }
.pill {
  display: inline-block;
  font-family: var(--head);
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 8px 16px; border-radius: 100px;
}
.pill-dispo { background: #E4F3E9; color: #1E7A46; border: 1px solid #BFE4CC; }
/* Carte chiot disponible : toute la carte est cliquable */
.coll-card { position: relative; }
.coll-link { position: absolute; inset: 0; z-index: 1; border-radius: 12px; }
.coll-card:has(.coll-link):hover { transform: translateY(-4px); transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1); }
.pill-parti { background: #F1EDF5; color: #786C88; border: 1px solid #E1DAE9; }
.pill-resa { background: #FCEFDB; color: #B45309; border: 1px solid #F3D9AE; }
.pill-info { border: 1px solid var(--line); color: var(--muted); }

/* ============ VALEURS NUMÉROTÉES ============ */
.vals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 56px; }
.val { border-top: 1px solid var(--line); padding-top: 26px; }
.val-num {
  font-family: var(--head); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.2em; color: var(--pine); margin-bottom: 14px;
}
.val h3 { font-size: 0.95rem; letter-spacing: 0.1em; margin-bottom: 10px; }
.val p { font-size: 0.92rem; color: var(--muted); }

/* ============ STICKY REVEAL (élevage) ============ */
.sr { position: relative; }
.sr-sticky { position: sticky; top: 0; height: 92vh; overflow: hidden; z-index: 0; }
.sr-sticky img { width: 100%; height: 100%; object-fit: cover; }
.sr-panel {
  position: relative; z-index: 2;
  background: var(--bg);
  border-radius: 28px 28px 0 0;
  margin-top: -14vh;
  padding: 96px 0 110px;
  box-shadow: 0 -26px 56px rgba(22,33,31,0.16);
}
.sr-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px;
  max-width: 1000px; margin-bottom: 72px;
  font-size: 1rem; color: var(--slate);
}

/* ============ CHAPITRES ÉPINGLÉS (élevage — la méthode) ============ */
.pinchap { position: relative; background: var(--bg-alt); }
.pinchap-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center;
}
.pinchap-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
  max-width: 1240px; margin: 0 auto; padding: 0 40px; width: 100%;
}
.pinchap-photos { position: relative; aspect-ratio: 4 / 5; max-height: 72vh; }
.pinchap-photo {
  position: absolute; inset: 0; overflow: hidden; border-radius: 4px;
  box-shadow: 0 26px 60px rgba(22,33,31,0.18);
  opacity: 0; transition: opacity 0.55s ease;
}
.pinchap-photo img { width: 100%; height: 100%; object-fit: cover; }
.pinchap-photo.visible { opacity: 1; }
.pinchap-steps { position: relative; min-height: 300px; }
.pinchap-step {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.pinchap-step.visible { opacity: 1; transform: translateY(0); }
.pinchap-num {
  font-family: var(--head); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.24em; color: var(--pine); margin-bottom: 18px;
}
.pinchap-step h3 { font-size: 1.25rem; letter-spacing: 0.08em; margin-bottom: 14px; }
.pinchap-step p { color: var(--slate); font-size: 1rem; max-width: 420px; }
.pinchap-progress { display: flex; gap: 8px; margin-top: 34px; }
.pinchap-dot { width: 34px; height: 2px; background: var(--line); position: relative; overflow: hidden; }
.pinchap-dot span { position: absolute; inset: 0; background: var(--pine); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.pinchap-dot.on span { transform: scaleX(1); }

/* ============ SCROLL HORIZONTAL ÉPINGLÉ (les chiens) ============ */
.hscroll { position: relative; background: var(--bg); overflow: hidden; }
.hscroll-track {
  display: flex; gap: 40px; align-items: stretch;
  padding: 0 44px; width: max-content;
}
.dogcard {
  width: min(72vw, 880px); flex-shrink: 0;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden;
}
.dogcard-img { position: relative; min-height: 420px; }
.dogcard-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dogcard-body { padding: 44px 42px; display: flex; flex-direction: column; justify-content: center; }
.dogcard-role {
  font-family: var(--head);
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.dogcard-body h3 { font-size: 1.15rem; letter-spacing: 0.08em; color: var(--pine); margin-bottom: 6px; }
.dogcard-lof { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 22px; }
.dogcard-tests { list-style: none; margin-bottom: 22px; }
.dogcard-tests li {
  font-size: 0.9rem; color: var(--slate); padding: 7px 0 7px 26px; position: relative;
  border-bottom: 1px solid var(--bg-alt);
}
.dogcard-tests li::before {
  content: ''; position: absolute; left: 0; top: 13px; width: 14px; height: 14px;
  background: var(--pine);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.dogcard-txt { font-size: 0.94rem; color: var(--muted); }
.hscroll-hint {
  display: flex; align-items: center; gap: 12px; padding: 26px 44px 40px;
  font-family: var(--head);
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.hscroll-hint::after { content: ''; width: 46px; height: 1px; background: var(--pine); }

/* ============ LIGNÉES ============ */
.lines { padding: 120px 0; background: var(--bg-alt); }
.lines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.line-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 34px 30px;
  transition: transform 0.45s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.45s;
}
.line-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(22,33,31,0.1); }
.line-card h3 { font-size: 0.98rem; letter-spacing: 0.08em; margin-bottom: 10px; color: var(--pine); }
.line-card p { font-size: 0.92rem; color: var(--muted); }

/* ============ COLLECTION CHIOTS (fiches numérotées) ============ */
.coll { padding: 60px 0 120px; background: var(--bg); }
.coll-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px 40px; margin-top: 26px; }
.coll-card { position: relative; }
.coll-num {
  position: absolute; top: -16px; left: -6px; z-index: 3;
  font-family: var(--head); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--pine);
  background: var(--bg); padding: 6px 14px; border-radius: 100px; border: 1px solid var(--line);
}
.coll-card .frame-inner { aspect-ratio: 4 / 4.6; }
.coll-meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-top: 16px; }
.coll-meta h3 { font-size: 1.15rem; letter-spacing: 0.08em; color: var(--pine); }
.coll-sex { font-size: 0.8rem; color: var(--muted); }
.coll-card .museum { margin-top: 10px; }

/* ============ TIMELINE ÉPINGLÉE (chiots — 8 semaines) ============ */
.pintl { position: relative; background: var(--bg-alt); }
.pintl-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.pintl-head { max-width: 1240px; margin: 0 auto; padding: 0 40px; width: 100%; }
.pintl-stage { max-width: 1240px; margin: 44px auto 0; padding: 0 40px; width: 100%; position: relative; min-height: 300px; }
.pintl-step { position: absolute; inset: 0; opacity: 0; transform: translateY(24px); transition: opacity 0.5s, transform 0.5s; pointer-events: none; }
.pintl-step.visible { opacity: 1; transform: translateY(0); }
.pintl-week {
  font-family: var(--head); font-weight: 600;
  font-size: clamp(3rem, 7vw, 6rem); line-height: 1; color: var(--pine); opacity: 0.92;
  letter-spacing: 0.02em;
}
.pintl-step h3 { font-size: 1.2rem; letter-spacing: 0.08em; margin: 16px 0 12px; }
.pintl-step p { color: var(--slate); max-width: 520px; font-size: 1rem; }
.pintl-bar { max-width: 1240px; margin: 40px auto 0; padding: 0 40px; width: 100%; }
.pintl-bar-line { height: 2px; background: var(--line); position: relative; overflow: hidden; }
.pintl-bar-line span { position: absolute; inset: 0; background: var(--pine); transform: scaleX(0); transform-origin: left; }

/* ============ PROFILS / ENGAGEMENTS CARDS ============ */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.cards4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.ecard {
  background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  padding: 34px 28px;
  transition: transform 0.45s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.45s;
}
.ecard:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(22,33,31,0.1); }
.ecard svg { width: 32px; height: 32px; color: var(--pine); margin-bottom: 20px; }
.ecard h3 { font-size: 0.95rem; letter-spacing: 0.08em; margin-bottom: 10px; }
.ecard p { font-size: 0.9rem; color: var(--muted); }
.eng { padding: 120px 0; background: var(--bg); }

/* ============ SECTIONS GÉNÉRIQUES ============ */
.sect { padding: 120px 0; }
.sect-cream { background: var(--bg-alt); }
.sect-ivory { background: var(--bg); }

/* ============ CONTACT ============ */
.contact { padding: 60px 0 120px; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: stretch; }
.contact-visual { border-radius: 4px; overflow: hidden; min-height: 480px; box-shadow: 0 26px 60px rgba(22,33,31,0.16); }
.contact-visual img { width: 100%; height: 100%; object-fit: cover; }
.contact-txt { color: var(--slate); font-size: 1rem; margin-bottom: 36px; max-width: 520px; }
.ff { margin-bottom: 22px; }
.ff label {
  display: block;
  font-family: var(--head);
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.ff input, .ff select, .ff textarea {
  width: 100%; border: none; border-bottom: 1px solid var(--line);
  background: transparent; padding: 10px 2px; font-family: var(--sans); font-size: 1rem;
  color: var(--ink); outline: none; transition: border-color 0.3s; border-radius: 0;
  -webkit-appearance: none; appearance: none; resize: vertical;
}
.ff input:focus, .ff select:focus, .ff textarea:focus { border-bottom-color: var(--pine); }
.btn-full { width: 100%; margin-top: 10px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 16px; text-align: center; }
.form-ok { padding: 40px 0; }
.form-ok h3 { font-size: 1.2rem; letter-spacing: 0.08em; margin-bottom: 12px; color: var(--pine); }
.form-ok p { color: var(--slate); }
.coords { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 28px; }
.coords a { display: block; color: var(--slate); padding: 4px 0; font-size: 0.95rem; transition: color 0.3s; }
.coords a:hover { color: var(--pine); }

/* ============ FAQ ============ */
.faq { padding: 120px 0; background: var(--bg); }
.faq-item { border-bottom: 1px solid var(--line); max-width: 860px; }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  font-family: var(--head); font-weight: 500; font-size: 1.02rem; padding: 26px 0; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-plus::before, .faq-plus::after {
  content: ''; position: absolute; background: var(--pine); transition: transform 0.35s;
}
.faq-plus::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq-plus::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item[open] .faq-plus::after { transform: scaleY(0); }
.faq-item p { color: var(--slate); font-size: 0.98rem; padding: 0 40px 26px 0; max-width: 720px; }

/* ============ CTA BANDEAU FINAL ============ */
.endcta { padding: 130px 0; background: var(--bg-alt); text-align: center; }
.endcta .section-title { max-width: 26ch; margin-left: auto; margin-right: auto; }
.endcta .btn { margin-top: 18px; }

/* ============ FOOTER ============ */
.footer { background: var(--pine); color: rgba(255,255,255,0.85); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; padding-bottom: 56px; }
.footer-logo {
  font-family: var(--head); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 14px;
}
.footer-crest {
  width: 130px; margin-bottom: 18px;
  filter: invert(1); opacity: 0.9;
}
.footer-logo em { font-style: normal; color: var(--celadon); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-head {
  font-family: var(--head);
  font-size: 0.64rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--celadon); margin-bottom: 18px;
}
.footer-col a { display: block; font-size: 0.92rem; color: rgba(255,255,255,0.75); padding: 5px 0; transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.14); padding: 22px 40px; text-align: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .cards4 { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .lines-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .wrap { padding: 0 22px; }
  .nav { padding: 14px 18px; }
  .nav-links { display: none; }
  .nav-logo { font-size: 0.7rem; white-space: nowrap; letter-spacing: 0.14em; gap: 9px; }
  .nav-logo-img { height: 38px; }
  .nav-tel { font-size: 0.66rem; padding: 9px 14px; white-space: nowrap; flex-shrink: 0; }
  .hero2 { padding: 108px 22px 56px; min-height: auto; }
  .hero2-crest { width: clamp(120px, 34vw, 170px); margin-left: -4px; }
  .hero2-logo { font-size: min(13.5vw, 4.2rem); }
  .hero2-stage { flex-direction: column; align-items: stretch; margin-top: 18px; padding: 0; }
  .hero2-photo { width: 100%; margin-right: 0; }
  .hero2-photo2 { position: relative; left: auto; bottom: auto; width: 62%; margin: 26px 0 0 auto; }
  .hero2-foot { flex-direction: column; align-items: flex-start; margin-top: 40px; }
  .cine-ch { padding: 0 22px 96px; }
  .cine-progress { left: 22px; right: 22px; bottom: 44px; }
  .cine-hint { right: 22px; bottom: 56px; }
  .phero { padding: 120px 22px 44px; }
  .goldline { display: none; }
  .manif-text { font-size: clamp(1.05rem, 4.6vw, 1.4rem); }
  .tease { padding: 76px 0; }
  .tease-grid { grid-template-columns: 1fr; gap: 34px; }
  .tease-grid.rev .tease-txt { order: 0; }
  .tease-duo { grid-template-columns: 1fr; gap: 30px; }
  .vals { grid-template-columns: 1fr; gap: 24px; }
  .sr-panel { margin-top: -10vh; border-radius: 20px 20px 0 0; padding: 64px 0 72px; }
  .sr-cols { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
  .pinchap-grid { grid-template-columns: 1fr; gap: 26px; padding: 0 22px; }
  .pinchap-photos { max-height: 38vh; aspect-ratio: 4 / 3; }
  .pinchap-step h3 { font-size: 1.05rem; }
  .hscroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .dogcard { width: 86vw; grid-template-columns: 1fr; }
  .dogcard-img { min-height: 260px; }
  .dogcard-body { padding: 28px 24px; }
  .hscroll-track { padding: 0 22px 24px; gap: 20px; }
  .coll-grid { grid-template-columns: 1fr; gap: 52px; }
  .pintl-stage { min-height: 340px; }
  .cards3, .cards4 { grid-template-columns: 1fr; gap: 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-visual { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .sect, .eng, .faq, .lines, .coll, .endcta { padding: 76px 0; }
}
@media (max-width: 520px) {
  .btn { padding: 14px 24px; font-size: 0.66rem; }
  .nav-logo-txt { display: none; }
  .nav-logo-img { height: 42px; }
}

/* ── pedigree : liens pere / mere sur les fiches chiens ── */
.dogcard-pedigree { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: 14px; }
.dogcard-pedigree span { font-family: var(--head); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.dogcard-pedigree a { font-family: var(--head); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; color: var(--pine); text-decoration: none; border-bottom: 1px solid var(--pine); padding-bottom: 2px; transition: color .25s, border-color .25s; }
.dogcard-pedigree a:hover { color: var(--pine-soft); border-color: var(--pine-soft); }

/* ============ POLISH PACK — grain editorial, scrollbar, washes, filigrane, hovers ============ */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9990; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
}
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--celadon); border-radius: 99px; border: 3px solid var(--bg-alt); }
::-webkit-scrollbar-thumb:hover { background: var(--pine-soft); }

.phero {
  background:
    radial-gradient(760px 400px at 88% 0%, rgba(217, 205, 230, 0.5), transparent 62%),
    radial-gradient(520px 320px at 0% 100%, rgba(117, 97, 146, 0.1), transparent 60%),
    var(--bg);
}

.endcta { position: relative; overflow: hidden; }
.endcta::before {
  content: ''; position: absolute; right: -6%; top: 50%;
  width: min(680px, 72vw); aspect-ratio: 1011 / 627;
  transform: translateY(-50%) rotate(-5deg);
  background: url('images-reelles/logo-de-gwada.png') center / contain no-repeat;
  opacity: 0.06; pointer-events: none;
}
.endcta .wrap { position: relative; }
.faq { position: relative; overflow: hidden; }
.faq::before {
  content: ''; position: absolute; left: -10%; bottom: -6%;
  width: min(560px, 64vw); aspect-ratio: 1011 / 627;
  transform: rotate(4deg);
  background: url('images-reelles/logo-de-gwada.png') center / contain no-repeat;
  opacity: 0.045; pointer-events: none;
}
.faq .wrap { position: relative; }

.val { transition: border-color 0.4s, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.val:hover { border-top-color: var(--pine); transform: translateY(-4px); }
.vid-card, .actu-card { transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s, border-color 0.5s; }
.vid-card:hover, .actu-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(92, 74, 114, 0.14); border-color: var(--celadon); }

.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ''; position: absolute; top: 0; left: -70%; width: 46%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-22deg); transition: left 0.65s ease; pointer-events: none;
}
.btn:hover::after { left: 130%; }

.museum-line { transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
figure:hover .museum-line { width: 44px; }

/* ============ POLAROÏDS — grain de vie, scotch, legendes manuscrites, os ============ */
.pola {
  --rot: -3deg;
  position: relative; display: block;
  background: #fff; padding: 12px 12px 52px;
  box-shadow: 0 16px 38px rgba(30, 24, 38, 0.18);
  transform: rotate(var(--rot));
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s;
}
.pola:hover { transform: rotate(0deg) scale(1.035); box-shadow: 0 26px 54px rgba(30, 24, 38, 0.26); z-index: 6; }
.pola img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.pola figcaption {
  position: absolute; left: 10px; right: 10px; bottom: 12px; text-align: center;
  font-family: 'Caveat', cursive; font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  color: var(--slate); line-height: 1.1; white-space: nowrap; overflow: hidden;
}
.pola-tape {
  position: absolute; top: -13px; left: 50%; z-index: 2;
  width: 96px; height: 27px;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(217, 205, 230, 0.85);
  box-shadow: 0 2px 6px rgba(30, 24, 38, 0.14);
}
.pola-tape.t-jaune { background: rgba(240, 205, 140, 0.85); transform: translateX(-50%) rotate(2.5deg); }
.pola-tape.t-vert { background: rgba(178, 205, 172, 0.88); transform: translateX(-50%) rotate(-1.5deg); }
.pola-tape.t-coin { left: auto; right: -22px; top: 12px; width: 74px; transform: rotate(48deg); }
.bone { display: inline-block; width: 42px; color: var(--pine); opacity: 0.55; }
.bone svg { width: 100%; height: auto; display: block; }
.pola-grappe { position: relative; }
.pola-grappe .bone {
  position: absolute; z-index: 3;
  transform: rotate(-22deg);
}
@media (max-width: 820px) {
  .pola { padding: 9px 9px 42px; }
  .pola figcaption { font-size: 1.1rem; bottom: 9px; }
  .pola-tape { width: 74px; height: 22px; top: -10px; }
}
.pola-mini { padding: 8px 8px 40px; }
.pola-mini figcaption { font-size: 1.15rem; bottom: 8px; }
@media (max-width: 820px) {
  .pola-mini { width: 128px !important; right: -8px !important; bottom: -20px !important; }
}

/* ============ POLYVALENCE — le meme chien, pour tout ============ */
.hero2-vies {
  font-family: var(--head); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  color: var(--ink); margin-bottom: 10px;
}
.hero2-vies b { color: var(--pine); display: inline-block; white-space: nowrap; }

/* ============ MENU MOBILE — burger + tiroir ============ */
.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
  flex-direction: column; justify-content: center; gap: 6px;
  position: relative; z-index: 1002; flex-shrink: 0;
}
.nav-burger span {
  display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s;
}
body.mnav-open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.mnav-open .nav-burger span:nth-child(2) { opacity: 0; }
body.mnav-open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mnav {
  position: fixed; inset: 0; z-index: 1000; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 84px 26px 34px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}
body.mnav-open .mnav { opacity: 1; visibility: visible; }
body.mnav-open { overflow: hidden; }
body.mnav-open .nav { transform: none !important; background: var(--bg); z-index: 1001; }
.mnav-crest { width: 116px; margin-bottom: 22px; }
.mnav .mnav-link {
  font-family: var(--head); font-weight: 600; text-transform: uppercase;
  font-size: clamp(1.5rem, 7.2vw, 2rem); letter-spacing: 0.02em; color: var(--ink);
  padding: 12px 0; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mnav .mnav-link em {
  font-style: normal; font-size: 0.6rem; letter-spacing: 0.24em; color: var(--muted);
}
.mnav .mnav-link.actif { color: var(--pine); }
body.mnav-open .mnav .mnav-link { opacity: 1; transform: none; }
body.mnav-open .mnav .mnav-link:nth-of-type(1) { transition-delay: 0.06s; }
body.mnav-open .mnav .mnav-link:nth-of-type(2) { transition-delay: 0.11s; }
body.mnav-open .mnav .mnav-link:nth-of-type(3) { transition-delay: 0.16s; }
body.mnav-open .mnav .mnav-link:nth-of-type(4) { transition-delay: 0.21s; }
body.mnav-open .mnav .mnav-link:nth-of-type(5) { transition-delay: 0.26s; }
body.mnav-open .mnav .mnav-link:nth-of-type(6) { transition-delay: 0.31s; }
.mnav .mnav-tel {
  margin-top: 30px; text-align: center;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.4s ease 0.38s, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.38s;
}
body.mnav-open .mnav .mnav-tel { opacity: 1; transform: none; }

/* ============ TYPO MOBILE — lisibilite resserree ============ */
@media (max-width: 820px) {
  .nav-burger { display: flex; }
  .hero2-eyebrow, .phero-eyebrow { font-size: 0.56rem; letter-spacing: 0.16em; }
  .section-label { font-size: 0.6rem; letter-spacing: 0.18em; }
  .hero2-vies { font-size: 0.98rem; }
  .hero2-note, .phero-intro { font-size: 0.95rem; line-height: 1.6; }
  .museum { font-size: 0.7rem; }
  .dogcard-pedigree a { font-size: 0.64rem; }
}

/* credit studio */
.footer-legal{display:flex;justify-content:space-between;align-items:center;gap:14px;flex-wrap:wrap}
.footer-credit{color:inherit;text-decoration:none;opacity:.72;transition:opacity .25s}
.footer-credit:hover{opacity:1;text-decoration:underline;text-underline-offset:3px}
@media(max-width:820px){.footer-legal{flex-direction:column;text-align:center}}
