:root {
  --bg: #FAFAFA; --surface: #FFFFFF; --fg: #141414; --muted: #636363; --border: #E4E4E4;
  --accent: #7A1F35; --accent-ink: #FFFFFF; --accent-soft: #F6E9ED;
  --primary: #141414; --primary-ink: #FAFAFA;
  --radius: 0px; --shadow: 0 12px 32px rgb(20 20 20 / .08); --container: 1200px;
  --font-heading: 'Cormorant Garamond', Georgia, serif; --font-body: 'Montserrat', system-ui, sans-serif; --font-mono: ui-monospace, 'SF Mono', Menlo, monospace;
  --h-weight: 600; --tracking: 0;
  --section-y: clamp(64px, 8vw, 104px); --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
/* ==========================================================================
   站群共用样式骨架。令牌由 gen.py 按站注入到 :root（见各站 DESIGN.md §四）。
   一次只改一层：结构 → 风格 → 动效。
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--bg); color: var(--fg); font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: .15em; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.1; margin: 0 0 .5em; letter-spacing: var(--tracking, -0.015em); color: var(--fg); }
h1 { font-size: clamp(2.125rem, 3.6vw, 3.25rem); line-height: 1.05; font-weight: var(--h-weight, 700); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 2.6vw, 2.5rem); font-weight: var(--h-weight, 700); }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }
ul, ol { padding-left: 1.25em; }
table { border-collapse: collapse; width: 100%; }
.table-wrap { overflow-x: auto; max-width: 100%; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--accent); color: var(--accent-ink); padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }

.container { width: min(100% - 48px, var(--container)); margin-inline: auto; }
@media (max-width: 640px) { .container { width: min(100% - 32px, var(--container)); } }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: calc(var(--section-y) * .6); }
.section--head { padding-block: calc(var(--section-y) * .45) calc(var(--section-y) * .15); }
.section--dark { background: var(--primary); color: var(--primary-ink); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--primary-ink); }
.section--dark a { color: var(--primary-ink); }
.section--soft { background: var(--accent-soft); }
.section-head { max-width: 62ch; margin-bottom: 40px; }
.section-head p { color: var(--muted); font-size: 1.125rem; }
.section--dark .section-head p { color: color-mix(in srgb, var(--primary-ink) 78%, transparent); }
.lead { font-size: 1.1875rem; color: var(--muted); max-width: 65ch; }
.prose { max-width: 68ch; }
.prose h2 { margin-top: 2em; font-size: clamp(1.5rem, 2.2vw, 2rem); }
.prose h3 { margin-top: 1.5em; }
.muted { color: var(--muted); }
.mono { font-family: var(--font-mono, ui-monospace, monospace); font-variant-numeric: tabular-nums; }

/* ---------- 按钮 ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 22px; border-radius: var(--radius); border: 1.5px solid transparent; font-weight: 600; font-size: 1rem; line-height: 1; white-space: nowrap; cursor: pointer; text-decoration: none; transition: transform 160ms var(--ease), background-color 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease); font-family: var(--font-body); }
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: color-mix(in srgb, var(--accent) 88%, black); }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--fg); }
.section--dark .btn--ghost { color: var(--primary-ink); border-color: color-mix(in srgb, var(--primary-ink) 40%, transparent); }
.section--dark .btn--ghost:hover { border-color: var(--primary-ink); }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: .9375rem; }

/* ---------- 头部 ---------- */
.header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; gap: 28px; min-height: 72px; }
.brand { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; color: var(--fg); letter-spacing: -0.01em; white-space: nowrap; }
.brand:hover { text-decoration: none; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .6875rem; color: var(--muted); letter-spacing: 0; }
.nav__menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0 0 0 auto; padding: 0; }
.nav__menu > li { position: relative; }
.nav__menu a, .nav__menu button { display: inline-flex; align-items: center; gap: 6px; padding: 10px 12px; color: var(--fg); font-weight: 500; font-size: .9375rem; background: none; border: 0; font-family: inherit; cursor: pointer; border-radius: var(--radius); }
.nav__menu a:hover, .nav__menu button:hover { background: var(--accent-soft); text-decoration: none; }
.nav__menu a[aria-current="page"] { color: var(--accent); }
.nav__sub { position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 8px; list-style: none; margin: 4px 0 0; display: none; }
.nav__menu > li:hover > .nav__sub, .nav__menu > li:focus-within > .nav__sub { display: block; }
.nav__sub a { display: block; padding: 8px 12px; font-weight: 500; }
.nav__cta { margin-left: 8px; }
.nav__toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); cursor: pointer; align-items: center; justify-content: center; }
.nav__toggle span { display: block; width: 18px; height: 2px; background: var(--fg); position: relative; }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--fg); }
.nav__toggle span::before { top: -6px; } .nav__toggle span::after { top: 6px; }
.drawer { display: none; }
@media (max-width: 899px) {
  .nav { min-height: 64px; gap: 12px; }
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .drawer { display: block; position: fixed; inset: 64px 0 0 0; background: var(--bg); z-index: 49; overflow-y: auto; padding: 16px 24px 40px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 200ms var(--ease), visibility 0s linear 200ms; }
  .drawer[data-open="true"] { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity 200ms var(--ease); }
  .drawer a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--fg); font-weight: 500; font-size: 1.0625rem; }
  .drawer .drawer__group { padding: 12px 0 4px; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
  .drawer .btn { margin-top: 20px; width: 100%; }
}

