/* ════════════════════════════════════════════════════
   BASE — body, typography, utilities
═══════════════════════════════════════════════════════ */
body {
  background: #ffffff;
  color: #111111;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: "ss01", "ss02", "cv11";
}

/* ── Container ── */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.wrap-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-mute);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-mute);
}

/* ── Display sizes ── */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.display-xl {
  font-family: var(--font-display);
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.045em;
  line-height: 0.92;
  font-size: clamp(2.8rem, 7.5vw, 7.2rem);
}
.display-lg {
  font-family: var(--font-display);
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}
.display-md {
  font-family: var(--font-display);
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
}

/* ── Serif italic for emphasis ── */
.em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--orange);
}

/* ── Body text ── */
.body-lg {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}
.body-md {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.body-sm {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-mute);
}

/* ── Logo "B" gradient ── */
.logo-b {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Light text variant ── */
.light {
  color: var(--ink-light);
  font-weight: 600;
}

/* ── Section base ── */
.section {
  padding: 120px 0;
  position: relative;
}
.section-head {
  max-width: 780px;
  margin-bottom: 80px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  margin-bottom: 24px;
}
.section-head p {
  max-width: 560px;
}
.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}
