/* =========================================================================
   ForgedFocus Coaching — Design System
   Concept: "The Forge" — metal shaped under heat and pressure.
   Iron surfaces, molten ember heat accent, calm steel secondary,
   cool smoke light sections. Archivo display / Figtree body / Plex Mono labels.
   ========================================================================= */

:root {
  /* Iron (dark surfaces) */
  --iron:        #16191D;
  --iron-2:      #1E232A;
  --iron-3:      #272E37;
  --iron-line:   rgba(255,255,255,.10);
  --iron-line-2: rgba(255,255,255,.18);

  /* Ember (heat / primary accent) */
  --ember:        #E9691B;
  --ember-bright: #F79A34;
  --ember-deep:   #C9530C;
  --ember-glow:   rgba(233,105,27,.42);

  /* Steel (calm / professional secondary) */
  --steel:        #5C7186;
  --steel-light:  #8698A9;
  --steel-deep:   #3B4753;

  /* Smoke (light surfaces) */
  --smoke:    #ECEDE9;
  --smoke-2:  #E2E4DF;
  --smoke-3:  #F5F6F3;
  --paper:    #FBFBF9;

  /* Text */
  --ink:      #14171B;
  --ink-soft: #3A4048;
  --ash:      #666D74;      /* muted on light */
  --ash-dark: #9BA3AB;      /* muted on dark  */
  --smoke-on-dark: #E7E9E5; /* body text on dark */

  --line-light: rgba(20,23,27,.12);

  --font-display: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  --wrap: 1180px;
  --radius: 4px;
  --radius-lg: 8px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 18px 50px -22px rgba(10,12,16,.55);
  --shadow-soft: 0 12px 34px -20px rgba(10,12,16,.4);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--smoke);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.04; margin: 0; letter-spacing: -.02em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

/* ---------- Utility: eyebrow / mono label ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--ember);
  display: inline-block;
  box-shadow: 0 0 10px var(--ember-glow);
}
.eyebrow.on-dark { color: var(--ember-bright); }
.eyebrow.center { justify-content: center; }

/* ---------- Signature: ember rule ---------- */
.ember-rule {
  height: 3px;
  width: 120px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--ember-bright), var(--ember) 45%, var(--ember-deep) 100%);
  box-shadow: 0 0 18px -2px var(--ember-glow), 0 0 4px var(--ember-glow);
  position: relative;
}
.ember-rule.wide { width: 100%; height: 2px; }
.ember-rule.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.btn:hover svg.arrow { transform: translateX(4px); }
.btn:focus-visible { outline: 2px solid var(--ember-bright); outline-offset: 3px; }

.btn-ember {
  background: var(--ember);
  color: #fff;
  box-shadow: 0 10px 28px -12px var(--ember-glow);
}
.btn-ember:hover { background: var(--ember-deep); transform: translateY(-2px); box-shadow: 0 16px 34px -12px var(--ember-glow); }

.btn-ghost {
  background: transparent;
  color: var(--smoke-on-dark);
  border-color: var(--iron-line-2);
}
.btn-ghost:hover { border-color: var(--ember); color: #fff; transform: translateY(-2px); }

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-light);
}
.btn-ghost-dark:hover { border-color: var(--ember); color: var(--ember-deep); transform: translateY(-2px); }

.btn-ink { background: var(--iron); color: #fff; }
.btn-ink:hover { background: var(--iron-3); transform: translateY(-2px); }

.btn-block { width: 100%; justify-content: center; }

/* text link with arrow */
.tlink {
  font-family: var(--font-mono);
  font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ember-deep);
  display: inline-flex; align-items: center; gap: .5em;
  border-bottom: 1px solid transparent;
  transition: gap .25s var(--ease), border-color .25s var(--ease);
  padding-bottom: 2px;
}
.tlink svg { width: 15px; height: 15px; }
.tlink:hover { gap: .85em; border-color: var(--ember); }
.tlink.on-dark { color: var(--ember-bright); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(18,21,25,.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--iron-line);
  transition: background .3s var(--ease);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 36px; width: auto; }
