/* ============ 眠悦睡眠健康中心 · 星空月夜风 ============ */
:root {
  --c-primary:var(--gold);
  --night:#2b2b5e;
  --night-dark:#1d1d45;
  --purple:#6a6ab0;
  --purple-light:#8f8fd0;
  --gold:var(--c-primary, var(--gold));
  --cream-text:#e8e4f5;
  --text:#b8b4d8;
  --line:rgba(255,217,119,.18);
  --shadow:0 18px 40px rgba(0,0,0,.4);
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:"Microsoft YaHei","PingFang SC",sans-serif; color:var(--text); background:var(--night); overflow-x:hidden; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
img { max-width:100%; display:block; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.section { padding:110px 0; position:relative; }
.kicker { display:inline-block; font-size:13px; font-weight:800; letter-spacing:3px; color:var(--gold); margin-bottom:14px; }
.section-head { text-align:center; margin-bottom:52px; }
.section-head h2, .story-text h2, .plan-info h2, .contact-info h2 { font-size:38px; color:var(--cream-text); line-height:1.35; }
.section-head h2 span, .story-text h2 span, .plan-info h2 span { color:var(--gold); }
.section-head p { margin-top:14px; color:var(--text); font-size:16px; }

/* ---------- 星星 ---------- */
.stars { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.stars span { position:absolute; background:#fff; border-radius:50%; animation:twinkle 2.6s ease-in-out infinite; }
@keyframes twinkle { 0%,100%{ opacity:.2; transform:scale(.8); } 50%{ opacity:1; transform:scale(1.15); } }

/* ---------- 云层 ---------- */
.hero .clouds { position:absolute; inset:0; pointer-events:none; }
.cloud { position:absolute; height:26px; background:linear-gradient(180deg,var(--purple-light),var(--purple)); border-radius:40px; opacity:.5; }
.cloud::before, .cloud::after { content:""; position:absolute; background:inherit; border-radius:50%; }
.cloud::before { width:58%; height:220%; left:12%; top:-90%; }
.cloud::after { width:44%; height:180%; right:12%; top:-55%; }
.cloud.c1 { width:240px; top:80px; left:8%; animation:cloudDrift 16s linear infinite; }
.cloud.c2 { width:320px; top:180px; right:10%; animation:cloudDrift 22s linear infinite 4s; opacity:.38; }
.cloud.c3 { width:180px; top:320px; left:30%; animation:cloudDrift 18s linear infinite 8s; opacity:.3; }
@keyframes cloudDrift { 0%{ transform:translateX(0); } 50%{ transform:translateX(70px); } 100%{ transform:translateX(0); } }

/* ---------- 导航 ---------- */
.site-header { position:fixed; top:0; left:0; right:0; z-index:999; background:rgba(43,43,94,.9); backdrop-filter:blur(12px); box-shadow:0 2px 14px rgba(0,0,0,.35); border-bottom:1px solid var(--line); }
.nav-wrap { display:flex; align-items:center; justify-content:space-between; height:76px; }
.logo { display:flex; align-items:center; gap:12px; }
.logo-mark { width:46px; height:46px; border-radius:50%; background:radial-gradient(circle at 70% 30%,#ffdf9e,var(--gold) 55%,#d9a845); display:flex; align-items:center; justify-content:center; box-shadow:0 0 24px rgba(255,217,119,.5); }
.moon-mini { position:relative; width:22px; height:22px; background:#fff8e8; border-radius:50%; }
.moon-mini::after { content:""; position:absolute; left:6px; top:-3px; width:22px; height:22px; background:radial-gradient(circle at 70% 30%,#ffdf9e,#d9a845); border-radius:50%; }
.logo-text { font-weight:800; font-size:22px; color:var(--cream-text); display:flex; flex-direction:column; line-height:1.15; }
.logo-text small { font-size:10px; font-weight:600; color:var(--gold); letter-spacing:2px; }
.main-nav { display:flex; gap:6px; }
.main-nav a { padding:11px 17px; border-radius:26px; font-size:16px; font-weight:600; color:var(--cream-text); transition:.3s; }
.main-nav a:hover { color:var(--gold); background:rgba(255,217,119,.12); }
.main-nav a.active { color:var(--night); background:linear-gradient(135deg,var(--gold),#ffc95c); box-shadow:0 8px 20px rgba(255,217,119,.35); }
.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.nav-toggle span { width:26px; height:3px; background:var(--gold); border-radius:2px; transition:.3s; }

/* ---------- Hero ---------- */
.hero { position:relative; padding:190px 0 160px; background:linear-gradient(180deg,#1d1d45 0%,var(--night) 55%,#3a3a78 100%); overflow:hidden; }
.hero-inner { display:flex; align-items:center; gap:60px; position:relative; z-index:2; }
.hero-text { flex:1; }
.hero-tag { display:inline-block; color:var(--gold); font-size:14px; font-weight:700; letter-spacing:2px; padding:10px 22px; border:1px solid var(--line); border-radius:30px; background:rgba(255,217,119,.08); margin-bottom:22px; }
.hero h1 { font-size:52px; color:var(--cream-text); line-height:1.3; margin-bottom:20px; }
.hero h1 span { color:var(--gold); text-shadow:0 0 30px rgba(255,217,119,.5); }
.hero p { font-size:17px; line-height:1.95; max-width:520px; margin-bottom:30px; }
.hero-actions { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:36px; }
.btn { display:inline-block; padding:15px 34px; font-size:16px; font-weight:700; border:none; cursor:pointer; border-radius:30px; transition:.3s; }
.btn-primary { background:linear-gradient(135deg,var(--gold),#ffc95c); color:var(--night-dark); box-shadow:0 10px 26px rgba(255,217,119,.35); }
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 16px 34px rgba(255,217,119,.5); }
.btn-outline { background:transparent; color:var(--gold); border:2px solid var(--gold); }
.btn-outline:hover { background:var(--gold); color:var(--night-dark); transform:translateY(-3px); }
.hero-meta { display:flex; gap:32px; flex-wrap:wrap; }
.hero-meta span { font-size:14px; color:var(--text); }
.hero-meta b { display:block; font-size:28px; color:var(--gold); font-weight:900; }

/* ---------- 月夜 ---------- */
.hero-night { flex:1; position:relative; height:430px; display:flex; align-items:center; justify-content:center; }
.moon { position:relative; width:190px; height:190px; background:radial-gradient(circle at 62% 35%,#fffbea,#ffe9a8 60%,#d9b45f); border-radius:50%; box-shadow:0 0 80px rgba(255,217,119,.55), 0 0 160px rgba(255,217,119,.25); animation:moonGlow 5s ease-in-out infinite; }
@keyframes moonGlow { 0%,100%{ box-shadow:0 0 60px rgba(255,217,119,.45), 0 0 140px rgba(255,217,119,.2); } 50%{ box-shadow:0 0 90px rgba(255,217,119,.65), 0 0 180px rgba(255,217,119,.3); } }
.moon-crater { position:absolute; background:rgba(200,150,70,.35); border-radius:50%; }
.moon-crater.c1 { width:26px; height:26px; top:42px; left:52px; }
.moon-crater.c2 { width:16px; height:16px; top:96px; left:110px; }
.moon-crater.c3 { width:20px; height:20px; top:60px; left:120px; background:rgba(200,150,70,.25); }
.night-cloud { position:absolute; height:22px; background:linear-gradient(180deg,#5a5a9e,#4a4a8a); border-radius:30px; opacity:.55; }
.night-cloud::before, .night-cloud::after { content:""; position:absolute; background:inherit; border-radius:50%; }
.night-cloud::before { width:56%; height:210%; left:14%; top:-90%; }
.night-cloud::after { width:42%; height:175%; right:14%; top:-55%; }
.night-cloud.n1 { width:260px; bottom:30px; left:2%; animation:cloudDrift 14s linear infinite; }
.night-cloud.n2 { width:210px; top:20px; right:0; animation:cloudDrift 18s linear infinite 6s; opacity:.4; }
.hero-score { position:absolute; right:0; bottom:40px; background:rgba(43,43,94,.85); border:1px solid var(--line); border-radius:18px; padding:18px 24px; text-align:center; box-shadow:var(--shadow); backdrop-filter:blur(6px); }
.hero-score b { display:block; color:var(--cream-text); font-size:13px; margin-bottom:4px; }
.hero-score .score-num { display:block; font-size:44px; font-weight:900; color:var(--gold); line-height:1.1; text-shadow:0 0 20px rgba(255,217,119,.5); }
.hero-score i { font-style:normal; font-size:12px; color:var(--text); }
.galaxy-band { position:absolute; bottom:0; left:0; right:0; height:80px; background:linear-gradient(90deg,transparent,var(--purple) 30%,var(--purple-light) 50%,var(--purple) 70%,transparent); opacity:.35; clip-path:polygon(0 40%,20% 0,40% 100%,60% 0,80% 100%,100% 20%,100% 100%,0 100%); }

/* ---------- 静谧睡眠 ---------- */
.calm { background:var(--night); }
.calm-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.calm-card { background:linear-gradient(180deg,#34346e,#2b2b5e); border:1px solid var(--line); border-radius:26px 26px 26px 10px; padding:42px 30px; text-align:center; transition:.35s; position:relative; overflow:hidden; }
.calm-card::before { content:""; position:absolute; top:-40px; right:-40px; width:120px; height:120px; border-radius:50%; background:radial-gradient(circle,rgba(255,217,119,.2),transparent 70%); }
.calm-card:hover { transform:translateY(-8px); border-color:var(--gold); box-shadow:var(--shadow); }
.calm-ic { width:84px; height:84px; margin:0 auto 18px; border-radius:50%; background:radial-gradient(circle at 65% 35%,#4a4a8a,#2b2b5e); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; font-size:38px; box-shadow:0 0 30px rgba(255,217,119,.15); }
.calm-card h3 { font-size:22px; color:var(--cream-text); margin-bottom:12px; }
.calm-card p { font-size:15px; line-height:1.85; }

/* ---------- 睡眠方案 ---------- */
.plans { background:linear-gradient(180deg,var(--night) 0%,#34346e 100%); }
.plans::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,var(--night),var(--purple),var(--gold),var(--purple),var(--night)); opacity:.6; }
.plan-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.plan-card { background:rgba(52,52,110,.6); border:1px solid var(--line); border-radius:24px 24px 10px 24px; padding:36px 24px; text-align:center; transition:.35s; position:relative; }
.plan-card:hover { transform:translateY(-8px); border-color:var(--gold); box-shadow:var(--shadow); }
.plan-icon { width:120px; height:90px; margin:0 auto 20px; position:relative; }
.plan-icon.bed .bed-frame { position:absolute; inset:0 auto 0 0; width:96px; height:30px; border:3px solid var(--purple-light); border-radius:10px; left:12px; }
.plan-icon.bed .bed-frame::before { content:""; position:absolute; bottom:-16px; left:8px; width:8px; height:16px; background:var(--purple-light); border-radius:0 0 4px 4px; }
.plan-icon.bed .bed-frame::after { content:""; position:absolute; bottom:-16px; right:8px; width:8px; height:16px; background:var(--purple-light); border-radius:0 0 4px 4px; }
.plan-icon.bed .bed-pillow { position:absolute; top:-16px; left:22px; width:26px; height:16px; background:var(--gold); border-radius:8px; }
.plan-icon.bed .bed-blanket { position:absolute; bottom:-6px; left:22px; right:8px; height:24px; background:var(--purple); border-radius:12px 12px 8px 8px; opacity:.85; }
.plan-icon.bed.twin .bed-pillow { left:66px; }
.plan-icon.pillow .pillow-b { position:absolute; left:50%; top:0; transform:translateX(-50%) rotate(-8deg); width:96px; height:56px; background:linear-gradient(160deg,#8f8fd0,#6a6ab0); border-radius:26px; box-shadow:0 12px 24px rgba(0,0,0,.3); }
.plan-icon.pillow .pillow-b::before { content:""; position:absolute; inset:10px 14px; border:2px dashed rgba(255,217,119,.4); border-radius:16px; }
.plan-icon.moonpack .pack-a { position:absolute; left:50%; top:8px; transform:translateX(-50%); width:80px; height:56px; background:linear-gradient(160deg,var(--purple),#5a4aa0); border-radius:14px; border:2px solid var(--gold); }
.plan-icon.moonpack .pack-a::before { content:"☾"; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:26px; }
.plan-card h3 { font-size:20px; color:var(--cream-text); margin-bottom:10px; }
.plan-card p { font-size:14px; line-height:1.8; margin-bottom:14px; }
.plan-score { background:rgba(255,217,119,.1); border:1px solid var(--line); border-radius:12px; padding:10px; font-size:13px; color:var(--text); margin-bottom:14px; }
.plan-score b { color:var(--gold); font-size:16px; }
.link { color:var(--gold); font-weight:700; font-size:14px; transition:.3s; }
.link:hover { color:var(--cream-text); }

/* ---------- 助眠服务 ---------- */
.services { background:var(--night-dark); }
.service-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.service-card { background:#26265c; border:1px solid var(--line); border-radius:22px 22px 10px 22px; overflow:hidden; transition:.35s; }
.service-card:nth-child(even) { border-radius:10px 22px 22px 22px; }
.service-card:hover { transform:translateY(-8px); box-shadow:var(--shadow); border-color:var(--purple-light); }
.service-card img { width:100%; height:170px; object-fit:cover; }
.service-card h3 { padding:18px 20px 6px; color:var(--cream-text); font-size:19px; }
.service-card p { padding:0 20px 22px; font-size:13px; line-height:1.8; }

/* ---------- 动态 ---------- */
.news { background:var(--night); }
.news-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:30px; }
.news-card { background:#34346e; border:1px solid var(--line); border-radius:24px 24px 10px 24px; overflow:hidden; transition:.35s; }
.news-card:nth-child(2) { border-radius:10px 24px 24px 24px; }
.news-card:hover { transform:translateY(-6px); border-color:var(--gold); box-shadow:var(--shadow); }
.news-img { height:200px; overflow:hidden; }
.news-img img { width:100%; height:100%; object-fit:cover; transition:.5s; }
.news-card:hover .news-img img { transform:scale(1.08); }
.news-body { padding:22px; }
.news-date { color:var(--gold); font-size:13px; font-weight:700; }
.news-body h3 { color:var(--cream-text); margin:8px 0; font-size:20px; }
.news-body p { font-size:14px; line-height:1.8; }

/* ---------- CTA ---------- */
.cta { position:relative; background:linear-gradient(160deg,#1d1d45,#3a3a78); padding:90px 0; overflow:hidden; }
.cta-inner { text-align:center; color:var(--cream-text); position:relative; z-index:2; }
.cta h2 { font-size:36px; margin-bottom:14px; text-shadow:0 0 40px rgba(255,217,119,.4); }
.cta p { opacity:.9; margin-bottom:30px; }
.cta .btn-primary { background:linear-gradient(135deg,var(--gold),#ffc95c); color:var(--night-dark); }

/* ---------- 页头 ---------- */
.page-hero { position:relative; padding:170px 0 90px; background:linear-gradient(180deg,#1d1d45 0%,var(--night) 70%,#34346e); overflow:hidden; }
.page-hero h1 { font-size:46px; color:var(--cream-text); line-height:1.35; margin-bottom:16px; }
.page-hero h1 span { color:var(--gold); }
.page-hero p { font-size:17px; max-width:560px; }

/* ---------- 关于 ---------- */
.story { background:var(--night); }
.story-grid { display:grid; grid-template-columns:1.1fr 1fr; gap:56px; align-items:center; }
.story-text h2 { font-size:38px; line-height:1.35; margin-bottom:18px; }
.story-text p { line-height:1.95; margin-bottom:16px; font-size:16px; }
.story-points { margin-top:18px; }
.story-points li { display:flex; gap:12px; align-items:center; padding:10px 0; font-size:15px; font-weight:600; color:var(--cream-text); }
.story-points span { width:28px; height:28px; background:linear-gradient(135deg,var(--gold),#ffc95c); border-radius:50%; color:var(--night-dark); display:flex; align-items:center; justify-content:center; font-size:13px; }
.story-photos { position:relative; }
.story-img-main { width:82%; height:400px; object-fit:cover; border-radius:180px 180px 36px 36px; box-shadow:var(--shadow); border:3px solid rgba(255,217,119,.3); }
.story-img-sub { position:absolute; right:0; bottom:-40px; width:52%; height:230px; object-fit:cover; border-radius:30px 30px 30px 10px; border:10px solid var(--night); box-shadow:var(--shadow); }

/* ---------- 信念 ---------- */
.beliefs { background:linear-gradient(180deg,var(--night),#34346e); }
.belief-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.belief-card { background:rgba(52,52,110,.6); border:1px solid var(--line); border-radius:10px 30px 10px 30px; padding:42px 30px; text-align:center; transition:.3s; }
.belief-card:nth-child(2) { border-radius:30px 10px 30px 10px; }
.belief-card:hover { transform:translateY(-6px); border-color:var(--gold); box-shadow:var(--shadow); }
.belief-star { display:block; color:var(--gold); font-size:30px; margin-bottom:10px; text-shadow:0 0 16px rgba(255,217,119,.6); }
.belief-card h3 { color:var(--cream-text); font-size:22px; margin-bottom:12px; }
.belief-card p { font-size:15px; line-height:1.85; }

/* ---------- 团队 ---------- */
.team { background:var(--night); }
.team-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:30px; }
.team-card { display:flex; background:#34346e; border:1px solid var(--line); border-radius:26px 26px 10px 26px; overflow:hidden; }
.team-card:nth-child(2) { border-radius:10px 26px 26px 26px; }
.team-img { width:240px; min-height:300px; }
.team-img img { width:100%; height:100%; object-fit:cover; }
.team-info { flex:1; padding:34px; }
.team-info h3 { font-size:24px; color:var(--cream-text); margin-bottom:8px; }
.team-info span { color:var(--gold); font-size:14px; font-weight:700; display:block; margin-bottom:14px; }
.team-info p { font-size:15px; line-height:1.8; }

/* ---------- 方案页 ---------- */
.plan-list { background:var(--night); }
.plan-row { display:grid; grid-template-columns:1fr 1.15fr; gap:50px; align-items:center; padding:50px 0; }
.plan-row.reverse .plan-media { order:2; }
.plan-media img { width:100%; height:340px; object-fit:cover; border-radius:170px 170px 30px 30px; border:3px solid rgba(255,217,119,.25); box-shadow:var(--shadow); }
.plan-row.reverse .plan-media img { border-radius:30px 30px 170px 170px; }
.plan-info p { line-height:1.9; margin:18px 0; }
.plan-data { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:20px; }
.plan-data span { background:#34346e; border:1px solid var(--line); padding:8px 16px; border-radius:12px; font-size:13px; color:var(--text); }
.plan-data b { color:var(--gold); font-size:16px; }
.plan-price { font-size:32px; font-weight:900; color:var(--gold); margin-bottom:20px; text-shadow:0 0 20px rgba(255,217,119,.35); }
.plan-price span { font-size:14px; color:var(--text); font-weight:600; }
.plan-more { background:linear-gradient(180deg,var(--night),#34346e); }
.more-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.more-card { background:#34346e; border:1px solid var(--line); border-radius:24px 24px 10px 24px; overflow:hidden; }
.more-card:nth-child(2) { border-radius:10px 24px 24px 24px; }
.more-card img { width:100%; height:220px; object-fit:cover; }
.more-card h3 { padding:22px 24px 6px; color:var(--cream-text); font-size:22px; }
.more-card p { padding:0 24px 26px; font-size:14px; line-height:1.8; }

/* ---------- 动态列表 ---------- */
.news-list { background:var(--night); }
.news-item { display:flex; gap:30px; background:#34346e; border:1px solid var(--line); border-radius:24px; padding:30px 34px; margin-bottom:24px; transition:.3s; }
.news-item:hover { box-shadow:var(--shadow); border-color:var(--gold); transform:translateY(-4px); }
.news-date { flex-shrink:0; width:88px; height:88px; border-radius:50%; background:radial-gradient(circle at 65% 35%,#5a5aa0,#3a3a78); border:1px solid var(--line); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.news-date span { font-size:26px; font-weight:900; color:var(--gold); line-height:1; }
.news-date i { font-style:normal; font-size:11px; color:var(--text); margin-top:4px; }
.news-body h2 { color:var(--cream-text); font-size:22px; margin-bottom:10px; }
.news-body p { font-size:15px; line-height:1.9; margin-bottom:12px; }

/* ---------- 联系 ---------- */
.contact { background:var(--night); }
.contact-grid { display:grid; grid-template-columns:1fr 1.1fr; gap:50px; }
.contact-info h2 { font-size:34px; color:var(--cream-text); margin-bottom:16px; }
.contact-info p { font-size:16px; line-height:2.1; }
.contact-info b { color:var(--gold); font-weight:800; margin-right:8px; }
.contact-map { margin-top:24px; }
.contact-map img { width:100%; height:240px; object-fit:cover; border-radius:150px 150px 26px 26px; border:2px solid rgba(255,217,119,.25); }
.contact-form-box { background:#34346e; border:1px solid var(--line); border-radius:10px 36px 36px 36px; box-shadow:var(--shadow); padding:44px; }
.contact-form-box h3 { font-size:24px; color:var(--cream-text); margin-bottom:26px; }
.form-field { margin-bottom:20px; }
.form-field label { display:block; font-weight:700; color:var(--cream-text); margin-bottom:8px; font-size:14px; }
.form-field input, .form-field select, .form-field textarea { width:100%; padding:13px 16px; border:1px solid var(--line); border-radius:14px; font-size:15px; font-family:inherit; background:#26265c; color:var(--cream-text); outline:none; transition:.3s; }
.form-field input::placeholder, .form-field textarea::placeholder { color:#8b87b8; }
.form-field select { color:var(--cream-text); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color:var(--gold); }
.form-field.error input, .form-field.error select, .form-field.error textarea { border-color:#ff6b6b; background:#3a2a52; }
.form-success { display:none; margin-top:16px; color:#b8f5c0; font-weight:700; background:#2a4a3a; padding:12px; border-radius:12px; border-left:4px solid #4ade80; }

/* ---------- 页脚 ---------- */
.site-footer { position:relative; background:var(--night-dark); color:var(--text); padding-top:70px; border-top:1px solid var(--line); }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1.2fr; gap:40px; padding-bottom:40px; position:relative; z-index:2; }
.footer-brand h3 { color:var(--cream-text); font-size:24px; margin-bottom:14px; }
.footer-brand p { font-size:14px; opacity:.85; line-height:1.8; }
.footer-nav h4, .footer-contact h4 { color:var(--cream-text); font-size:17px; margin-bottom:16px; }
.footer-nav a { display:block; padding:6px 0; font-size:14px; opacity:.85; transition:.3s; }
.footer-nav a:hover { opacity:1; color:var(--gold); transform:translateX(4px); }
.footer-contact p { font-size:14px; padding:6px 0; opacity:.85; }
.footer-bottom { border-top:1px solid var(--line); text-align:center; padding:20px 0; font-size:13px; opacity:.7; position:relative; z-index:2; }

/* ---------- 响应式 ---------- */
@media (max-width:1024px) {
  .plan-grid, .service-grid { grid-template-columns:repeat(2,1fr); }
  .calm-grid, .belief-grid { grid-template-columns:1fr 1fr; }
  .hero h1 { font-size:42px; }
  .hero-night { height:340px; }
  .moon { width:150px; height:150px; }
}
@media (max-width:860px) {
  .nav-toggle { display:flex; }
  .main-nav { position:fixed; top:76px; right:0; bottom:0; width:260px; background:var(--night-dark); flex-direction:column; padding:30px 20px; gap:6px; transform:translateX(100%); transition:.35s; box-shadow:-10px 0 30px rgba(0,0,0,.5); border-left:1px solid var(--line); }
  .main-nav.open { transform:translateX(0); }
  .hero-inner { flex-direction:column; }
  .hero-night { width:100%; }
  .hero h1 { font-size:36px; }
  .story-grid, .contact-grid, .plan-row { grid-template-columns:1fr; }
  .plan-row.reverse .plan-media { order:0; }
  .team-grid, .news-grid, .more-grid { grid-template-columns:1fr; }
  .team-card { flex-direction:column; }
  .team-img { width:100%; min-height:260px; }
  .news-item { flex-direction:column; gap:16px; }
  .section, .plan-row { padding:70px 0; }
}
@media (max-width:560px) {
  .calm-grid, .belief-grid, .plan-grid, .service-grid, .more-grid, .footer-grid { grid-template-columns:1fr; }
  .hero h1, .page-hero h1 { font-size:32px; }
  .section-head h2, .story-text h2 { font-size:28px; }
  .hero-meta { gap:18px; }
  .footer-grid { grid-template-columns:1fr; }
}

/* ---------- 滚动动画 ---------- */
.reveal { opacity:0; transform:translateY(34px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }
