@charset "UTF-8";

:root {
  --paper: #f4f0e7;
  --paper-deep: #eae2d4;
  --ink: #15271f;
  --green: #174f3b;
  --green-soft: #77957d;
  --green-pale: #cbd7c6;
  --red: #d95d45;
  --red-deep: #b94736;
  --gold: #d8a651;
  --cream: #fffaf0;
  --line: rgba(21, 39, 31, 0.16);
  --shell: min(1180px, calc(100vw - 48px));
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", serif;
  --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

.top-anchor { position: absolute; top: 0; left: 0; width: 1px; height: 1px; }

button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  background: var(--cream);
  color: var(--green);
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--red); }

.section-shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(244, 240, 231, .9);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: var(--shell);
  height: 92px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  transition: height .3s ease;
}
.is-scrolled .header-inner { height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.brand-mark { width: 40px; height: 40px; flex: 0 0 auto; }
.brand-mark path { fill: var(--green); }
.brand-mark circle { fill: var(--red); }
.brand span { display: grid; gap: 2px; }
.brand strong { font-family: var(--serif); font-size: 20px; letter-spacing: .14em; white-space: nowrap; }
.brand small { font-size: 8px; font-weight: 700; letter-spacing: .18em; color: var(--green-soft); }

.desktop-nav { display: flex; align-items: center; gap: 44px; }
.desktop-nav a { position: relative; font-size: 14px; font-weight: 600; letter-spacing: .05em; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 14px; }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .25s ease; }
.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero {
  min-height: 780px;
  padding-top: 145px;
  padding-bottom: 78px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0; color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 1px; background: var(--red); }
