/* ============================================================
   刘天希数字世界 — 整站设计系统
   温暖、学者气、适合老人阅读
   ============================================================ */

/* ----- 变量 ----- */
:root {
  --cream: #f7f5ed;
  --ivory: #fcfaf5;
  --white: #ffffff;
  --ink: #1a1a18;
  --charcoal: #4a4944;
  --stone: #6e6d68;
  --mauve: #7a5c8a;
  --mauve-light: #f4f0f6;
  --mauve-hover: #e8dfed;
  --gold: #8a7a5a;
  --gold-light: #f6f3ec;
  --sage: #5e8a7a;
  --sage-light: #eef4f1;

  --font-cjk: 'Noto Serif CJK SC', 'Songti SC', 'STSong', serif;
  --font-sans: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'SF Mono', 'JetBrains Mono', monospace;

  --gap: 16px;
  --radius: 10px;
  --radius-lg: 16px;
  --max-w: 960px;
}

/* ----- 重置 ----- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 1.7;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ----- 背景光晕 ----- */
.bg-glow { position: fixed; pointer-events: none; z-index: 0; }
.bg-glow--tl {
  top: -10%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(122,92,138,0.05) 0%, transparent 65%);
}
.bg-glow--br {
  bottom: -8%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(90,89,89,0.03) 0%, transparent 65%);
}

/* ----- 容器 ----- */
.container {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- 顶部导航 ----- */
.top-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,245,237,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.top-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; align-items: center;
  overflow-x: auto; scrollbar-width: none;
  padding: 8px 0;
}
.top-nav__inner::-webkit-scrollbar { display: none; }
.top-nav__home {
  font-family: var(--font-cjk);
  font-size: 0.95rem; font-weight: 600;
  color: var(--ink); text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
  padding: 8px 14px; border-radius: 8px;
  transition: background 0.2s;
}
.top-nav__home:hover { background: var(--mauve-light); }
.top-nav__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.95rem; font-weight: 500;
  color: var(--charcoal); text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
  padding: 8px 14px; border-radius: 8px;
  transition: all 0.2s;
}
.top-nav__link:hover { background: var(--mauve-light); color: var(--mauve); }
.top-nav__dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.top-nav__sep {
  width: 1px; height: 18px;
  background: rgba(0,0,0,0.08);
  margin: 0 4px; flex-shrink: 0;
}

/* ----- 页面区块 ----- */
.page-section { padding: 56px 0; }
.page-section + .page-section { border-top: 1px solid rgba(0,0,0,0.05); }

/* ----- 区块标题 ----- */
.sec-hd { text-align: center; margin-bottom: 32px; }
.sec-hd__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--mauve); text-transform: uppercase;
  margin-bottom: 8px;
}
.sec-hd__title {
  font-family: var(--font-cjk);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700; color: var(--ink);
  margin-bottom: 6px; line-height: 1.35;
}
.sec-hd__sub {
  font-size: 1rem; color: var(--charcoal);
  max-width: 500px; margin: 0 auto;
}

/* ----- 分割线 ----- */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 32px 0;
}
.divider::before, .divider::after {
  content: '';
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,92,138,0.18), transparent);
}
.divider__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(122,92,138,0.2); }


/* ===== 1. HERO ===== */
.hero { text-align: center; padding: 64px 0 32px; max-width: 680px; margin: 0 auto; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--mauve);
  border: 1px solid rgba(122,92,138,0.22);
  padding: 6px 22px; border-radius: 100px;
  margin-bottom: 24px;
  background: rgba(252,250,245,0.7);
}
.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mauve);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.hero__rel {
  display: inline-block;
  padding: 4px 16px; border-radius: 20px;
  background: var(--mauve-light); color: var(--mauve);
  font-size: 0.95rem; font-weight: 500; margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-cjk);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700; color: var(--ink);
  margin-bottom: 10px; line-height: 1.45; letter-spacing: 0.03em;
}
.hero__sub {
  font-family: var(--font-cjk);
  font-size: 1.1rem; color: var(--charcoal);
  letter-spacing: 0.05em; margin-bottom: 28px;
}
.hero__bio {
  text-align: left; max-width: 620px; margin: 0 auto;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(122,92,138,0.03) 0%, transparent 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(122,92,138,0.08);
  font-size: 1rem; line-height: 1.95; color: var(--charcoal);
}
.hero__bio p { margin-bottom: 12px; }
.hero__bio p:last-child { margin-bottom: 0; }
.hero__bio strong { color: var(--ink); font-weight: 600; }


/* ===== 2. 正在做的事 ===== */
.now { max-width: var(--max-w); margin: 0 auto; }

