:root {
  --bg: #fffaf6;
  --paper: #fffdf9;
  --paper-soft: #fff7ef;
  --ink: #482317;
  --ink-soft: #76584b;
  --muted: #927b6e;
  --line: #ead9cb;
  --warm: #c75b33;
  --warm-dark: #9e3f20;
  --warm-light: #e7a178;
  --blue: #3d8bcf;
  --blue-soft: #dcecf8;
  --green: #2f7d57;
  --shadow: 0 14px 34px rgba(113, 70, 44, 0.12);
  --soft-shadow: 0 8px 24px rgba(113, 70, 44, 0.08);
  --container: 1280px;
}

@property --sweep-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 243, 234, 0.8), rgba(255, 255, 255, 0.95) 28%, #fffaf6),
    var(--bg);
  font-family:
    "Noto Serif SC", "Songti SC", "Microsoft YaHei", "PingFang SC", Arial,
    sans-serif;
}

body.is-ready .site-header {
  animation: navDrop 700ms 120ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 80px), var(--container));
  height: 96px;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(148deg, rgba(234, 119, 73, 0.98) 0 48%, rgba(43, 146, 211, 0.98) 56% 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.62);
}

.brand-mark svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: #7d5d4d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: 0;
}

.brand-logo {
  width: clamp(136px, 12vw, 178px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 70px;
  color: #2e241e;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 8px 0 13px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--warm);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: var(--warm-dark);
}

.hero {
  position: relative;
  min-height: 704px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 251, 247, 0.98) 0 36%, rgba(255, 231, 214, 0.88) 64%, rgba(245, 205, 184, 0.82)),
    #fff6ef;
  isolation: isolate;
  --hero-mx: 0px;
  --hero-my: 0px;
}

.hero::before {
  position: absolute;
  inset: -12% -8% 18% 34%;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 62% 38%, rgba(255, 226, 178, 0.72), rgba(255, 210, 157, 0.22) 31%, transparent 64%),
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.72), transparent 34%);
  filter: blur(2px);
  opacity: 0.76;
  transform: translate3d(calc(var(--hero-mx) * -0.14), calc(var(--hero-my) * -0.1), 0);
  animation: heroBreath 9s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 704px;
  align-items: center;
  justify-content: space-between;
  padding-top: 80px;
}

body.is-ready .hero-copy h1,
body.is-ready .hero-copy h2,
body.is-ready .hero-subtitle,
body.is-ready .hero-note,
body.is-ready .contact-lead,
body.is-ready .heart-divider,
body.is-ready .hero-actions {
  animation: heroTextUp 760ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

body.is-ready .hero-copy h1 {
  animation-delay: 240ms;
}

body.is-ready .hero-copy h2 {
  animation-delay: 360ms;
}

body.is-ready .hero-subtitle,
body.is-ready .hero-note {
  animation-delay: 480ms;
}

body.is-ready .contact-lead {
  animation-delay: 600ms;
}

body.is-ready .heart-divider {
  animation-delay: 660ms;
}

body.is-ready .hero-actions {
  animation-delay: 780ms;
}

.hero-copy {
  width: min(760px, 58%);
  padding-top: 30px;
}

.hero-copy-wide {
  width: min(720px, 64%);
}

.hero-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: 0;
}

.hero-copy h1 span,
.contact-copy h1 {
  display: block;
  color: var(--warm);
}

.hero-copy h2 {
  margin: 20px 0 0;
  color: var(--ink);
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 800;
  line-height: 1.2;
}

.hero-subtitle {
  margin: 22px 0 0;
  color: #5c372a;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 600;
  letter-spacing: 0;
}

.hero-note,
.contact-lead {
  margin: 20px 0 0;
  color: #58392d;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 20px;
  line-height: 2;
}

.heart-divider {
  position: relative;
  width: 220px;
  height: 22px;
  margin: 28px 0;
}

body.is-ready .heart-divider {
  transform-origin: center;
}

.heart-divider::before,
.heart-divider::after {
  position: absolute;
  top: 10px;
  width: 74px;
  height: 1px;
  content: "";
  background: #d9aa93;
}

.heart-divider::before {
  left: 0;
}

.heart-divider::after {
  right: 0;
}

.heart-divider::marker {
  display: none;
}

.heart-divider {
  background:
    radial-gradient(circle at 50% 52%, var(--warm) 0 4px, transparent 4.5px),
    radial-gradient(circle at 47.5% 39%, var(--warm) 0 4px, transparent 4.5px),
    radial-gradient(circle at 52.5% 39%, var(--warm) 0 4px, transparent 4.5px);
}

body.is-ready .heart-divider::before,
body.is-ready .heart-divider::after {
  animation: dividerGrow 820ms 880ms ease both;
  transform-origin: center;
}

.heart-divider.small {
  width: 110px;
  margin: 6px auto 0;
  transform: scale(0.72);
}

.heart-divider.tiny {
  width: 92px;
  height: 14px;
  margin: 10px auto 6px;
  transform: scale(0.62);
}

.hero-actions {
  display: flex;
  gap: 26px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-width: 176px;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--warm);
  border-radius: 999px;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn span {
  transition: transform 180ms ease;
}

.btn:hover span {
  transform: translateX(5px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #c85b31, #df8157);
  box-shadow: 0 10px 20px rgba(191, 91, 49, 0.22);
}

.btn-secondary {
  color: var(--warm);
  background: rgba(255, 252, 248, 0.62);
}

.hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  transform: translate3d(calc(var(--hero-mx) * 0.08), calc(var(--hero-my) * 0.05), 0);
}

