/* ============================================================
   About — page CSS
   Scope: .hcg-abt (page-about.php). Conditionally enqueued in
   hcg_assets() — loaded only on this page.

   Token-based only — no hardcoded surface/text colours. Accent
   tints use color-mix() over the brand tokens. Section rhythm:
   strict bg / surface alternation — the tone change is the
   separator.

   Reused from theme.css (NOT redefined here):
   .hcg-btn*, .hcg-grad, .hcg-eyebrow, .hcg-action-row
   ============================================================ */

/* ---------- Layout primitives ---------- */
.hcg-abt-band { padding: 96px 0; }
.hcg-abt-band--surface { background: var(--hcg-surface); }
.hcg-abt-wrap { max-width: var(--hcg-container-max, 1180px); margin: 0 auto; padding: 0 28px; }

/* Editorial kicker — small mono uppercase label used in every section */
.hcg-abt-kicker {
  font-family: var(--hcg-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--hcg-c1);
  display: inline-block;
}

/* ---------- 1 · Hero + Intro (centred, no portrait) ---------- */
.hcg-abt-hero {
  padding: 120px 0 96px;
  text-align: center;
}
.hcg-abt-hero .hcg-abt-kicker { margin-bottom: 26px; }
.hcg-abt-hero__title {
  font-family: var(--hcg-font-heading);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 0 auto;
  max-width: 22ch;
}
.hcg-abt-hero__sub {
  font-family: var(--hcg-font-heading);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  line-height: 1.24;
  color: var(--hcg-text-2);
  margin: 26px auto 0;
  max-width: 46ch;
}
.hcg-abt-hero__body {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--hcg-text-2);
  margin: 40px auto 0;
  max-width: 60ch;
}

/* ---------- 2 · Pull quote ---------- */
.hcg-abt-quote {
  padding: 96px 0;
  text-align: center;
}
.hcg-abt-quote__t {
  font-family: var(--hcg-font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.18;
  letter-spacing: -.01em;
  margin: 0 auto;
  max-width: 28ch;
  color: var(--hcg-text);
}
.hcg-abt-quote__t span {
  background: var(--hcg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- 3 · Twin tracks (The Colourist | The Builder) ---------- */
.hcg-abt-tracks { padding: 96px 0; }
.hcg-abt-tracks__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 76px);
}
.hcg-abt-track .hcg-abt-kicker { margin-bottom: 14px; }
.hcg-abt-track__t {
  font-family: var(--hcg-font-heading);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 22px;
}
.hcg-abt-track p {
  color: var(--hcg-text-2);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 16px;
}
.hcg-abt-track p:last-child { margin-bottom: 0; }
.hcg-abt-track b { color: var(--hcg-text); font-weight: 600; }

/* ---------- 4 · Milestones timeline ---------- */
.hcg-abt-timeline { padding: 96px 0; }
.hcg-abt-timeline__head { text-align: center; margin-bottom: 64px; }
.hcg-abt-timeline__head .hcg-abt-kicker { margin-bottom: 14px; }
.hcg-abt-timeline__h2 {
  font-family: var(--hcg-font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0;
}
.hcg-abt-tl {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
/* gradient spine */
.hcg-abt-tl::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--hcg-c1), var(--hcg-c2), var(--hcg-c3));
  opacity: .45;
}
.hcg-abt-tl-item {
  position: relative;
  padding-left: 84px;
  padding-bottom: 36px;
}
.hcg-abt-tl-item:last-child { padding-bottom: 0; }
.hcg-abt-tl-item__dot {
  position: absolute;
  left: 32px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--hcg-surface);
  border: 3px solid var(--hcg-c1);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hcg-c1) 16%, transparent);
}
.hcg-abt-band--surface .hcg-abt-tl-item__dot { background: var(--hcg-bg); }
.hcg-abt-tl-item:nth-child(2) .hcg-abt-tl-item__dot {
  border-color: var(--hcg-c2);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hcg-c2) 16%, transparent);
}
.hcg-abt-tl-item:nth-child(3) .hcg-abt-tl-item__dot {
  border-color: var(--hcg-c3);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hcg-c3) 16%, transparent);
}
.hcg-abt-tl-item:nth-child(4) .hcg-abt-tl-item__dot {
  border-color: var(--hcg-c1);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hcg-c1) 16%, transparent);
}
.hcg-abt-tl-item__y {
  font-family: var(--hcg-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--hcg-muted);
  display: block;
  margin-bottom: 6px;
}
.hcg-abt-tl-item__t {
  font-family: var(--hcg-font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 0 0 8px;
}
.hcg-abt-tl-item p {
  color: var(--hcg-text-2);
  font-size: .98rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- 5 · Manifesto ---------- */
.hcg-abt-manifesto { padding: 96px 0; }
.hcg-abt-manifesto__head { text-align: center; margin-bottom: 56px; }
.hcg-abt-manifesto__head .hcg-abt-kicker { margin-bottom: 14px; }
.hcg-abt-manifesto__h2 {
  font-family: var(--hcg-font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0;
}
.hcg-abt-mfn {
  max-width: 640px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.hcg-abt-mfn li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  align-items: flex-start;
  padding: 26px 0;
  border-top: 1px solid var(--hcg-border);
}
.hcg-abt-mfn li:first-child {
  border-top: 0;
  padding-top: 0;
}
.hcg-abt-mfn__n {
  font-family: var(--hcg-font-heading);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  background: var(--hcg-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hcg-abt-mfn__body h4 {
  font-family: var(--hcg-font-heading);
  font-weight: 700;
  font-size: 1.22rem;
  line-height: 1.2;
  margin: 0 0 8px;
}
.hcg-abt-mfn__body p {
  color: var(--hcg-text-2);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

/* ---------- 6 · Final CTA ---------- */
.hcg-abt-final {
  text-align: center;
  padding: 112px 0;
}
.hcg-abt-final__h2 {
  font-family: var(--hcg-font-heading);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 auto;
  max-width: 22ch;
}
.hcg-abt-final__sub {
  color: var(--hcg-text-2);
  margin: 18px auto 0;
  max-width: 46ch;
}
.hcg-abt-final .hcg-action-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hcg-abt-band { padding: 64px 0; }
  .hcg-abt-hero { padding: 84px 0 64px; }
  .hcg-abt-tracks__grid { grid-template-columns: 1fr; }
  .hcg-abt-tl::before { left: 28px; }
  .hcg-abt-tl-item { padding-left: 68px; }
  .hcg-abt-tl-item__dot { left: 20px; }
}
