/* =============================================================
   ACEVET — Clínica Veterinaria
   Archetype: Editorial Light Cream (adaptado — cálido, boutique, cuidado)
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #faf8f6;
  --bg-2:      #f0eeec;
  --paper:     #ffffff;
  --ink:       #221f1f;
  --ink-soft:  #3a3636;
  --ink-mute:  #726d6d;
  --accent:    #e21f28;   /* Acevet brand red (sampled from logo) */
  --accent-dark: #b81620;
  --accent-ink: #ffffff;
  --accent-2:  #6a6b6e;   /* Acevet brand gray (sampled from logo) */
  --line:      rgba(34, 31, 31, 0.12);
  --line-soft: rgba(34, 31, 31, 0.07);
  --shadow-accent: rgba(226, 31, 40, 0.26);

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 76px;
}

@property --mesh-x { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y { syntax: "<percentage>"; inherits: false; initial-value: 40%; }

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; color: var(--ink); font-family: var(--serif); font-weight: 500; }
em { font-style: italic; color: var(--accent); }

::selection { background: var(--accent); color: #fff; }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: 1.5rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--ink); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.kicker::before { content: ""; width: 22px; height: 1px; background: var(--accent); }

/* =============================================================
   4. Typography
   ============================================================= */
.eyebrow { font-family: var(--sans); }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--ink-mute); max-width: 46ch; }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(33,29,24,0.08), 0 1px 3px rgba(33,29,24,0.06);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px var(--shadow-accent), 0 8px 20px rgba(33,29,24,0.14);
}
.btn-ghost { background: transparent; color: var(--ink); box-shadow: none; border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }
.btn svg { width: 18px; height: 18px; flex: none; }

.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner {
  display: inline-flex; align-items: center; justify-content: center; gap: inherit;
  will-change: transform; transition: transform .8s var(--ease-soft);
}

/* --- Nav --- */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background-color .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s;
}
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav.is-scrolled {
  background: rgba(250, 248, 246, 0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
}
.nav-brand { display: flex; align-items: center; }
.nav-brand img { height: 38px; width: auto; display: block; }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-link { position: relative; padding: .25rem 0; font-size: .92rem; font-weight: 500; color: var(--ink-soft); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: none; }
.nav-toggle {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--line);
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; }
.nav-toggle { position: relative; }
.nav-toggle span { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.nav-toggle::before { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -7px); }
.nav-toggle::after { position: absolute; top: 50%; left: 50%; transform: translate(-50%, 6px); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg); color: var(--ink);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile ul { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.nav-mobile a { font-family: var(--serif); font-size: 2rem; }
.nav-mobile .btn { margin-top: 1rem; }

/* --- Cursor (paw print) --- */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor-paw {
  position: fixed; top: 0; left: 0; margin: -16px;
  width: 32px; height: 32px; pointer-events: none; will-change: transform;
}
.cursor-paw svg {
  width: 100%; height: 100%; color: var(--accent);
  filter: drop-shadow(0 2px 5px rgba(20,16,12,0.4));
  transform: scale(1) rotate(0deg);
  transition: transform .3s var(--ease-bounce);
}
.cursor.is-interactive .cursor-paw svg { transform: scale(1.4) rotate(-14deg); }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* While a native <dialog> is open it renders in the top layer, above the
   fake cursor's z-index — so show the real OS cursor instead of hiding it. */
.has-modal-open, .has-modal-open a, .has-modal-open button { cursor: auto !important; }
.has-modal-open .cursor { opacity: 0 !important; }

/* --- Service chips (static, no motion) --- */
.chips-band { background: var(--bg-2); border-block: 1px solid var(--line); padding-block: 1.4rem; }
.chips-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem 1.1rem; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: .84rem; font-weight: 600; color: var(--ink-soft);
  transition: border-color .3s, color .3s, transform .3s var(--ease-soft);
}
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }
.chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* --- Cards: bento services --- */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.card {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--paper);
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  min-height: 340px;
  --rx: 0deg; --ry: 0deg; --mx: 50%; --my: 50%;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .5s;
}
.card.has-tilt:hover { transition-duration: .15s; }
.card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(280px circle at var(--mx) var(--my), var(--shadow-accent), transparent 62%);
  opacity: 0; transition: opacity .4s;
}
.card:hover::before { opacity: 1; }
.card:hover {
  border-color: rgba(181, 89, 46, 0.35);
  box-shadow: 0 46px 90px -30px var(--shadow-accent), 0 20px 40px -18px rgba(33,29,24,0.18);
}
.card-trigger {
  all: unset; box-sizing: border-box; cursor: pointer;
  position: relative; width: 100%; height: 100%; min-height: inherit;
  padding: 1.6rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  transform-style: preserve-3d;
}
.card-trigger:focus-visible {
  outline: 2px solid var(--accent); outline-offset: -4px; border-radius: 18px;
}
.card-more {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600; color: var(--accent);
  margin-top: .7rem; opacity: 0; transform: translateY(4px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.card.has-photo .card-more { color: #ffd7bd; }
.card:hover .card-more { opacity: 1; transform: none; }
.card-more svg { width: 14px; height: 14px; transition: transform .35s var(--ease-out); }
.card:hover .card-more svg { transform: translateX(3px); }
.card-photo {
  position: absolute; inset: 0; z-index: -2;
}
.card-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform .8s var(--ease-soft), filter .55s;
}
.card:hover .card-photo img { transform: scale(1.16); filter: saturate(1.12) brightness(1.03); }
.card-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0) 20%, rgba(20,16,12,.82) 100%);
}
.card.has-photo { color: #fff; }
.card.has-photo .card-name, .card.has-photo .card-text { color: #fff; }
.card.has-photo .card-icon { background: rgba(255,255,255,0.16); color: #fff; }

.card-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--bg-2); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 1.1rem;
  transform: translateZ(30px);
}
.card-icon svg { width: 22px; height: 22px; }
.card-name { font-family: var(--serif); font-size: 1.2rem; margin-bottom: .4rem; transform: translateZ(24px); }
.card-text {
  font-size: .92rem; color: var(--ink-mute); line-height: 1.55; transform: translateZ(20px);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card.has-photo .card-text { color: rgba(255,255,255,0.82); }

/* --- Testimonials --- */
.testimonial {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 22px;
  padding: 2rem; display: flex; flex-direction: column; gap: 1.2rem;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
}
.testimonial:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -24px rgba(33,29,24,0.18); }
.stars { display: flex; gap: .2rem; color: #d79a3c; font-size: 1rem; }
.testimonial-quote { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--ink); line-height: 1.5; }

/* --- Stats --- */
.stats { display: grid; gap: 2rem; }
.stat-num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); color: #fff; line-height: 1; }
.stat-label { color: rgba(255,255,255,0.78); font-size: .92rem; margin-top: .5rem; max-width: 22ch; }

