/* ============================================================
   Magnet Hospitals — MODEL 3 · image-centric
   Warm light, calm teal, photography-first. Mobile-first.
   ============================================================ */
:root {
  --bg: #fbfaf7;
  --sand: #f2ede4;
  --ink: #10302e;
  --ink-soft: rgba(16, 48, 46, 0.64);
  --teal: #0e7c86;
  --aqua: #63c6d2;
  --green: #0a9169;
  --white: #ffffff;
  --line: rgba(16, 48, 46, 0.1);
  --r-lg: 28px;
  --r-md: 20px;
  --shadow: 0 24px 60px rgba(16, 48, 46, 0.14);
  --font-h: "Lexend", ui-sans-serif, system-ui, sans-serif;
  --font-b: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  --gut: clamp(18px, 4.5vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-b);
  font-size: 16.5px; line-height: 1.65;
  background: var(--bg); color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; height: 100vh; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
h1, h2, h3 { font-family: var(--font-h); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }
::selection { background: var(--teal); color: #fff; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }

.skip { position: fixed; top: -60px; left: 16px; z-index: 300; background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 10px; transition: top 0.2s; }
.skip:focus { top: 12px; }

.reveal { opacity: 0; transform: translateY(24px); }
.no-anim .reveal { opacity: 1; transform: none; }
[data-split] .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
[data-split] .w > span { display: inline-block; will-change: transform; }

/* ---------- loader ---------- */
.loader { position: fixed; inset: 0; z-index: 400; background: var(--bg); display: grid; place-items: center; }
.loader__mark { width: 46px; height: 46px; border-radius: 50%; border: 3px solid var(--line); border-top-color: var(--teal); animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  display: flex; align-items: center; gap: 20px;
  padding: 12px var(--gut);
  transition: background 0.35s ease, box-shadow 0.35s, backdrop-filter 0.35s;
}
.nav.is-scrolled { background: rgba(251, 250, 247, 0.86); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.nav__logo img { width: 104px; height: auto; }
.nav__links { display: none; gap: 28px; margin-left: 12px; font-family: var(--font-h); font-size: 14.5px; font-weight: 500; }
.nav__links a { position: relative; padding: 6px 0; color: var(--ink-soft); transition: color 0.2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 2px; height: 2px; width: 100%; border-radius: 2px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav__tel { display: none; align-items: center; gap: 8px; font-family: var(--font-h); font-weight: 600; font-size: 14.5px; color: var(--ink); }
.nav__tel:hover { color: var(--teal); }
/* nav over hero (transparent) = white text */
.nav:not(.is-scrolled) .nav__links a, .nav:not(.is-scrolled) .nav__tel { color: rgba(255, 255, 255, 0.92); }
.nav:not(.is-scrolled) .nav__logo img { filter: brightness(0) invert(1); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 12px 24px; border-radius: 999px;
  font-family: var(--font-h); font-weight: 600; font-size: 15px;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s, background 0.25s, color 0.25s;
  cursor: pointer;
}
.btn--lg { min-height: 54px; padding: 15px 30px; font-size: 16px; }
.btn--solid { background: var(--green); color: #fff; box-shadow: 0 10px 26px rgba(10, 145, 105, 0.35); }
.btn--solid:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(10, 145, 105, 0.45); background: #0aa276; }
.btn--glass { background: rgba(255, 255, 255, 0.16); color: #fff; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.55); }
.btn--glass:hover { background: rgba(255, 255, 255, 0.28); transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--teal); box-shadow: inset 0 0 0 2px var(--teal); }
.btn--outline:hover { background: rgba(14, 124, 134, 0.08); transform: translateY(-3px); }
.btn:active { transform: scale(0.97); }

.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--aqua); display: inline-block; animation: pulse 1.8s ease-out infinite; }
.dot--red { background: #ff5a5f; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(99, 198, 210, 0.5); } 70%, 100% { box-shadow: 0 0 0 12px rgba(99, 198, 210, 0); } }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1023px) { .hero__media img { object-position: 74% center; } }
#heroGL { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; display: none; }
#heroGL.is-on { display: block; }
#heroGL.is-on + img { visibility: hidden; }
.hero__shade { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(10, 30, 28, 0.34), rgba(10, 30, 28, 0.05) 40%, rgba(10, 30, 28, 0.62) 88%); }
.hero__content { position: relative; z-index: 3; padding: 0 var(--gut) clamp(90px, 14vh, 150px); max-width: 900px; color: #fff; }
.hero__kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-h); font-weight: 500; font-size: 14px; letter-spacing: 0.04em; margin-bottom: 18px; color: rgba(255, 255, 255, 0.92); }
.hero__title { font-size: clamp(52px, 10vw, 124px); font-weight: 700; color: #fff; letter-spacing: -0.03em; }
.hline { display: block; overflow: hidden; }
.hline > span { display: inline-block; will-change: transform; }
.hero__sub { margin-top: 18px; max-width: 44ch; font-size: clamp(17px, 2.2vw, 20px); color: rgba(255, 255, 255, 0.88); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero__chips { position: absolute; right: var(--gut); bottom: 28px; z-index: 3; display: none; gap: 10px; }
.hero__chips span { padding: 9px 16px; border-radius: 999px; font-family: var(--font-h); font-size: 12.5px; font-weight: 500; color: #fff; background: rgba(255, 255, 255, 0.14); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3); }

/* ---------- statement ---------- */
.statement { padding: clamp(80px, 14vh, 160px) var(--gut); max-width: 1100px; margin: 0 auto; }
.statement__text { font-family: var(--font-h); font-weight: 600; font-size: clamp(28px, 5.4vw, 60px); line-height: 1.16; letter-spacing: -0.02em; }
.statement__text .sw { color: rgba(16, 48, 46, 0.18); }

/* ---------- sections shared ---------- */
section { position: relative; }
.sec-head { max-width: 780px; margin-bottom: clamp(32px, 6vh, 56px); }
.sec-title { font-size: clamp(30px, 5vw, 52px); }
.sec-sub { margin-top: 14px; color: var(--ink-soft); font-size: 17px; }

/* ---------- specialties photo grid ---------- */
.spec { padding: 0 var(--gut) clamp(80px, 12vh, 140px); max-width: 1480px; margin: 0 auto; }
.spec__grid { display: grid; gap: 18px; grid-template-columns: 1fr; grid-auto-rows: 320px; }
.pcard {
  position: relative; border-radius: var(--r-lg); overflow: hidden; display: block;
  transform: translateZ(0);
}
.pcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.pcard__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 30, 28, 0) 34%, rgba(10, 30, 28, 0.78)); transition: background 0.4s; }
.pcard:hover img { transform: scale(1.07); }
.pcard__body { position: absolute; left: 22px; right: 22px; bottom: 20px; color: #fff; }
.pcard__body h3 { font-size: clamp(21px, 2.4vw, 27px); color: #fff; }
.pcard__body p { margin-top: 4px; font-size: 14.5px; color: rgba(255, 255, 255, 0.85); }
.pcard__go {
  display: inline-flex; margin-top: 12px; padding: 8px 16px; border-radius: 999px;
  font-family: var(--font-h); font-size: 13px; font-weight: 600;
  background: rgba(255, 255, 255, 0.16); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s;
}
.pcard:hover .pcard__go { opacity: 1; transform: translateY(0); }

/* ---------- photo bands ---------- */
.band { position: relative; height: 88vh; min-height: 480px; overflow: hidden; display: grid; place-items: center; }
.band__img { position: absolute; inset: 0; width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.band__veil { position: absolute; inset: 0; background: rgba(10, 30, 28, 0.44); }
.band__inner { position: relative; z-index: 2; text-align: center; padding: 0 var(--gut); max-width: 900px; }
.band__line { font-family: var(--font-h); font-weight: 600; font-size: clamp(30px, 5.6vw, 58px); line-height: 1.12; letter-spacing: -0.02em; color: #fff; }
.band__note { margin-top: 16px; font-family: var(--font-h); font-size: 14px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255, 255, 255, 0.75); }

/* ---------- hospitals ---------- */
.hosp { padding: clamp(80px, 12vh, 140px) 0; background: var(--sand); border-radius: var(--r-lg) var(--r-lg) 0 0; }
.hosp .sec-head { padding: 0 var(--gut); max-width: calc(780px + var(--gut)); }
.hosp__rail {
  display: flex; gap: 16px; padding: 6px var(--gut) 26px;
  overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hosp__rail::-webkit-scrollbar { display: none; }
.hcard {
  flex: 0 0 min(300px, 78vw); scroll-snap-align: start;
  background: var(--white); border-radius: var(--r-md); padding: 26px 24px;
  box-shadow: 0 10px 30px rgba(16, 48, 46, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s;
}
.hcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.hcard__pin { display: block; width: 11px; height: 11px; border-radius: 50%; background: var(--teal); margin-bottom: 16px; animation: pulse 2.2s ease-out infinite; }
.hcard h3 { font-size: 21px; }
.hcard p { color: var(--ink-soft); font-size: 14.5px; margin-top: 2px; }
.hcard em { display: inline-block; font-style: normal; margin-top: 14px; padding: 6px 13px; border-radius: 999px; font-family: var(--font-h); font-size: 12px; font-weight: 600; color: var(--teal); background: rgba(14, 124, 134, 0.1); }
.hosp__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 12px; padding: 34px var(--gut) 0; max-width: 1100px; margin: 0 auto; }
.stat { text-align: center; }
.stat span { display: block; font-family: var(--font-h); font-weight: 700; font-size: clamp(38px, 7vw, 62px); color: var(--teal); font-variant-numeric: tabular-nums; }
.stat em { font-style: normal; font-family: var(--font-h); font-size: 13px; font-weight: 500; color: var(--ink-soft); }

/* ---------- duo (elder care) ---------- */
.duo { display: grid; gap: 36px; padding: clamp(80px, 12vh, 140px) var(--gut); max-width: 1380px; margin: 0 auto; align-items: center; }
.duo__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 4.6; }
.duo__media img { width: 100%; height: 112%; object-fit: cover; margin-top: -6%; will-change: transform; }
.duo__copy p { color: var(--ink-soft); font-size: 17.5px; margin-top: 16px; max-width: 52ch; }
.duo__list { list-style: none; margin: 24px 0 30px; display: grid; gap: 12px; }
.duo__list li { position: relative; padding-left: 34px; font-family: var(--font-h); font-weight: 500; font-size: 15.5px; }
.duo__list li::before { content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: rgba(10, 145, 105, 0.12); }
.duo__list li::after { content: ""; position: absolute; left: 6px; top: 8px; width: 9px; height: 5px; border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(-45deg); }

/* ---------- stories ---------- */
.stories { position: relative; overflow: hidden; padding: clamp(90px, 14vh, 170px) var(--gut); display: grid; place-items: center; }
.stories__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stories__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16, 48, 46, 0.82), rgba(16, 48, 46, 0.72)); }
.stories__inner { position: relative; z-index: 2; max-width: 860px; text-align: center; }
.stories__quote p { font-family: var(--font-h); font-weight: 500; font-size: clamp(22px, 3.6vw, 36px); line-height: 1.35; color: #fff; letter-spacing: -0.01em; }
.stories__quote footer { margin-top: 22px; font-size: 15px; color: var(--aqua); font-family: var(--font-h); font-weight: 500; }
.stories__dots { display: flex; gap: 9px; justify-content: center; margin-top: 34px; }
.stories__dots button { width: 10px; height: 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.3); padding: 0; transition: all 0.3s; }
.stories__dots button.is-on { background: var(--aqua); width: 28px; }

/* ---------- emergency ---------- */
.er { position: relative; overflow: hidden; display: grid; place-items: center; padding: clamp(80px, 12vh, 150px) var(--gut); }
.er__img { position: absolute; inset: 0; width: 100%; height: 116%; object-fit: cover; will-change: transform; }
.er__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16, 48, 46, 0.78), rgba(16, 48, 46, 0.62)); }
.er__inner { position: relative; z-index: 2; text-align: center; color: #fff; }
.er__label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-h); font-weight: 600; font-size: 15px; letter-spacing: 0.04em; }
.er__tel { display: block; margin-top: 10px; font-family: var(--font-h); font-weight: 700; font-size: clamp(46px, 10vw, 110px); letter-spacing: -0.02em; color: #fff; transition: color 0.25s; }
.er__tel:hover { color: var(--aqua); }
.er__note { margin-top: 8px; font-size: 14.5px; color: rgba(255, 255, 255, 0.78); }

/* ---------- book ---------- */
.book { display: grid; max-width: 1380px; margin: clamp(80px, 12vh, 140px) auto; padding: 0 var(--gut); gap: 22px; }
.book__media { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 300px; box-shadow: var(--shadow); display: grid; align-items: end; }
.book__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.book__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 30, 28, 0.05) 30%, rgba(10, 30, 28, 0.72)); }
.book__line { position: relative; z-index: 2; padding: 26px; color: #fff; font-family: var(--font-h); font-weight: 600; font-size: clamp(22px, 3vw, 32px); line-height: 1.2; letter-spacing: -0.01em; max-width: 16ch; }
.book__panel { background: var(--white); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow); }
.book__sub { color: var(--ink-soft); margin-top: 10px; }
#bookForm { margin-top: 28px; display: grid; gap: 22px; }
.bfield { position: relative; display: grid; }
.bfield input {
  font: inherit; color: var(--ink); background: var(--bg);
  border: 1.5px solid var(--line); border-radius: 14px;
  padding: 24px 16px 10px; min-height: 58px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.bfield input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(14, 124, 134, 0.12); }