.brand:focus-visible { outline: 2px solid var(--ember-bright); outline-offset: 4px; border-radius: 3px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--font-mono);
  font-size: .78rem; font-weight: 500; letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ash-dark);
  padding: 9px 14px; border-radius: var(--radius);
  transition: color .2s var(--ease), background .2s var(--ease);
  position: relative;
}
.nav a:hover { color: #fff; }
.nav a.active { color: #fff; }
.nav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--ember); border-radius: 2px;
  box-shadow: 0 0 8px var(--ember-glow);
}

.header-right { display: flex; align-items: center; gap: 18px; }
.social { display: inline-flex; align-items: center; gap: 4px; }
.social a {
  width: 34px; height: 34px; display: grid; place-items: center;
  color: var(--ash-dark); border-radius: var(--radius);
  transition: color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.social a svg { width: 17px; height: 17px; }
.social a:hover { color: var(--ember-bright); background: var(--iron-2); transform: translateY(-1px); }
.header-right .social { padding-right: 4px; border-right: 1px solid var(--iron-line); }

.header-cta { display: inline-flex; }

/* hamburger */
.menu-toggle {
  display: none; background: transparent; border: 0; padding: 8px;
  color: #fff; border-radius: var(--radius);
}
.menu-toggle svg { width: 26px; height: 26px; }

/* ---------- Sections ---------- */
.section { padding: 104px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section.dark { background: var(--iron); color: var(--smoke-on-dark); }
.section.iron2 { background: var(--iron-2); color: var(--smoke-on-dark); }
.section.smoke { background: var(--smoke); color: var(--ink); }
.section.smoke3 { background: var(--smoke-3); color: var(--ink); }
.section.paper { background: var(--paper); color: var(--ink); }
.section.dark h2, .section.iron2 h2, .section.dark h3, .section.iron2 h3 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.section-head p { margin-top: 20px; font-size: 1.12rem; color: var(--ash); }
.section.dark .section-head p, .section.iron2 .section-head p { color: var(--ash-dark); }
.section-head .ember-rule { margin-top: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(12,14,18,.94) 0%, rgba(12,14,18,.78) 42%, rgba(12,14,18,.42) 100%),
    linear-gradient(0deg, rgba(12,14,18,.85) 0%, rgba(12,14,18,.1) 45%);
}
/* ember glow bleeding from lower-right, like forge light */
.hero::before {
  content: ""; position: absolute; z-index: -1;
  right: -8%; bottom: -18%;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, var(--ember-glow) 0%, rgba(233,105,27,0) 68%);
  filter: blur(8px); opacity: .8; pointer-events: none;
}
.hero-inner { padding: 130px 0 100px; max-width: 760px; }
.hero h1 {
  font-size: clamp(2.7rem, 7vw, 5rem);
  letter-spacing: -.03em;
  margin: 8px 0 0;
}
.hero h1 .ember { color: var(--ember-bright); }
.hero .lede {
  margin-top: 26px; font-size: clamp(1.08rem, 2vw, 1.32rem);
  color: #D9DDE0; max-width: 560px; line-height: 1.6;
}
.hero-actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta {
  margin-top: 52px; display: flex; flex-wrap: wrap; gap: 12px 34px;
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .05em;
  text-transform: uppercase; color: var(--ash-dark);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 8px var(--ember-glow); }

/* subpage hero (shorter) */
.hero.sub { min-height: 62vh; }
.hero.sub .hero-inner { padding: 120px 0 80px; }
.hero.sub h1 { font-size: clamp(2.4rem, 6vw, 4rem); }

/* ---------- Intro / mission strip ---------- */
.mission { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.mission-lead { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem,3vw,2.15rem); line-height: 1.18; letter-spacing: -.02em; }
.mission-lead .ember { color: var(--ember); }

