﻿:root {
  --deep-blue: #20186d;
  --active-blue: #005cb9;
  --night-blue: #001b44;
  --paper: #ffffff;
  --ink: #141414;
  --soft: #f7f4ea;
  --line: rgba(20, 20, 20, 0.14);
  --yellow: #ffd100;
  --orange: #f36c21;
  --red: #e2231a;
  --green: #2f641f;
  --mint: #cfe6c4;
  --shadow: 0 20px 60px rgba(0, 27, 68, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body, "Noto Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.site-header {
  position: fixed;
  top: 0;
  left: clamp(22px, 3.2vw, 60px);
  right: clamp(22px, 3.2vw, 60px);
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  min-height: 70px;
  padding: 10px 28px;
  color: var(--night-blue);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 0 0 22px 22px;
  box-shadow: 0 18px 42px rgba(0, 27, 68, 0.12);
  backdrop-filter: blur(18px);
  transition: transform 500ms ease, opacity 500ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open { box-shadow: 0 18px 52px rgba(0, 27, 68, 0.18); }

.site-header.is-hidden {
  transform: translateY(calc(-100% - 18px));
  opacity: 0;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  grid-column: 1;
  justify-self: start;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--night-blue);
  background: var(--yellow);
  border: 2px solid rgba(0, 27, 68, 0.1);
  border-radius: 50%;
  font-size: 1.15rem;
}

.brand strong,
.brand small { display: block; letter-spacing: 0; }
.brand strong { font-size: 1.05rem; }
.brand small { margin-top: -4px; color: rgba(0, 27, 68, 0.66); font-size: 0.68rem; font-weight: 800; }

.site-nav {
  display: contents;
  font-size: 1rem;
  font-weight: 900;
}

.nav-main {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 56px);
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 8px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-header .nav-main a {
  letter-spacing: 0.1em;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--active-blue);
  background: rgba(0, 92, 185, 0.1);
  outline: none;
}

.site-nav .nav-cta {
  grid-column: 3;
  justify-self: end;
  color: var(--night-blue);
  background: var(--yellow);
  padding: 13px 22px;
  box-shadow: 0 10px 24px rgba(255, 209, 0, 0.28);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--paper);
  background: var(--deep-blue);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 27, 68, 0.18);
  border-radius: 8px;
  background: #f3f7fb;
  color: var(--night-blue);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--paper);
  background: var(--night-blue);
}

.hero-media,
.hero-media img,
.hero-shade { position: absolute; inset: 0; }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: slowReveal 900ms ease both;
}

.hero-shade { background: transparent; }

.hero-arc-text {
  position: absolute;
  left: 50%;
  top: 28%;
  z-index: 3;
  width: min(1180px, 98vw);
  height: min(460px, 50vh);
  color: var(--paper);
  filter: drop-shadow(0 5px 12px rgba(0, 27, 68, 0.14));
  overflow: visible;
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-arc-text text {
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0.05px;
  stroke-linejoin: round;
  paint-order: stroke fill;
  font-family: var(--font-arc, Arial, "Helvetica Neue", "Inter Tight", sans-serif);
  font-size: 104px;
  font-weight: 850;
  letter-spacing: 1px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: 3px solid rgba(255, 209, 0, 0.42);
  outline-offset: 3px;
}

.button.primary { color: var(--night-blue); background: var(--yellow); box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18); }
.button.ghost { color: var(--paper); border: 2px solid rgba(255, 255, 255, 0.72); background: rgba(0, 27, 68, 0.34); backdrop-filter: blur(10px); }

.hero-scroll-link {
  position: absolute;
  left: 50%;
  bottom: clamp(34px, 6vh, 70px);
  z-index: 4;
  min-width: 170px;
  transform: translateX(-50%);
}

.hero-scroll-link:hover,
.hero-scroll-link:focus-visible { transform: translateX(-50%) translateY(-2px); }

.motion-words {
  overflow: hidden;
  padding: clamp(28px, 4vw, 52px) 0 clamp(34px, 5vw, 64px);
  color: var(--active-blue);
  background: var(--paper);
}

