/* ==========================================================================
   One Wellness Workshop — global design system
   Derived from onewellness网页模版.psd
   Palette sampled from the PSD:
     brand yellow  #FFCA1F   (logo sun / lockup text)
     icon yellow   #FDD150   (feature circles, subtle gradient)
     accent blue   #3B96FC   (section underlines, checklist marks)
     heading       #262626
     body text     #8F8F8F
     nav text      #8C8C8C
     light band    #F6F6F6
   ========================================================================== */

:root {
  --yellow: #ffca1f;
  --yellow-soft: #fdd150;
  --yellow-deep: #f4b91a;
  --blue: #3b96fc;
  --charcoal: #262626;
  --ink: #000000;
  --muted: #000000;
  --muted-soft: #333333;
  --body-size: 18px;   /* 全站正文统一字号（与王老师简介段落一致） */
  --band: #f6f6f6;
  --line: #ececec;
  --white: #ffffff;
  --radius: 2px;
  --header-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Lato", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  font-size: var(--body-size);
}

/* 正文统一字号／行高（标题、导航、按钮、页脚等 UI 元素不受影响） */
p, li, blockquote, figcaption, .bio {
  font-size: var(--body-size);
  line-height: 1.75;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Header / navigation  (PSD: flat white bar, brand left, compact caps nav,
   boxed language switcher — no shadows, no pills)
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.navbar {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: "Raleway", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--charcoal);
  font-size: 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  font-family: "Raleway", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.nav-links a {
  color: #757575;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--charcoal); }

/* Boxed language switcher, as in the PSD */
.nav-links a.lang-switch {
  background: #f0f0f0;
  color: #555;
  padding: 7px 12px;
  border-radius: var(--radius);
  letter-spacing: .5px;
}
.nav-links a.lang-switch:hover { background: #e6e6e6; color: var(--charcoal); }

.nav-toggle { display: none; }

/* --------------------------------------------------------------------------
   Hero  (solid brand-brown band, centered logo lockup,
   organization name in white below the logo)
   -------------------------------------------------------------------------- */
:root { --hero-brown: #a5713a; }

.hero {
  margin-top: var(--header-h);
  background: var(--hero-brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 20px 100px;
}

.hero-lockup {
  width: min(170px, 50%);
  height: auto;
}

.hero-title {
  margin: 48px 0 0;
  color: var(--white);
  font-family: "Raleway", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 700;
  font-size: 68px;
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Sections & headings  (PSD: uppercase heading + short blue rule)
   -------------------------------------------------------------------------- */
.section { padding: 92px 0; }
.section-light, .section-warm { background: var(--band); }
.center-text { text-align: center; }
.narrow { max-width: 760px; }

h1, h2, h3 {
  font-family: "Raleway", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--charcoal);
  line-height: 1.25;
  margin-top: 0;
}
h2 { font-size: 33px; letter-spacing: 1px; margin-bottom: 18px; }
h3 { font-size: 20px; margin-bottom: 10px; }
p  { color: var(--muted); }

.section-title {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

/* Short blue underline under section titles */
.title-rule {
  display: block;
  width: 42px;
  height: 3px;
  background: var(--blue);
  margin: 0 auto 26px;
  border: 0;
}
.title-rule.left { margin-left: 0; margin-right: auto; }

.section-lede {
  max-width: 640px;
  margin: 0 auto 8px;
  color: var(--muted);
}

/* Kicker kept for not-yet-restyled sections */
.section-kicker {
  margin: 0 0 10px;
  font-family: "Raleway", "PingFang SC", "Microsoft YaHei", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

/* --------------------------------------------------------------------------
   Buttons  (flat, rectangular — no pills)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: "Raleway", "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-primary {
  background: var(--yellow);
  color: var(--charcoal);
}
.btn-primary:hover { background: var(--yellow-deep); }
.btn-secondary {
  color: var(--charcoal);
  border: 1px solid #d5d5d5;
  background: transparent;
}
.btn-secondary:hover { border-color: var(--charcoal); }

.text-link {
  color: var(--blue);
  font-weight: 700;
  display: inline-block;
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   Features  (PSD: gray band, 4 columns, yellow gradient circles, no cards)
   -------------------------------------------------------------------------- */
.features { padding: 84px 0; }
.features .section-head { text-align: center; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 18px;
}

.feature-card {
  background: transparent;
  text-align: center;
  padding: 0;
}
.feature-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 22px 0 8px;
}
.feature-card p {
  line-height: 1.8;
  color: var(--ink);
  margin: 0;
}

.feature-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ffda6b 0%, var(--yellow-soft) 45%, #f9c22e 100%);
  color: rgba(255, 255, 255, .96);
  font-size: 36px;
  font-weight: 700;
  font-family: "Raleway", "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* --------------------------------------------------------------------------
   About / split sections  (PSD: photo left, left-aligned title + blue rule,
   "Why Choose Us?" checklist with blue marks)
   -------------------------------------------------------------------------- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.reverse .split-text { order: 1; }
.reverse .donate-box { order: 2; }

.split-image img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
}

.split-text p { font-size: var(--body-size); }

.subheading {
  font-size: 21px;
  margin: 26px 0 6px;
}

/* Blue checklist */
.checklist {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 32px;
}
.checklist li {
  position: relative;
  padding-left: 26px;
  font-size: var(--body-size);
  color: var(--ink);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}

/* --------------------------------------------------------------------------
   Not-yet-restyled sections (Tea, Team, Testimonies, Events, Donate,
   Contact) — mapped onto the flat system so nothing looks broken.
   These get their full PSD treatment in the next stage.
   -------------------------------------------------------------------------- */
.card-grid, .team-grid, .testimonial-grid { display: grid; gap: 26px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); margin-top: 44px; }
.team-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;               /* 两张卡片时整体居中，避免占满整行 */
  margin: 44px auto 0;
}
/* 见证：单列加宽卡片。卡片本身用整行宽度（920px），卡内再分两栏——
   左栏放头像与姓名，右栏放正文，这样正文行宽仍保持在易读范围内，
   不会因为卡片变宽而出现一行七八十字的“串行”问题。 */
.testimonial-grid {
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 38px auto 0;
  align-items: start;
}

.info-card, .team-card, blockquote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.info-card { border-top: 3px solid var(--yellow); }

.team-card { text-align: center; }
.avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
}
.placeholder-avatar {
  background: linear-gradient(135deg, #ffda6b, #f9c22e);
}

blockquote {
  margin: 0;
  font-size: var(--body-size);
  color: var(--ink);
}
blockquote span {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: var(--body-size);
  font-weight: 700;
}

.event-section {
  background: var(--charcoal);
  color: var(--white);
}
.event-section h2 { color: var(--white); }
.event-section p { color: rgba(255,255,255,.82); }
.event-section .section-kicker { color: var(--yellow); }
.event-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.event-card h2 { margin-bottom: 8px; }
.event-card p { max-width: 640px; margin-bottom: 0; }
.event-card .btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0 38px;
}

.donate-box {
  min-height: 300px;
  border-radius: var(--radius);
  border: 1px dashed #cfcfcf;
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  font-family: "Raleway", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.contact-section { background: var(--white); }

/* --------------------------------------------------------------------------
   Content helpers for the Sanjiao Tea section & Testimonies
   (layout only — same colors, type, and radius as the rest of the system)
   -------------------------------------------------------------------------- */
.card-grid.two { grid-template-columns: repeat(2, 1fr); margin-top: 44px; }

.checklist.single { grid-template-columns: 1fr; }
.checklist.no-list li::before { content: "✕"; color: var(--muted-soft); }

.tea-block { margin-top: 48px; }
.tea-block .subheading { margin-top: 0; }

.tea-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  justify-content: center;
  gap: 6px 44px;
  text-align: left;
  margin-top: 14px;
}

.tea-vow {
  margin: 28px auto 0;
  max-width: 620px;
}

.tea-video {
  margin: 24px auto 0;
  width: min(300px, 100%);
  aspect-ratio: 9 / 16;   /* YouTube Shorts 为竖屏比例 */
}
.tea-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
  display: block;
}

/* Full testimonial with a portrait (学员见证) */
.testimonial-grid blockquote p {
  margin: 0 0 14px;
  font-size: var(--body-size);
  color: var(--ink);
}
.testimonial-grid blockquote p:last-of-type { margin-bottom: 0; }

/* 带头像的见证：卡内左右两栏（头像栏 / 正文栏） */
.testimonial-grid blockquote:has(.testimonial-person) {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  column-gap: 34px;
  padding: 34px 36px;
}
.testimonial-grid blockquote:has(.testimonial-person) > p { grid-column: 2; }

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.testimonial-grid blockquote:has(.testimonial-person) .testimonial-person {
  grid-column: 1;
  grid-row: 1;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-top: 4px;
}
.testimonial-person img {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
}
.testimonial-grid blockquote:has(.testimonial-person) .testimonial-person img {
  width: 104px;
  height: 104px;
}
.testimonial-person span { margin-top: 0; }

/* --------------------------------------------------------------------------
   Offline events (线下活动) — 纵向时间轴 + 可放大的活动照片
   时间轴为“左侧轴线”结构：轴线在左，年份节点标记年份，
   每场活动一张卡片（左图右文）。活动增加时只需在列表里继续追加，
   排版不会因为数量变化而失衡。
   -------------------------------------------------------------------------- */
.timeline {
  max-width: 900px;
  margin: 44px auto 0;
}
.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 34px;
  position: relative;
}
.timeline-list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}

