html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-jp-body);
  color: var(--color-ink);
  background: var(--color-bg);
  font-size: 16px;
  line-height: 1.9;
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.container--narrow { max-width: var(--maxw-narrow); }

main > section { padding-block: clamp(72px, 10vw, 128px); }

.section__eyebrow {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.8em;
}
.section__title {
  font-family: var(--font-jp-head);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin-bottom: 1.2em;
}
.section__lead {
  font-size: 1.05rem;
  color: var(--color-slate);
  max-width: 720px;
  margin-bottom: 3em;
}
.section__lead strong { color: var(--color-primary); font-weight: 700; }

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