.hero-art::before {
  position: absolute;
  top: 148px;
  right: 20%;
  width: 168px;
  height: 168px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, #fff8ea 0 18%, #f4c06f 38%, #e08a56 70%, rgba(224, 138, 86, 0.06) 72%),
    #e7a178;
  box-shadow:
    0 0 44px 18px rgba(255, 207, 139, 0.42),
    0 0 110px 34px rgba(225, 132, 86, 0.18);
  opacity: 0;
  transform: translate3d(calc(var(--hero-mx) * 0.28), calc(var(--hero-my) * 0.18 + 24px), 0) scale(0.82);
}

body.is-ready .hero-art::before {
  animation:
    sunRise 1100ms 260ms cubic-bezier(0.22, 0.61, 0.36, 1) both,
    sunPulse 7s 1500ms ease-in-out infinite;
}

.hero-art::after {
  position: absolute;
  top: 100px;
  right: 6%;
  width: 660px;
  height: 400px;
  content: "";
  background:
    radial-gradient(circle at 95% 15%, rgba(255, 255, 255, 0.95) 0 3px, transparent 3.5px),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.7) 0 2px, transparent 2.5px),
    radial-gradient(circle at 70% 10%, rgba(255, 255, 255, 0.8) 0 2px, transparent 2.5px),
    repeating-radial-gradient(circle at 74% 44%, transparent 0 44px, rgba(255, 255, 255, 0.22) 45px 46px);
  opacity: 0;
  transform: translate3d(calc(var(--hero-mx) * 0.2), calc(var(--hero-my) * 0.14), 0);
}

.orbit {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  opacity: 0;
}

.orbit-one {
  top: 112px;
  right: 6%;
  width: 570px;
  height: 570px;
  border-style: dashed;
  transform: translate3d(calc(var(--hero-mx) * 0.18), calc(var(--hero-my) * 0.12), 0);
}

.orbit-two {
  top: 176px;
  right: 18%;
  width: 410px;
  height: 410px;
  border-color: rgba(255, 255, 255, 0.38);
  transform: translate3d(calc(var(--hero-mx) * 0.12), calc(var(--hero-my) * 0.08), 0);
}

.spark {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    88px 26px 0 rgba(255, 255, 255, 0.62),
    142px 86px 0 rgba(255, 255, 255, 0.52),
    230px 42px 0 rgba(255, 255, 255, 0.72);
}

body.is-ready .hero-art::after,
body.is-ready .orbit,
body.is-ready .spark {
  animation: fadeIn 900ms 520ms ease both;
}

body.is-ready .orbit-one {
  animation:
    fadeIn 900ms 520ms ease both,
    orbitSpin 80s linear infinite;
}

body.is-ready .orbit-two {
  animation:
    fadeIn 900ms 600ms ease both,
    orbitSpinReverse 95s linear infinite;
}

.spark-one {
  top: 126px;
  right: 7%;
}

.spark-two {
  top: 228px;
  right: 18%;
}

.family-symbol {
  position: absolute;
  top: 210px;
  right: 13%;
  width: 335px;
  height: 255px;
  opacity: 0;
  transform: translate3d(calc(var(--hero-mx) * 0.22), calc(var(--hero-my) * 0.12 + 28px), 0);
}

.family-symbol::before {
  position: absolute;
  top: 0;
  left: 48px;
  width: 82px;
  height: 82px;
  content: "";
  border: 14px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.family-symbol::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 170px;
  height: 116px;
  content: "";
  border: 13px solid rgba(255, 255, 255, 0.9);
  border-bottom-width: 16px;
  clip-path: polygon(0 42%, 50% 0, 100% 42%, 100% 100%, 0 100%);
}

