* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-color);
  background: linear-gradient(160deg, var(--bg-start) 0%, var(--bg-end) 100%);
  min-height: 100vh;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.18), transparent 45%);
  pointer-events: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }
main {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding: var(--space-l) 0 var(--space-xl);
}
.site-header {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding: 2rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand-copy strong {
  display: block;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.brand-copy span {
  color: var(--text-soft);
  font-size: 0.92rem;
}
.page-intro {
  margin-bottom: var(--space-xl);
  max-width: 860px;
}
.page-intro h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.03em;
}
.page-intro p {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.8;
  color: var(--text-soft);
}
.story-sequence {
  display: grid;
  gap: var(--space-xl);
}
.story-section {
  display: grid;
  gap: var(--space-m);
}
.section-heading {
  display: grid;
  gap: .55rem;
  max-width: 720px;
}
.section-heading h2, .section-heading h3 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.section-heading p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-soft);
}
.footer {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding: 1rem 0 4rem;
  color: var(--text-soft);
  text-align: center;
}
@media (max-width: 760px) {
  .site-header { align-items: flex-start; }
  main { width: min(calc(100% - 1.2rem), var(--content-width)); }
  .page-intro { margin-bottom: 4rem; }
}