/* 三件事预告 */
.now-overview {
  display: flex; gap: var(--gap);
  margin-bottom: 24px;
}
.now-overview__item {
  flex: 1;
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--ivory);
  border-radius: var(--radius); padding: 16px 18px;
  border: 1px solid rgba(122,92,138,0.06);
}
.now-overview__num {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--mauve-light); color: var(--mauve);
  font-family: var(--font-cjk); font-size: 0.9rem; font-weight: 600;
}
.now-overview__item strong { color: var(--ink); font-size: 0.95rem; }
.now-overview__item span { color: var(--stone); font-size: 0.85rem; }

/* 听诊器卡片 */
.steth {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 0 0 1px rgba(122,92,138,0.06), 0 2px 12px rgba(0,0,0,0.02);
  margin-bottom: 24px;
  position: relative;
}
.steth::before {
  content: '';
  position: absolute; top: 0; left: 28px; right: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(122,92,138,0.18), transparent);
}
.steth__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--mauve); margin-bottom: 4px;
}
.steth__title {
  font-family: var(--font-cjk);
  font-size: 1.4rem; font-weight: 700; color: var(--ink);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.steth__title svg { width: 28px; height: 28px; color: var(--mauve); flex-shrink: 0; }
.steth__body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; align-items: start;
}
.steth__story { font-size: 1rem; line-height: 1.85; color: var(--charcoal); }
.steth__story p { margin-bottom: 8px; }
.steth__quote {
  margin: 8px 0; padding: 8px 16px;
  border-left: 3px solid rgba(122,92,138,0.3);
  font-size: 0.95rem; line-height: 1.7;
  color: var(--charcoal); font-style: italic;
  background: rgba(122,92,138,0.02);
  border-radius: 0 6px 6px 0;
}
.steth__quote strong { color: var(--ink); font-style: normal; }
.steth__quote-by {
  display: block; font-size: 0.9rem;
  color: var(--stone); font-style: normal; margin-top: 2px;
}
.steth__right { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.steth__img { width: 100%; max-width: 300px; overflow: hidden; }
.steth__img img {
  width: 56.25%; height: auto; display: block;
  margin: 0 auto; transform: rotate(-90deg);
}
.steth__method {
  width: 100%; max-width: 300px;
  font-size: 0.9rem; border-collapse: collapse;
}
.steth__method td { padding: 4px 0; vertical-align: top; line-height: 1.55; }
.steth__method td:first-child {
  color: var(--mauve); font-weight: 600;
  white-space: nowrap; padding-right: 10px;
  font-size: 0.88rem; width: 76px;
}
.steth__method td:last-child { color: var(--charcoal); }
.steth__links {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 6px; padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.steth__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.9rem; font-weight: 500;
  color: var(--mauve); text-decoration: none;
  padding: 8px 18px; border-radius: 100px;
  background: var(--mauve-light);
  transition: all 0.2s; cursor: pointer;
}
.steth__link svg { width: 15px; height: 15px; flex-shrink: 0; }
.steth__link:hover { background: var(--mauve-hover); }

/* 活动卡片 */
.acts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.act {
  background: var(--ivory);
  border-radius: var(--radius); padding: 24px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.03), 0 1px 6px rgba(0,0,0,0.01);
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.act:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(122,92,138,0.08), 0 4px 16px rgba(0,0,0,0.03);
}
.act::after {
  content: '';
  position: absolute; top: 0; left: 20px; right: 20px;
  height: 2px; opacity: 0.3; transition: all 0.3s;
}
.act:hover::after { left: 0; right: 0; opacity: 0.6; }
.act:nth-child(1)::after { background: var(--mauve); }
.act:nth-child(2)::after { background: var(--gold); }
.act:nth-child(3)::after { background: var(--sage); }
.act__icon {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 8px; margin-bottom: 12px;
}
.act:nth-child(1) .act__icon { background: var(--mauve-light); color: var(--mauve); }
.act:nth-child(2) .act__icon { background: var(--gold-light); color: var(--gold); }
.act:nth-child(3) .act__icon { background: var(--sage-light); color: var(--sage); }
.act__icon svg { width: 22px; height: 22px; }
.act__title { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.act__desc { font-size: 0.95rem; line-height: 1.7; color: var(--charcoal); }


/* ===== 3. 未来计划 ===== */
.future { max-width: 760px; margin: 0 auto; }
.vision {
  text-align: center; padding: 24px 28px; margin-bottom: 24px;
  font-family: var(--font-cjk);
  font-size: 1.1rem; line-height: 1.95; color: var(--ink);
  background: linear-gradient(135deg, rgba(122,92,138,0.04) 0%, transparent 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(122,92,138,0.06);
}
.vision em { font-style: normal; color: var(--mauve); font-weight: 600; }
.fcards { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.fcard {
  background: var(--ivory);
  border-radius: var(--radius-lg); padding: 24px 28px;
  text-decoration: none; color: inherit;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.03), 0 1px 6px rgba(0,0,0,0.01);
  transition: all 0.25s;
  display: flex; flex-direction: column; gap: 8px;
  cursor: pointer;
}
.fcard:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(122,92,138,0.08), 0 6px 24px rgba(0,0,0,0.04);
}
.fcard__icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--mauve-light); color: var(--mauve);
}
.fcard__icon svg { width: 20px; height: 20px; }
.fcard__title {
  font-family: var(--font-cjk);
  font-size: 1.1rem; font-weight: 600; color: var(--ink);
}
.fcard__desc { font-size: 0.95rem; line-height: 1.7; color: var(--charcoal); }
.fcard__go {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.9rem; color: var(--stone);
  transition: all 0.25s;
}
.fcard__go svg { width: 14px; height: 14px; transition: transform 0.25s; }
.fcard:hover .fcard__go { color: var(--mauve); }
.fcard:hover .fcard__go svg { transform: translateX(3px); }