body.is-ready .family-symbol {
  animation: familyRise 1000ms 840ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

body.is-ready .family-symbol-large {
  animation-name: familyRiseLarge;
}

.family-symbol-large {
  right: 16%;
  transform: translate3d(calc(var(--hero-mx) * 0.22), calc(var(--hero-my) * 0.12 + 28px), 0) scale(1.08);
}

.family-symbol span {
  display: none;
}

.family-symbol + .road-line {
  position: absolute;
}

.road-line {
  right: 24%;
  bottom: 190px;
  width: 320px;
  height: 150px;
  border-right: 8px solid rgba(255, 255, 255, 0.72);
  border-bottom: 8px solid rgba(255, 255, 255, 0.72);
  border-radius: 0 0 80% 0;
  transform: rotate(-14deg);
}

.mountain {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 330px;
  opacity: 0;
  transform: translate3d(0, 42px, 0);
}

.mountain-back {
  background: linear-gradient(180deg, rgba(247, 194, 165, 0.24), rgba(255, 255, 255, 0.4));
  clip-path: polygon(0 70%, 10% 55%, 22% 62%, 34% 42%, 47% 66%, 58% 44%, 71% 60%, 83% 34%, 100% 61%, 100% 100%, 0 100%);
}

.mountain-mid {
  background: linear-gradient(180deg, rgba(93, 151, 204, 0.55), rgba(255, 255, 255, 0.34));
  clip-path: polygon(0 78%, 12% 45%, 24% 61%, 39% 37%, 52% 72%, 65% 46%, 77% 73%, 91% 31%, 100% 44%, 100% 100%, 0 100%);
}

.mountain-front {
  height: 240px;
  background: linear-gradient(180deg, rgba(34, 106, 171, 0.66), rgba(252, 248, 243, 0.86));
  clip-path: polygon(0 76%, 14% 51%, 25% 78%, 38% 55%, 52% 84%, 66% 62%, 78% 86%, 90% 46%, 100% 58%, 100% 100%, 0 100%);
}

body.is-ready .mountain {
  animation: mountainRise 980ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

body.is-ready .mountain-back {
  animation-delay: 360ms;
}

body.is-ready .mountain-mid {
  animation-delay: 500ms;
}

body.is-ready .mountain-front {
  animation-delay: 640ms;
}

.lake-shine {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 190px;
  background:
    linear-gradient(90deg, rgba(69, 131, 188, 0.22), rgba(255, 255, 255, 0.78) 45%, rgba(82, 142, 197, 0.24)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.28) 0 2px, rgba(255, 255, 255, 0) 2px 16px);
}

body.is-ready .lake-shine {
  animation: lakeDrift 12s ease-in-out infinite;
}

.hero-home {
  min-height: clamp(548px, 42.9vw, 720px);
  background:
    radial-gradient(circle at 13% 13%, rgba(255, 211, 102, 0.3), transparent 18%),
    radial-gradient(circle at 74% 38%, rgba(255, 220, 153, 0.52), transparent 28%),
    linear-gradient(113deg, #fffaf4 0 42%, #fff1db 66%, #fdd8bd 100%);
}

.hero-home::before {
  inset: -18% auto 18% -8%;
  width: min(760px, 52vw);
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 220, 101, 0.48), transparent 8%),
    radial-gradient(circle at 40% 34%, rgba(255, 197, 79, 0.24), transparent 12%),
    radial-gradient(circle at 19% 54%, rgba(255, 255, 255, 0.72), transparent 24%);
  opacity: 0.9;
  filter: blur(1px);
}

.hero-home .hero-inner {
  width: min(calc(100% - 80px), var(--container));
  min-height: clamp(548px, 42.9vw, 720px);
  padding-top: 0;
}

.home-hero-copy {
  width: min(610px, 47%);
  padding-top: 24px;
}

.home-hero-copy h1 {
  color: #3f261d;
  font-size: clamp(38px, 2.62vw, 50px);
  line-height: 1.35;
}

.home-hero-copy .hero-line {
  display: block;
  color: inherit;
  white-space: nowrap;
}

.home-hero-copy .warm-word {
  display: inline;
  color: #cf6b31;
}