/* --- Form-free contact block --- */
.contact-line { display: flex; align-items: center; gap: .8rem; padding-block: .55rem; border-bottom: 1px solid var(--line-soft); }
.contact-line:last-child { border-bottom: 0; }
.contact-line svg { width: 20px; height: 20px; color: var(--accent); flex: none; }
.contact-line a:hover { color: var(--accent); }

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Hero --- */
.hero {
  position: relative; min-height: 100svh; min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(33,25,18,.35) 0%, rgba(33,25,18,.28) 45%, rgba(20,16,12,.88) 100%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; padding-block: 3.5rem 4rem; color: #fff; }
.hero .kicker { color: #ffb3b8; }
.hero .kicker::before { background: #ffb3b8; }
.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  color: #fff;
  max-width: 15ch;
  margin-bottom: 1.2rem;
}
.hero-title em { color: #ff8a90; font-style: italic; }
.hero-sub { max-width: 48ch; color: rgba(255,255,255,0.86); font-size: clamp(1.02rem, 1.4vw, 1.18rem); margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero .btn-ghost { border-color: rgba(255,255,255,0.4); color: #fff; }
.hero .btn-ghost:hover { border-color: #fff; }

/* --- Manifesto / vision --- */
.manifesto { padding-block: clamp(4rem, 9vw, 7rem); background: var(--bg); }
.manifesto-grid { display: grid; gap: 2.4rem; }
.manifesto-figure { border-radius: 26px; overflow: hidden; aspect-ratio: 4/5; position: relative; }
.manifesto-figure img { width: 100%; height: 100%; object-fit: cover; }
.manifesto-text h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 1.1rem; }
.manifesto-text p + p { margin-top: 1rem; }
.manifesto-text p { color: var(--ink-mute); max-width: 52ch; }

/* --- Services / bento --- */
.services { padding-block: clamp(4rem, 9vw, 7rem); background: var(--bg-2); }
.section-head { max-width: 60ch; margin-bottom: 2.6rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }

/* --- Diferentes (full-bleed) --- */
.diferentes { position: relative; padding-block: clamp(5rem, 12vw, 9rem); overflow: hidden; isolation: isolate; }
.diferentes-bg { position: absolute; inset: 0; z-index: -2; }
.diferentes-bg img { width: 100%; height: 100%; object-fit: cover; }
.diferentes-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,19,14,.72), rgba(24,19,14,.88)); }
.diferentes .kicker { color: #ffb3b8; }
.diferentes .kicker::before { background: #ffb3b8; }
.diferentes h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 3rem); max-width: 18ch; margin-bottom: 1.2rem; }
.diferentes p { color: rgba(255,255,255,0.82); max-width: 56ch; margin-bottom: 2.8rem; font-size: 1.05rem; }

/* --- Testimonials section --- */
.reviews { padding-block: clamp(4rem, 9vw, 7rem); background: var(--bg); }
.reviews-grid { display: grid; gap: 1.4rem; }

/* --- Contact / CTA --- */
.contact { padding-block: clamp(4rem, 9vw, 7rem); background: var(--bg-2); }
.contact-grid { display: grid; gap: 2.4rem; align-items: start; }
.contact-card {
  background: var(--paper); border-radius: 26px; border: 1px solid var(--line-soft);
  padding: 2rem; box-shadow: 0 30px 70px -40px rgba(33,29,24,0.25);
}
.contact-card h3 { font-size: 1.3rem; margin-bottom: 1.2rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.6rem; }
.map-card {
  border-radius: 26px; overflow: hidden; border: 1px solid var(--line-soft);
  min-height: 320px; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: 1.1rem; padding: 2.5rem 2rem;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(226,31,40,0.12), transparent 70%),
    var(--paper);
  position: relative;
}
.map-card-pin {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 18px 40px -12px var(--shadow-accent);
}
.map-card-pin svg { width: 30px; height: 30px; }
.map-card h3 { font-size: 1.2rem; }
.map-card p { color: var(--ink-mute); max-width: 32ch; }

/* --- Footer --- */
.footer { background: var(--ink); color: rgba(246,241,231,0.75); padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; gap: 2.2rem; margin-bottom: 2.4rem; }
.footer-brand { display: flex; align-items: center; margin-bottom: .9rem; }
.footer-brand img { height: 40px; width: auto; display: block; }
.footer h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(246,241,231,0.5); margin-bottom: .9rem; font-weight: 600; }
.footer-social {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(246,241,231,0.25);
  display: grid; place-items: center; transition: border-color .3s, transform .3s;
}
.footer-social:hover { border-color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 1.8rem; border-top: 1px solid rgba(246,241,231,0.14);
  font-size: .84rem;
}
.footer-bottom a:hover { color: #fff; }

/* =============================================================
   7. Effects
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal][data-split] { opacity: 1; transform: none; }

.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200; background: transparent; pointer-events: none; }
.scroll-progress span {
  display: block; height: 100%; background: var(--accent);
  transform-origin: 0 0; transform: scaleX(0); transition: transform .08s linear;
}

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .hero-actions { gap: 1.2rem; }
}

@media (min-width: 720px) {
  .container { padding-inline: 2.2rem; }
  .manifesto-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1.1fr 1fr; }
}

@media (min-width: 640px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }

  .bento { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1280px) {
  .hero-title { max-width: 17ch; }
}

/* --- Service detail dialog --- */
.service-dialog {
  border: 0; padding: 0; border-radius: 26px; overflow: hidden;
  width: min(560px, calc(100vw - 2.4rem));
  max-height: min(88vh, 780px);
  background: var(--paper); color: var(--ink-soft);
  box-shadow: 0 60px 120px -30px rgba(20,16,12,0.45);
}
/* The global `* { margin: 0 }` reset cancels the UA's auto-centering for
   <dialog>, so it must be centered explicitly rather than relying on it. */
.service-dialog[open] {
  position: fixed; top: 50%; left: 50%; margin: 0;
  transform: translate(-50%, -50%);
}
.service-dialog::backdrop {
  background: rgba(20, 16, 12, 0.6);
  backdrop-filter: blur(3px);
}
.service-dialog-img-wrap { position: relative; aspect-ratio: 16/9; background: var(--bg-2); }
.service-dialog-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.service-dialog-close {
  position: absolute; top: .9rem; right: .9rem; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(20,16,12,0.55); color: #fff;
  display: grid; place-items: center;
  backdrop-filter: blur(6px);
  transition: background .3s, transform .3s;
}
.service-dialog-close:hover { background: rgba(20,16,12,0.8); transform: scale(1.06); }
.service-dialog-close svg { width: 18px; height: 18px; }
.service-dialog-body { padding: 1.8rem 2rem 2rem; overflow-y: auto; max-height: calc(88vh - 220px); }
.service-dialog-body h3 { font-size: 1.5rem; margin-bottom: .8rem; }
.service-dialog-body p { color: var(--ink-mute); margin-bottom: 1.2rem; }
.service-dialog-list { display: grid; gap: .6rem; margin-bottom: 1.6rem; }
.service-dialog-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .92rem; color: var(--ink-soft);
}
.service-dialog-list li::before {
  content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); margin-top: .5em;
}

/* =============================================================
   9. Reduced-motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img { transform: none; }
  /* Do NOT disable: tilt, hover, fades, count-ups, magnetic */
}