.bfield label { position: absolute; left: 16px; top: 17px; color: var(--ink-soft); pointer-events: none; transition: all 0.2s ease; }
.bfield input:focus + label, .bfield input:not(:placeholder-shown) + label { top: 7px; font-size: 11.5px; font-family: var(--font-h); font-weight: 600; color: var(--teal); }
.berr { display: none; font-style: normal; font-size: 13px; color: #d3455b; margin-top: 6px; }
.bfield.is-bad input { border-color: #d3455b; }
.bfield.is-bad .berr { display: block; }
.bchips { border: none; display: flex; flex-wrap: wrap; gap: 9px; }
.bchips legend { font-family: var(--font-h); font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.bchips button {
  padding: 9px 16px; border-radius: 999px; font-family: var(--font-h); font-size: 13.5px; font-weight: 500;
  background: var(--bg); box-shadow: inset 0 0 0 1.5px var(--line);
  transition: all 0.22s; cursor: pointer;
}
.bchips button:hover { box-shadow: inset 0 0 0 1.5px var(--teal); color: var(--teal); }
.bchips button.is-on { background: var(--teal); color: #fff; box-shadow: none; }
.book__submit { width: 100%; }
.book__ok { color: var(--green); font-weight: 600; text-align: center; }

/* ---------- footer ---------- */
.foot { background: var(--sand); border-radius: var(--r-lg) var(--r-lg) 0 0; padding: clamp(44px, 7vh, 70px) var(--gut) 26px; }
.foot__inner { max-width: 1380px; margin: 0 auto; display: grid; gap: 28px; }
.foot__brand p { margin-top: 12px; color: var(--ink-soft); font-size: 15px; max-width: 30ch; }
.foot__links { display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center; font-family: var(--font-h); font-weight: 500; font-size: 14.5px; }
.foot__links a { color: var(--ink-soft); transition: color 0.2s; }
.foot__links a:hover { color: var(--teal); }
.foot__base { max-width: 1380px; margin: 30px auto 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-soft); }

/* ---------- passive motion layer ---------- */
/* slow Ken Burns where no GSAP transform runs (stories bg, book photo) */
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.07) translate(-1.2%, 1%); }
}
.stories__bg { animation: kenburns 22s ease-in-out infinite alternate; will-change: transform; }
.book__media img { animation: kenburns 18s ease-in-out infinite alternate-reverse; will-change: transform; }