.hero-answer {
  position: relative;
  display: inline-block;
  margin: 20px 0 0;
  color: #2e82c7;
  font-size: clamp(30px, 2.38vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.hero-answer::after {
  position: absolute;
  right: 2px;
  bottom: -13px;
  left: 2px;
  height: 17px;
  content: "";
  border-bottom: 5px solid rgba(61, 139, 207, 0.44);
  border-radius: 0 0 50% 50%;
  transform: rotate(-1.5deg);
}

.hero-answer::before {
  position: absolute;
  right: -32px;
  bottom: -5px;
  width: 16px;
  height: 16px;
  content: "";
  background: #d85f36;
  clip-path: polygon(50% 88%, 17% 57%, 7% 36%, 14% 14%, 34% 9%, 50% 24%, 66% 9%, 86% 14%, 93% 36%, 83% 57%);
  transform: rotate(10deg);
}

.hero-home .hero-subtitle {
  color: #6d4d3e;
  font-size: clamp(17px, 1.2vw, 22px);
}

.home-hero-art {
  transform: translate3d(calc(var(--hero-mx) * 0.035), calc(var(--hero-my) * 0.025), 0);
}

.hero-home .hero-art::before,
.hero-home .hero-art::after {
  top: auto;
  right: auto;
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.hero-home .hero-art::before {
  inset: 0 44% 0 0;
  background:
    radial-gradient(circle at 18% 21%, rgba(255, 213, 91, 0.72) 0 4px, transparent 5px),
    radial-gradient(circle at 27% 35%, rgba(255, 224, 135, 0.66) 0 3px, transparent 4px),
    radial-gradient(circle at 36% 18%, rgba(255, 198, 67, 0.52) 0 2px, transparent 3px),
    radial-gradient(circle at 11% 43%, rgba(255, 235, 171, 0.58) 0 2px, transparent 3px);
  opacity: 0.9;
  filter: drop-shadow(0 0 14px rgba(255, 202, 72, 0.38));
}

.hero-home .hero-art::after {
  inset: auto -8% -18% -8%;
  height: 260px;
  background:
    radial-gradient(ellipse at 74% 64%, rgba(255, 255, 255, 0.84) 0 20%, transparent 58%),
    linear-gradient(170deg, transparent 0 46%, rgba(255, 179, 106, 0.52) 47% 65%, transparent 66%),
    linear-gradient(174deg, transparent 0 56%, rgba(84, 151, 206, 0.62) 57% 74%, transparent 75%);
  opacity: 0.9;
}

body.is-ready .hero-home .hero-art::before {
  animation: homeDotField 12s ease-in-out infinite;
}

body.is-ready .hero-home .hero-art::after {
  animation: homeWaveDrift 11s ease-in-out infinite;
}

.home-light-dot {
  position: absolute;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 213, 79, 0.92);
  box-shadow:
    0 0 16px rgba(255, 206, 73, 0.8),
    34px 42px 0 -2px rgba(255, 224, 137, 0.76),
    96px 18px 0 -3px rgba(255, 236, 177, 0.72),
    142px 74px 0 -2px rgba(255, 206, 73, 0.58);
}

.dot-one {
  top: 108px;
  left: 8%;
}

.dot-two {
  top: 190px;
  left: 28%;
  transform: scale(0.78);
}

.dot-three {
  top: 288px;
  left: 15%;
  transform: scale(0.62);
}

body.is-ready .home-light-dot {
  animation: homeLightFloat 8s ease-in-out infinite;
}

body.is-ready .dot-two {
  animation-delay: -2.2s;
}

body.is-ready .dot-three {
  animation-delay: -4.1s;
}

.home-wave {
  position: absolute;
  right: -8%;
  bottom: -70px;
  left: -8%;
  height: 210px;
  border-radius: 50% 50% 0 0 / 58% 58% 0 0;
}

.wave-warm {
  z-index: 1;
  bottom: -54px;
  background: rgba(240, 127, 76, 0.5);
  transform: rotate(-2deg);
}

.wave-blue {
  z-index: 2;
  bottom: -94px;
  background: rgba(79, 146, 202, 0.66);
  transform: rotate(2.4deg);
}

.wave-white {
  z-index: 3;
  bottom: -132px;
  background: rgba(255, 255, 255, 0.94);
  transform: rotate(-0.8deg);
}

body.is-ready .home-wave {
  animation: homeWaveBreathe 9s ease-in-out infinite;
}

body.is-ready .wave-blue {
  animation-delay: -2s;
}

body.is-ready .wave-white {
  animation-delay: -4s;
}

.heart-stage {
  --sweep-angle: 0deg;
  position: relative;
  z-index: 3;
  width: min(640px, 50%);
  aspect-ratio: 1;
  align-self: center;
  margin-top: 38px;
  opacity: 0;
  filter: drop-shadow(0 24px 34px rgba(108, 66, 37, 0.16));
  transform: translate3d(calc(var(--hero-mx) * 0.12), calc(var(--hero-my) * 0.08 + 24px), 0) scale(0.96);
}

.heart-stage::before {
  position: absolute;
  inset: -5%;
  z-index: 2;
  content: "";
  background:
    conic-gradient(from var(--sweep-angle) at 50% 48%,
      transparent 0 24deg,
      rgba(255, 255, 255, 0.9) 31deg,
      rgba(255, 229, 128, 0.72) 37deg,
      rgba(255, 176, 74, 0.28) 44deg,
      transparent 56deg 360deg);
  filter:
    blur(1px)
    drop-shadow(0 0 10px rgba(255, 211, 87, 0.66))
    drop-shadow(0 0 20px rgba(255, 151, 83, 0.22));
  mask: url("../assets/images/home-heart-wall.png") center / contain no-repeat;
  mix-blend-mode: screen;
  opacity: 0.56;
  pointer-events: none;
  -webkit-mask: url("../assets/images/home-heart-wall.png") center / contain no-repeat;
}

.heart-stage::after {
  position: absolute;
  right: 3%;
  bottom: 4%;
  left: 3%;
  z-index: 0;
  height: 34%;
  content: "";
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 236, 158, 0.52), transparent 62%),
    radial-gradient(ellipse at 50% 92%, rgba(77, 147, 202, 0.28), transparent 68%);
  border-radius: 50%;
  filter: blur(5px);
}

body.is-ready .heart-stage::before {
  animation: heartSweep 24s linear infinite;
}

body.is-ready .heart-stage::after {
  animation: supportPulse 4.8s ease-in-out infinite;
}

body.is-ready .heart-stage {
  animation: heartStageIn 900ms 620ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-heart-stage {
  width: min(500px, 40%);
  margin-top: 68px;
}

.contact-heart-stage {
  width: min(460px, 38%);
  margin-top: 76px;
}

.heart-wall {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.heart-link {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.heart-support {
  position: absolute;
  bottom: 10%;
  z-index: 0;
  width: 38%;
  height: 16%;
  border-bottom: 5px solid rgba(255, 215, 119, 0.72);
  border-radius: 0 0 999px 999px;
  filter: drop-shadow(0 0 12px rgba(255, 197, 78, 0.62));
}

.support-left {
  left: 16%;
  transform: rotate(16deg);
}

.support-right {
  right: 16%;
  transform: rotate(-16deg);
}

body.is-ready .heart-support {
  animation: supportGlow 4.6s ease-in-out infinite;
}

.rising-light {
  position: absolute;
  z-index: 0;
  bottom: 18%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 235, 155, 0.96);
  box-shadow:
    0 0 16px rgba(255, 214, 91, 0.9),
    0 22px 22px rgba(255, 185, 75, 0.18);
  opacity: 0;
}

.light-one {
  left: 20%;
}

.light-two {
  left: 36%;
  width: 7px;
  height: 7px;
}

.light-three {
  right: 34%;
}

.light-four {
  right: 18%;
  width: 6px;
  height: 6px;
}

body.is-ready .rising-light {
  animation: lightRise 5.8s ease-in-out infinite;
}

body.is-ready .light-two {
  animation-delay: -1.4s;
}

body.is-ready .light-three {
  animation-delay: -2.8s;
}

body.is-ready .light-four {
  animation-delay: -4.1s;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  pointer-events: none;
}

.hero-family {
  z-index: 3;
  width: min(440px, 36%);
  height: 280px;
  align-self: flex-end;
  margin: 0 0 62px;
  background-color: rgba(255, 255, 255, 0.16);
}

body.is-ready .hero-family {
  animation: photoFloatIn 900ms 960ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 13px;
  transform: translateX(-50%);
}

.slider-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
}

.slider-dots span:first-child {
  background: var(--warm);
}

.section {
  padding: 38px 0;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.3vw, 38px);
  font-weight: 800;
  line-height: 1.2;
}

.section-title h2::before,
.section-title h2::after {
  width: 42px;
  height: 1px;
  content: "";
  background: #d7a289;
}

.section-title p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 32px;
}

.service-card,
.growth-card,
.path-card,
.contact-card,
.qr-card,
.team-card {
  position: relative;
  border: 1px solid rgba(230, 211, 196, 0.92);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.86);
  box-shadow: var(--soft-shadow);
}

a.team-card {
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card {
  min-height: 330px;
  padding: 72px 30px 0;
  overflow: hidden;
  text-align: center;
}

.icon-badge {
  position: absolute;
  top: -24px;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 9px 20px rgba(111, 71, 47, 0.16);
}

.icon-badge.warm {
  background: linear-gradient(145deg, #d07143, #df976e);
}

.icon-badge.blue {
  background: linear-gradient(145deg, #2e82cf, #70b4e6);
}

.icon-badge svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.growth-card h3,
.path-card h3,
.contact-card h3,
.qr-card h3,
.team-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
}

.service-card p {
  margin: 16px auto 8px;
  max-width: 285px;
  color: #614236;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.service-card > a {
  display: inline-block;
  color: var(--warm);
  font-size: 24px;
}

.service-card > :not(.card-cover-link) {
  position: relative;
  z-index: 2;
}

.card-cover-link {
  position: absolute !important;
  inset: 0;
  z-index: 4 !important;
  border-radius: 8px;
  font-size: 0 !important;
}

.service-card:focus-within {
  outline: 3px solid rgba(199, 91, 51, 0.62);
  outline-offset: 4px;
}

.image-slot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(248, 230, 216, 0.62), rgba(255, 253, 250, 0.94)),
    #fff8f1;
}

.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 180ms ease;
}

.image-slot.is-loaded img {
  opacity: 1;
}

.image-slot.is-missing::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(135deg, rgba(202, 143, 106, 0.06) 0 1px, rgba(202, 143, 106, 0) 1px 14px);
}

.card-photo {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  height: 112px;
}