/* ===== 3.5. 茶寿之约 ===== */
.tealife { max-width: 880px; margin: 0 auto; }
.tealife-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.tealife-card {
  background: var(--ivory);
  border-radius: var(--radius); padding: 24px;
  border: 1px solid rgba(94,138,122,0.08);
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.tealife-card:hover {
  border-color: rgba(94,138,122,0.2);
  box-shadow: 0 2px 14px rgba(0,0,0,0.03);
}
.tealife-card::after {
  content: '';
  position: absolute; top: 0; left: 20px; right: 20px;
  height: 2px; border-radius: 0 0 2px 2px;
  background: var(--sage);
  opacity: 0.3; transition: all 0.3s;
}
.tealife-card:hover::after { left: 0; right: 0; opacity: 0.6; }
.tealife-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 8px; margin-bottom: 12px;
  background: var(--sage-light); color: var(--sage);
}
.tealife-card__icon svg { width: 22px; height: 22px; }
.tealife-card__title { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.tealife-card__desc { font-size: 0.95rem; line-height: 1.75; color: var(--charcoal); }


/* ===== 4. 人生智慧 ===== */
.wisdom { max-width: 880px; margin: 0 auto; }
.wisdom__badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.9rem; font-weight: 500;
  color: var(--mauve);
  background: var(--mauve-light);
  padding: 5px 16px; border-radius: 100px;
  margin-bottom: 16px;
}
.wgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.wcard {
  background: var(--ivory);
  border-radius: var(--radius); padding: 24px;
  border: 1px solid rgba(122,92,138,0.06);
  transition: all 0.25s;
}
.wcard:hover {
  border-color: rgba(122,92,138,0.15);
  box-shadow: 0 2px 14px rgba(0,0,0,0.03);
}
.wcard__num {
  font-family: var(--font-mono);
  font-size: 0.85rem; font-weight: 600;
  color: var(--mauve); letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.wcard__title { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.wcard__text { font-size: 0.95rem; line-height: 1.75; color: var(--charcoal); }


/* ===== 回忆录 / 简介与生平 ===== */
.memoirs { max-width: var(--max-w); margin: 0 auto; }
.memoir__cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 24px;
}
.memoir-bio {
  font-size: 0.95rem; line-height: 1.9;
  color: var(--charcoal);
  padding: 20px 24px;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(122,92,138,0.06);
}
.memoir-bio p { margin-bottom: 10px; }
.memoir-bio p:last-child { margin-bottom: 0; }
.memoir-bio strong { color: var(--ink); font-weight: 600; }
.memoir-cover { margin-bottom: 0; }
.memoir-cover img {
  width: 100%; display: block; margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.04);
}
.memoir-cover a { display: block; transition: opacity 0.2s; }
.memoir-cover a:hover { opacity: 0.9; }
.timeline { display: flex; flex-direction: column; }
.chapter {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 14px 0 14px 24px;
  border-left: 2px solid rgba(122,92,138,0.15);
  position: relative;
  text-decoration: none; color: inherit;
  transition: all 0.2s; cursor: pointer;
}
.chapter::before {
  content: '';
  position: absolute; left: -5px; top: 20px;
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(122,92,138,0.3);
  transition: all 0.2s;
}
.chapter:hover {
  border-left-color: var(--mauve);
  background: rgba(122,92,138,0.02);
  border-radius: 0 6px 6px 0;
}
.chapter:hover::before { background: var(--mauve); transform: scale(1.3); }
.chapter__num {
  font-family: var(--font-mono);
  font-size: 0.9rem; font-weight: 600;
  color: var(--mauve); letter-spacing: 0.04em;
  min-width: 54px; padding-top: 3px;
}
.chapter__body { flex: 1; }
.chapter__title { font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.chapter__years {
  font-size: 0.9rem; color: var(--stone);
  font-family: var(--font-mono); margin-bottom: 4px;
}
.chapter__desc { font-size: 0.9rem; line-height: 1.65; color: var(--charcoal); }
.memoir-cta { text-align: center; margin-top: 24px; }
.memoir-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 28px; border-radius: 100px;
  background: var(--mauve-light); color: var(--mauve);
  text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: all 0.2s; cursor: pointer;
}
.memoir-btn svg { width: 18px; height: 18px; }
.memoir-btn:hover { background: var(--mauve-hover); gap: 12px; }


