/* =========================================================
   Yorkshire — élevage familial · landing de vente
   Palette « bleu acier & feu » (couleurs de la race) sur crème chaud
   Fraunces (display) + Inter (texte)
   ========================================================= */

/* ---------- Reset léger ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--steel); outline-offset: 3px; border-radius: 6px; }

/* ---------- Tokens ---------- */
:root {
  --cream:      #F8F3EB;
  --sand:       #EFE6D7;
  --paper:      #FFFFFF;
  --ink:        #2A2521;
  --ink-soft:   #4B433B;
  --muted:      #7C7167;
  --line:       #E7DCCB;
  --line-soft:  #F0E7D8;

  --steel:      #3A5B77;   /* bleu acier — la selle du Yorkshire */
  --steel-deep: #2B4560;
  --steel-ink:  #21384f;
  --steel-mist: #ECF1F4;

  --tan:        #C1873A;   /* feu / doré — les marques du Yorkshire */
  --tan-deep:   #A2702A;
  --tan-mist:   #F5E9D2;

  --green:      #4F7A54;
  --green-mist: #E7F0E6;

  --shadow-sm:  0 1px 2px rgba(42,37,33,.05), 0 2px 8px rgba(42,37,33,.05);
  --shadow-md:  0 4px 14px rgba(42,37,33,.07), 0 14px 40px rgba(42,37,33,.08);
  --shadow-lg:  0 10px 30px rgba(42,37,33,.10), 0 30px 70px rgba(43,69,96,.12);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --maxw: 1160px;
  --pad: clamp(20px, 5vw, 40px);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

section { padding-block: clamp(56px, 9vw, 108px); position: relative; }
.section--sand { background: var(--sand); }
.section--paper { background: var(--paper); }

/* ---------- Typo ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.4rem, 6.2vw, 4.4rem); font-weight: 550; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -0.01em; }
p { color: var(--ink-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-sans);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--tan-deep);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: var(--tan); display: inline-block; border-radius: 2px;
}
.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head .lead { margin-top: 16px; font-size: 1.1rem; color: var(--muted); }

/* ---------- Boutons ---------- */
.btn {
  --bg: var(--steel); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .85em 1.5em; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  font-weight: 600; font-size: .98rem; letter-spacing: .005em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: var(--shadow-sm);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--primary { --bg: var(--steel); }
.btn--primary:hover { background: var(--steel-deep); }
.btn--gold { --bg: var(--tan); }
.btn--gold:hover { background: var(--tan-deep); }
.btn--wa { --bg: #25D366; --fg: #0b3d24; }
.btn--wa:hover { background: #1fbe5a; }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  border-color: var(--line); box-shadow: none; background: var(--paper);
}
.btn--ghost:hover { border-color: var(--steel); color: var(--steel); background: var(--paper); }
.btn--lg { padding: 1.02em 1.9em; font-size: 1.05rem; }
.btn svg { width: 1.15em; height: 1.15em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(42,37,33,.05);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; letter-spacing: -0.01em; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; flex: 0 0 auto;
  background: linear-gradient(150deg, var(--steel), var(--steel-deep));
  box-shadow: var(--shadow-sm);
}
.brand .mark svg { width: 24px; height: 24px; }
.brand small { display: block; font-family: var(--font-sans); font-weight: 500; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); transition: color .15s; position: relative; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:var(--tan); border-radius:2px; transition:width .22s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; font-size: .95rem; color: var(--steel); }
.nav-phone svg { width: 1.05em; height: 1.05em; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:""; display:block; width:20px; height:2px; background:var(--ink); border-radius:2px; transition:.25s; }
.nav-toggle span::before { transform: translateY(-6px); } .nav-toggle span::after { transform: translateY(4px); }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: rotate(45deg); }
.nav-open .nav-toggle span::after { transform: rotate(-45deg) translateY(-1px); }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(52px, 8vw, 96px); position: relative; overflow: hidden; }
.hero::before {
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(60% 55% at 82% 8%, rgba(193,135,58,.14), transparent 60%),
    radial-gradient(55% 60% at 6% 90%, rgba(58,91,119,.12), transparent 60%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy h1 em { font-style: italic; color: var(--steel); }
.hero-copy .lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 30ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 10px 12px; }
.chip {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .5em .9em; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: .84rem; font-weight: 500; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.chip svg { width: 1.05em; height: 1.05em; color: var(--green); }

/* Hero media */
.hero-media { position: relative; }
.hero-media .frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid var(--paper);
  aspect-ratio: 4 / 4.4;
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .badge-float {
  position: absolute; left: -18px; bottom: 26px; z-index: 3;
  background: var(--paper); border-radius: var(--r-md); padding: 14px 18px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-soft);
}
.badge-float .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-mist); flex: 0 0 auto; }
.badge-float b { font-family: var(--font-display); font-size: 1.05rem; display: block; }
.badge-float span { font-size: .8rem; color: var(--muted); }
.hero-media .paw-accent { position: absolute; top: -14px; right: 22px; color: var(--tan); opacity: .5; z-index: 3; }
.hero-media .paw-accent svg { width: 46px; height: 46px; }

/* ---------- Barre de faits ---------- */
.facts { margin-top: clamp(28px, 4vw, 8px); }
.facts-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.fact { padding: 22px clamp(14px, 2vw, 24px); text-align: center; border-right: 1px solid var(--line-soft); }
.fact:last-child { border-right: none; }
.fact .k { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.fact .v { font-family: var(--font-display); font-size: 1.32rem; color: var(--ink); line-height: 1.2; }
.fact .v small { display:block; font-family: var(--font-sans); font-size: .8rem; color: var(--tan-deep); font-weight: 600; margin-top: 2px; }

/* ---------- Cartes chiots ---------- */
.pups-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.2vw, 26px); }
.pup {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
  display: flex; flex-direction: column;
}
.pup:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-soft); }
.pup .media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--sand); }
.pup .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pup:hover .media img { transform: scale(1.05); }
.status {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: .45em;
  padding: .38em .75em; border-radius: 999px; font-size: .76rem; font-weight: 700;
  letter-spacing: .02em; backdrop-filter: blur(4px);
}
.status .d { width: 7px; height: 7px; border-radius: 50%; }
.status--dispo { background: color-mix(in srgb, var(--green-mist) 88%, transparent); color: var(--green); border: 1px solid color-mix(in srgb, var(--green) 30%, transparent); }
.status--dispo .d { background: var(--green); }
.status--resa { background: rgba(255,255,255,.85); color: var(--muted); border: 1px solid var(--line); }
.status--resa .d { background: var(--muted); }
.pup .body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pup .top { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.pup .name { font-family: var(--font-display); font-size: 1.25rem; }
.pup .sex { font-size: .82rem; font-weight: 600; padding: .18em .55em; border-radius: 6px; }
.pup .sex--f { background: var(--tan-mist); color: var(--tan-deep); }
.pup .sex--m { background: var(--steel-mist); color: var(--steel); }
.pup .desc { font-size: .9rem; color: var(--muted); }
.pup .meta { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line-soft); }
.pup .price { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.pup .more { font-size: .86rem; font-weight: 600; color: var(--steel); display: inline-flex; align-items: center; gap: .3em; }
.pup .more svg { width: .9em; transition: transform .18s; }
.pup:hover .more svg { transform: translateX(3px); }

/* ---------- Parents / lignée ---------- */
.parents-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 34px); }
.parent {
  display: grid; grid-template-columns: 150px 1fr; gap: 22px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 20px; box-shadow: var(--shadow-sm);
}
.parent .avatar { aspect-ratio: 1/1; border-radius: var(--r-md); overflow: hidden; background: var(--sand); box-shadow: var(--shadow-sm); }
.parent .avatar img { width: 100%; height: 100%; object-fit: cover; }
.parent .role { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--tan-deep); font-weight: 700; }
.parent h3 { margin: 4px 0 8px; }
.parent ul { display: flex; flex-direction: column; gap: 5px; }
.parent li { font-size: .9rem; color: var(--ink-soft); display: flex; align-items: center; gap: .5em; }
.parent li svg { width: 15px; height: 15px; color: var(--steel); flex: 0 0 auto; }

