/* ── shared section scaffolding ──────────────────────────────────────────── */
.section {
  padding: 30px 0;
  border-top: 0.5px solid #d0d0d0;
}

.section--dark {
  background: #111111;
  color: #f8f8f5;
  border-top: none;
}

.section-num {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 32px;
  display: block;
}

/* ── § 2 manifesto ───────────────────────────────────────────────────────── */
.manifesto-text {
  font-family: "KMRWaldenburg", var(--font-sans);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  color: #222222;
  max-width: 720px;
}

.manifesto-text em {
  font-family: "ABCROM", var(--font-sans);
  font-weight: bold;
  font-style: normal;
  color: #111111;
}

/* ── § 3 three blocks ────────────────────────────────────────────────────── */
.block-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 12px;
  display: block;
}

.block-title {
  font-family: "ABCROM", var(--font-sans);
  font-weight: bold;
  font-size: var(--text-md);
  line-height: 1.1;
  color: #111111;
  margin-bottom: 14px;
}

.block-body {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.65;
  color: var(--color-second);
  max-width: 300px;
}

.block-visual {
  margin-top: 40px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* ── § 4 cta learn ───────────────────────────────────────────────────────── */
.cta-learn {
  display: flex;
  align-items: baseline;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-lead {
  font-family: "ABCROM", var(--font-sans);
  font-weight: bold;
  font-size: 34px;
  line-height: 1.1;
  color: #111111;
  max-width: 480px;
}

.cta-arrow-link {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111111;
  text-decoration: none;
  border-bottom: 0.5px solid #111111;
  padding-bottom: 2px;
  white-space: nowrap;
  transition: opacity var(--duration-fast) var(--ease);
}

.cta-arrow-link:hover {
  opacity: 0.45;
}

/* ── § 5 cta play (dark) ─────────────────────────────────────────────────── */
.cta-play-inner {
  padding: 80px 0;
}

.cta-play-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 28px;
  display: block;
}

.cta-play-heading {
  font-family: "ABCROMCompressed", var(--font-sans);
  font-weight: 900;
  font-size: 88px;
  line-height: 0.92;
  color: #f8f8f5;
  max-width: 800px;
  margin-bottom: 40px;
}

.cta-play-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-play-link {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f8f8f5;
  text-decoration: none;
  border-bottom: 0.5px solid #f8f8f5;
  padding-bottom: 2px;
  transition: opacity var(--duration-fast) var(--ease);
}

.cta-play-link:hover {
  opacity: 0.45;
}

/* ── § 6 footer ──────────────────────────────────────────────────────────── */
.site-footer {
  background: #1a1a1a;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-brand {
  font-family: "KMRWaldenburg", var(--font-sans);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-credit {
  font-family: "KMRWaldenburg", var(--font-sans);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-family: "KMRWaldenburg", var(--font-sans);
  font-weight: 300;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── learn page ──────────────────────────────────────────────────────────── */
.learn-hero {
  padding-top: calc(var(--nav-height) + 72px);
  padding-bottom: 72px;
  border-bottom: 0.5px solid #d0d0d0;
}

.learn-overline {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: block;
  margin-bottom: 20px;
}

.learn-title {
  font-family: "ABCROMCompressed", var(--font-sans);
  font-weight: 900;
  font-size: 88px;
  line-height: 0.88;
  color: #111111;
  margin-bottom: 0;
}

.learn-subtitle {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-second);
  line-height: 1.65;
  margin-top: 28px;
  letter-spacing: 0.01em;
}

/* ── learn sections ──────────────────────────────────────────────────────── */
.learn-section {
  padding: 72px 0;
  border-bottom: 0.5px solid #d0d0d0;
}

.learn-section-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 48px;
  border-bottom: 0.5px solid #d0d0d0;
  padding-bottom: 12px;
}

.learn-section-num {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  flex-shrink: 0;
}

.learn-section-title {
  font-family: "ABCROM", var(--font-sans);
  font-weight: bold;
  font-size: var(--text-md);
  line-height: 1;
  color: #111111;
  letter-spacing: 0.01em;
}

.learn-rule {
  font-family: "ABCROM", var(--font-sans);
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #111111;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.learn-body {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.75;
  color: var(--color-second);
}

.learn-body + .learn-body {
  margin-top: 14px;
}

.learn-canvas-wrapper {
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.learn-canvas-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 10px;
}

/* colour swatches */
.swatch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
}

.swatch {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* learn cta */
.learn-cta {
  padding: 72px 0 88px;
  border-top: 0.5px solid #d0d0d0;
}

.learn-cta-text {
  font-family: "ABCROMCompressed", var(--font-sans);
  font-weight: 900;
  font-size: 64px;
  line-height: 0.95;
  color: #111111;
  margin-bottom: 36px;
}

.learn-cta-text em {
  font-family: "ABCROMCompressed", var(--font-sans);
  font-weight: 300;
  font-style: normal;
  font-size: 0.75em;
  color: var(--color-second);
}
