/* poppins-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/poppins-v24-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/poppins-v24-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v24-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Max Ganderton landing page styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

:root {
  --ink:        #2d3841;
  --teal:       #5f9eaa;
  --teal-dark:  #518d9c;
  --mist:       #f1f4f5;
  --line:       #e3e9eb;
  --text:       #2e2e2e;
  --muted:      #7a8c94;
  --white:      #ffffff;
  --sans:       'Poppins', -apple-system, sans-serif;
}

/* Root bg = top of the hero gradient so the iOS status-bar / safe-area
   zone beside the camera matches the hero (no white or mismatched strip). */
html { scroll-behavior: smooth; background: #39474f; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: #39474f;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

.page {
  max-width: 430px;
  margin: 0 auto;
  background: var(--white);
  min-height: 100vh;
}

/* ── ABOUT ── */
.about-section {
  background: var(--white);
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
/* keep text/label/divider inset; let the video go full-bleed */
.about-section .section-lbl,
.about-section .section-head,
.about-section .section-divider { padding-left: 28px; padding-right: 28px; }
.about-section .sv { margin: 4px 0 30px; }

/* Eyebrow — unified across all sections */
.section-lbl,
.testimonials .eyebrow {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal);
  display: block; margin: 0 0 10px;
}

/* Section heading — "Subscribe"-style Poppins (bold lead + muted rest) */
.section-head {
  font-family: var(--sans);
  font-weight: 400; font-size: clamp(24px, 7vw, 30px);
  line-height: 1.2; letter-spacing: -0.01em;
  color: var(--muted); margin: 0 0 6px;
}
.section-head strong { color: var(--ink); font-weight: 400; }

.section-divider {
  display: flex; align-items: center;
  margin-bottom: 20px;
}
.divider-teal { width: 28px; height: 2px; background: var(--teal); }
.divider-line { flex: 1; height: 1px; background: var(--line); }

/* Bio as a colored "bubble" card (robotics-style) */
.about-body {
  margin: 0 28px;
  background: var(--ink);
  border-radius: 26px;
  padding: 28px 26px;
}
.about-body p {
  font-size: 14px; line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 14px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body strong { font-weight: 600; color: #fff; }
/* ── TREATMENTS ── */
.treatments-section {
  background: var(--mist);
  padding: 48px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service {
  padding: 16px 0;
  display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateX(-16px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.service.visible { opacity: 1; transform: translateX(0); }
.service:first-child { border-top: 1px solid var(--line); }

.service-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.service-name { font-size: 14px; font-weight: 500; color: var(--text); }
.service-desc { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.service-icon { margin-left: auto; flex-shrink: 0; color: var(--teal); opacity: 0.7; }

/* Treatments shown in a teal "bubble" card (dark text for contrast) */
.treatments-bubble {
  background: #dfedef;   /* light blue — same as the first review card */
  border-radius: 26px;
  padding: 6px 24px;
  margin-top: 18px;
}
.treatments-bubble .service { border-color: rgba(45,56,65,0.18); }
.treatments-bubble .service:first-child { border-top: none; }
.treatments-bubble .service:last-child { border-bottom: none; }
.treatments-bubble .service-dot { background: var(--ink); }
.treatments-bubble .service-name { color: var(--ink); font-weight: 600; }
.treatments-bubble .service-desc { color: rgba(45,56,65,0.72); }
.treatments-bubble .service-icon { color: var(--ink); opacity: 0.85; }

/* ── TESTIMONIALS (Kent & Sussex–style card carousel, Natural Order colors) ── */
.testimonials {
  background: var(--white);
  color: var(--ink);
  padding: 48px 0 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonials-header {
  padding: 0 28px 20px;
  border-bottom: 1px solid var(--line);
}
.testimonials-header-text { text-align: left; }

.testimonials-track {
  display: flex; gap: 16px;
  padding: 22px 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 28px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 80%;
  scroll-snap-align: start;
  background: var(--mist);
  border-radius: 16px;
  padding: 24px;
  display: flex; flex-direction: column;
  min-height: 240px;
}
.testimonial-quote {
  font-size: 14.5px; font-weight: 300; line-height: 1.65;
  color: rgba(45,56,65,0.78);
  margin: 0;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 10; line-clamp: 10; overflow: hidden;
}
.testimonial-meta {
  margin-top: auto; padding-top: 18px;
  border-top: 1px solid rgba(45,56,65,0.18);
  display: flex; flex-direction: column; gap: 3px;
}
.testimonial-source { font-size: 14px; font-weight: 600; color: var(--ink); margin: 0; }

/* Natural Order card variants */
.testimonial-card[data-variant="teal"]  { background: #dfedef; }
.testimonial-card[data-variant="mist"]  { background: var(--mist); }
.testimonial-card[data-variant="slate"] { background: var(--ink); }
.testimonial-card[data-variant="slate"] .testimonial-quote { color: rgba(255,255,255,0.82); }
.testimonial-card[data-variant="slate"] .testimonial-meta { border-color: rgba(255,255,255,0.20); }
.testimonial-card[data-variant="slate"] .testimonial-source { color: #fff; }

.testimonials-progress {
  height: 2px; margin: 8px 28px 0;
  background: rgba(45,56,65,0.1);
  border-radius: 2px; overflow: hidden;
}
.testimonials-progress-fill {
  height: 100%; width: 30%;
  background: var(--teal);
  transition: width 0.2s ease;
}

/* ── GET IN TOUCH (form bubble) ── */
.contact-section {
  background: var(--white);
  padding: 52px 28px calc(44px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}
.contact-section .section-lbl { color: var(--teal); }
.contact-lead {
  font-size: 14px; line-height: 1.6; color: var(--muted);
  margin: 0 0 22px; max-width: 36ch;
}

/* slate form bubble, light fields */
.contact-form {
  background: var(--ink);
  border-radius: 26px;
  padding: 26px 22px;
  display: flex; flex-direction: column; gap: 20px;
}
.cf-field { display: flex; flex-direction: column; gap: 8px; }
.cf-label {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.contact-form input,
.contact-form textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  color: #fff; font-family: var(--sans); font-size: 16px;
  padding: 8px 2px; outline: none; resize: none;
  transition: border-color 0.2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--teal); }
.cf-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.45;
}
.cf-consent input { width: 16px; height: 16px; accent-color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.cf-consent a { color: rgba(255,255,255,0.85); }
.cf-submit {
  margin-top: 2px; padding: 15px; border: none; border-radius: 999px;
  background: var(--teal); color: #fff; font-family: var(--sans);
  font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s ease;
}
.cf-submit:hover { background: var(--teal-dark); }
/* inline field errors (custom, replaces native browser bubbles) */
.cf-err { display: none; margin-top: 7px; font-size: 12px; line-height: 1.4; color: #eaa9a9; }
.cf-err.show { display: block; }
.contact-form .is-invalid { border-bottom-color: #eaa9a9; }
.cf-consent input.is-invalid { outline: 2px solid #eaa9a9; outline-offset: 2px; }

.cf-status { margin: 2px 0 0; text-align: center; font-size: 13px; line-height: 1.4; color: var(--teal); }
.cf-status:empty { display: none; }
.cf-status.is-error { color: #e9a8a8; }

/* Success panel — replaces the form once sent */
.cf-success {
  background: var(--ink);
  border-radius: 26px;
  padding: 44px 26px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  animation: cf-pop 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.cf-success-check {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(95,158,170,0.4);
}
.cf-success-check svg { width: 30px; height: 30px; }
.cf-success-title { font-family: var(--sans); font-size: 22px; font-weight: 600; color: #fff; margin: 0; }
.cf-success-text { font-family: var(--sans); font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.75); margin: 0; max-width: 30ch; }
@keyframes cf-pop { from { opacity: 0; transform: scale(0.96) translateY(8px); } to { opacity: 1; transform: scale(1) translateY(0); } }

/* Direct contact details under the form */
.contact-direct {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 24px;
}
.contact-direct-item {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
  font-size: 14.5px; font-weight: 500;
  transition: color 0.2s ease;
}
.contact-direct-item svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }
.contact-direct-item:hover { color: var(--teal); }

/* ── NEWSLETTER FOOTER ── */
.site-footer {
  background: var(--ink);
  color: #fff;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 36px;
  padding: 44px 24px calc(40px + env(safe-area-inset-bottom));
}

.newsletter {
  width: 100%; max-width: 560px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 28px 22px;
}
.newsletter-title {
  font-family: var(--sans); font-size: 22px; font-weight: 400;
  color: rgba(255,255,255,0.5); margin: 0 0 20px;
}
.newsletter-title strong { color: #fff; font-weight: 400; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-input {
  width: 100%; padding: 16px 22px; border-radius: 999px;
  background: transparent; border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff; font-family: var(--sans); font-size: 16px;
  outline: none; transition: border-color 0.2s ease;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--teal); }
.newsletter-input.is-invalid { border-color: #eaa9a9; }
.newsletter-success {
  margin: 4px 0 0; text-align: center;
  font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--teal);
}
.newsletter-btn {
  width: 100%; padding: 16px 22px; border-radius: 999px; border: none;
  background: var(--teal); color: #fff;
  font-family: var(--sans); font-size: 16px; font-weight: 600;
  cursor: pointer; transition: background 0.2s ease;
}
.newsletter-btn:hover { background: var(--teal-dark); }

.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.footer-logo { height: 60px; width: auto; }
.footer-tagline {
  max-width: 430px; margin: 0;
  font-family: var(--sans); font-size: 15px; line-height: 1.6;
  color: rgba(255,255,255,0.72);
}

.footer-socials { display: flex; gap: 28px; align-items: center; justify-content: center; }
.footer-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-socials a:hover { opacity: 1; transform: translateY(-2px); }
.footer-socials img { width: auto; height: 24px; display: block; }

.footer-legal {
  width: 100%; max-width: 560px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.footer-legal span, .footer-legal a {
  font-family: var(--sans); font-size: 11px; color: rgba(255,255,255,0.4); text-decoration: none;
}
.footer-legal a:hover { color: var(--teal); }

/* ============================================================
   PORTRAIT HERO  (Paul-Trikha–style, namespaced .ph-*)
   Self-contained. Swap --ph-accent to var(--teal) to brand it.
   ============================================================ */
.ph-hero {
  --ph-accent: var(--teal);
  --ph-accent-dark: var(--teal-dark);
  --ph-accent-light: #7fb6c1;
  position: relative;
  min-height: calc(100lvh + 6rem);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding: 60px 24px 0; padding-top: max(env(safe-area-inset-top), 3.5rem);
  overflow: hidden; text-align: center; color: #fff;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(95,158,170,0.14), transparent 55%),
    linear-gradient(180deg, #39474f 0%, #2d3841 100%);
  border-bottom: 4px solid var(--ph-accent);
}
@media (min-width: 768px) {
  .ph-hero { min-height: 100vh; justify-content: center; padding: 60px 24px; }
}

.ph-grain {
  position: absolute; inset: 0; opacity: 0.04; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='phn'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23phn)'/%3E%3C/svg%3E");
}
.ph-skew {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: rgba(95,158,170,0.05); transform: skewX(-8deg) translateX(25%);
  pointer-events: none; z-index: 0;
}
.ph-bar {
  position: absolute; left: 0; top: 25%; width: 4px; height: 128px;
  background: var(--ph-accent); pointer-events: none; z-index: 0;
}
@media (min-width: 768px) { .ph-bar { width: 6px; height: 192px; } }
.ph-spotlight {
  position: absolute; left: 50%; top: 50%; width: 36rem; height: 36rem;
  transform: translate(-50%,-50%); border-radius: 50%;
  background: radial-gradient(closest-side, rgba(95,158,170,0.18), transparent 70%);
  opacity: 0.65; pointer-events: none; z-index: 0;
}

.ph-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  animation: ph-fade-up 1s ease-out;
}
.ph-photo {
  width: 168px; height: 168px; border-radius: 50%; overflow: hidden;
  border: 3px solid rgba(255,255,255,0.14); box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  position: relative; z-index: 1; animation: ph-scale-in 0.8s ease-out 0.2s both;
}
.ph-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.4s ease; }
.ph-photo:hover img { transform: scale(1.05); }

.ph-brand { display: block; margin: 2px auto 0; opacity: 0.95; transition: opacity 0.2s ease;
  animation: ph-fade-up 0.8s ease-out 0.4s both; }
.ph-brand:hover { opacity: 1; }
.ph-brand img { height: 42px; width: auto; display: block; }
@media (min-width: 720px) { .ph-brand img { height: 52px; } }

.ph-text { display: flex; flex-direction: column; gap: 8px; }
.ph-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 8vw, 48px); font-weight: 400; letter-spacing: -0.01em;
  line-height: 1.1; color: #fff; margin: 0; animation: ph-fade-up 0.8s ease-out 0.5s both;
}
.ph-role {
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin: 0;
  animation: ph-fade-up 0.8s ease-out 0.6s both;
}

.ph-cta { display: flex; justify-content: center; margin-top: 6px; animation: ph-fade-up 0.8s ease-out 0.8s both; }
.ph-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); padding: 16px 34px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em; text-decoration: none; cursor: pointer;
  background: var(--ph-accent); color: #fff; border: 2px solid var(--ph-accent);
  box-shadow: 0 12px 32px rgba(95,158,170,0.28); transition: all 0.25s ease;
}
.ph-btn svg { width: 18px; height: 18px; }
.ph-btn:hover { background: var(--ph-accent-dark); border-color: var(--ph-accent-dark);
  transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 38px rgba(95,158,170,0.40); }
.ph-btn:active { transform: translateY(-1px) scale(0.99); }

.ph-socials { display: flex; justify-content: center; gap: 10px; margin-top: 4px;
  animation: ph-fade-up 0.8s ease-out 0.95s both; }
.ph-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.15); color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.ph-icon:hover { background: var(--ph-accent); border-color: var(--ph-accent); transform: translateY(-2px); }
.ph-icon svg { width: 18px; height: 18px; }

.ph-scroll {
  position: absolute; bottom: max(8rem, calc(env(safe-area-inset-bottom) + 7.5rem));
  left: 0; right: 0; margin-inline: auto; width: fit-content;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  animation: ph-fade-up 1s ease-out 1.2s both;
}
.ph-scroll-line { width: 2px; height: 36px; border-radius: 1px; position: relative; overflow: hidden;
  background: linear-gradient(to bottom, var(--ph-accent), transparent); }
.ph-scroll-line::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 12px;
  background: var(--ph-accent-light); border-radius: 1px; animation: ph-scroll-drop 1.5s ease-in-out infinite; }

@keyframes ph-fade-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ph-scale-in { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes ph-scroll-drop { 0% { top: 0; opacity: 1; } 100% { top: 100%; opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .ph-content, .ph-photo, .ph-brand, .ph-name, .ph-role, .ph-cta, .ph-socials, .ph-scroll { animation: none; }
}

/* Intro video relocated out of the hero into its own band */
/* ── STORY VIDEO (squircle poster → expands to landscape on play) ── */

.sv {
  position: relative;
  width: 100%;                /* full width, touches the edges */
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  line-height: 0;
  border-radius: 999px;       /* stadium at rest — matches the play pill */
  transition: border-radius 0.65s cubic-bezier(0.4,0,0.2,1);
}
.sv.expanded { border-radius: 22px; }   /* squares off on play */

.sv-video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* dim the poster while collapsed */
.sv-shade {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(20,28,33,0.30);
  transition: opacity 0.45s ease;
}
.sv.playing .sv-shade { opacity: 0; }

/* play pill */
.sv-play {
  position: absolute; top: 50%; left: 50%; z-index: 3;
  transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--ink);
  border: none; border-radius: 999px;
  padding: 14px 26px;
  font-family: var(--sans); font-size: 17px; font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.sv-play svg { width: 17px; height: 17px; }
.sv-play-time { color: var(--teal); font-weight: 600; }
.sv.playing .sv-play {
  opacity: 0; pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
}

@media (prefers-reduced-motion: reduce) { .sv { transition: none; } }