.motion-row {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  margin: clamp(10px, 1.2vw, 22px) 0;
  padding: 0 clamp(18px, 3vw, 56px);
  font-family: var(--font-motion, Impact, Haettenschweiler, "Arial Black", "Anton", "Inter Tight", sans-serif);
  font-size: clamp(6.5rem, 15vw, 13rem);
  font-weight: 1000;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform;
  transition: transform 80ms linear;
}

.motion-row img {
  width: 0.82em;
  height: 0.82em;
  flex: 0 0 auto;
  border-radius: 24px;
  object-fit: cover;
  transform: translateY(0);
}

.row-blue,
.row-mix { color: #3a86d1; }
.row-gold { color: #f2a300; }
.row-green { color: #4f8e08; }
.row-mix span:nth-of-type(2) { color: #f2a300; }
.row-mix span:nth-of-type(3) { color: #3a86d1; }

.care-products {
  --product-theme: var(--green);
  --product-theme-soft: #bfe474;
  position: relative;
  overflow: hidden;
  min-height: 820px;
  padding: 86px 56px 72px;
  background: var(--paper);
}

.care-products-heading {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  text-align: center;
}

.care-products-heading h2 {
  margin: 0;
  color: var(--product-theme);
  transition: color 220ms ease;
  font-family: var(--font-display, Impact, Haettenschweiler, "Arial Black", "Anton", "Inter Tight", sans-serif);
  font-size: clamp(3.6rem, 6.9vw, 5.4rem);
  font-weight: 1000;
  line-height: 0.96;
  letter-spacing: 0;
  white-space: nowrap;
  transform: scaleX(0.9);
  transform-origin: center;
}

.care-products-heading p {
  max-width: 780px;
  margin: 28px auto 0;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 850;
}

.product-tabs {
  display: inline-flex;
  gap: 8px;
  margin-top: 42px;
  padding: 8px;
  border-radius: 999px;
  background: #f2f0ee;
}

.product-tab {
  min-width: 120px;
  border: 0;
  border-radius: 999px;
  padding: 18px 28px;
  color: rgba(20, 20, 20, 0.82);
  background: transparent;
  font-weight: 950;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-tab:hover,
.product-tab:focus-visible { color: var(--product-theme); outline: none; transform: translateY(-1px); }
.product-tab.is-active { color: var(--night-blue); background: var(--product-theme-soft); }

.product-stage {
  position: relative;
  display: grid;
  min-height: 500px;
  width: min(1280px, 100%);
  margin: 56px auto 0;
  grid-template-columns: 86px minmax(118px, 178px) 1fr minmax(118px, 178px) 86px;
  align-items: center;
}

.product-arrow {
  position: relative;
  z-index: 4;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #c8e86a;
  background: #07530d;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.product-arrow:hover,
.product-arrow:focus-visible { background: var(--green); outline: 4px solid rgba(191, 228, 116, 0.38); outline-offset: 4px; transform: scale(1.06); }
.product-prev { justify-self: start; }
.product-next { justify-self: end; }

.care-product-visual {
  position: relative;
  z-index: 3;
  grid-column: 3;
  justify-self: center;
  width: min(360px, 32vw);
  margin: 0;
  text-align: center;
  transform-origin: 50% 88%;
}

.care-product-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 34px 80px rgba(0, 27, 68, 0.18);
}

.care-product-visual figcaption {
  margin-top: 16px;
  color: var(--product-theme);
  font-weight: 950;
  letter-spacing: 0;
  transition: color 220ms ease;
}

.care-product-visual.is-product-transitioning img,
.care-product-visual.is-product-transitioning figcaption { opacity: 0.12; transition: opacity 180ms ease; }

.product-flight {
  position: fixed;
  z-index: 80;
  margin: 0;
  object-fit: cover;
  pointer-events: none;
  will-change: transform, opacity, filter;
  box-shadow: 0 34px 80px rgba(0, 27, 68, 0.18);
}

.product-preview {
  position: relative;
  z-index: 2;
  width: min(170px, 13vw);
  margin: 0;
  justify-self: center;
  cursor: pointer;
  opacity: 0.42;
  filter: grayscale(1);
  transition: opacity 220ms ease, filter 220ms ease, transform 220ms ease;
}

.product-preview:hover,
.product-preview:focus-within { opacity: 0.68; filter: grayscale(0.75); transform: scale(1.04); }
.product-preview img { width: 100%; aspect-ratio: 1 / 1; border-radius: 26px; object-fit: cover; box-shadow: 0 22px 58px rgba(0, 27, 68, 0.1); }
.product-preview-prev { grid-column: 2; }
.product-preview-next { grid-column: 4; }

.product-ghost {
  position: absolute;
  z-index: 1;
  color: rgba(0, 27, 68, 0.1);
  font-family: var(--font-motion, Impact, Haettenschweiler, "Arial Black", sans-serif);
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  font-weight: 1000;
  line-height: 0.9;
  pointer-events: none;
  transition: transform 360ms ease, opacity 360ms ease;
}

.ghost-one { left: 13%; top: 44%; transform: rotate(-8deg); }
.ghost-two { right: 13%; top: 20%; transform: rotate(5deg); }
.ghost-three { right: 6%; bottom: 10%; transform: rotate(-4deg); }

.intro-band,
.programs,
.space,
.stories,
.visit { padding: 92px 56px; }

.intro-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.4fr;
  gap: 40px;
  align-items: end;
  color: var(--paper);
  background: var(--deep-blue);
}

.intro-text,
.intro-stats,
.section-heading,
.program-grid,
.routine,
.mosaic,
.trust,
.story-grid,
.visit,
.site-footer { width: min(1280px, 100%); margin-left: auto; margin-right: auto; }

.intro-text h2,
.section-heading h2,
.routine h2,
.trust h2,
.visit h2 { margin: 0; font-size: 3rem; line-height: 1.12; font-weight: 950; letter-spacing: 0; }

.intro-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.intro-stats article { min-height: 150px; padding: 22px; border-radius: 8px; background: rgba(255, 255, 255, 0.12); }
.intro-stats strong { display: block; color: var(--yellow); font-size: 2.7rem; line-height: 1; font-weight: 950; }
.intro-stats span { display: block; margin-top: 16px; font-weight: 800; }

.section-heading { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 48px; margin-bottom: 42px; }
.section-heading.narrow { display: block; max-width: 760px; margin-left: 0; }
.programs { background: var(--soft); }
.section-kicker { margin: 0 0 14px; color: var(--red); font-size: 0.82rem; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }

.program-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.program-card { min-height: 520px; overflow: hidden; border-radius: 8px; background: var(--paper); box-shadow: var(--shadow); transition: transform 180ms ease, box-shadow 180ms ease; }
.program-card:hover { transform: translateY(-5px); box-shadow: 0 28px 70px rgba(0, 27, 68, 0.2); }
.program-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.program-card div { padding: 20px; }
.program-card span { display: inline-flex; margin-bottom: 8px; border-radius: 999px; padding: 5px 10px; font-size: 0.76rem; font-weight: 950; }
.program-card h3 { margin: 0 0 8px; font-size: 1.55rem; line-height: 1.2; }
.program-card p { margin: 0; color: rgba(20, 20, 20, 0.72); font-weight: 650; }
.blue-card span { color: var(--paper); background: var(--active-blue); }
.yellow-card span { color: var(--night-blue); background: var(--yellow); }
.green-card span { color: var(--paper); background: var(--green); }
.orange-card span { color: var(--paper); background: var(--orange); }

.routine { display: grid; grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr); gap: 56px; align-items: center; padding: 110px 56px; }
.routine-visual img { width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.timeline { display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: 86px 1fr; gap: 18px; align-items: center; padding: 18px 0; border-top: 1px solid var(--line); }
.timeline time { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; border-radius: 999px; color: var(--paper); background: var(--deep-blue); font-weight: 950; }
.timeline span { font-weight: 750; }

.space { color: var(--paper); background: var(--night-blue); }
.space .section-kicker { color: var(--yellow); }
.mosaic { display: grid; grid-template-columns: 1.15fr 0.85fr 0.85fr; grid-auto-rows: 280px; gap: 18px; }
.mosaic figure { position: relative; overflow: hidden; margin: 0; border-radius: 8px; background: var(--deep-blue); }
.mosaic-large { grid-row: span 2; }
.mosaic-wide { grid-column: span 2; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 240ms ease; }
.mosaic figure:hover img { transform: scale(1.035); }
.mosaic figcaption { position: absolute; left: 18px; bottom: 18px; border-radius: 999px; padding: 8px 14px; color: var(--night-blue); background: var(--yellow); font-size: 1.4rem; font-weight: 950; }

.trust { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; padding: 110px 56px; }
.trust-copy p:last-child { margin: 22px 0 0; color: rgba(20, 20, 20, 0.72); font-size: 1.08rem; font-weight: 700; }
.trust-list { display: grid; gap: 16px; }
.trust-list article { border-left: 9px solid var(--yellow); border-radius: 8px; padding: 24px; background: #f4f8ed; }
.trust-list article:nth-child(2) { border-color: var(--active-blue); background: #edf5ff; }
.trust-list article:nth-child(3) { border-color: var(--orange); background: #fff3e8; }
.trust-list h3 { margin: 0 0 8px; font-size: 1.45rem; }
.trust-list p { margin: 0; color: rgba(20, 20, 20, 0.72); font-weight: 700; }

.stories { background: var(--soft); }
.story-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.story-grid blockquote { min-height: 235px; margin: 0; border-radius: 8px; padding: 28px; color: var(--paper); background: var(--deep-blue); }
.story-grid blockquote:nth-child(2) { background: var(--green); }
.story-grid blockquote:nth-child(3) { color: var(--night-blue); background: var(--yellow); }
.story-grid p { margin: 0; font-size: 1.35rem; line-height: 1.45; font-weight: 900; }
.story-grid cite { display: block; margin-top: 22px; font-style: normal; font-weight: 900; opacity: 0.84; }

.visit { display: grid; grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.22fr); gap: 52px; align-items: start; color: var(--paper); background: var(--deep-blue); }
.visit .section-kicker { color: var(--yellow); }
.visit-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.visit-form label { display: grid; gap: 8px; font-weight: 900; }
.visit-form input,
.visit-form select { width: 100%; min-height: 50px; border: 2px solid transparent; border-radius: 8px; padding: 0 14px; color: var(--ink); background: var(--paper); }
.visit-form input:focus,
.visit-form select:focus { border-color: var(--yellow); outline: none; }
.visit-form button { align-self: end; }

.bottom-marquee {
  position: relative;
  width: min(1280px, 100%);
  min-height: 190px;
  margin: 0 auto;
  overflow: hidden;
  overflow: clip;
  isolation: isolate;
  contain: paint;
  color: #a9d3fb;
  background: #3188d4;
}

.bottom-marquee-window { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); overflow: hidden; }
.bottom-marquee-track { display: flex; width: max-content; gap: 0; align-items: center; font-family: var(--font-bottom, Impact, Haettenschweiler, "Arial Black", "Anton", "Inter Tight", sans-serif); font-size: clamp(4.8rem, 8.6vw, 8rem); font-weight: 1000; line-height: 0.9; letter-spacing: 0; text-transform: uppercase; white-space: nowrap; will-change: transform; animation: bottomTicker 18s linear infinite; }
.bottom-marquee.is-reverse .bottom-marquee-track { animation-direction: reverse; }
.bottom-marquee-track span { display: inline-block; padding-right: 64px; }

.site-footer { display: flex; justify-content: space-between; gap: 28px; padding: 42px 56px; color: var(--paper); background: #080823; }
.site-footer p { margin: 14px 0 0; color: rgba(255, 255, 255, 0.72); }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 10px 18px; font-weight: 850; }
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--yellow); outline: none; }

@keyframes slowReveal { from { transform: scale(1.04); opacity: 0.72; } to { transform: scale(1); opacity: 1; } }
@keyframes bottomTicker { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

@media (max-width: 1080px) {
  .site-header { left: 24px; right: 24px; min-height: 66px; padding: 11px 20px; }
  .motion-row { gap: 24px; margin: 14px 0; font-size: clamp(5rem, 16vw, 10rem); }
  .motion-row img { width: 0.82em; height: 0.82em; border-radius: 18px; }
  .product-stage { grid-template-columns: 64px minmax(90px, 120px) 1fr minmax(90px, 120px) 64px; }
  .intro-band,
  .section-heading,
  .routine,
  .trust,
  .visit { grid-template-columns: 1fr; }
  .program-grid,
  .story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mosaic-large,
  .mosaic-wide { grid-row: auto; grid-column: auto; }
}

@media (max-width: 760px) {
  .motion-words { padding-top: 30px; padding-bottom: 36px; }
  .motion-row { gap: 18px; margin: 10px 0; padding: 0 18px; font-size: clamp(4.4rem, 19vw, 7.4rem); }
  .motion-row img { width: 0.82em; height: 0.82em; border-radius: 16px; }
  .care-products { min-height: auto; padding: 64px 20px 54px; }
  .care-products-heading h2 { font-size: clamp(2.8rem, 12vw, 4.6rem); white-space: normal; }
  .care-products-heading p { font-size: 1rem; }
  .product-tabs { width: 100%; overflow-x: auto; }
  .product-tab { min-width: 96px; padding: 14px 18px; }
  .product-stage { min-height: 560px; grid-template-columns: 52px 1fr 52px; margin-top: 32px; }
  .care-product-visual { grid-column: 2; width: min(250px, 58vw); }
  .product-preview { position: absolute; top: 42%; width: 86px; }
  .product-preview-prev { left: 60px; }
  .product-preview-next { right: 60px; }
  .product-prev { grid-column: 1; }
  .product-next { grid-column: 3; }
  .product-arrow { width: 50px; height: 50px; font-size: 2.35rem; }
  .product-ghost { font-size: 3.2rem; }
  .hero-arc-text { top: 30%; width: 112vw; }
  .hero-arc-text text { font-size: 96px; letter-spacing: 1px; stroke-width: 0.04px; }
  .site-header { top: 10px; left: 12px; right: 12px; display: flex; justify-content: space-between; min-height: 56px; padding: 8px 10px; border-radius: 18px; }
  .brand-mark { width: 34px; height: 34px; }
  .menu-toggle { display: block; width: 38px; height: 38px; }
  .site-nav { position: fixed; top: 76px; left: 12px; right: 12px; display: none; grid-template-columns: 1fr; gap: 4px; padding: 14px; color: var(--night-blue); font-size: 1rem; font-weight: 900; border: 1px solid rgba(0, 27, 68, 0.08); border-radius: 18px; background: rgba(255, 255, 255, 0.98); box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .nav-main { display: grid; grid-column: auto; justify-self: stretch; width: 100%; gap: 4px; }
  .site-nav .nav-cta { grid-column: auto; justify-self: stretch; text-align: center; }
  .site-nav a { padding: 13px 14px; }
  .site-header .nav-main a { letter-spacing: 0; }
  .hero-media img { object-position: 54% center; }
  .intro-band,
  .programs,
  .space,
  .stories,
  .visit,
  .routine,
  .trust,
  .site-footer { padding-left: 20px; padding-right: 20px; }
  .intro-band,
  .programs,
  .space,
  .stories,
  .visit { padding-top: 68px; padding-bottom: 68px; }
  .routine,
  .trust { padding-top: 78px; padding-bottom: 78px; }
  .intro-text h2,
  .section-heading h2,
  .routine h2,
  .trust h2,
  .visit h2 { font-size: 2.15rem; }
  .intro-stats,
  .program-grid,
  .story-grid,
  .visit-form,
  .mosaic { grid-template-columns: 1fr; }
  .program-card { min-height: auto; }
  .routine-visual img { aspect-ratio: 4 / 3; }
  .timeline li { grid-template-columns: 76px 1fr; gap: 12px; }
  .mosaic { grid-auto-rows: 260px; }
  .story-grid blockquote { min-height: 190px; }
  .story-grid p { font-size: 1.15rem; }
  .bottom-marquee { min-height: 150px; }
.bottom-marquee-track { gap: 0; font-size: clamp(3rem, 12vw, 5rem); }
  .bottom-marquee-track span { padding-right: 36px; }
  .site-footer { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 420px) {
  .hero-arc-text { top: 33%; width: 126vw; }
  .hero-arc-text text { font-size: 85px; letter-spacing: 1px; stroke-width: 0.035px; }
  .brand small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

























.site-header .brand { gap: 0; }
.site-header .brand-mark { display: none; }

