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

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  cursor: default;
}

/* ── 通用区块 ── */
section { padding: 7rem 4rem; }
.section-label {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-body {
  font-size: 0.92rem; line-height: 1.9; color: rgba(245,240,232,0.6);
  max-width: 480px; letter-spacing: 0.02em;
}

/* 分割线 */
.divider { width: 60px; height: 1px; background: var(--gold); opacity: 0.4; margin: 1.5rem 0; }

/* 滚动入场动画 */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  section { padding: 5rem 2rem; }
}