/* specialty veil breathing (subtle light shift, no transform conflict) */
@keyframes veilbreathe {
  0%, 100% { opacity: 0.92; }
  50% { opacity: 1; }
}
.pcard__veil { animation: veilbreathe 6s ease-in-out infinite; }
.pcard:nth-child(2n) .pcard__veil { animation-delay: -2s; }
.pcard:nth-child(3n) .pcard__veil { animation-delay: -4s; }

/* hero scroll cue */
.hero__cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  display: none; justify-content: center; padding-top: 7px;
}
.hero__cue span { width: 4px; height: 8px; border-radius: 4px; background: #fff; animation: cue 1.7s ease-in-out infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(13px); opacity: 0; } 100% { opacity: 0; } }
@media (min-width: 1024px) { .hero__cue { display: flex; } }

/* section accent bar (GSAP animates --bar 0→1) */
.sec-head { --bar: 1; }
.sec-head::before { content: ""; display: block; width: 48px; height: 4px; border-radius: 4px; background: var(--teal); margin-bottom: 18px; transform: scaleX(var(--bar)); transform-origin: left; }

/* emergency rings behind the number */
.er__rings { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 10px; height: 10px; pointer-events: none; }
.er__rings span { position: absolute; left: 50%; top: 50%; width: 240px; height: 240px; margin: -120px 0 0 -120px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.28); animation: ring 3.8s ease-out infinite; }
.er__rings span:nth-child(2) { animation-delay: 1.3s; }
.er__rings span:nth-child(3) { animation-delay: 2.6s; }
@keyframes ring { 0% { transform: scale(0.3); opacity: 0.9; } 100% { transform: scale(3); opacity: 0; } }