/* ---------- Pourquoi nous / features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 28px); }
.feature { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--steel-mist); color: var(--steel); margin-bottom: 18px; }
.feature .ico svg { width: 26px; height: 26px; }
.feature:nth-child(2) .ico { background: var(--tan-mist); color: var(--tan-deep); }
.feature:nth-child(3) .ico { background: var(--green-mist); color: var(--green); }
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: .95rem; color: var(--muted); }

/* ---------- Garanties + légal ---------- */
.guarantee { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.incl-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; margin-top: 8px; }
.incl-list li { display: flex; gap: 12px; align-items: flex-start; }
.incl-list .tick { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; background: var(--green-mist); color: var(--green); display: grid; place-items: center; margin-top: 2px; }
.incl-list .tick svg { width: 15px; height: 15px; }
.incl-list b { display: block; font-size: .98rem; }
.incl-list span { font-size: .86rem; color: var(--muted); }
.legal-card { background: var(--steel-ink); color: #EAF1F6; border-radius: var(--r-lg); padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-lg); }
.legal-card h3 { color: #fff; margin-bottom: 6px; }
.legal-card .sub { font-size: .9rem; color: #B6C6D4; margin-bottom: 20px; }
.legal-card dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 16px; font-size: .92rem; }
.legal-card dt { color: #93A9BC; }
.legal-card dd { color: #EAF1F6; font-weight: 500; text-align: right; }
.legal-card .note { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; color: #9FB4C4; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 12px; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq details[open] { box-shadow: var(--shadow-md); border-color: var(--line-soft); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: 0 0 auto; width: 26px; height: 26px; position: relative; transition: transform .25s; }
.faq summary .plus::before, .faq summary .plus::after { content:""; position:absolute; background: var(--steel); border-radius: 2px; top: 50%; left: 50%; }
.faq summary .plus::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.faq summary .plus::after { width: 2px; height: 14px; transform: translate(-50%,-50%); transition: transform .25s; }
.faq details[open] summary .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq .answer { padding: 0 22px 22px; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info .lead { color: var(--muted); margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.cmethod { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-sm); transition: transform .18s, border-color .18s; }
.cmethod:hover { transform: translateX(4px); border-color: var(--steel); }
.cmethod .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--steel-mist); color: var(--steel); display: grid; place-items: center; flex: 0 0 auto; }
.cmethod .ico svg { width: 22px; height: 22px; }
.cmethod .k { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.cmethod .v { font-family: var(--font-display); font-size: 1.12rem; color: var(--ink); }

.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-md); }
.contact-card h3 { margin-bottom: 6px; }
.contact-card .sub { color: var(--muted); font-size: .92rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8em 1em; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--cream); color: var(--ink); transition: border-color .18s, box-shadow .18s, background .18s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--steel); box-shadow: 0 0 0 4px var(--steel-mist); background: var(--paper); }
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-card .btn { width: 100%; margin-top: 6px; }
.contact-card .fineprint { margin-top: 14px; font-size: .8rem; color: var(--muted); text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #D8CFC4; padding-block: clamp(48px, 6vw, 72px) 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { display: flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-size: 1.3rem; color: #fff; margin-bottom: 14px; }
.footer-brand .mark { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: linear-gradient(150deg, var(--steel), var(--steel-deep)); }
.footer-brand .mark svg { width: 22px; height: 22px; }
.site-footer .about { font-size: .92rem; color: #A99E92; max-width: 40ch; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.footer-col a, .footer-col li { display: block; font-size: .93rem; color: #C3B9AD; margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; align-items: center; padding-top: 26px; font-size: .82rem; color: #8F857A; }
.footer-legal .mentions { display: flex; flex-wrap: wrap; gap: 6px 18px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin-inline: auto; order: -1; }
  .hero-copy .lead { max-width: 46ch; }
  .facts-grid { grid-template-columns: repeat(3, 1fr); }
  .fact:nth-child(3) { border-right: none; }
  .fact:nth-child(n+4) { border-top: 1px solid var(--line-soft); }
  .pups-grid { grid-template-columns: repeat(2, 1fr); }
  .parents-grid, .guarantee, .contact-grid, .features-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav[data-open="true"] + .mobile-menu { display: block; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact { border-right: 1px solid var(--line-soft); }
  .fact:nth-child(even) { border-right: none; }
  .fact:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
  .field-row { grid-template-columns: 1fr; }
  .incl-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .parent { grid-template-columns: 90px 1fr; gap: 16px; }
}
@media (max-width: 460px) {
  .pups-grid { grid-template-columns: 1fr; }
  .hero-media .badge-float { left: 10px; }
}

/* ---------- Menu mobile ---------- */
.mobile-menu { display: none; background: var(--cream); border-bottom: 1px solid var(--line); }
.mobile-menu ul { padding: 12px var(--pad) 22px; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { width: 100%; margin-top: 14px; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn:hover, .pup:hover, .feature:hover, .cmethod:hover { transform: none; }
}
