/* ═══════════════════════════════════════════════════════════════════════
   Artists Camp — Curriculum page (patterns curriculum-*).
   Section-specific values ported EXACTLY from artists-camp-3.0
   src/pages/Curriculum.tsx inline styles.
   Global vocabulary (ac-*, hv-*) lives in assets/css/main.css.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── hero ────────────────────────────────────────────────────────────── */

/* Hero padding is unique to this page (deeper top, shorter bottom). */
.curriculum-hero {
  padding: clamp(56px, 9vw, 96px) clamp(16px, 4vw, 32px) clamp(40px, 6vw, 64px);
}

.curriculum-hero__inner {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* h1: clamp(38px, 6vw, 60px) / 1.02 (ac-h1 base carries the rest). */
.curriculum-hero__title {
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.02;
}

.curriculum-hero__lead {
  font-size: clamp(18px, 2.4vw, 20px);
  line-height: 1.5;
  color: #516078;
  max-width: 580px;
  margin: 0;
  text-wrap: pretty;
}

/* ── the five stages (path-blocks backdrop) ──────────────────────────── */

.curriculum-stages {
  position: relative;
  overflow: hidden;
}

/* Backdrop svg at opacity .1 (the CTA band's is .55 — not reusable). */
.curriculum-stages__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  pointer-events: none;
}

.curriculum-stages__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.curriculum-grid-stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

/* Stage card: padding 20px 18px, gap 8 (over ac-card's 20). */
.curriculum-stage-card {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Stage 5 CATALOG accent — cobalt has no global top-accent class. */
.curriculum-card--top-cobalt {
  border-top: 4px solid #2447c6;
}

.curriculum-stage__step {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #8b97aa;
  margin: 0;
}

.curriculum-stage__name {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}

.curriculum-stage__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: #516078;
  margin: 0;
}

.curriculum-stage__when {
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}

/* Per-stage "when" colors (the 700-shade of each stage color). */
.curriculum-when--green  { color: #0b7d58; }
.curriculum-when--teal   { color: #00789e; }
.curriculum-when--amber  { color: #9a6200; }
.curriculum-when--red    { color: #d7374f; }
.curriculum-when--cobalt { color: #2447c6; }

/* ── Bottle & Lightning principles (ink band) ────────────────────────── */

.curriculum-principles-stack {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* h2 on ink: lh 1.1, ls -0.01em (over ac-h2--md's 1.08 / -0.015em). */
.curriculum-principles__title {
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.curriculum-principles__lead {
  color: #8b97aa;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.curriculum-grid-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}

.curriculum-principle {
  background: #243047;
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.curriculum-principle__num {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffb000;
  min-width: 24px;
  margin: 0;
}

.curriculum-principle__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.curriculum-principle__rule {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.35;
  margin: 0;
}

.curriculum-principle__gloss {
  font-size: 13px;
  color: #8b97aa;
  line-height: 1.5;
  margin: 0;
}

/* ── shared tools ────────────────────────────────────────────────────── */

.curriculum-tools-stack {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Tools grid: minmax(250px, 1fr), gap 14 (ac-grid-3 has 16). */
.curriculum-grid-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

/* Tool card: padding 22, gap 10 (over ac-card's 20). */
.curriculum-tool-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.curriculum-tool-card .wp-block-image {
  margin: 0;
}

.curriculum-tool-card .wp-block-image img {
  width: 40px;
  height: 40px;
  display: block;
}

/* Tool title: lh 1.2 (over ac-h3's 1.15). */
.curriculum-tool__name {
  line-height: 1.2;
}

.curriculum-tool__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #516078;
  margin: 0;
}

.curriculum-tool__when {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0b7d58;
  margin: 0;
}

/* Artist-at-work practice figure. */
.curriculum-practice {
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.curriculum-practice img {
  aspect-ratio: 5 / 2;
  object-fit: cover;
}

.curriculum-practice__caption {
  font-size: 13.5px;
  line-height: 1.5;
  color: #8b97aa;
  margin: 0;
}

/* ── connection beat + two rules ─────────────────────────────────────── */

/* Split grid: gap clamp(32,5vw,56) and TOP alignment (ac-grid-2 centers). */
.curriculum-grid-connect {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.curriculum-connect__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* h2: clamp(24,3.6vw,30) / 1.15 / -0.01em (ac-h2 base carries the rest). */
.curriculum-connect__title {
  font-size: clamp(24px, 3.6vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.curriculum-beats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.curriculum-beat-pair {
  display: flex;
  align-items: center;
  gap: 8px;
}

.curriculum-beat {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #00789e;
  background: #ddf5fc;
  border-radius: 999px;
  padding: 8px 14px;
  margin: 0;
}

.curriculum-beat-arrow {
  color: #cdd4df;
  font-weight: 700;
  margin: 0;
}

.curriculum-connect__note {
  font-size: 14.5px;
  line-height: 1.6;
  color: #516078;
  margin: 0;
}

.curriculum-rules {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.curriculum-rule {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 18px 22px;
  background: #fff1cc;
  border-radius: 8px;
}

.curriculum-rule__num {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #9a6200;
  margin: 0;
}

.curriculum-rule__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.curriculum-rules__note {
  font-size: 14px;
  line-height: 1.55;
  color: #8b97aa;
  margin: 0;
}