/* CTA shine sweep */
.btn--solid { position: relative; overflow: hidden; }
.btn--solid::after {
  content: ""; position: absolute; top: -10%; bottom: -10%; width: 46px;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: skewX(-18deg); left: -70px;
  animation: shine 4.6s ease-in-out infinite;
}
@keyframes shine { 0%, 74% { left: -70px; } 92%, 100% { left: 130%; } }

/* auto-scrolling hospital rail (desktop) */
.hosp__rail.is-auto { scroll-snap-type: none; }

/* ---------- breakpoints ---------- */
@media (min-width: 640px) {
  .spec__grid { grid-template-columns: repeat(2, 1fr); }
  .hosp__stats { grid-template-columns: repeat(4, 1fr); }
  .book { grid-template-columns: 1fr 1.1fr; align-items: stretch; }
}
@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__tel { display: inline-flex; }
  .hero__chips { display: flex; }
  /* 4×2 rectangle: tall cards anchor both ends, no orphan cell */
  .spec__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 300px; }
  .pcard--tall:first-child { grid-column: 1; grid-row: 1 / span 2; }
  .pcard--tall:last-child { grid-column: 4; grid-row: 1 / span 2; }
  .duo { grid-template-columns: 0.9fr 1.1fr; gap: 72px; }
  .foot__inner { grid-template-columns: auto 1fr; align-items: center; }
  .foot__links { justify-content: flex-end; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .statement__text .sw { color: var(--ink); }
  #heroGL { display: none !important; }
  #heroGL + img { visibility: visible !important; }
}
