:root {
  --red: #b51f2e;
  --red-deep: #7c1721;
  --red-soft: #fbe9e9;
  --gold: #c79a45;
  --gold-deep: #9f6f1e;
  --cream: #fff9f0;
  --cream-2: #f8efe2;
  --paper: #fffdf9;
  --ink: #2e211d;
  --muted: #71645d;
  --line: rgba(162, 116, 47, 0.19);
  --teal: #0d9d9a;
  --navy: #0d3159;
  --shadow-sm: 0 10px 30px rgba(74, 38, 27, 0.08);
  --shadow-md: 0 22px 60px rgba(74, 38, 27, 0.13);
  --shadow-lg: 0 34px 90px rgba(74, 38, 27, 0.17);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 38px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 104px 0; }
.svg-sprite { position: absolute; overflow: hidden; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--red-deep);
  color: #fff;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.top-ribbon {
  position: relative;
  z-index: 40;
  background: linear-gradient(90deg, #71141d, #b1202e 52%, #8f1825);
  color: #fff;
  font-size: 13px;
  letter-spacing: .04em;
}
.ribbon-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.ribbon-dot { width: 4px; height: 4px; border-radius: 50%; background: #f5d48e; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(169, 116, 43, .14);
  background: rgba(255, 253, 249, .92);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 74px; height: 62px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong {
  color: #7e2b21;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: .02em;
}
.brand-copy small {
  margin-top: 5px;
  color: #8b6a4b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 23px; }
.main-nav a {
  position: relative;
  color: #4a3c35;
  font-size: 14px;
  font-weight: 720;
  white-space: nowrap;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--red); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.mini-partner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 12px;
  border-right: 1px solid var(--line);
}
.mini-partner img { width: 48px; height: 48px; object-fit: contain; }
.mini-partner span {
  max-width: 72px;
  color: #6f5143;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 750;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.language-switch button {
  min-width: 44px;
  height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #765f54;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.language-switch button.active {
  background: linear-gradient(135deg, var(--red), #df3f4e);
  color: #fff;
  box-shadow: 0 7px 18px rgba(181, 31, 46, .22);
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-button span { width: 19px; height: 2px; border-radius: 2px; background: var(--red-deep); transition: .2s ease; }
.menu-button.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.active span:nth-child(2) { opacity: 0; }
.menu-button.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background:
    radial-gradient(circle at 10% 7%, rgba(221, 59, 73, .08), transparent 33%),
    radial-gradient(circle at 92% 18%, rgba(199, 154, 69, .15), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #fff8ee 72%, #fff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .20;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(174, 125, 61, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174, 125, 61, .13) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 240px; height: 240px; right: -95px; top: 80px; border: 45px solid rgba(181, 31, 46, .06); }
.hero-orb-two { width: 160px; height: 160px; left: -70px; bottom: 190px; background: rgba(199, 154, 69, .08); }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 62px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid rgba(177, 98, 51, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  color: #8b4c2b;
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.eyebrow-heart { color: var(--red); font-size: 16px; }
.hero h1 {
  margin: 22px 0 18px;
  color: #72251f;
  font-family: Georgia, "Songti SC", "STSong", serif;
  font-size: clamp(50px, 5.8vw, 82px);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.hero h1 em {
  display: block;
  margin-top: 13px;
  color: var(--red);
  font-family: "Songti SC", "STSong", Georgia, serif;
  font-size: .65em;
  font-style: normal;
  letter-spacing: .05em;
}
.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #65554e;
  font-size: 18px;
  line-height: 1.85;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 820;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button svg { width: 18px; height: 18px; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #dc3b4a);
  box-shadow: 0 14px 30px rgba(181, 31, 46, .24);
}
.button-primary:hover { box-shadow: 0 18px 38px rgba(181, 31, 46, .31); }
.button-ghost {
  color: #6d3628;
  border-color: rgba(161, 107, 42, .28);
  background: rgba(255, 255, 255, .74);
}
.button-ghost:hover { background: #fff; box-shadow: var(--shadow-sm); }
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}
.hero-highlights div {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 14px;
  border-left: 2px solid rgba(199, 154, 69, .55);
}
.hero-highlights strong {
  color: var(--red-deep);
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.1;
}
.hero-highlights span { margin-top: 5px; color: #79675d; font-size: 12px; line-height: 1.35; }

.hero-media { position: relative; min-height: 525px; }
.hero-photo-frame {
  position: relative;
  overflow: hidden;
  height: 475px;
  border: 9px solid rgba(255, 255, 255, .9);
  border-radius: 42px 42px 42px 120px;
  background: #eee;
  box-shadow: var(--shadow-lg);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(76, 24, 19, .78) 100%);
}
.hero-photo-caption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 27px;
  display: flex;
  flex-direction: column;
  color: #fff;
}
.hero-photo-caption span { font-size: 13px; opacity: .82; }
.hero-photo-caption strong { margin-top: 2px; font-family: Georgia, "Songti SC", serif; font-size: 24px; }
.mascot-card {
  position: absolute;
  left: -52px;
  bottom: -22px;
  width: 285px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 11px;
  border: 1px solid rgba(178, 119, 45, .2);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-md);
}
.mascot-card img { width: 92px; height: 92px; border-radius: 18px; object-fit: cover; }
.mascot-card div { display: grid; }
.mascot-card span { color: var(--gold-deep); font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.mascot-card strong { color: var(--red-deep); font-size: 18px; }
.mascot-card small { margin-top: 2px; color: #77685f; font-size: 11px; line-height: 1.45; }
.floating-heart {
  position: absolute;
  top: -24px;
  right: -16px;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 7px solid #fff;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--red), #ef5260);
  color: #fff;
  font-size: 32px;
  box-shadow: var(--shadow-md);
  transform: rotate(8deg);
}
.mission-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 94px;
  padding: 18px 8px;
  border: 1px solid rgba(171, 116, 46, .17);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-md);
}
.mission-strip article {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 20px;
  border-right: 1px solid var(--line);
}
.mission-strip article:last-child { border-right: 0; }
.mission-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, #fff4e0, #fff);
  color: var(--red);
  box-shadow: inset 0 0 0 1px rgba(181, 31, 46, .08);
}
.mission-icon svg { width: 26px; height: 26px; }
.mission-strip article div:last-child { display: grid; }
.mission-strip strong { color: #6d3026; font-size: 14px; }
.mission-strip span { margin-top: 3px; color: #817167; font-size: 11px; line-height: 1.35; }

.section-heading { max-width: 800px; margin: 0 auto 46px; text-align: center; }
.section-heading.compact { margin-bottom: 36px; }
.section-kicker {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-kicker.light { color: #ffdca0; }
h2 {
  margin: 11px 0 16px;
  color: #75261f;
  font-family: Georgia, "Songti SC", "STSong", serif;
  font-size: clamp(35px, 4.2vw, 54px);
  line-height: 1.18;
  letter-spacing: -.02em;
}
.section-heading p { max-width: 690px; margin: 0 auto; color: var(--muted); font-size: 16px; }

.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 74px; align-items: center; }
.about-visual { position: relative; min-height: 540px; }
.logo-panel {
  width: 82%;
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 15%, rgba(199, 154, 69, .15), transparent 25%),
    linear-gradient(145deg, #fff, #fff9f0);
  box-shadow: var(--shadow-md);
}
.logo-panel img { max-height: 340px; object-fit: contain; }
.about-note {
  position: absolute;
  right: 0;
  bottom: 22px;
  width: 62%;
  padding: 24px;
  border-radius: 25px;
  background: linear-gradient(135deg, #8b1924, #c82f3d);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.about-note svg { width: 34px; height: 34px; color: #ffd999; }
.about-note p { margin: 10px 0 0; font-family: Georgia, "Songti SC", serif; font-size: 18px; line-height: 1.65; }
.about-copy > p { margin: 0 0 16px; color: #62544d; font-size: 16px; line-height: 1.9; }
.value-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.value-chips span {
  min-width: 112px;
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fffaf3;
}
.value-chips i { grid-row: 1 / 3; color: var(--red); font-style: normal; font-size: 20px; }
.value-chips b { color: #5e3329; font-size: 13px; }
.value-chips small { color: #9a7b66; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }

.programs {
  position: relative;
  background:
    radial-gradient(circle at 92% 6%, rgba(13, 157, 154, .07), transparent 25%),
    linear-gradient(180deg, #fff9f0, #fffdf9);
}
.programs::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(179, 124, 53, .14) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
  opacity: .35;
}
.programs .container { position: relative; z-index: 1; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.program-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 27px;
  border: 1px solid rgba(172, 117, 45, .15);
  border-radius: 24px;
  background: rgba(255, 255, 255, .93);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.program-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: currentColor;
  opacity: .035;
}
.program-card:hover { transform: translateY(-7px); border-color: rgba(181, 31, 46, .24); box-shadow: var(--shadow-md); }
.program-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 12px 24px rgba(74, 38, 27, .12);
}
.program-icon svg { width: 31px; height: 31px; }
.program-icon.orange { background: linear-gradient(135deg, #ff9e21, #eb6b00); }
.program-icon.green { background: linear-gradient(135deg, #55b83e, #16852a); }
.program-icon.blue { background: linear-gradient(135deg, #3e89d8, #154c91); }
.program-icon.red { background: linear-gradient(135deg, #e14756, #a80d23); }
.program-icon.purple { background: linear-gradient(135deg, #8e5bbd, #4c2576); }
.program-icon.brown { background: linear-gradient(135deg, #b56b2d, #6e3513); }
.program-icon.forest { background: linear-gradient(135deg, #3ba948, #136c29); }
.program-icon.teal { background: linear-gradient(135deg, #26b9b2, #087e80); }
.program-icon.coral { background: linear-gradient(135deg, #ff6247, #cf2a1e); }
.program-card h3 { margin: 18px 0 10px; color: #612d26; font-size: 19px; }
.program-card p { margin: 0; color: #74665e; font-size: 14px; line-height: 1.72; }
.program-en {
  display: inline-block;
  margin-top: 17px;
  color: #a26c2d;
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
html[lang="en"] .program-en { display: none; }

.initiatives { background: #fff; }
.initiative-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.initiative-card {
  position: relative;
  min-height: 245px;
  padding: 30px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(150deg, #7d1822, #b72735);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.initiative-card:nth-child(2), .initiative-card:nth-child(5) { background: linear-gradient(150deg, #8b681f, #c39335); }
.initiative-card:nth-child(3), .initiative-card:nth-child(6) { background: linear-gradient(150deg, #0b6b70, #119b96); }
.initiative-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -60px;
  border: 28px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}
.initiative-card > svg { width: 42px; height: 42px; color: #ffe1a9; }
.initiative-number {
  position: absolute;
  right: 24px;
  top: 20px;
  color: rgba(255, 255, 255, .28);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}
.initiative-card h3 { margin: 22px 0 9px; font-size: 20px; }
.initiative-card p { margin: 0; color: rgba(255, 255, 255, .82); font-size: 14px; line-height: 1.72; }
.initiative-card > span {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: #fff3d3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.partners {
  background:
    radial-gradient(circle at 0 0, rgba(199, 154, 69, .12), transparent 27%),
    linear-gradient(180deg, #fffaf3, #fff);
}
.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.partner-card {
  min-height: 275px;
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(167, 111, 40, .17);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.partner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.partner-card.featured { background: linear-gradient(145deg, #fff, #fff8ed); }
.partner-logo {
  width: 100%;
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 22px;
  background: #fffaf4;
  box-shadow: inset 0 0 0 1px rgba(172, 117, 45, .1);
}
.partner-logo img { width: 100%; max-height: 140px; object-fit: contain; }
.partner-logo.shield { background: #0c0c0c; }
.partner-logo.wide img { max-height: 120px; }
.partner-content { min-width: 0; }
.partner-type {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.partner-content h3 { margin: 0; color: #6e2c25; font-size: 20px; line-height: 1.4; }
.partner-content small {
  display: block;
  margin-top: 4px;
  color: #8d7a70;
  font-family: Georgia, serif;
  font-size: 11px;
  line-height: 1.4;
}
.partner-content p { margin: 13px 0 17px; color: #70635c; font-size: 13px; line-height: 1.7; }
.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
}
.partner-link svg { width: 15px; height: 15px; }
.partner-link.coming { color: #98774f; cursor: default; }
.partner-link.current { color: #98774f; }

.join-section { padding-top: 40px; background: #fff; }
.join-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 52px;
  border-radius: 35px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 214, 144, .18), transparent 24%),
    linear-gradient(135deg, #791821, #b72735 68%, #971f2b);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.join-panel::after {
  content: "♥";
  position: absolute;
  right: -45px;
  bottom: -100px;
  color: rgba(255,255,255,.055);
  font-size: 270px;
  line-height: 1;
}
.join-copy { position: relative; z-index: 1; }
.join-copy h2 { margin-top: 9px; color: #fff; font-size: clamp(34px, 4vw, 49px); }
.join-copy p { margin: 0; color: rgba(255,255,255,.78); font-size: 15px; }
.join-actions { position: relative; z-index: 1; display: grid; gap: 11px; }
.join-action {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 15px;
  align-items: center;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 17px;
  background: rgba(255,255,255,.10);
  transition: .2s ease;
}
.join-action:hover { transform: translateX(5px); background: rgba(255,255,255,.16); }
.join-action > svg { width: 36px; height: 36px; color: #ffd993; }
.join-action span { display: grid; }
.join-action strong { color: #fff; font-size: 15px; }
.join-action small { margin-top: 2px; color: rgba(255,255,255,.72); font-size: 11px; }

.contact { background: linear-gradient(180deg, #fff, #fff8ef); }
.contact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 58px; align-items: start; }
.contact-info > p { max-width: 520px; color: #6d5e56; font-size: 15px; line-height: 1.85; }
.contact-list { display: grid; gap: 11px; margin-top: 28px; }
.contact-list > a, .contact-list > div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  transition: .2s ease;
}
.contact-list > a:hover { transform: translateX(4px); border-color: rgba(181,31,46,.28); box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--red-soft);
  color: var(--red);
}
.contact-icon.wechat { background: #e8f8ef; color: #12a653; }
.contact-icon svg { width: 24px; height: 24px; }
.contact-list span:last-child { min-width: 0; display: grid; }
.contact-list small { color: #8d7669; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-list strong { overflow-wrap: anywhere; color: #5d3028; font-size: 14px; }
.contact-form {
  padding: 34px;
  border: 1px solid rgba(168, 113, 42, .17);
  border-radius: 29px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.form-heading span { color: var(--gold-deep); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.form-heading h3 { margin: 7px 0 24px; color: #6b2d25; font-family: Georgia, "Songti SC", serif; font-size: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 14px; color: #69483c; font-size: 12px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid #eadbc8;
  border-radius: 13px;
  outline: none;
  background: #fffcf8;
  color: #3e302b;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form input, .contact-form select { height: 48px; padding: 0 13px; }
.contact-form textarea { resize: vertical; min-height: 118px; padding: 12px 13px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: rgba(181,31,46,.5);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(181,31,46,.08);
}
.form-submit { width: 100%; border: 0; }
.form-note { margin: 10px 0 0; color: #9a8477; font-size: 10px; text-align: center; }

.site-footer {
  padding: 52px 0 20px;
  background: #251916;
  color: rgba(255,255,255,.76);
}
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 48px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { width: 82px; height: 70px; object-fit: contain; filter: drop-shadow(0 6px 12px rgba(0,0,0,.18)); }
.footer-brand div { display: grid; }
.footer-brand strong { color: #fff; font-family: Georgia, serif; font-size: 17px; }
.footer-brand span { margin-top: 5px; color: #d8b87e; font-size: 12px; }
.footer-links, .footer-partners { display: grid; gap: 8px; }
.footer-links a, .footer-partners a { color: rgba(255,255,255,.68); font-size: 12px; transition: color .2s ease; }
.footer-links a:hover, .footer-partners a:hover { color: #ffd78c; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.45);
  font-size: 10px;
  letter-spacing: .06em;
}

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

:focus-visible { outline: 3px solid rgba(181,31,46,.35); outline-offset: 3px; }

@media (max-width: 1120px) {
  .main-nav { gap: 15px; }
  .main-nav a { font-size: 13px; }
  .mini-partner span { display: none; }
  .mini-partner { padding-right: 8px; }
  .hero-grid { grid-template-columns: 1fr 440px; gap: 40px; }
  .partner-card { grid-template-columns: 140px 1fr; padding: 23px; }
}

@media (max-width: 960px) {
  .section-pad { padding: 82px 0; }
  .menu-button { display: flex; }
  .mini-partner { display: none; }
  .main-nav {
    position: fixed;
    inset: 120px 20px auto;
    z-index: 50;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 22px;
    background: rgba(255,253,249,.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-12px);
    transition: .25s ease;
  }
  .main-nav.open { max-height: 520px; padding: 18px 20px; border-color: var(--line); opacity: 1; transform: translateY(0); }
  .main-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { max-width: 760px; }
  .hero-media { width: min(680px, 100%); margin-inline: auto; }
  .mission-strip { grid-template-columns: repeat(2, 1fr); }
  .mission-strip article:nth-child(2) { border-right: 0; }
  .mission-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-grid { grid-template-columns: 1fr; gap: 55px; }
  .about-visual { width: min(680px, 100%); margin-inline: auto; }
  .program-grid, .initiative-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: 1fr; }
  .join-panel, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-partners { grid-column: 1 / -1; grid-template-columns: repeat(2, max-content); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .top-ribbon { font-size: 10px; }
  .ribbon-inner { min-height: 30px; gap: 8px; }
  .ribbon-inner span:last-child, .ribbon-dot { display: none; }
  .nav-shell { min-height: 74px; }
  .brand img { width: 58px; height: 50px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { font-size: 8px; }
  .language-switch button { min-width: 38px; padding: 0 8px; }
  .main-nav { inset: 104px 14px auto; }
  .hero { padding-top: 50px; }
  .hero h1 { font-size: 46px; }
  .hero h1 em { font-size: .62em; }
  .hero-lead { font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { min-height: 48px; padding: 0 15px; }
  .hero-highlights { grid-template-columns: 1fr; gap: 0; }
  .hero-highlights div { min-height: 57px; display: grid; grid-template-columns: 84px 1fr; align-items: center; border-left: 0; border-bottom: 1px solid var(--line); }
  .hero-highlights div:last-child { border-bottom: 0; }
  .hero-highlights span { margin-top: 0; }
  .hero-media { min-height: 460px; }
  .hero-photo-frame { height: 405px; border-radius: 30px 30px 30px 72px; }
  .mascot-card { left: 12px; bottom: -30px; width: calc(100% - 24px); grid-template-columns: 76px 1fr; }
  .mascot-card img { width: 76px; height: 76px; }
  .floating-heart { width: 55px; height: 55px; right: 3px; font-size: 25px; border-width: 5px; }
  .mission-strip { grid-template-columns: 1fr; margin-top: 76px; padding: 8px; }
  .mission-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .mission-strip article:last-child { border-bottom: 0; }
  .section-pad { padding: 70px 0; }
  h2 { font-size: 36px; }
  .about-visual { min-height: 490px; }
  .logo-panel { width: 92%; min-height: 390px; padding: 28px; }
  .about-note { width: 77%; bottom: 0; padding: 20px; }
  .about-note p { font-size: 16px; }
  .program-grid, .initiative-grid { grid-template-columns: 1fr; }
  .program-card { min-height: 225px; }
  .partner-card { grid-template-columns: 105px 1fr; gap: 16px; min-height: 0; padding: 18px; border-radius: 22px; }
  .partner-logo { min-height: 108px; padding: 7px; border-radius: 17px; }
  .partner-logo img { max-height: 100px; }
  .partner-content h3 { font-size: 17px; }
  .partner-content p { font-size: 12px; }
  .join-panel { padding: 34px 24px; border-radius: 27px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-partners { grid-column: auto; grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 420px) {
  .brand-copy { display: none; }
  .hero h1 { font-size: 40px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-photo-caption strong { font-size: 20px; }
  .partner-card { grid-template-columns: 1fr; }
  .partner-logo { min-height: 130px; }
  .partner-logo img { max-height: 120px; }
}

@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; }
}