/* ===== 6. FOOTER ===== */
.ft {
  text-align: center; padding: 32px 0 56px;
  font-size: 0.9rem; color: var(--stone);
  letter-spacing: 0.05em; line-height: 1.9;
}
.ft::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,92,138,0.2), transparent);
  margin: 0 auto 16px;
}
.ft a { color: var(--mauve); text-decoration: none; font-weight: 500; }
.ft a:hover { text-decoration: underline; }


/* ===== 子页面组件 ===== */
.page { max-width: 780px; margin: 0 auto; padding: 48px 0; }
.page-hero { text-align: center; padding: 48px 0 24px; }
.page-hero__icon { font-size: 2.5rem; margin-bottom: 16px; }
.page-hero__badge {
  display: inline-block;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--mauve);
  border: 1px solid rgba(122,92,138,0.2);
  padding: 5px 18px; border-radius: 100px;
  margin-bottom: 16px;
}

.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.95rem; font-weight: 500;
  color: var(--mauve); text-decoration: none;
  padding: 8px 16px; border-radius: 100px;
  background: var(--mauve-light);
  transition: all 0.2s;
}
.back-link:hover { background: var(--mauve-hover); }

.site-footer {
  text-align: center; padding: 32px 0 56px;
  font-size: 0.9rem; color: var(--stone);
  letter-spacing: 0.05em; line-height: 1.9;
}
.site-footer::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,92,138,0.2), transparent);
  margin: 0 auto 16px;
}
.site-footer a { color: var(--mauve); text-decoration: none; font-weight: 500; }
.site-footer a:hover { text-decoration: underline; }

.story {
  max-width: 720px; margin: 0 auto 32px; padding: 28px;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.03), 0 2px 12px rgba(0,0,0,0.02);
}
.story__label {
  display: inline-block;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em;
  color: var(--mauve);
  border: 1px solid rgba(122,92,138,0.18);
  padding: 4px 16px; border-radius: 100px;
  margin-bottom: 16px;
}
.story__heading {
  font-family: var(--font-cjk);
  font-size: 1.4rem; font-weight: 700; color: var(--ink);
  margin-bottom: 16px;
}
.story__body p {
  font-size: 1rem; line-height: 1.95;
  color: var(--charcoal);
  text-indent: 2em; margin-bottom: 8px;
}

/* 心跳动画 */
@keyframes dotPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}


/* ===== 通用 ===== */
.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;
}

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


/* ===== 响应式 ===== */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .hero { padding: 40px 0 24px; }
  .hero__title { font-size: 1.8rem; }
  .hero__bio { margin: 0 12px; padding: 20px; font-size: 0.95rem; }
  .page-section { padding: 40px 0; }

  .now-overview { flex-direction: column; }
  .steth { padding: 20px; }
  .steth__body { grid-template-columns: 1fr; gap: 8px; }
  .steth__img { max-width: 220px; }
  .steth__method { max-width: 100%; }

  .acts { grid-template-columns: 1fr; }
  .fcards { grid-template-columns: 1fr; }
  .wgrid { grid-template-columns: 1fr; }
  .tealife-grid { grid-template-columns: 1fr; }

  .memoir__cols { grid-template-columns: 1fr; gap: 20px; }
  .memoir-cover img { max-width: 320px; }
  .chapter { padding-left: 16px; gap: 12px; }
  .chapter__num { min-width: 44px; font-size: 0.85rem; }

  .page { padding: 32px 0; }
  .story { padding: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .hero__title br { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