.timeline-year {
  position: relative;
  margin: 0 0 20px;
}
.timeline-year + .timeline-item { margin-top: 0; }
.timeline-item + .timeline-year { margin-top: 42px; }
.timeline-year span {
  display: inline-block;
  font-family: "Raleway", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--charcoal);
  background: var(--yellow);
  padding: 4px 14px;
  border-radius: var(--radius);
}
.timeline-year::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--yellow);
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
}

.offline-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.offline-card figure { margin: 0; padding: 0; }

/* 活动图集：第一张为主图，其余自动排成缩略图（可放多张现场照片） */
.offline-gallery {
  flex: 0 0 46%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-content: flex-start;
}
.gallery-item {
  flex: 1 1 100%;
  height: 250px;
  padding: 0;
  border: 0;
  background: none;
  overflow: hidden;
  cursor: zoom-in;
  display: block;
}
.gallery-item + .gallery-item {
  flex: 0 0 calc(25% - 3.75px);
  height: 62px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.04); }
.gallery-item:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }
.gallery-item img.focus-lower { object-position: center 70%; }

.offline-body { padding: 24px 26px 28px; flex: 1 1 auto; }
.offline-date {
  margin: 0 0 6px;
  font-family: "Raleway", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue);
}
.offline-card h3 { margin-bottom: 8px; }
.offline-body p:last-child { margin-bottom: 0; }