.stats-section {
  padding: 18px 0 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 24px;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  margin-top: 12px;
  color: var(--warm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.stat-item p,
.stat-item small {
  display: block;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.stat-item p {
  font-size: 17px;
  font-weight: 700;
}

.stat-item small {
  font-size: 14px;
}

.line-icon,
.medal {
  display: inline-grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff6ed, #f3ddca);
  color: var(--warm);
}

.line-icon::before,
.medal::before {
  display: block;
  color: currentColor;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.heart::before,
.blue-heart::before {
  content: "♡";
}

.shield::before,
.shield-blue::before {
  content: "☆";
}

.people::before,
.blue-people::before {
  content: "⋯";
}

.chart::before {
  content: "↗";
}

.cap::before {
  content: "▱";
}

.sprout::before {
  content: "♧";
}

.blue-heart,
.blue-people,
.shield-blue {
  color: var(--blue);
  background: linear-gradient(145deg, #eef6ff, #dbefff);
}

.philosophy {
  padding: 24px 0;
}

.philosophy-panel,
.promise-panel {
  padding: 26px 42px 30px;
  border: 1px solid rgba(229, 209, 194, 0.94);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 240, 0.92), rgba(255, 255, 255, 0.85)),
    var(--paper);
}

.slogan {
  color: var(--ink);
  font-size: clamp(28px, 2.4vw, 40px) !important;
  font-weight: 800;
  line-height: 1.25 !important;
}

.belief-grid,
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.promise-grid {
  grid-template-columns: repeat(3, 1fr);
}

.belief-grid article,
.promise-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  gap: 16px;
  align-items: center;
}

.belief-grid .line-icon,
.promise-grid .line-icon,
.belief-cards .line-icon,
.credential-row .medal {
  grid-area: icon;
}

.belief-grid h3,
.promise-grid h3,
.credential-row h3 {
  grid-area: title;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 22px;
}

.belief-grid p,
.promise-grid p,
.credential-row p {
  grid-area: text;
  margin: 0;
  color: var(--ink-soft);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}

.certificate {
  aspect-ratio: 1200 / 829;
  border: 0;
  box-shadow: none;
}

.credential-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(224, 204, 188, 0.94);
  border-radius: 8px;
  background: rgba(224, 204, 188, 0.94);
}

.credential-row article {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  gap: 18px;
  align-items: center;
  padding: 20px 32px;
  background: rgba(255, 253, 249, 0.9);
}

.medal {
  color: var(--green);
  background:
    radial-gradient(circle at 50% 50%, #fff 0 52%, transparent 53%),
    linear-gradient(145deg, #1e7a56, #4a9b75);
}

.book::before {
  content: "□";
}

.building::before {
  content: "▥";
}

.team::before {
  content: "●";
}

.medal {
  position: relative;
}

.book::before {
  width: 34px;
  height: 26px;
  content: "";
  border: 3px solid currentColor;
  border-top-width: 5px;
  border-radius: 4px 4px 7px 7px;
  background:
    linear-gradient(90deg, transparent 0 46%, currentColor 47% 53%, transparent 54%),
    linear-gradient(180deg, transparent 0 48%, currentColor 49% 55%, transparent 56%);
}

.building::before {
  content: "政";
  font-size: 24px;
}

.team::before {
  width: 36px;
  height: 28px;
  content: "";
  background:
    radial-gradient(circle at 50% 27%, currentColor 0 5px, transparent 6px),
    radial-gradient(circle at 22% 38%, currentColor 0 4px, transparent 5px),
    radial-gradient(circle at 78% 38%, currentColor 0 4px, transparent 5px),
    linear-gradient(currentColor 0 0) 50% 100% / 22px 11px no-repeat,
    linear-gradient(currentColor 0 0) 18% 100% / 16px 9px no-repeat,
    linear-gradient(currentColor 0 0) 82% 100% / 16px 9px no-repeat;
  border-radius: 999px;
}

.hero-about {
  min-height: 575px;
}

.hero-about .hero-inner {
  min-height: 575px;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.growth-card {
  min-height: 292px;
  padding: 50px 14px 16px;
  text-align: center;
}

.growth-card .icon-badge {
  top: 18px;
  width: 50px;
  height: 50px;
}

.growth-card .icon-badge svg {
  width: 26px;
  height: 26px;
}

.growth-card h3 {
  margin-top: 36px;
  font-size: 20px;
}

.growth-photo {
  height: 104px;
  margin-top: 16px;
}

.growth-card p {
  margin: 12px 0 0;
  color: #604438;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.75;
  text-align: left;
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.45fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.path-card {
  min-height: 318px;
  padding: 22px 18px;
}

.step-index {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--warm);
  border-radius: 50%;
  background: #f8e9de;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
}

.path-card h3 {
  display: inline-block;
  margin-left: 14px;
  font-size: 21px;
}

.path-photo {
  height: 106px;
  margin-top: 16px;
}

.path-card p {
  margin: 12px 0 0;
  color: #604438;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.mini-grid span {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 8px 5px;
  border: 1px solid rgba(231, 213, 197, 0.9);
  border-radius: 8px;
  background: rgba(255, 248, 241, 0.68);
  text-align: center;
}

.mini-grid strong,
.mini-grid small {
  display: block;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.mini-grid strong {
  color: var(--ink);
  font-size: 13px;
}

.mini-grid small {
  color: var(--muted);
  font-size: 11px;
}

.mini-icon {
  position: relative;
  display: block;
  width: 34px;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 2px rgba(199, 91, 51, 0.36);
}

.mini-icon::before,
.mini-icon::after {
  position: absolute;
  content: "";
}

.mini-icon.course {
  border-radius: 4px;
  background:
    linear-gradient(90deg, rgba(199, 91, 51, 0.9) 0 46%, transparent 47% 53%, rgba(61, 139, 207, 0.85) 54% 100%);
}

.mini-icon.course::before {
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
}

.mini-icon.relax {
  border-radius: 999px 999px 8px 8px;
  background:
    radial-gradient(circle at 50% 28%, #fff 0 4px, transparent 5px),
    linear-gradient(135deg, #5fa9df, #b9dff5);
}

.mini-icon.relax::before,
.mini-icon.relax::after {
  bottom: 5px;
  width: 14px;
  height: 7px;
  border-bottom: 3px solid #fff;
  border-radius: 50%;
}

.mini-icon.relax::before {
  left: 4px;
  transform: rotate(18deg);
}

.mini-icon.relax::after {
  right: 4px;
  transform: rotate(-18deg);
}

.mini-icon.ai {
  border-radius: 9px;
  background: linear-gradient(135deg, #2e82cf, #70b4e6);
}

.mini-icon.ai::before {
  inset: 5px 7px;
  border: 2px solid #fff;
  border-radius: 6px;
}

.mini-icon.listen {
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 42%, #fff 0 3px, transparent 4px),
    radial-gradient(circle at 65% 42%, #fff 0 3px, transparent 4px),
    linear-gradient(135deg, #e88155, #f2b28d);
}

.mini-icon.tree {
  background:
    radial-gradient(circle at 50% 26%, #fff 0 8px, transparent 9px),
    linear-gradient(90deg, transparent 0 45%, #2f7d57 46% 54%, transparent 55%),
    linear-gradient(135deg, #4a9b75, #9bd3ad);
}

.mini-icon.game {
  border-radius: 999px;
  background: linear-gradient(135deg, #e88155, #5fa9df);
}

.mini-icon.game::before {
  top: 10px;
  left: 7px;
  width: 8px;
  height: 2px;
  background: #fff;
  box-shadow:
    3px -3px 0 -1px #fff,
    3px 3px 0 -1px #fff;
}

.mini-icon.game::after {
  top: 8px;
  right: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 8px 4px 0 #fff;
}

.belief-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.belief-cards article {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  gap: 16px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(229, 209, 194, 0.94);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.86);
}

.belief-cards h3 {
  grid-area: title;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
}

.belief-cards p {
  grid-area: text;
  margin: 0;
  color: var(--ink-soft);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.team-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  grid-template-areas:
    "avatar name"
    "avatar desc"
    "avatar link";
  gap: 12px;
  align-items: center;
  padding: 16px;
}

.avatar {
  grid-area: avatar;
  width: 78px;
  height: 78px;
  background: #eee8e3;
}

.team-card h3 {
  grid-area: name;
  font-size: 16px;
}

.team-card p {
  grid-area: desc;
  margin: 4px 0 6px;
  color: var(--ink-soft);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.team-card .card-link {
  grid-area: link;
  color: var(--warm);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.team-card:hover {
  border-color: var(--warm);
  box-shadow: 0 12px 24px rgba(111, 71, 47, 0.2);
  text-decoration: none;
}

.team-card:hover .card-link {
  text-decoration: underline;
}

.cta-strip {
  position: relative;
  display: grid;
  min-height: 178px;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 34px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(243, 176, 130, 0.64), rgba(255, 250, 245, 0.56) 52%, rgba(102, 164, 213, 0.38)),
    #fff3e9;
}

.about-cta {
  grid-template-columns: 260px 1fr auto;
  gap: 40px;
  padding: 24px 48px;
}

.about-cta p,
.contact-cta p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.cta-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.42;
}

.cta-photo-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  border-radius: 8px;
}

.cta-photo-link .cta-photo {
  width: 100%;
  height: 100%;
}

.about-cta .cta-photo {
  position: relative;
  height: 130px;
  opacity: 1;
}

.about-cta-photo-link {
  position: relative;
  inset: auto;
  height: 130px;
}

.about-cta-photo-link .cta-photo {
  height: 100%;
}

.contact-copy {
  width: min(720px, 58%);
}

.contact-methods {
  padding-bottom: 12px;
}

.contact-main {
  display: flex;
  flex-direction: column;
}

.contact-main .hero-contact-page {
  order: 1;
}

.contact-main .qr-section {
  order: 2;
}

.contact-main .contact-methods {
  order: 3;
}

.contact-main .promise-section {
  order: 4;
}

.contact-main .contact-cta {
  order: 5;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: -6px;
}

.contact-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 20px 24px;
  text-align: center;
}

.contact-card .icon-badge {
  position: static;
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  margin: 0 auto 18px;
  transform: none;
}

.contact-card h3 {
  min-height: 30px;
  font-size: 22px;
  line-height: 1.35;
}

.contact-card a,
.contact-card strong {
  display: block;
  margin-top: 14px;
  color: var(--warm-dark);
  font-family: Georgia, "Times New Roman", "Microsoft YaHei", serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.42;
}

.contact-card em {
  display: block;
  margin: 12px 0;
  color: var(--warm);
  font-style: normal;
}

.contact-card p {
  margin: 0;
  color: var(--ink-soft);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 15px;
}

.qr-section {
  padding-top: 12px;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 24px;
  padding-inline: 90px;
}

.qr-card {
  padding: 22px 30px 20px;
  text-align: center;
}

.qr-card h3 {
  font-size: 20px;
}

.qr-slot {
  width: min(188px, 100%);
  aspect-ratio: 1;
  margin: 20px auto 0;
  border: 12px solid rgba(255, 255, 255, 0.9);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(211, 194, 181, 0.82);
}

.qr-slot img {
  pointer-events: auto;
  user-select: auto;
  -webkit-touch-callout: default;
}

.qr-card p {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.promise-section {
  padding-top: 12px;
}

.promise-panel {
  padding-bottom: 28px;
}

.contact-cta {
  min-height: 190px;
  grid-template-columns: 1fr;
  padding: 28px 44px;
}

.contact-cta .cta-copy {
  position: relative;
  z-index: 2;
  width: min(560px, 62%);
  text-align: left;
}

.contact-cta p {
  margin-bottom: 20px;
  text-align: left;
}

.contact-cta .btn {
  min-width: 265px;
}

.cta-heart {
  position: absolute;
  top: 76px;
  left: 55%;
  z-index: 2;
  width: 86px;
  height: 74px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.8);
  border-left: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 0 0 0 70px;
  transform: rotate(-42deg);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(100deg, #cf704b 0%, #9d8f91 45%, #4b9ddb 100%);
}

.footer-wave {
  position: absolute;
  top: -44px;
  right: -4%;
  left: -4%;
  height: 118px;
  background: rgba(255, 250, 245, 0.95);
  clip-path: ellipse(58% 42% at 50% 0%);
}

.footer-main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 56px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-brand {
  color: #fff;
}

.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-brand .brand-mark {
  width: 54px;
  height: 54px;
}

.footer-brand strong {
  color: #fff;
  font-size: 28px;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 80px;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 17px;
}

.footer-nav a + a {
  position: relative;
}

.footer-nav a + a::before {
  position: absolute;
  top: 50%;
  left: -40px;
  width: 1px;
  height: 20px;
  content: "";
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
}

.footer-contact {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.3fr 2fr 1.4fr;
  gap: 24px;
  padding: 24px 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 14px;
}

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

:focus-visible {
  outline: 3px solid rgba(199, 91, 51, 0.72);
  outline-offset: 4px;
}

@keyframes navDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -14px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes heroBreath {
  0%,
  100% {
    opacity: 0.62;
    scale: 1;
  }

  50% {
    opacity: 0.94;
    scale: 1.05;
  }
}

@keyframes heroTextUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dividerGrow {
  from {
    transform: scaleX(0.24);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes sunRise {
  to {
    opacity: 0.92;
    transform: translate3d(calc(var(--hero-mx) * 0.28), calc(var(--hero-my) * 0.18), 0) scale(1);
  }
}

@keyframes sunPulse {
  0%,
  100% {
    box-shadow:
      0 0 44px 18px rgba(255, 207, 139, 0.38),
      0 0 110px 34px rgba(225, 132, 86, 0.16);
  }

  50% {
    box-shadow:
      0 0 62px 24px rgba(255, 217, 160, 0.52),
      0 0 142px 44px rgba(225, 132, 86, 0.22);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes orbitSpin {
  from {
    rotate: 0deg;
  }

  to {
    rotate: 360deg;
  }
}

@keyframes orbitSpinReverse {
  from {
    rotate: 0deg;
  }

  to {
    rotate: -360deg;
  }
}

@keyframes familyRise {
  to {
    opacity: 0.82;
    transform: translate3d(calc(var(--hero-mx) * 0.22), calc(var(--hero-my) * 0.12), 0);
  }
}

@keyframes familyRiseLarge {
  to {
    opacity: 0.82;
    transform: translate3d(calc(var(--hero-mx) * 0.22), calc(var(--hero-my) * 0.12), 0) scale(1.08);
  }
}

@keyframes mountainRise {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lakeDrift {
  0%,
  100% {
    background-position: 0 0, 0 0;
  }

  50% {
    background-position: 42px 0, 0 18px;
  }
}

@keyframes homeDotField {
  0%,
  100% {
    opacity: 0.72;
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: 1;
    transform: translate3d(16px, -14px, 0);
  }
}

@keyframes homeLightFloat {
  0%,
  100% {
    opacity: 0.48;
    transform: translate3d(0, 0, 0) scale(0.92);
  }

  45% {
    opacity: 1;
    transform: translate3d(18px, -24px, 0) scale(1.08);
  }

  70% {
    opacity: 0.74;
    transform: translate3d(-10px, -42px, 0) scale(0.86);
  }
}

@keyframes homeWaveDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scaleX(1);
  }

  50% {
    transform: translate3d(-18px, 7px, 0) scaleX(1.03);
  }
}

@keyframes homeWaveBreathe {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 22px -8px;
  }
}

@keyframes heartSweep {
  to {
    --sweep-angle: 360deg;
  }
}

@keyframes heartStageIn {
  to {
    opacity: 1;
    transform: translate3d(calc(var(--hero-mx) * 0.12), calc(var(--hero-my) * 0.08), 0) scale(1);
  }
}

@keyframes supportPulse {
  0%,
  100% {
    opacity: 0.72;
    scale: 1;
  }

  50% {
    opacity: 1;
    scale: 1.035;
  }
}

@keyframes supportGlow {
  0%,
  100% {
    opacity: 0.58;
    filter: drop-shadow(0 0 11px rgba(255, 197, 78, 0.52));
  }

  50% {
    opacity: 0.95;
    filter: drop-shadow(0 0 22px rgba(255, 217, 115, 0.82));
  }
}

@keyframes lightRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.62);
  }

  18% {
    opacity: 0.95;
  }

  68% {
    opacity: 0.68;
  }

  100% {
    opacity: 0;
    transform: translate3d(10px, -138px, 0) scale(1.2);
  }
}

@keyframes photoFloatIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-particles {
    display: none;
  }
}

@media (max-width: 1100px) {
  .container,
  .site-header {
    width: min(calc(100% - 40px), var(--container));
  }

  .main-nav {
    gap: 28px;
  }

  .hero,
  .hero-inner {
    min-height: 640px;
  }

  .hero-copy {
    width: 62%;
  }

  .hero-family {
    width: 34%;
  }

  .home-hero-copy {
    width: 52%;
  }

  .heart-stage {
    width: 48%;
  }

  .service-grid,
  .certificate-grid,
  .belief-cards,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .growth-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .path-grid,
  .contact-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .qr-grid {
    padding-inline: 0;
  }
}

@media (max-width: 760px) {
  body.is-ready .site-header {
    animation: none;
    transform: none;
  }

  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    left: auto;
    width: calc(100% - 28px);
    height: auto;
    padding: 18px 0 10px;
    transform: none;
  }

  .brand strong {
    font-size: 24px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .main-nav {
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
  }

  .brand-logo {
    width: 126px;
  }

  .hero-inner {
    min-height: auto;
    padding: 46px 0 250px;
  }

  .hero-home .hero-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 0 44px;
  }

  .hero-copy,
  .hero-copy-wide,
  .contact-copy {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .home-hero-copy {
    width: 100%;
    padding-top: 10px;
  }

  .home-hero-copy .hero-line,
  .hero-answer {
    white-space: normal;
  }

  .home-hero-copy h1 {
    font-size: clamp(31px, 9.2vw, 39px);
  }

  .hero-answer {
    margin-top: 14px;
    font-size: clamp(27px, 8.4vw, 36px);
  }

  .hero-answer::before {
    right: -22px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    min-width: min(158px, calc(50% - 6px));
    height: 50px;
    gap: 10px;
    font-size: 15px;
  }

  .heart-stage {
    width: min(92%, 380px);
    margin: 40px auto 0;
  }

  .hero-home .hero-art::before {
    inset: 0 20% 46% 0;
  }

  .home-wave {
    height: 150px;
  }

  .hero-family {
    position: absolute;
    right: 0;
    bottom: 25px;
    width: 58%;
    height: 178px;
  }

  .mountain {
    height: 260px;
  }

  .service-grid,
  .stats-grid,
  .growth-grid,
  .path-grid,
  .belief-grid,
  .belief-cards,
  .team-grid,
  .contact-card-grid,
  .qr-grid,
  .promise-grid,
  .credential-row,
  .footer-contact {
    grid-template-columns: 1fr;
  }

  .qr-grid {
    gap: 22px;
  }

  .about-cta {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .contact-cta .cta-copy {
    width: 100%;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .footer-nav {
    gap: 24px;
    flex-wrap: wrap;
  }

  .footer-nav a + a::before {
    display: none;
  }
}