.hero h1, .section-heading h2, .community-copy h2, .about-title h2, .closing h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -.045em;
}
.hero h1 { margin: 25px 0 26px; font-size: clamp(52px, 5.2vw, 78px); line-height: 1.16; }
.hero h1 span { position: relative; display: inline-block; color: var(--red); }
.hero h1 span::after { content: ""; position: absolute; right: -12px; bottom: 4px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.hero-intro { max-width: 520px; margin: 0; color: #56655e; font-size: 17px; line-height: 1.9; }
.hero-actions { display: flex; align-items: center; gap: 31px; margin-top: 35px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 52px; padding: 0 24px; border-radius: 3px; font-size: 14px; font-weight: 700; letter-spacing: .04em; cursor: pointer; transition: transform .2s ease, color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--cream); background: var(--green); }
.button-primary:hover { background: #0e3f2e; }
.text-link { font-family: var(--serif); font-size: 15px; border-bottom: 1px solid var(--ink); padding-block: 5px; }
.text-link span { color: var(--red); }
.hero-principles { display: flex; gap: 0; margin: 54px 0 0; }
.hero-principles > div { min-width: 112px; padding-inline: 21px; border-left: 1px solid var(--line); }
.hero-principles > div:first-child { padding-left: 0; border-left: 0; }
.hero-principles dt { font-family: var(--serif); font-size: 22px; color: var(--green); }
.hero-principles dd { margin: 5px 0 0; color: #758078; font-size: 11px; letter-spacing: .04em; }

.hero-art { position: relative; justify-self: end; width: min(100%, 570px); padding: 0 34px 40px 0; }
.hero-scene { display: block; width: 100%; box-shadow: 0 30px 70px rgba(21, 39, 31, .16); }
.hero-stamp { position: absolute; z-index: 2; top: 28px; right: 3px; width: 53px; height: 74px; display: grid; place-items: center; color: var(--cream); background: var(--red); border: 1px solid rgba(255,255,255,.5); outline: 4px solid var(--red); font-family: var(--serif); font-size: 17px; line-height: 1.15; }
.hero-note { position: absolute; right: 0; bottom: 0; width: 274px; padding: 24px 25px; background: var(--cream); box-shadow: 0 18px 45px rgba(21, 39, 31, .15); }
.hero-note span { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.hero-note strong { display: block; margin-top: 8px; font-family: var(--serif); font-size: 20px; letter-spacing: .03em; }
.hero-note small { display: block; margin-top: 8px; color: #7c827e; font-size: 11px; }
.hero-year { position: absolute; left: -49px; bottom: 120px; color: var(--green-soft); font-family: var(--serif); font-size: 11px; letter-spacing: .45em; writing-mode: vertical-rl; }
.lotus { transform-box: fill-box; transform-origin: center; animation: lotus-float 5s ease-in-out infinite; }
.lotus-two { animation-delay: -2s; }
@keyframes lotus-float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -8px; } }

.culture-ribbon { overflow: hidden; padding: 17px 0; color: var(--cream); background: var(--red); transform: rotate(-1deg) scale(1.02); }
.culture-ribbon div { width: max-content; display: flex; align-items: center; gap: 27px; animation: ribbon 32s linear infinite; }
.culture-ribbon span { font-family: var(--serif); font-size: 14px; letter-spacing: .14em; white-space: nowrap; }
.culture-ribbon i { color: #f2c577; font-style: normal; }
@keyframes ribbon { to { transform: translateX(-50%); } }

.stories { padding-top: 145px; padding-bottom: 155px; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(270px, 420px); align-items: end; gap: 80px; }
.section-heading h2 { margin: 14px 0 0; font-size: clamp(44px, 5vw, 68px); }
.section-heading > p { margin: 0 0 8px; color: #6e7872; font-size: 15px; line-height: 1.8; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 7px; margin: 54px 0 34px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.filter-bar button { padding: 9px 17px; border: 1px solid transparent; border-radius: 999px; background: transparent; cursor: pointer; color: #6c7770; font-size: 12px; }
.filter-bar button:hover, .filter-bar button.is-active { color: var(--cream); background: var(--green); }

.story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 28px; }
.story-card { min-width: 0; border: 1px solid var(--line); background: rgba(255, 250, 240, .42); transition: transform .35s ease, box-shadow .35s ease, opacity .3s ease; }
.story-card[hidden] { display: none; }
.story-card:hover { transform: translateY(-7px); box-shadow: 0 24px 55px rgba(21, 39, 31, .1); }
.story-visual { position: relative; height: 280px; overflow: hidden; }
.story-featured .story-visual { height: 340px; }
.visual-date { position: absolute; z-index: 3; top: 20px; left: 20px; padding: 7px 9px; color: var(--cream); background: rgba(21,39,31,.72); font-size: 10px; letter-spacing: .13em; }
.story-content { position: relative; min-height: 220px; padding: 29px 31px 31px; }
.story-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--red); font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.story-meta time { color: #858c87; white-space: nowrap; }
.story-content h3 { max-width: 88%; margin: 20px 0 13px; font-family: var(--serif); font-size: clamp(21px, 2.2vw, 29px); font-weight: 600; line-height: 1.42; }
.story-content p { margin: 0; color: #707973; font-size: 13px; line-height: 1.8; }
.story-arrow { position: absolute; right: 28px; bottom: 26px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--green); }

.visual-festival { background: radial-gradient(circle at 70% 20%, #efab63 0 6%, transparent 7%), linear-gradient(135deg, #7e1f22, #d8583d 53%, #6d1720); }
.visual-festival::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: radial-gradient(circle, #f5d7a3 0 1.5px, transparent 2px); background-size: 24px 24px; }
.visual-festival strong { position: absolute; z-index: 2; top: 50%; left: 50%; width: 72px; height: 168px; display: grid; place-items: center; transform: translate(-50%, -48%); color: var(--cream); background: #c73c33; border: 2px solid #eebf82; border-radius: 36px; font-family: var(--serif); font-size: 27px; line-height: 1.15; box-shadow: 0 0 0 8px rgba(120, 20, 20, .25); }
.lantern { position: absolute; width: 62px; height: 76px; border-radius: 50%; background: #e16945; border: 3px solid #eab46a; }
.lantern::before, .lantern::after { content: ""; position: absolute; left: 50%; width: 35px; height: 5px; transform: translateX(-50%); background: #eab46a; }
.lantern::before { top: -6px; } .lantern::after { bottom: -6px; }
.lantern-one { top: 74px; left: 47px; transform: rotate(-9deg); }
.lantern-two { right: 47px; bottom: 56px; transform: rotate(7deg) scale(.8); }
.paper-flower { position: absolute; width: 104px; height: 104px; border: 15px solid rgba(244,207,148,.7); border-radius: 50% 5% 50% 5%; transform: rotate(45deg); }
.flower-one { left: 120px; bottom: 23px; }.flower-two { top: 26px; right: 105px; transform: rotate(65deg) scale(.68); }

.visual-growth { background: linear-gradient(155deg, #f5d899, #c87948); }
.visual-growth svg, .visual-nature svg, .visual-tea svg { position: absolute; inset: auto 0 0; width: 100%; height: auto; }
.sun-disc { position: absolute; top: 36px; right: 48px; width: 86px; height: 86px; border-radius: 50%; background: rgba(255,247,220,.72); }
.visual-growth::after { content: "育莲\A 成长"; white-space: pre; position: absolute; top: 40px; left: 40px; color: var(--green); font-family: var(--serif); font-size: 35px; line-height: 1.2; }
.visual-nature { background: linear-gradient(#dce7cf, #b5cda8); }
.nature-word { position: absolute; top: 42px; left: 50%; transform: translateX(-50%); color: var(--green); font-family: var(--serif); font-size: 45px; letter-spacing: .18em; }
.visual-tea { background: linear-gradient(145deg, #d9e7c0, #85a969); }
.visual-tea::after { content: "茶乡行"; position: absolute; top: 38px; left: 36px; color: var(--green); font-family: var(--serif); font-size: 34px; letter-spacing: .16em; }

.programs { padding: 140px 0; color: var(--cream); background: var(--green); }
.section-heading.light .eyebrow, .section-heading.light > p { color: #b9c9bc; }
.section-heading.light h2 { color: var(--cream); }
.program-list { margin-top: 68px; border-top: 1px solid rgba(255,255,255,.18); }
.program-row { min-height: 165px; display: grid; grid-template-columns: 52px 112px 1fr auto; align-items: center; gap: 27px; border-bottom: 1px solid rgba(255,255,255,.18); transition: background .3s ease, padding .3s ease; }
.program-row:hover { padding-inline: 20px; background: rgba(255,255,255,.05); }
.program-index { color: #8dac99; font-family: var(--serif); font-size: 12px; }
.program-icon { position: relative; width: 76px; height: 76px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; }
.program-icon::before, .program-icon::after, .program-icon i { content: ""; position: absolute; }
.icon-season::before { width: 22px; height: 37px; left: 26px; top: 16px; border: 1px solid #e6c584; border-radius: 50% 0; transform: rotate(-38deg); }
.icon-season::after { width: 22px; height: 37px; left: 28px; top: 22px; border: 1px solid #e6c584; border-radius: 0 50%; transform: rotate(38deg); }
.icon-growth::before { left: 37px; top: 20px; width: 1px; height: 39px; background: #e6c584; }
.icon-growth::after { left: 20px; top: 26px; width: 28px; height: 20px; border: 1px solid #e6c584; border-width: 1px 1px 0 0; border-radius: 0 100%; transform: rotate(-20deg); }
.icon-care::before { left: 21px; top: 25px; width: 34px; height: 27px; border: 1px solid #e6c584; border-radius: 50% 50% 55% 55%; transform: rotate(-8deg); }
.icon-care::after { left: 31px; top: 27px; width: 15px; height: 15px; border: 1px solid #e6c584; border-width: 0 1px 1px 0; transform: rotate(45deg); }
.icon-nature::before { left: 21px; bottom: 17px; width: 37px; height: 33px; border: 1px solid #e6c584; border-radius: 50% 50% 0 0; clip-path: polygon(0 100%, 50% 0, 100% 100%); }
.icon-nature::after { right: 17px; top: 15px; width: 13px; height: 13px; border: 1px solid #e6c584; border-radius: 50%; }
.program-row h3 { margin: 0 0 9px; font-family: var(--serif); font-size: 28px; font-weight: 500; }
.program-row p { margin: 0; color: #b7c7ba; font-size: 13px; line-height: 1.7; }
.program-tag { color: #74927f; font-size: 9px; font-weight: 800; letter-spacing: .18em; }

.philosophy { padding-block: 150px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 10vw; }
.philosophy-quote svg { width: 40px; fill: var(--red); }
.philosophy blockquote { margin: 26px 0 0; font-family: var(--serif); font-size: clamp(38px, 4.3vw, 62px); line-height: 1.5; letter-spacing: -.03em; }
.philosophy-copy { padding-bottom: 8px; }
.philosophy-copy p { color: #69746d; font-size: 15px; line-height: 1.9; }
.philosophy-copy span { display: block; margin-top: 34px; color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .2em; }

.community { min-height: 740px; display: grid; grid-template-columns: 1.08fr .92fr; background: #dce3d2; }
.community-art { position: relative; overflow: hidden; background: linear-gradient(150deg, #9bb397, #6f9279); }
.community-art::before { content: ""; position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(45deg, #fff 25%, transparent 25%), linear-gradient(-45deg, #fff 25%, transparent 25%); background-size: 46px 46px; }
.big-lotus { position: absolute; left: 50%; top: 50%; width: 360px; height: 360px; transform: translate(-50%, -45%); }
.big-lotus i { position: absolute; left: 50%; bottom: 50%; width: 125px; height: 230px; transform-origin: 50% 100%; border: 2px solid rgba(255,250,240,.64); border-radius: 70% 0 70% 0; }
.big-lotus i:nth-child(1) { transform: translateX(-50%) rotate(-68deg); }
.big-lotus i:nth-child(2) { transform: translateX(-50%) rotate(-34deg); }
.big-lotus i:nth-child(3) { transform: translateX(-50%) rotate(0); }
.big-lotus i:nth-child(4) { transform: translateX(-50%) rotate(34deg); }
.big-lotus i:nth-child(5) { transform: translateX(-50%) rotate(68deg); }
.water-line { position: absolute; left: 50%; width: 75%; height: 80px; border: 1px solid rgba(255,250,240,.35); border-width: 1px 0 0; border-radius: 50%; transform: translateX(-50%); }
.line-one { bottom: 90px; }.line-two { bottom: 44px; width: 55%; }.line-three { bottom: 4px; width: 90%; }
.community-copy { padding: 110px clamp(50px, 7vw, 120px); align-self: center; }
.community-copy h2 { margin: 20px 0 29px; font-size: clamp(47px, 5.2vw, 72px); line-height: 1.25; }
.community-copy > p:not(.eyebrow) { max-width: 470px; margin: 0; color: #617068; line-height: 1.85; }
.community-copy ul { margin: 48px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(21,39,31,.18); }
.community-copy li { display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 16px; padding: 21px 0; border-bottom: 1px solid rgba(21,39,31,.18); }
.community-copy li > span { color: var(--red); font-family: var(--serif); font-size: 11px; }
.community-copy li div { display: grid; gap: 4px; }
.community-copy li strong { font-family: var(--serif); font-size: 18px; font-weight: 600; }
.community-copy li small { color: #758078; font-size: 11px; }

.about { padding-block: 150px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 12vw; }
.about-title h2 { margin: 18px 0 0; font-size: clamp(42px, 5vw, 66px); line-height: 1.28; }
.about-body { border-top: 1px solid var(--line); padding-top: 30px; }
.about-lead { margin: 0 0 38px; font-family: var(--serif); font-size: clamp(25px, 2.5vw, 34px); line-height: 1.55; }
.about-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; }
.about-columns p { margin: 0; color: #6a756f; font-size: 14px; line-height: 1.95; }
.button-outline { margin-top: 42px; border: 1px solid var(--green); background: transparent; }
.button-outline:hover { color: var(--cream); background: var(--green); }

.disclosure { padding-block: 145px; background: var(--paper-deep); }
.disclosure-heading { align-items: start; }
.disclosure-card { margin-top: 58px; display: grid; grid-template-columns: .9fr 1.1fr; border: 1px solid rgba(21,39,31,.15); background: rgba(255,250,240,.56); }
.disclosure-identity { min-height: 390px; padding: 52px; display: flex; flex-direction: column; justify-content: space-between; color: var(--cream); background: var(--green); }
.disclosure-identity > span { color: #adc2b3; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.disclosure-identity h3 { margin: 44px 0 auto; font-family: var(--serif); font-size: clamp(29px, 3vw, 41px); font-weight: 500; line-height: 1.5; letter-spacing: -.02em; }
.disclosure-identity p { margin: 28px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); color: #b8cabb; font-size: 12px; letter-spacing: .08em; }
.disclosure-grid { margin: 0; display: grid; grid-template-columns: 1fr 1fr; }
.disclosure-grid > div { min-height: 150px; padding: 34px 36px; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.disclosure-grid > div:nth-last-child(-n + 1) { border-bottom: 0; }
.disclosure-grid dt { margin-bottom: 18px; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.disclosure-grid dd { margin: 0; font-family: var(--serif); font-size: 20px; line-height: 1.55; }
.disclosure-grid .disclosure-wide { grid-column: 1 / -1; }
.scope-list { display: flex; flex-wrap: wrap; gap: 9px; }
.scope-list span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; font-family: var(--sans); font-size: 12px; }
.governance { margin-top: 25px; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); border: 1px solid var(--line); background: rgba(255,250,240,.38); }
.governance > div { min-height: 120px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; border-left: 1px solid var(--line); }
.governance > div:first-child { border-left: 0; }
.governance span { color: #7d857f; font-size: 10px; letter-spacing: .1em; }
.governance strong { font-family: var(--serif); font-size: 23px; font-weight: 600; }
.governance-title span { color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .17em; }
.governance-title strong { font-size: 19px; }
.disclosure-source { margin: 20px 0 0; color: #899089; font-size: 10px; text-align: right; }

.closing { position: relative; min-height: 520px; display: grid; place-items: center; overflow: hidden; color: var(--cream); background: var(--red-deep); text-align: center; }
.closing-inner { position: relative; z-index: 2; width: min(800px, calc(100vw - 40px)); }
.closing-inner > p { margin: 0; color: #edbba8; font-family: var(--serif); font-size: 15px; letter-spacing: .17em; }
.closing h2 { margin: 24px 0 39px; font-size: clamp(40px, 5.5vw, 70px); line-height: 1.35; }
.button-cream { border: 0; background: var(--cream); color: var(--red-deep); }
.closing-lotus { position: absolute; left: 50%; bottom: -80px; width: min(620px, 80vw); transform: translateX(-50%); }

.site-footer { color: #c0cbc3; background: #0e3025; }
.footer-top { min-height: 320px; display: grid; grid-template-columns: 1fr 1fr; align-items: start; padding-top: 76px; }
.brand-footer strong { color: var(--cream); }.brand-footer small { color: #8da598; }.brand-footer .brand-mark path { fill: #d7dfd4; }
.footer-nav { justify-self: end; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.footer-nav > div { display: grid; align-content: start; gap: 13px; min-width: 120px; }
.footer-nav strong { margin-bottom: 8px; color: var(--cream); font-family: var(--serif); font-size: 15px; }
.footer-nav a, .footer-nav button, .footer-nav span { color: #91a397; font-size: 12px; }
.footer-nav button { width: fit-content; padding: 0; border: 0; background: transparent; cursor: pointer; }
.footer-nav a:hover, .footer-nav button:hover { color: var(--cream); }
.footer-bottom { min-height: 76px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); color: #71877a; font-size: 10px; letter-spacing: .06em; }
.footer-legal { display: flex; align-items: center; gap: 22px; }
.filing-number { white-space: nowrap; }
.footer-bottom a:hover { color: var(--cream); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 820px); }
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; inset: 0; z-index: -1; display: grid; align-items: center; padding: 100px max(22px, calc((100vw - 820px) / 2)); background: var(--paper); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
  .menu-open .mobile-menu { opacity: 1; visibility: visible; }
  .mobile-menu nav { display: grid; }
  .mobile-menu a, .mobile-menu button { display: grid; grid-template-columns: 50px 1fr; align-items: center; padding: 22px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; font-family: var(--serif); font-size: 29px; text-align: left; cursor: pointer; }
  .mobile-menu span { color: var(--red); font-family: var(--sans); font-size: 10px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 150px; gap: 80px; }
  .hero-copy { max-width: 700px; }
  .hero-art { justify-self: center; width: min(100%, 610px); }
  .story-featured .story-visual, .story-visual { height: 270px; }
  .program-row { grid-template-columns: 40px 90px 1fr; }
  .program-tag { display: none; }
  .philosophy { gap: 6vw; }
  .community { grid-template-columns: 1fr; }
  .community-art { min-height: 600px; }
  .community-copy { padding-inline: max(18px, calc((100vw - 820px) / 2)); }
  .about { gap: 6vw; }
  .disclosure-card { grid-template-columns: 1fr; }
  .disclosure-identity { min-height: 330px; }
  .disclosure-grid > div { border-left: 0; }
  .governance { grid-template-columns: repeat(2, 1fr); }
  .governance > div:nth-child(3) { border-left: 0; }
  .governance > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 720px) {
  :root { --shell: calc(100vw - 32px); }
  .header-inner { height: 74px; }
  .is-scrolled .header-inner { height: 64px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand strong { font-size: 18px; }
  .hero { padding-top: 120px; padding-bottom: 68px; gap: 62px; }
  .hero h1 { font-size: clamp(44px, 13.4vw, 62px); }
  .hero-intro { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-principles { width: 100%; justify-content: space-between; }
  .hero-principles > div { min-width: auto; padding-inline: 14px; }
  .hero-principles dt { font-size: 19px; }
  .hero-principles dd { font-size: 9px; }
  .hero-art { padding: 0 17px 54px 0; }
  .hero-stamp { top: 18px; right: 0; width: 42px; height: 62px; font-size: 14px; outline-width: 3px; }
  .hero-note { width: min(248px, 76%); padding: 19px; }
  .hero-note strong { font-size: 17px; }
  .hero-year { display: none; }
  .culture-ribbon { padding: 14px 0; }
  .culture-ribbon { transform: none; }
  .stories { padding-top: 105px; padding-bottom: 110px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading h2 { font-size: 48px; }
  .section-heading > p { font-size: 13px; }
  .filter-bar { flex-wrap: nowrap; overflow-x: auto; margin-top: 38px; scrollbar-width: none; }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-bar button { flex: 0 0 auto; }
  .story-grid { grid-template-columns: 1fr; gap: 24px; }
  .story-featured .story-visual, .story-visual { height: 250px; }
  .story-content { min-height: 200px; padding: 25px 24px; }
  .story-content h3 { font-size: 24px; }
  .programs { padding: 104px 0; }
  .program-list { margin-top: 48px; }
  .program-row { min-height: 168px; grid-template-columns: 32px 68px 1fr; gap: 14px; }
  .program-row:hover { padding-inline: 0; }
  .program-icon { width: 58px; height: 58px; transform: scale(.78); transform-origin: left center; }
  .program-row h3 { font-size: 21px; }
  .program-row p { font-size: 11px; }
  .philosophy { padding-block: 110px; grid-template-columns: 1fr; gap: 70px; }
  .philosophy blockquote { font-size: 37px; }
  .community-art { min-height: 470px; }
  .big-lotus { width: 270px; height: 270px; }
  .big-lotus i { width: 94px; height: 175px; }
  .community-copy { padding-block: 90px; }
  .community-copy h2 { font-size: 48px; }
  .community-copy li { grid-template-columns: 36px 1fr; }
  .about { padding-block: 105px; grid-template-columns: 1fr; gap: 55px; }
  .about-title h2 { font-size: 48px; }
  .about-columns { grid-template-columns: 1fr; gap: 20px; }
  .disclosure { padding-block: 100px; }
  .disclosure-identity { min-height: 300px; padding: 34px 27px; }
  .disclosure-identity h3 { font-size: 29px; }
  .disclosure-grid { grid-template-columns: 1fr; }
  .disclosure-grid .disclosure-wide { grid-column: auto; }
  .disclosure-grid > div { min-height: auto; padding: 27px; border-bottom: 1px solid var(--line); }
  .disclosure-grid > div:last-child { border-bottom: 0; }
  .governance { grid-template-columns: 1fr; }
  .governance > div, .governance > div:nth-child(3) { min-height: 100px; border-left: 0; border-bottom: 1px solid var(--line); }
  .governance > div:last-child { border-bottom: 0; }
  .disclosure-source { text-align: left; line-height: 1.7; }
  .closing { min-height: 510px; }
  .closing h2 { font-size: 40px; }
  .footer-top { min-height: 400px; grid-template-columns: 1fr; gap: 60px; }
  .footer-nav { justify-self: start; gap: 58px; }
  .footer-bottom { min-height: 105px; flex-wrap: wrap; gap: 10px 20px; padding-block: 25px; }
  .footer-legal { width: 100%; justify-content: space-between; gap: 16px; }
  .footer-bottom > span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