/* ---------- Icon feature grid ---------- */
.icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.icon-card {
  background: var(--iron-2);
  border: 1px solid var(--iron-line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  position: relative; overflow: hidden;
}
.icon-card::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--ember-bright), var(--ember-deep));
  transform: scaleY(0); transform-origin: top; transition: transform .3s var(--ease);
}
.icon-card:hover { transform: translateY(-5px); border-color: var(--iron-line-2); background: var(--iron-3); }
.icon-card:hover::after { transform: scaleY(1); }
.icon-badge {
  width: 52px; height: 52px; border-radius: 10px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: rgba(233,105,27,.12);
  border: 1px solid rgba(233,105,27,.28);
  color: var(--ember-bright);
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-card h3 { font-size: 1.24rem; color: #fff; margin-bottom: 10px; letter-spacing: -.01em; }
.icon-card p { color: var(--ash-dark); font-size: .98rem; margin: 0; }

/* light-variant icon cards */
.icon-card.light { background: var(--paper); border-color: var(--line-light); }
.icon-card.light h3 { color: var(--ink); }
.icon-card.light p { color: var(--ash); }
.icon-card.light:hover { background: #fff; border-color: rgba(20,23,27,.2); }

/* ---------- Dual audience (work / home) ---------- */
.dual { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.dual-col {
  border-radius: var(--radius-lg); padding: 44px 40px;
  border: 1px solid var(--line-light);
  position: relative; overflow: hidden;
}
.dual-col .tag {
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 600;
}
.dual-col h3 { font-size: 1.6rem; margin: 14px 0 16px; }
.dual-col ul { list-style: none; margin: 20px 0 0; padding: 0; }
.dual-col li { position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--ink-soft); }
.dual-col li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 12px; height: 12px; border-radius: 2px; transform: rotate(45deg);
}
.dual-home { background: linear-gradient(160deg, #FBF2E9, #F6E7D6); border-color: rgba(233,105,27,.25); }
.dual-home .tag { color: var(--ember-deep); }
.dual-home li::before { background: var(--ember); }
.dual-work { background: linear-gradient(160deg, #EDF1F5, #DFE7EE); border-color: rgba(92,113,134,.3); }
.dual-work .tag { color: var(--steel-deep); }
.dual-work li::before { background: var(--steel); }

/* ---------- Split image + text ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.framed {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  box-shadow: var(--shadow);
}
.framed img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.framed.wide img { aspect-ratio: 3/2; }
.framed.square img { aspect-ratio: 1/1; }
/* ember corner accent */
.framed::before {
  content: ""; position: absolute; left: -1px; bottom: -1px; z-index: 2;
  width: 90px; height: 90px;
  border-left: 3px solid var(--ember); border-bottom: 3px solid var(--ember);
  border-bottom-left-radius: var(--radius-lg);
  box-shadow: -6px 6px 20px -10px var(--ember-glow);
}
.split-media .stat-chip {
  position: absolute; right: -16px; bottom: 30px; z-index: 3;
  background: var(--iron); color: #fff; padding: 18px 22px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--iron-line-2);
  max-width: 220px;
}
.stat-chip .n { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--ember-bright); display: block; }
.stat-chip .l { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ash-dark); }

/* ---------- Process: forging sequence ---------- */
.forge-seq { position: relative; display: flex; flex-direction: column; gap: 30px; }
.forge-seq::before {
  content: ""; position: absolute; left: 39px; top: 40px; bottom: 40px; width: 2px;
  background: linear-gradient(180deg, var(--ember-bright), var(--ember) 30%, var(--steel) 100%);
  opacity: .5;
}
.forge-step {
  display: grid; grid-template-columns: 80px 1fr; gap: 30px; align-items: start;
  position: relative;
}
.forge-node {
  width: 80px; height: 80px; border-radius: 14px; flex-shrink: 0;
  display: grid; place-items: center; position: relative; z-index: 2;
  background: var(--iron-2); border: 1px solid var(--iron-line-2);
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff;
  box-shadow: 0 0 0 6px var(--iron);
}
.forge-node .num { color: var(--ember-bright); }
.forge-node svg { width: 30px; height: 30px; color: var(--ember-bright); }
.forge-body {
  background: var(--iron-2); border: 1px solid var(--iron-line);
  border-radius: var(--radius-lg); padding: 30px 34px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.forge-body:hover { transform: translateX(4px); border-color: var(--iron-line-2); }
.forge-kicker { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ember-bright); }
.forge-body h3 { font-size: 1.5rem; color: #fff; margin: 8px 0 12px; }
.forge-body p { color: var(--ash-dark); margin: 0 0 14px; }
.forge-gain {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .04em;
  color: var(--smoke-on-dark);
  background: rgba(233,105,27,.1); border: 1px solid rgba(233,105,27,.24);
  padding: 7px 14px; border-radius: 40px;
}
.forge-gain svg { width: 14px; height: 14px; color: var(--ember-bright); flex: 0 0 auto; }

/* ---------- Program cards ---------- */
.programs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.program {
  background: var(--paper); border: 1px solid var(--line-light);
  border-radius: var(--radius-lg); padding: 38px 32px 34px;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden;
}
.program-top { height: 4px; margin: -38px -32px 30px; background: var(--steel); }
.program:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(20,23,27,.18); }
.program.feature { background: var(--iron); border-color: var(--iron-line-2); color: var(--smoke-on-dark); box-shadow: var(--shadow); }
.program.feature .program-top { background: linear-gradient(90deg,var(--ember-bright),var(--ember-deep)); }
.program.feature h3 { color: #fff; }
.program.feature .program-tier { color: var(--ember-bright); }
.program.feature li { color: var(--smoke-on-dark); }
.program.feature .program-note { color: var(--ash-dark); border-color: var(--iron-line); }
.program-badge {
  align-self: flex-start; font-family: var(--font-mono); font-size: .64rem;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  background: var(--ember); color: #fff; padding: 5px 11px; border-radius: 30px; margin-bottom: 16px;
}
.program-tier { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--steel-deep); font-weight: 600; }
.program h3 { font-size: 1.4rem; margin: 10px 0 6px; letter-spacing: -.01em; }
.program-sub { font-size: .96rem; color: var(--ash); font-style: italic; margin-bottom: 22px; }
.program.feature .program-sub { color: var(--ash-dark); }
.program ul { list-style: none; margin: 0 0 26px; padding: 0; flex-grow: 1; }
.program li { position: relative; padding-left: 26px; margin-bottom: 12px; font-size: .96rem; color: var(--ink-soft); }
.program li svg { position: absolute; left: 0; top: 4px; width: 16px; height: 16px; color: var(--ember); }
.program-note {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .05em; text-transform: uppercase;
  color: var(--ash); padding-top: 18px; border-top: 1px solid var(--line-light); margin-bottom: 20px;
}

/* ---------- CTA band ---------- */
.cta-band { position: relative; color: #fff; overflow: hidden; isolation: isolate; padding: 108px 0; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,14,18,.95) 0%, rgba(12,14,18,.8) 50%, rgba(12,14,18,.6) 100%); }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.cta-band .ember { color: var(--ember-bright); }

/* ---------- Form ---------- */
.form-card {
  background: var(--iron-2); border: 1px solid var(--iron-line-2);
  border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow);
}
.form-card.light { background: #fff; border-color: var(--line-light); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; font-weight: 600; color: var(--ash-dark);
}
.form-card.light .field label { color: var(--ash); }
.field label .req { color: var(--ember); }
.field label .opt { color: var(--ash); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: 13px 15px; border-radius: var(--radius);
  background: var(--iron); color: #fff;
  border: 1px solid var(--iron-line-2);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.form-card.light .field input, .form-card.light .field select, .form-card.light .field textarea {
  background: var(--smoke-3); color: var(--ink); border-color: var(--line-light);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(233,105,27,.18);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ash-dark); }
.form-card.light input::placeholder, .form-card.light textarea::placeholder { color: #A7AEB4; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239BA3AB' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.form-note { font-size: .82rem; color: var(--ash-dark); margin-top: 4px; }
.form-card.light .form-note { color: var(--ash); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status { display: none; padding: 14px 18px; border-radius: var(--radius); font-size: .95rem; margin-top: 4px; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(72,150,90,.15); border: 1px solid rgba(72,150,90,.4); color: #A6E0B4; }
.form-status.err { background: rgba(210,80,50,.14); border: 1px solid rgba(210,80,50,.4); color: #F0B4A5; }
.form-card.light .form-status.ok { background: #E7F4EA; border-color: #B6DCC0; color: #2C6B3D; }
.form-card.light .form-status.err { background: #FBE9E4; border-color: #E6BEB2; color: #B23A1E; }

/* ---------- Steps (what happens next) ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; counter-reset: step; }
.step { padding: 30px 28px; border-radius: var(--radius-lg); border: 1px solid var(--line-light); background: var(--paper); position: relative; }
.step .snum { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--ember); line-height: 1; }
.step h3 { font-size: 1.15rem; margin: 12px 0 8px; }
.step p { color: var(--ash); font-size: .96rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line-light);
  padding: 6px 0;
}
.faq.on-dark details { border-color: var(--iron-line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; color: var(--ink);
  letter-spacing: -.01em;
}
.faq.on-dark summary { color: #fff; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  margin-top: -6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E9691B' stroke-width='2.5'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ash); padding: 0 44px 24px 0; margin: 0; }
.faq.on-dark details p { color: var(--ash-dark); }

/* ---------- Bio manifesto ---------- */
.manifesto { text-align: center; max-width: 760px; margin-inline: auto; }
.manifesto .big {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem); line-height: 1.05; color: #fff;
}
.manifesto .big .ember { color: var(--ember-bright); }
.manifesto .lines { margin-top: 34px; display: inline-flex; flex-direction: column; gap: 4px; }
.manifesto .lines span {
  font-family: var(--font-mono); font-size: 1rem; letter-spacing: .04em;
  color: var(--ash-dark);
}
.manifesto .lines span b { color: var(--ember-bright); font-weight: 600; }

/* ---------- Value list (bio) ---------- */
.values { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.value { display: flex; gap: 18px; padding: 26px; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line-light); }
.value .icon-badge { flex-shrink: 0; background: rgba(233,105,27,.1); color: var(--ember-deep); border-color: rgba(233,105,27,.24); margin: 0; }
.value h3 { font-size: 1.14rem; margin-bottom: 6px; }
.value p { color: var(--ash); font-size: .96rem; margin: 0; }

/* ---------- Contact aside ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem,4vw,2.8rem); }
.contact-line { display: flex; gap: 16px; align-items: flex-start; margin-top: 26px; }
.contact-line .icon-badge { margin: 0; flex-shrink: 0; width: 46px; height: 46px; }
.contact-line .icon-badge svg { width: 22px; height: 22px; }
.contact-line .cl-label { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ember-bright); }
.contact-line .cl-value { font-size: 1.06rem; color: #fff; margin-top: 2px; }
.contact-line a.cl-value:hover { color: var(--ember-bright); }
.section.smoke .contact-line .cl-value { color: var(--ink); }
.section.smoke .contact-line .icon-badge { background: rgba(233,105,27,.1); color: var(--ember-deep); border-color: rgba(233,105,27,.24); }

/* ---------- Footer ---------- */
.site-footer { background: #101317; color: var(--ash-dark); padding: 72px 0 30px; border-top: 1px solid var(--iron-line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 42px; margin-bottom: 20px; }
.footer-brand p { max-width: 300px; font-size: .96rem; color: var(--ash-dark); margin-bottom: 22px; }
.footer-col h4 { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: .96rem; color: var(--ash-dark); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--ember-bright); }
.footer-social { display: flex; gap: 8px; margin-top: 4px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: var(--radius); display: grid; place-items: center;
  background: var(--iron-2); color: var(--ash-dark); border: 1px solid var(--iron-line);
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { color: var(--ember-bright); border-color: var(--ember); transform: translateY(-2px); }
.footer-bottom {
  margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--iron-line);
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
  font-size: .84rem; color: var(--ash-dark);
}
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--ember-bright); }
.trademark { color: var(--ash-dark); }

/* ---------- Scroll to top ---------- */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 70;
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--ember); color: #fff; border: 0;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -10px var(--ember-glow);
  opacity: 0; visibility: hidden; transform: translateY(14px) scale(.9);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background .2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.to-top:hover { background: var(--ember-deep); transform: translateY(-2px); }
.to-top svg { width: 22px; height: 22px; }
.to-top:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .programs { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .split-media { max-width: 460px; }
  .mission { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Header collapses to the mobile menu early enough that the full-width logo
   never crowds the nav/CTA on tablet widths. */
@media (max-width: 900px) {
  .nav, .header-cta, .header-right .social { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-right { gap: 8px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .section-sm { padding: 56px 0; }
  .dual { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .split-media .stat-chip { right: 12px; }
  .hero { min-height: 88vh; }
}

/* mobile nav drawer — global so it stays out of document flow at every width */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90; background: rgba(16,19,23,.98);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; padding: 26px 24px;
  opacity: 0; visibility: hidden; transition: opacity .28s var(--ease), visibility .28s var(--ease);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav .mn-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-nav .mn-head img { height: 38px; width: auto; }
.mobile-nav .mn-close { background: transparent; border: 0; color: #fff; padding: 8px; cursor: pointer; }
.mobile-nav .mn-close svg { width: 28px; height: 28px; }
.mobile-nav a.mn-link {
  font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: #fff;
  padding: 16px 0; border-bottom: 1px solid var(--iron-line); letter-spacing: -.01em;
}
.mobile-nav a.mn-link:hover { color: var(--ember-bright); }
.mobile-nav .mn-cta { margin-top: 32px; }
.mobile-nav .mn-social { display: flex; gap: 10px; margin-top: 30px; }
.mobile-nav .mn-social a { width: 44px; height: 44px; border-radius: var(--radius); display: grid; place-items: center; background: var(--iron-2); color: var(--ash-dark); border: 1px solid var(--iron-line); flex: 0 0 auto; }
.mobile-nav .mn-social a svg { width: 20px; height: 20px; }
.mobile-nav .mn-social a:hover { color: var(--ember-bright); }

@media (max-width: 480px) {
  .wrap { padding-inline: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .forge-gain { align-items: flex-start; border-radius: 16px; line-height: 1.55; font-size: .74rem; letter-spacing: .02em; }
  .forge-gain svg { margin-top: 3px; }
  .forge-gain strong { white-space: nowrap; }
  .form-card { padding: 26px 22px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .icon-grid { grid-template-columns: 1fr; }
  .forge-step { grid-template-columns: 60px 1fr; gap: 18px; }
  .forge-node { width: 60px; height: 60px; font-size: 1.2rem; }
  .forge-seq::before { left: 29px; }
  .forge-body { padding: 24px; }
  .to-top { right: 16px; bottom: 16px; }
}

/* =========================================================================
   Newsletter — footer band + signup popup
   ========================================================================= */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Footer newsletter band */
.footer-news {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 40px;
  flex-wrap: wrap; padding-bottom: 44px; margin-bottom: 44px;
  border-bottom: 1px solid var(--iron-line);
}
.footer-news .fn-copy h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: #fff; margin-bottom: 6px; letter-spacing: -.01em; }
.footer-news .fn-copy p { color: var(--ash-dark); max-width: 430px; margin: 0; }
.fn-form { width: 100%; max-width: 430px; }
.fn-row { display: flex; gap: 10px; }
.fn-row input { flex: 1 1 auto; min-width: 0; padding: 13px 16px; border-radius: var(--radius); background: var(--iron-2); border: 1px solid var(--iron-line); color: #fff; font: inherit; font-size: .98rem; }
.fn-row input::placeholder { color: var(--ash-dark); }
.fn-row input:focus { outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px var(--ember-glow); }
.fn-row .btn { flex: 0 0 auto; }
.fn-consent { font-size: .76rem; color: var(--ash-dark); margin-top: 12px; line-height: 1.5; }
.fn-status { margin-top: 12px; }

/* Signup popup */
.nl-modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 24px; }
.nl-modal.open { display: flex; }
.nl-backdrop { position: absolute; inset: 0; background: rgba(8,10,13,.72); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); animation: nlFade .28s ease; }
.nl-card {
  position: relative; z-index: 1; width: 100%; max-width: 460px;
  background: var(--iron-2); border: 1px solid var(--iron-line);
  border-radius: calc(var(--radius) * 1.5); padding: 42px 38px 34px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.75); animation: nlPop .34s var(--ease);
}
.nl-card .eyebrow { margin-bottom: 14px; }
.nl-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.85rem; color: #fff; letter-spacing: -.02em; line-height: 1.1; }
.nl-sub { color: var(--ash-dark); margin: 12px 0 22px; }
.nl-form input[type="email"] { width: 100%; padding: 15px 16px; border-radius: var(--radius); background: var(--iron-3); border: 1px solid var(--iron-line); color: #fff; font: inherit; font-size: 1rem; margin-bottom: 14px; }
.nl-form input[type="email"]::placeholder { color: var(--ash-dark); }
.nl-form input[type="email"]:focus { outline: none; border-color: var(--ember); box-shadow: 0 0 0 3px var(--ember-glow); }
.nl-consent { font-size: .76rem; color: var(--ash-dark); margin-top: 14px; line-height: 1.55; }
.nl-status { margin-top: 14px; }
.nl-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; display: grid; place-items: center; background: transparent; border: 0; color: var(--ash-dark); cursor: pointer; border-radius: 8px; }
.nl-close:hover { color: #fff; background: var(--iron-3); }
@keyframes nlFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes nlPop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .nl-backdrop, .nl-card { animation: none; } }

@media (max-width: 620px) {
  .footer-news { flex-direction: column; gap: 22px; }
  .fn-form { max-width: 100%; }
  .nl-card { padding: 34px 24px 28px; }
  .nl-card h3 { font-size: 1.6rem; }
}

/* Who We Help checklist */
.checklist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 44px; max-width: 940px; margin: 0 auto; padding: 0; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist li svg { width: 22px; height: 22px; color: var(--ember); flex: 0 0 auto; margin-top: 3px; }
.checklist li span { color: var(--ink); font-size: 1.02rem; line-height: 1.5; }
@media (max-width: 760px) { .checklist { grid-template-columns: 1fr; gap: 14px; max-width: 540px; } }

/* Deliverable chip (Forged Process) */
.deliverable { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; padding: 8px 16px; border-radius: 40px; background: var(--ember); color: #fff; font-family: var(--font-mono); font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.deliverable svg { width: 15px; height: 15px; }
.forge-body .deliverable { color: #fff; }

/* Forged Process stage sub-points */
.forge-points { list-style: none; padding: 0; margin: 14px 0 6px; display: flex; flex-direction: column; gap: 8px; }
.forge-points li { position: relative; padding-left: 22px; color: var(--ash-dark); font-size: .98rem; line-height: 1.5; }
.forge-points li::before { content: ""; position: absolute; left: 3px; top: 8px; width: 7px; height: 7px; border-radius: 2px; background: var(--ember); transform: rotate(45deg); }