/* 照片灯箱（点击活动照片全屏查看，可左右切换同一场活动的多张照片） */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 68px;
}
.lightbox[hidden] { display: none; }
.lightbox-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 100%;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox figcaption {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  max-width: 640px;
}
.lightbox button {
  position: absolute;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  padding: 8px 14px;
  font-family: "Raleway", sans-serif;
}
.lightbox button:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.lightbox-close { top: 12px; right: 16px; font-size: 36px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); font-size: 46px; }
.lightbox-nav.prev { left: 8px; }
.lightbox-nav.next { right: 8px; }
.lightbox-nav[hidden] { display: none; }
body.lightbox-open { overflow: hidden; }

.testimonial-photo {
  margin: 38px auto 0;
  max-width: 560px;
  padding: 0;
}
.testimonial-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* Team photos (rectangular) & bios */
.team-photo {
  width: min(240px, 100%);
  height: 300px;
  margin: 0 auto 22px;
  border-radius: var(--radius);
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;   /* photo file is pre-cropped with the face centered */
}
.team-photo.placeholder-photo {
  display: grid;
  place-items: center;
  font-size: 64px;
  font-weight: 800;
  color: var(--white);
  font-family: "Raleway", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: linear-gradient(135deg, #ffda6b, #f9c22e);
}
.team-card .bio {
  text-align: left;
  font-size: var(--body-size);
  line-height: 1.8;
  margin-top: 12px;
}

/* Check-payment details in the Donate section */
.donate-details {
  list-style: none;
  margin: 4px 0 18px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius);
}
.donate-details li {
  font-size: var(--body-size);
  color: var(--ink);
  padding: 5px 0;
  display: flex;
  flex-wrap: nowrap;      /* 内容过长时在自身列内换行，保持左侧对齐 */
  align-items: baseline;
  gap: 0 10px;
}
.donate-details li span {
  flex: 0 0 auto;
  min-width: 140px;
  color: var(--ink);
  font-weight: 700;
  font-size: var(--body-size);
}