/* ---------- Hero ---------- */
.hero { padding-block: clamp(48px, 7vw, 96px); }
.hero__grid { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__grid > * { min-width: 0; }
.hero__sub { font-size: 1.1875rem; color: var(--muted); max-width: 48ch; margin: 20px 0 28px; }
.section--dark .hero__sub { color: color-mix(in srgb, var(--primary-ink) 80%, transparent); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__media { border-radius: var(--radius); overflow: hidden; background: var(--surface); box-shadow: var(--shadow); aspect-ratio: 1 / 1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 899px) { .hero__grid { grid-template-columns: 1fr; } .hero__media { order: -1; max-width: 420px; } }

/* ---------- 网格与卡片 ---------- */
.grid { display: grid; gap: 24px; }
.grid > * { min-width: 0; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 899px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; color: var(--fg); transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease); position: relative; }
.card:hover { text-decoration: none; }
@media (hover: hover) and (pointer: fine) { .card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); } }
.card__media { aspect-ratio: 1 / 1; background: #fff; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 260ms var(--ease); }
@media (hover: hover) and (pointer: fine) { .card:hover .card__media img { transform: scale(1.03); } }
.card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__title { font-family: var(--font-heading); font-weight: 600; font-size: 1.0625rem; line-height: 1.3; letter-spacing: 0; }
.card__meta { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .02em; padding: 3px 8px; border-radius: calc(var(--radius) / 2); background: var(--accent-soft); color: var(--fg); }
.card__link { margin-top: auto; font-weight: 600; color: var(--accent); font-size: .9375rem; }
.card--hub .card__media { aspect-ratio: 4 / 3; }
.card--hub .card__body p { color: var(--muted); font-size: .9375rem; }

/* bento（首页 hub 区，6 格：2 大 4 小） */
.bento { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(200px, auto); }
.bento > * { min-width: 0; }
.bento > :nth-child(1), .bento > :nth-child(2) { grid-column: span 2; }
.bento .card--hub .card__media { aspect-ratio: auto; height: 220px; }
.bento > :nth-child(1) .card__media, .bento > :nth-child(2) .card__media { height: 300px; }
@media (max-width: 899px) { .bento { grid-template-columns: repeat(2, 1fr); } .bento > * { grid-column: span 1 !important; } .bento .card--hub .card__media { height: 200px !important; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } }

/* 横向 scroll-snap（站 2 hub 区移动端） */
.snap { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: thin; }
.snap > * { scroll-snap-align: start; }
@media (max-width: 899px) { .js .snap [data-reveal] { opacity: 1; transform: none; } }
@media (min-width: 900px) { .snap { grid-auto-flow: row; grid-template-columns: repeat(var(--snap-cols, 5), 1fr); overflow: visible; } }

/* 步骤条 / 事实条（无卡片，1px 线） */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.strip > * { min-width: 0; padding: 28px 24px 28px 0; border-right: 1px solid var(--border); }
.strip > :last-child { border-right: 0; }
.strip > * + * { padding-left: 24px; }
.strip h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.strip p { color: var(--muted); font-size: .9375rem; }
.section--dark .strip { border-color: color-mix(in srgb, var(--primary-ink) 22%, transparent); }
.section--dark .strip > * { border-color: color-mix(in srgb, var(--primary-ink) 22%, transparent); }
.section--dark .strip p { color: color-mix(in srgb, var(--primary-ink) 75%, transparent); }
@media (max-width: 899px) { .strip { grid-template-columns: 1fr 1fr; } .strip > * { border-right: 0; padding-left: 0 !important; border-bottom: 1px solid var(--border); } .section--dark .strip > * { border-color: color-mix(in srgb, var(--primary-ink) 22%, transparent); } }
@media (max-width: 560px) { .strip { grid-template-columns: 1fr; } }

/* 数字路径选择（站 3） */
.paths { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.paths > * { min-width: 0; }
.path { display: block; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; background: var(--surface); color: var(--fg); transition: border-color 160ms var(--ease); }
.path:hover { text-decoration: none; border-color: var(--accent); }
.path__num { font-family: var(--font-mono, var(--font-heading)); font-size: 2.5rem; font-weight: 600; line-height: 1; color: var(--accent); }
.path__label { font-family: var(--font-heading); font-weight: 600; margin-top: 8px; }
.path p { color: var(--muted); font-size: .9375rem; margin-top: 6px; }
@media (max-width: 899px) { .paths { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .paths { grid-template-columns: 1fr; } }

/* 2 列错位（图文） */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split > * { min-width: 0; }
.split--rev > :first-child { order: 2; }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.split__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
@media (max-width: 899px) { .split { grid-template-columns: 1fr; } .split--rev > :first-child { order: 0; } }

/* 全宽条带（层级 / 场景） */
.bands { display: grid; gap: 16px; }
.band { display: grid; grid-template-columns: 220px 1fr auto; gap: 24px; align-items: center; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); color: var(--fg); }
.band:hover { text-decoration: none; border-color: var(--accent); }
.band__media { aspect-ratio: 4 / 3; border-radius: calc(var(--radius) / 1.5); overflow: hidden; background: #fff; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band p { color: var(--muted); }
.band__arrow { font-weight: 600; color: var(--accent); }
@media (max-width: 700px) { .band { grid-template-columns: 1fr; } .band__media { max-width: 260px; } }

/* 时间线（八步） */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px; }
.steps > * { min-width: 0; }
.step { padding-top: 14px; border-top: 2px solid var(--accent); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: block; font-family: var(--font-mono, var(--font-heading)); font-weight: 600; color: var(--accent); font-size: .875rem; letter-spacing: .06em; margin-bottom: 6px; }
.step h3 { font-size: 1.0625rem; }
.step p { color: var(--muted); font-size: .9375rem; }
@media (max-width: 899px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* 定义列表 / 规格 */
.specs { border-top: 1px solid var(--border); }
.specs div { display: grid; grid-template-columns: 160px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: .9375rem; }
.specs dt { color: var(--muted); font-weight: 500; margin: 0; }
.specs dd { margin: 0; font-family: var(--font-mono, inherit); }
@media (max-width: 560px) { .specs div { grid-template-columns: 1fr; gap: 2px; } }

/* 产品页 */
.product { display: grid; grid-template-columns: 6fr 5fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.product > * { min-width: 0; }
.gallery__main { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--border); aspect-ratio: 1 / 1; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; transition: opacity 220ms var(--ease); }
.gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 10px; }
.gallery__thumbs button { padding: 0; border: 1px solid var(--border); border-radius: calc(var(--radius) / 1.5); overflow: hidden; background: #fff; cursor: pointer; aspect-ratio: 1 / 1; }
.gallery__thumbs button[aria-current="true"] { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product__intro { font-size: 1.0625rem; }
.product__bullets { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 12px; }
.product__bullets li { padding-left: 18px; position: relative; font-size: .9875rem; }
.product__bullets li::before { content: ""; position: absolute; left: 0; top: .6em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.product__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
@media (max-width: 899px) { .product { grid-template-columns: 1fr; } }

/* 面包屑 */
.crumbs { font-size: .875rem; color: var(--muted); margin: 16px auto 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--border); }
.crumbs a { color: var(--muted); }

/* 表单 */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__row > * { min-width: 0; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: .9375rem; }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 1rem; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); background: var(--surface); color: var(--fg); min-height: 48px; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--muted) 70%, transparent); }
.field__error { color: #B42318; font-size: .875rem; min-height: 1.2em; }
.field [aria-invalid="true"] { border-color: #B42318; }
.form__status { padding: 12px 14px; border-radius: var(--radius); font-size: .9375rem; background: var(--accent-soft); }
.form__status[data-state="error"] { background: #FCE8E6; color: #7A1F1F; }
.form__note { font-size: .875rem; color: var(--muted); }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.section--dark .form-card { color: var(--fg); }
.section--dark .form-card a { color: var(--accent); }

/* FAQ */
.faq details { border-top: 1px solid var(--border); padding: 14px 0; }
.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--font-heading); font-size: 1.0625rem; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-weight: 600; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin-top: 10px; color: var(--muted); }

/* 联系信息 */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.contact-list li { display: grid; grid-template-columns: 96px 1fr; gap: 12px; font-size: .9875rem; }
.contact-list span:first-child { color: var(--muted); font-weight: 500; }

/* 空态 */
.empty { border: 1px dashed var(--border); border-radius: var(--radius); padding: 48px 24px; text-align: center; color: var(--muted); }

/* ---------- 页脚 ---------- */
.footer { background: var(--primary); color: var(--primary-ink); padding: 56px 0 28px; margin-top: var(--section-y); }
.footer a { color: var(--primary-ink); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer__grid > * { min-width: 0; }
.footer h3 { color: var(--primary-ink); font-size: .9375rem; margin-bottom: 12px; text-transform: none; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: .9375rem; }
.footer p { font-size: .9375rem; color: color-mix(in srgb, var(--primary-ink) 75%, transparent); }
.footer__bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid color-mix(in srgb, var(--primary-ink) 20%, transparent); font-size: .8125rem; color: color-mix(in srgb, var(--primary-ink) 65%, transparent); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
@media (max-width: 899px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- 动效层（⑤）。全部 html.js 门控 + reduced-motion 降级 ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); transition-delay: calc(var(--i, 0) * 60ms); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.js [data-split] .st { display: inline-block; opacity: 0; transform: translateY(.35em); transition: opacity 520ms var(--ease), transform 520ms var(--ease); transition-delay: calc(var(--si, 0) * 45ms); }
.js [data-split].is-split .st { opacity: 1; transform: none; }
.js [data-blur] { opacity: 0; filter: blur(8px); transition: opacity 500ms var(--ease), filter 500ms var(--ease); }
.js [data-blur].is-in { opacity: 1; filter: blur(0); }
@media (hover: hover) and (pointer: fine) {
  .spot { position: relative; }
  .spot::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 240ms var(--ease); background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--accent) 16%, transparent), transparent 60%); }
  .spot:hover::after { opacity: 1; }
  .tilt { transition: transform 200ms var(--ease); transform-style: preserve-3d; }
}
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal], .js [data-split] .st, .js [data-blur] { opacity: 1; transform: none; filter: none; transition: none; }
  .card, .card__media img, .btn, .tilt { transition: none !important; transform: none !important; }
}

/* site overrides */
h1 { font-size: clamp(2.75rem, 5vw, 4.25rem); } h2 { font-size: clamp(2rem, 3vw, 2.75rem); } h3, .card__title, .brand, .path__label, .step h3, .strip h3, .band h3, .faq summary { font-family: var(--font-body); }