.donate-tax {
  font-size: var(--body-size);
  color: var(--ink);
  margin: 0 0 18px;
}

/* Donate QR (replaces the dashed placeholder box when an image is present) */
.donate-box.has-image {
  border: 0;
  background: transparent;
  min-height: 0;
  margin: 0;
  padding: 0;
}
.donate-box.has-image img {
  width: min(320px, 100%);
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

/* 手机端二维码插槽：桌面端为空，不占空间 */
.donate-qr-slot { margin: 0; }
.donate-qr-slot:not(:empty) { margin: 12px 0 26px; }

.site-footer {
  background: #222222;
  color: rgba(255,255,255,.75);
  padding: 26px 0;
  font-size: 14px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer p { margin: 0; color: rgba(255,255,255,.72); }
.site-footer a { color: var(--white); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    border: 0;
    background: transparent;
    color: var(--charcoal);
    font-size: 26px;
    cursor: pointer;
  }
  .nav-links {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    padding: 10px 20px 18px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; }
  .nav-links a.lang-switch { margin-top: 8px; }

  .hero { padding: 70px 20px 80px; }
  .hero-lockup { width: min(140px, 45%); }
  .hero-title { font-size: 46px; letter-spacing: 5px; margin-top: 38px; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 26px; }
  .card-grid.three, .card-grid.two, .team-grid, .testimonial-grid, .split-grid {
    grid-template-columns: 1fr;
  }

  /* 见证卡：手机端取消卡内分栏，头像与姓名回到正文下方一行 */
  .testimonial-grid blockquote:has(.testimonial-person) {
    display: block;
    padding: 26px 22px;
  }
  .testimonial-grid blockquote:has(.testimonial-person) .testimonial-person {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    margin-top: 20px;
  }
  .testimonial-grid blockquote:has(.testimonial-person) .testimonial-person img {
    width: 64px;
    height: 64px;
  }

  /* 时间轴：手机端卡片改为上图下文 */
  .offline-card { flex-direction: column; }
  .offline-gallery { flex: 1 1 auto; width: 100%; }
  .gallery-item { height: 220px; }
  .gallery-item + .gallery-item { height: 70px; }
  .lightbox { padding: 60px 16px; }
  .lightbox-nav { font-size: 36px; }
  .tea-credentials { grid-template-columns: minmax(0, max-content); }
  .split-grid { gap: 36px; }
  .checklist { grid-template-columns: 1fr; }
  .event-card { flex-direction: column; align-items: flex-start; gap: 26px; }

  /* 手机端：二维码由脚本移入 .donate-qr-slot，显示在 Zelle 文字下方并居中 */
  .donate-qr-slot .donate-box.has-image {
    display: grid;
    justify-content: center;
  }
  .donate-qr-slot .donate-box.has-image img { width: min(240px, 100%); }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand { font-size: 14px; letter-spacing: .6px; }
  .section { padding: 68px 0; }
  .features { padding: 64px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 16px 64px; }
  .hero-lockup { width: min(120px, 42%); }
  .hero-title { font-size: 36px; letter-spacing: 3px; margin-top: 32px; }
  h2 { font-size: 27px; }

  /* 时间轴：窄屏收窄左侧留白 */
  .timeline-list { padding-left: 26px; }
  .timeline-list::before { left: 5px; }
  .timeline-year::before { left: -26px; width: 14px; height: 14px; }
  .timeline-item::before { left: -25px; top: 22px; width: 12px; height: 12px; border-width: 3px; }

  /* 手机端支票信息：标签与内容分行显示，避免长地址被挤成断裂的两行 */
  .donate-details { padding: 14px 16px; }
  .donate-details li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
  }
  .donate-details li + li { border-top: 1px solid var(--line); }
  .donate-details li span {
    min-width: 0;
    margin-bottom: 2px;
    line-height: 1.5;
  }
}
