/* =========================================
   iAngie.com — Shared Design System
   Angie Carrillo. Founder and angel investor.
   ========================================= */

@font-face {
  font-family: "Freight Big Pro";
  src: url("/assets/fonts/Headings_Freightbig_pro_book-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Freight Big Pro";
  src: url("/assets/fonts/Headings_Freightbig_pro_light_italic-webfont.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("/assets/fonts/Text_proximanova-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("/assets/fonts/Subheadings_proximanova-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Commuters Sans";
  src: url("/assets/fonts/Buttons_commuterssans-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* palette — Angie Carrillo brand guide */
  --bg: #F2EDE6;         /* Linen */
  --bg-alt: #D8C8B0;     /* Champagne */
  --bg-deep: #C5B4A5;    /* Greige */
  --card: #FFFFFF;
  --ink: #0A0A0A;        /* Black */
  --body: #2A2A28;       /* Charcoal */
  --muted: #9C8872;      /* Cocoa */
  --accent: #9D7C5E;     /* Bronze */
  --accent-deep: #4A2C1A;/* Espresso */
  --accent-dark: #4A2C1A;
  --line: #D8C8B0;       /* Champagne */
  --chip: #D8C8B0;
  --sand: #B0A290;       /* Sandy Taupe */
  --success: #1A6B30;    /* Emerald */
  --warn: #B5895C;       /* warm tan */
  --danger: #9C5B4A;

  /* type */
  --serif: "Freight Big Pro", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Proxima Nova", "Commuters Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* sizing */
  --radius: 10px;
  --radius-lg: 16px;
  --maxw: 1120px;
  --maxw-narrow: 780px;
}

/* ---------- reset + base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}
h1 { font-size: clamp(40px, 6vw, 72px); letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
h4 { font-size: 20px; }

/* Accent italic inside headings — Freight Big Pro Light Italic */
h1 em, h2 em, h3 em, h4 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}
p { margin: 0 0 16px; }
a {
  color: var(--accent-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(139,111,71,0.35);
  transition: border-color 0.15s, color 0.15s;
}
a:hover { border-bottom-color: var(--accent-deep); color: var(--accent-dark); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 18px;
}

/* ---------- topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: saturate(1.2) blur(8px);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  border: none;
  letter-spacing: -0.01em;
}
.brand span { color: var(--accent-deep); font-style: italic; }
.brand:hover { color: var(--accent-deep); }

.nav {
  display: flex; align-items: center; gap: 22px;
}
.nav a {
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--body);
  border: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav a:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }
.nav a.active { color: var(--ink); border-bottom-color: var(--accent); }

.nav-cta {
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff !important;
  border-radius: var(--radius);
  border: none;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--accent-deep); color: #fff !important; }

.hamburger {
  display: none;
  border: none;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
  color: var(--ink);
  padding: 4px 8px;
}

@media (max-width: 920px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 24px; border-bottom: 1px solid var(--line); }
  .nav a.active { border-bottom: 1px solid var(--line); background: var(--bg-alt); }
  .nav-cta { margin: 10px 24px; text-align: center; }
  .hamburger { display: block; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Commuters Sans", var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.08s, background 0.15s, color 0.15s;
  text-decoration: none;
}
.btn-lg { padding: 20px 32px; font-size: 15px; letter-spacing: 0.16em; }
.btn-sm { padding: 10px 16px; font-size: 12px; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: #fff !important; border: none; }
.btn-primary:hover { background: var(--accent-deep); border: none; color: #fff !important; }
.btn-secondary {
  background: transparent; color: var(--ink) !important;
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: #fff !important; }
.btn-ghost {
  background: transparent; color: var(--accent-deep) !important;
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--accent-deep); background: var(--bg-alt); }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- hero ---------- */
.hero {
  padding: clamp(60px, 10vw, 120px) 0 clamp(50px, 8vw, 90px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(176,137,104,0.18) 0%, rgba(176,137,104,0) 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 860px; }
.hero h1 { margin-bottom: 24px; }
.hero .lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--body);
  max-width: 680px;
  margin-bottom: 36px;
}
.hero .lede strong { color: var(--ink); font-weight: 600; }

/* ---------- optin form ---------- */
.optin {
  display: flex; gap: 10px; flex-wrap: wrap;
  max-width: 560px;
  margin-bottom: 14px;
}
.optin.centered { margin-left: auto; margin-right: auto; justify-content: center; }
.optin input[type="email"] {
  flex: 1 1 260px;
  padding: 16px 18px;
  font-size: 16px;
  font-family: var(--sans);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.optin input[type="email"]:focus { border-color: var(--accent); }
.optin button {
  flex: 0 0 auto;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s;
}
.optin button:hover { background: var(--accent-deep); }
.trust {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0;
}
.trust::before { content: "\2713 "; color: var(--success); font-weight: 700; }

.success-msg {
  display: none;
  background: rgba(74, 124, 89, 0.1);
  border: 1px solid var(--success);
  padding: 18px 20px;
  border-radius: var(--radius);
  color: var(--success);
  font-weight: 600;
  max-width: 560px;
  margin-bottom: 14px;
}
.success-msg.show { display: block; }

/* ---------- proof bar ---------- */
.hero-proof {
  display: flex; flex-wrap: wrap; gap: 28px 40px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 920px;
}
.proof-stat { flex: 0 0 auto; }
.proof-stat .num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.proof-stat .label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
  margin-top: 20px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
}
.stat-card .num {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.stat-card .label {
  font-size: 14px;
  color: var(--muted);
}

/* ---------- section rhythm ---------- */
section.block {
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid var(--line);
}
section.block.alt { background: var(--bg-alt); }
section.block.dark { background: var(--ink); color: #fff; border-top: none; }
section.block.dark h1,
section.block.dark h2,
section.block.dark h3 { color: #fff; }
section.block.dark .eyebrow { color: var(--accent); }
section.block.dark p { color: rgba(255,255,255,0.85); }

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head p.lead {
  font-size: 19px;
  color: var(--body);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- problem block ---------- */
.problem-body p {
  font-size: 19px;
  line-height: 1.55;
  max-width: 720px;
}
.problem-body p + p { margin-top: 12px; }
.problem-body .punch {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.3;
  color: var(--ink);
  margin-top: 28px;
  padding-left: 22px;
  border-left: 3px solid var(--accent);
  max-width: 680px;
}

/* ---------- cards grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.15s, transform 0.1s;
}
.card:hover { border-color: var(--accent); }
.card .tag {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p.small { font-size: 15px; color: var(--muted); margin: 0; }
.card ul.bullets {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--body);
}
.card ul.bullets li {
  padding: 4px 0 4px 18px;
  position: relative;
}
.card ul.bullets li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ---------- framework tag ---------- */
.framework-tag {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 20px;
}
.framework-tag span { color: var(--accent-deep); display: block; }

/* ---------- who-for two-col ---------- */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.who-col h3 { font-size: 24px; margin-bottom: 16px; }
.who-col ul { margin: 0; padding: 0; list-style: none; }
.who-col li {
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.who-col li:last-child { border-bottom: none; }
.who-col.yes li::before {
  content: "\2713";
  position: absolute; left: 0;
  color: var(--success);
  font-weight: 700;
}
.who-col.no li::before {
  content: "\00D7";
  position: absolute; left: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

/* ---------- testimonial ---------- */
.testimonial {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 64px);
}
.testimonial .quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  font-style: italic;
  color: #fff;
  margin-bottom: 24px;
}
.testimonial .quote::before { content: "\201C"; color: var(--accent); margin-right: 4px; }
.testimonial .quote::after { content: "\201D"; color: var(--accent); margin-left: 4px; }
.testimonial .attrib {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}
.testimonial .attrib strong { color: #fff; }
.lang-toggle {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
}
.lang-toggle:hover { border-color: var(--accent); color: #fff; }

/* ---------- logos ---------- */
.logos {
  display: flex; flex-wrap: wrap;
  gap: 28px 44px;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.logos .logo {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* ---------- bio split ---------- */
.bio {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.bio-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-alt), var(--chip));
  border-radius: 12px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  text-align: center;
  padding: 20px;
}
.bio-body h2 { margin-bottom: 20px; }
.bio-body p { font-size: 17px; }
.bio-body .sig {
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}

/* ---------- FAQ ---------- */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  user-select: none;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 300;
  color: var(--accent-deep);
  transition: transform 0.2s;
}
details[open] .faq-q::after { content: "\2212"; }
.faq-a {
  margin-top: 14px;
  font-size: 16px;
  color: var(--body);
  max-width: 720px;
}

/* ---------- final CTA ---------- */
.final {
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  padding: clamp(70px, 10vw, 120px) 0;
  text-align: center;
  border-top: 1px solid var(--line);
}
.final h2 { max-width: 760px; margin: 0 auto 20px; }
.final p.lead {
  font-size: 19px; color: var(--body);
  max-width: 620px; margin: 0 auto 36px;
}
.final .optin { margin: 0 auto 14px; justify-content: center; }

/* ---------- three paths (work with me) ---------- */
.paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.path {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex; flex-direction: column;
}
.path.featured {
  border-color: var(--accent);
  position: relative;
}
.path.featured::before {
  content: "Recommended";
  position: absolute;
  top: -12px; left: 30px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.path .price {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--ink);
  display: block;
  margin: 0 0 6px;
  line-height: 1;
}
.path .price-sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.path h3 { font-size: 24px; margin-bottom: 14px; }
.path ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  flex-grow: 1;
}
.path ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px dashed var(--line);
}
.path ul li:last-child { border-bottom: none; }
.path ul li::before {
  content: "\2713";
  position: absolute; left: 0;
  color: var(--success);
  font-weight: 700;
}
.path .btn { width: 100%; text-align: center; }

/* ---------- post cards (writing) ---------- */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.post-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.15s;
}
.post-card:hover { border-color: var(--accent); }
.post-card .meta {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.post-card h3 { font-size: 22px; margin-bottom: 10px; }
.post-card h3 a { color: var(--ink); border: none; }
.post-card h3 a:hover { color: var(--accent-deep); }
.post-card p { color: var(--body); font-size: 15px; margin-bottom: 12px; }
.post-card .read-more {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  border: none;
}

/* ---------- contact form ---------- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: var(--sans);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* ---------- quiz ---------- */
.quiz-intro {
  text-align: center;
  padding: clamp(60px, 10vw, 120px) 0;
}
.quiz-intro h1 { max-width: 820px; margin: 0 auto 24px; }
.quiz-intro p.lead {
  font-size: 19px; color: var(--body);
  max-width: 620px; margin: 0 auto 36px;
}

.quiz-progress {
  position: sticky; top: 62px; z-index: 20;
  background: var(--bg);
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--line);
}
.quiz-progress-inner {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; gap: 16px;
}
.quiz-progress .count {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.quiz-progress .bar {
  flex: 1;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.quiz-progress .bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.quiz-step {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: none;
}
.quiz-step.active { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.quiz-step .dim-tag {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 12px;
}
.quiz-step h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 28px; }

.q-options { list-style: none; margin: 0; padding: 0; }
.q-option {
  display: block;
  margin-bottom: 12px;
}
.q-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.q-option label {
  display: block;
  padding: 18px 22px;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 16px;
  line-height: 1.45;
  color: var(--body);
  transition: border-color 0.15s, background 0.15s, transform 0.05s;
}
.q-option label:hover { border-color: var(--accent); background: var(--bg-alt); }
.q-option input[type="radio"]:checked + label {
  border-color: var(--accent);
  background: var(--bg-alt);
  color: var(--ink);
  font-weight: 500;
}

.quiz-actions {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 32px;
}
.quiz-actions .btn-back {
  background: transparent; color: var(--muted);
  border: 1px solid var(--line);
  padding: 14px 22px;
  font-weight: 500;
}
.quiz-actions .btn-back:hover { color: var(--ink); border-color: var(--ink); }
.quiz-actions .btn-next { min-width: 160px; }
.quiz-actions .btn-next:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* results */
.results {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: 60px 24px 80px;
  display: none;
}
.results.active { display: block; }
.results-tier {
  text-align: center;
  padding: 40px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}
.results-tier .tier-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.results-tier.low .tier-badge { background: rgba(156,91,74,0.15); color: var(--danger); }
.results-tier.mid .tier-badge { background: rgba(193,149,83,0.15); color: var(--warn); }
.results-tier.high .tier-badge { background: rgba(74,124,89,0.15); color: var(--success); }
.results-tier .score {
  font-family: var(--serif);
  font-size: clamp(60px, 10vw, 100px);
  color: var(--ink);
  line-height: 1;
  margin: 10px 0;
  display: block;
}
.results-tier .verdict {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
  margin-top: 10px;
}
.results-tier p { max-width: 480px; margin: 16px auto 0; font-size: 16px; }

.breakdown {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 28px;
}
.breakdown h3 { font-size: 22px; margin-bottom: 24px; }
.dim-row {
  display: grid;
  grid-template-columns: 100px 1fr 50px;
  gap: 14px;
  align-items: center;
  padding: 8px 0;
}
.dim-row .dim-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.dim-row .dim-bar {
  height: 8px; background: var(--line); border-radius: 4px; overflow: hidden;
}
.dim-row .dim-fill { height: 100%; background: var(--accent); border-radius: 4px; }
.dim-row .dim-fill.low { background: var(--danger); }
.dim-row .dim-fill.mid { background: var(--warn); }
.dim-row .dim-fill.high { background: var(--success); }
.dim-row .dim-pct { font-size: 14px; color: var(--muted); text-align: right; font-weight: 600; }

.recs { margin-bottom: 28px; }
.rec-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex; gap: 14px;
  align-items: flex-start;
}
.rec-item:last-child { border-bottom: none; }
.rec-num {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--accent-deep);
  flex: 0 0 30px;
  line-height: 1;
}
.rec-body strong { color: var(--ink); display: block; margin-bottom: 4px; }
.rec-body p { font-size: 15px; color: var(--body); margin: 0; }

.results-cta {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.results-cta h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.results-cta p { color: rgba(255,255,255,0.85); margin-bottom: 24px; max-width: 440px; margin-left: auto; margin-right: auto; }
.results-cta .btn { background: var(--accent); color: #fff !important; }
.results-cta .btn:hover { background: var(--accent-deep); }

/* ---------- footer ---------- */
footer {
  padding: 50px 0 60px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.foot {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 36px;
}
.foot h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.foot .mark { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-bottom: 6px; }
.foot .tag { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot ul li { margin-bottom: 8px; }
.foot ul a { font-size: 14px; color: var(--body); border: none; }
.foot ul a:hover { color: var(--accent-deep); }

.foot-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap;
  font-size: 13px; color: var(--muted); gap: 14px;
}

@media (max-width: 720px) {
  .foot { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .foot { grid-template-columns: 1fr; }
}

/* ---------- utilities ---------- */
.hidden { display: none !important; }
.center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

@media (max-width: 760px) {
  .bio { grid-template-columns: 1fr; gap: 28px; }
  .who-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-proof { gap: 22px 28px; }
  .proof-stat .num { font-size: 28px; }
  .topbar-inner { padding: 10px 16px; }
  .nav-cta { padding: 8px 14px; font-size: 11px; }
  .dim-row { grid-template-columns: 90px 1fr 44px; }
}

/* ---------- hero media ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,27,18,0.25) 0%, rgba(36,27,18,0.55) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  padding: 120px 24px 80px;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  color: #FFFFFF;
  max-width: 18ch;
}
.hero-portrait {
  position: relative;
}
.hero-portrait img {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.55);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.hero-inner h1 {
  color: #FFFFFF;
  max-width: 18ch;
}
.hero-inner h1 em { font-style: italic; font-weight: 300; }
.hero-inner .lede,
.hero-inner .eyebrow { color: rgba(255,255,255,0.92); }
.hero-inner .eyebrow { color: #E6DED0; }
.hero-inner .btn-ghost {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.6);
}
.hero-inner .btn-ghost:hover { background: rgba(255,255,255,0.12); }
.hero-proof {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 28px 44px;
}
.hero-proof .proof-stat { display: flex; flex-direction: column; }
.hero-proof .num { font-family: var(--serif); font-size: 34px; color: #FFFFFF; line-height: 1; }
.hero-proof .label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-top: 6px; }

/* ---------- bio + portrait ---------- */
.bio-portrait {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.bio-portrait img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -30px rgba(36,27,18,0.35);
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-portrait img { max-width: 320px; margin: 0 auto; }
}
@media (max-width: 760px) {
  .bio-portrait { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: 80vh; }
  .hero-inner { padding: 100px 20px 60px; }
  .hero-proof .num { font-size: 26px; }
}

/* ---------- framework gif band ---------- */
.gif-band {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}
.gif-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

/* ---------- testimonial photo ---------- */
.testimonial { text-align: center; }
.testimonial .quote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial .attrib { color: var(--muted); font-size: 15px; }
.testimonial .lang-toggle {
  display: inline-block;
  margin-top: 10px;
  background: transparent;
  border: none;
  color: var(--accent-deep);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1px solid var(--accent-deep);
  padding: 0 0 2px;
}

/* ---------- framework article layout ---------- */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.article .meta {
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.article h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 28px; }
.article h2 { font-size: clamp(24px, 3vw, 32px); margin-top: 56px; margin-bottom: 16px; }
.article h3 { font-size: 22px; margin-top: 36px; margin-bottom: 12px; }
.article p { font-size: 18px; line-height: 1.7; margin-bottom: 22px; color: var(--body); }
.article ol, .article ul {
  font-size: 17px; line-height: 1.7; color: var(--body);
  padding-left: 24px; margin-bottom: 28px;
}
.article li { margin-bottom: 10px; }
.article blockquote {
  margin: 40px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  line-height: 1.4;
  color: var(--ink);
  background: var(--bg-alt);
}
.article blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.article .checklist {
  list-style: none;
  padding: 0;
}
.article .checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
}
.article .checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 16px; height: 16px;
  border: 1.5px solid var(--accent);
  border-radius: 3px;
}
.article .source-cta {
  margin-top: 64px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--card);
}
.article .source-cta p { margin-bottom: 16px; }
.article .back-link {
  display: inline-block;
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: none;
  margin-bottom: 40px;
}
.article .back-link:hover { color: var(--accent-deep); border: none; }

/* ---------- site footer (editorial grid) ---------- */
.site-footer {
  background: var(--bg);
  padding: 96px 0 24px;
  margin-top: 40px;
}
.footer-main {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  align-items: start;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer-logo {
  display: inline-block;
  align-self: flex-start;
  background: transparent;
  color: var(--ink) !important;
  padding: 0;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 300;
  font-size: 52px;
  line-height: 1;
  border: none !important;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-logo span { font-style: italic; }
.footer-logo:hover { color: var(--accent-deep) !important; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav a {
  font-family: "Commuters Sans", var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border: none !important;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--accent); }
.footer-contact {
  display: block;
  background: #FFFFFF;
  color: var(--ink) !important;
  padding: 18px 32px;
  font-family: "Commuters Sans", var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none !important;
  border-radius: 2px;
  text-align: center;
  max-width: 280px;
  transition: background 0.15s, color 0.15s;
}
.footer-contact:hover { background: var(--ink); color: #FFFFFF !important; }
.footer-tagline {
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
  max-width: 280px;
  margin: 0;
}
.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}
.footer-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.footer-bottom {
  max-width: 1280px;
  margin: 60px auto 0;
  padding: 28px 48px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.footer-handle {
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--muted);
}
.footer-socials {
  display: flex;
  gap: 22px;
  justify-content: center;
}
.footer-socials a {
  color: var(--accent);
  border: none !important;
  display: inline-flex;
  transition: color 0.15s;
}
.footer-socials a:hover { color: var(--ink); }
.footer-socials svg { width: 22px; height: 22px; }
.footer-legal {
  font-family: "Commuters Sans", var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}
.footer-legal a {
  color: var(--muted);
  border: none !important;
}
.footer-legal a:hover { color: var(--ink); }

@media (max-width: 960px) {
  .footer-main { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .footer-logo { font-size: 42px; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; gap: 18px; padding: 24px 24px 0; }
  .footer-handle, .footer-legal { text-align: center; }
}
@media (max-width: 520px) {
  .footer-gallery { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 64px 0 24px; }
}

/* ---------- socialize dark band ---------- */
.socialize-band {
  background: var(--ink);
  color: #FFFFFF;
  padding: 96px 24px 80px;
  margin: -96px 0 72px;
  text-align: center;
}
.socialize-inner {
  max-width: 720px;
  margin: 0 auto;
}
.socialize-band .eyebrow {
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3em;
  margin-bottom: 8px;
}
.socialize-band h2 {
  color: #FFFFFF;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.socialize-blurb {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 44px;
}
.socialize-links {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.socialize-links a {
  flex: 1 1 auto;
  min-width: 140px;
  padding: 0 28px;
  border: none !important;
  border-right: 1px solid rgba(255,255,255,0.22) !important;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}
.socialize-links a:last-child { border-right: none !important; }
.socialize-links a:hover { color: var(--accent); }
.socialize-links .word {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 400;
  line-height: 1;
}
.socialize-links .label {
  font-family: "Commuters Sans", var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 760px) {
  .socialize-band { padding: 72px 20px 64px; margin: -72px 0 56px; }
  .socialize-links a { min-width: 120px; padding: 0 18px; }
  .socialize-links { gap: 16px 0; }
}

/* ---------- legal pages ---------- */
.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 24px 96px;
}
.legal-page .eyebrow { margin-bottom: 12px; }
.legal-page h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 16px; }
.legal-page .legal-lede { font-size: 18px; line-height: 1.7; color: var(--body); max-width: 640px; margin-bottom: 48px; }
.legal-frame-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 24px;
}
.legal-frame {
  width: 100%;
  min-height: 1600px;
  border: 0;
  display: block;
}
.legal-updated {
  font-family: "Commuters Sans", var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 32px 0 0;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal-nav a {
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border: none !important;
  padding: 8px 14px;
  background: var(--bg-alt);
  border-radius: 4px;
}
.legal-nav a:hover { background: var(--accent); color: #FFFFFF; }
.legal-nav a.current { background: var(--ink); color: #FFFFFF; }

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: var(--ink);
  color: #FFFFFF;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.35);
  z-index: 9999;
  display: none;
  max-width: 1120px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.55;
}
.cookie-banner.visible { display: block; }
.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cookie-banner p {
  margin: 0;
  color: rgba(255,255,255,0.9);
}
.cookie-banner p a {
  color: var(--accent);
  border-bottom: 1px solid rgba(157,124,94,0.5);
}
.cookie-banner p a:hover {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  background: transparent;
  color: #FFFFFF;
  transition: background 0.15s, color 0.15s;
}
.cookie-btn.accept {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
.cookie-btn.accept:hover { background: #FFFFFF; border-color: #FFFFFF; }
.cookie-btn.reject:hover { background: rgba(255,255,255,0.12); }

@media (max-width: 640px) {
  .cookie-banner-inner { grid-template-columns: 1fr; gap: 16px; }
  .cookie-actions { justify-content: stretch; }
  .cookie-btn { flex: 1; padding: 14px 16px; }
  .cookie-banner { left: 16px; right: 16px; bottom: 16px; padding: 20px; }
}

/* =========================================
   INTERACTIVE MOVEMENTS
   Tasteful motion. Guarded by prefers-reduced-motion.
   ========================================= */

@media (prefers-reduced-motion: no-preference) {

  html { scroll-behavior: smooth; }

  /* ---------- hero entrance ---------- */
  @keyframes heroIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes heroPortraitIn {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes heroVideoIn {
    from { opacity: 0; transform: scale(1.06); }
    to   { opacity: 1; transform: scale(1); }
  }

  .hero-video {
    animation: heroVideoIn 1.6s cubic-bezier(0.2, 0.6, 0.2, 1) both;
  }

  .hero-inner > *,
  .hero-copy > * {
    animation: heroIn 0.95s cubic-bezier(0.2, 0.6, 0.2, 1) both;
  }
  .hero-copy > *:nth-child(1) { animation-delay: 0.15s; }
  .hero-copy > *:nth-child(2) { animation-delay: 0.30s; }
  .hero-copy > *:nth-child(3) { animation-delay: 0.45s; }
  .hero-copy > *:nth-child(4) { animation-delay: 0.60s; }
  .hero-copy > *:nth-child(5) { animation-delay: 0.75s; }

  .hero-inner:not(.hero-grid) > *:nth-child(1) { animation-delay: 0.15s; }
  .hero-inner:not(.hero-grid) > *:nth-child(2) { animation-delay: 0.30s; }
  .hero-inner:not(.hero-grid) > *:nth-child(3) { animation-delay: 0.45s; }
  .hero-inner:not(.hero-grid) > *:nth-child(4) { animation-delay: 0.60s; }
  .hero-inner:not(.hero-grid) > *:nth-child(5) { animation-delay: 0.75s; }

  .hero-portrait {
    animation: heroPortraitIn 1.1s cubic-bezier(0.2, 0.6, 0.2, 1) both;
    animation-delay: 0.45s;
  }

  /* gentle floating on hero portrait once it has settled */
  @keyframes portraitFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }
  .hero-portrait img {
    animation: portraitFloat 7s ease-in-out infinite;
    animation-delay: 1.6s;
  }

  /* ---------- scroll reveal ---------- */
  .reveal-init {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.2, 1),
                transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
    will-change: opacity, transform;
  }
  .reveal-init.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- hover micro-interactions ---------- */
  .card,
  .path,
  .post-card,
  .stat-card {
    transition: transform 0.35s cubic-bezier(0.2, 0.6, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.2, 0.6, 0.2, 1),
                border-color 0.25s ease;
  }
  .card:hover,
  .post-card:hover,
  .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px -28px rgba(10,10,10,0.25);
  }
  .path:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px -30px rgba(10,10,10,0.28);
  }

  /* footer image gallery: subtle zoom on hover */
  .footer-gallery img {
    transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1),
                filter 0.4s ease;
  }
  .footer-gallery img:hover {
    transform: scale(1.06);
    filter: saturate(1.08);
  }

  /* logo in footer: subtle press */
  .footer-logo {
    transition: transform 0.2s ease, color 0.25s ease;
  }
  .footer-logo:hover { transform: translateY(-2px); }
  .footer-logo:active { transform: translateY(0); }

  /* socialize links: word lifts on hover */
  .socialize-links a .word {
    transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.2, 1);
    display: inline-block;
  }
  .socialize-links a:hover .word { transform: translateY(-3px); }

  /* hero-proof stats: subtle reveal already handled by hero entrance */
  .hero-proof .proof-stat {
    transition: transform 0.3s ease;
  }
  .hero-proof .proof-stat:hover { transform: translateY(-2px); }

  /* button micro-interaction: smoother lift + soft glow */
  .btn {
    transition: transform 0.18s cubic-bezier(0.2, 0.6, 0.2, 1),
                background 0.2s ease,
                color 0.2s ease,
                box-shadow 0.25s ease,
                letter-spacing 0.25s ease;
  }
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -16px rgba(10,10,10,0.35);
  }
  .btn-primary:hover { letter-spacing: 0.16em; }
  .btn-lg:hover { letter-spacing: 0.18em; }

  /* nav links: underline grow on hover */
  .nav a {
    position: relative;
  }
  .nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.2, 1);
  }
  .nav a:hover::after,
  .nav a.active::after {
    transform: scaleX(1);
  }
  /* hide native border-bottom indicator since we now use ::after */
  .nav a { border-bottom: none; }
  .nav a.active { border-bottom: none; }

  /* image lazy-fade as they load */
  .footer-gallery img,
  .bio-portrait img,
  .post-card img {
    transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), filter 0.4s ease;
  }

  /* details/summary smooth indicator (FAQ on welcome page) */
  details summary {
    transition: color 0.2s ease;
  }
  details[open] summary {
    color: var(--accent-deep);
  }

  /* gif band: gentle zoom while scrolling past */
  .gif-band img {
    transition: transform 6s linear, filter 0.5s ease;
  }
  .gif-band:hover img { filter: brightness(0.95) saturate(1.05); }

  /* testimonial: subtle pulse on the quote */
  .testimonial .quote {
    transition: color 0.4s ease;
  }
}

/* explicit reduced-motion fallback */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video,
  .hero-portrait,
  .hero-portrait img,
  .hero-inner > *,
  .hero-copy > * {
    animation: none !important;
  }
  .reveal-init,
  .reveal-init.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================
   HOME PAGE — editorial hero
   ========================================= */

/* Scream bar (top promo banner) */
.home-announce {
  display: block;
  background: var(--accent);
  color: #FFFFFF !important;
  text-align: center;
  padding: 13px 24px;
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none !important;
  position: relative;
  z-index: 20;
  transition: background 0.2s ease;
}
.home-announce:hover {
  background: var(--accent-deep);
  color: #FFFFFF !important;
}

/* Topbar override on home (transparent over dark band, sits below scream bar) */
.home .topbar {
  background: transparent;
  border-bottom: none;
  position: absolute;
  top: 44px; left: 0; right: 0;
  z-index: 10;
}
.home .topbar .brand { color: #FFFFFF; }
.home .topbar .brand span { color: #C5B4A5; }
.home .topbar .brand:hover { color: #FFFFFF; }
.home .topbar .nav a {
  color: rgba(255,255,255,0.92);
}
.home .topbar .nav a:hover { color: #FFFFFF; }
.home .topbar .nav a::after { background: #FFFFFF; }
.home .topbar .nav-cta {
  background: rgba(255,255,255,0.12);
  color: #FFFFFF !important;
  border: 1px solid rgba(255,255,255,0.4);
}
.home .topbar .nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink) !important;
}
.home .hamburger { color: #FFFFFF; }

/* Dark hero band */
.home-dark-hero {
  background: #353330;
  padding: 140px 24px 0;
  text-align: center;
  position: relative;
}
/* Clip just the video + overlay so they don't bleed below; portrait stays free. */
.home-hero-video,
.home-dark-hero::before {
  clip-path: inset(0);
}
.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.home-dark-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,18,16,0.72) 0%, rgba(20,18,16,0.85) 100%),
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(255,255,255,0.04), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.home-dark-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.home-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 400;
  line-height: 1.02;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.home-headline .line {
  display: block;
}
.home-headline em {
  font-style: italic;
  font-weight: 300;
  color: #FFFFFF;
}
.home-subhead {
  font-family: var(--sans);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
}
.home-hero-portrait-wrap {
  position: relative;
  z-index: 10;
  max-width: 460px;
  margin: 64px auto -140px;
  padding: 0 24px;
}
.home-hero-portrait-img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.55);
}

/* White strip with logo carousel that the portrait extends into */
.home-logo-strip {
  background: #FFFFFF;
  padding: 200px 0 64px;
}
.logo-carousel {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0;
  /* fade edges so logos appear to drift in/out smoothly */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.logo-carousel-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 32s linear infinite;
}
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-carousel:hover .logo-carousel-track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .logo-carousel-track { animation: none; }
}
.logo-carousel-item {
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 240px);
  padding: 0 24px;
}
.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 12px;
  filter: grayscale(100%) opacity(0.65);
  transition: filter 0.4s ease;
}
.logo-box:hover { filter: grayscale(0%) opacity(1); }
.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Intro on white — stacked identity headlines + bio + CTAs */
.home-intro {
  background: #FFFFFF;
  padding: 96px 24px 120px;
  text-align: center;
}
.home-intro-inner {
  max-width: 760px;
  margin: 0 auto;
}
.home-intro-eyebrow {
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 36px;
}
.home-stacked {
  font-family: var(--serif);
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 40px;
}
.home-stacked .line { display: block; }
.home-stacked .line.italic {
  font-style: italic;
  font-weight: 300;
}
.home-intro-bio {
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  max-width: 600px;
  margin: 0 auto 40px;
}
.home-intro-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Bio band — split black panel + cream backdrop with portrait crossing the boundary */
.home-bio {
  position: relative;
  background: var(--bg);
  padding: 120px 0;
  overflow: hidden;
}
.home-bio::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 72%;
  background: var(--ink);
  z-index: 0;
}
.home-bio-content {
  position: relative;
  z-index: 2;
  width: 60%;
  max-width: 760px;
  padding: 0 6vw 0 8vw;
  color: #FFFFFF;
}
.home-bio-eyebrow {
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin: 0 0 56px;
}
.home-bio-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  margin: 0 0 56px;
  max-width: 14ch;
}
.home-bio-text {
  margin-bottom: 48px;
}
.home-bio-text p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin: 0 0 18px;
  max-width: 50ch;
}
.home-bio-text em {
  font-style: italic;
  color: #FFFFFF;
}
.home-bio-btn {
  display: inline-block;
  background: #FFFFFF;
  color: var(--ink) !important;
  padding: 18px 40px;
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none !important;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.home-bio-btn:hover {
  background: var(--accent);
  color: var(--ink) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(0,0,0,0.35);
}
.home-bio-portrait {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 30%;
  max-width: 420px;
  z-index: 3;
}
.home-bio-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.45);
}
@media (max-width: 900px) {
  .home-bio { padding: 0; background: var(--ink); }
  .home-bio::before { display: none; }
  .home-bio-content {
    width: 100%;
    padding: 80px 24px 56px;
  }
  .home-bio-headline { font-size: clamp(36px, 9vw, 56px); }
  .home-bio-portrait {
    position: relative;
    top: auto; right: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 0;
  }
  .home-bio-portrait img {
    aspect-ratio: 16 / 11;
    object-position: center top;
  }
}

@media (max-width: 720px) {
  .home-dark-hero { padding: 120px 20px 0; }
  .home-hero-portrait-wrap { margin: 56px auto -100px; max-width: 320px; }
  .home-logo-strip { padding: 140px 20px 40px; }
  .home-logo-strip-inner { gap: 18px 32px; }
  .home-intro { padding: 80px 20px 96px; }
  .home-intro-stats { gap: 24px 40px; }
}

/* Hero entrance for the new home design (overrides earlier hero animation) */
@media (prefers-reduced-motion: no-preference) {
  .home-dark-inner > * { animation: heroIn 0.95s cubic-bezier(0.2, 0.6, 0.2, 1) both; }
  .home-dark-inner > *:nth-child(1) { animation-delay: 0.15s; }
  .home-dark-inner > *:nth-child(2) { animation-delay: 0.32s; }
  .home-hero-portrait-wrap {
    animation: heroPortraitIn 1.2s cubic-bezier(0.2, 0.6, 0.2, 1) both;
    animation-delay: 0.5s;
  }
  .home-stacked .line {
    opacity: 0;
    transform: translateY(20px);
    animation: heroIn 0.7s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
  }
  .home-stacked .line:nth-child(1) { animation-delay: 0.1s; }
  .home-stacked .line:nth-child(2) { animation-delay: 0.22s; }
  .home-stacked .line:nth-child(3) { animation-delay: 0.34s; }
  .home-stacked .line:nth-child(4) { animation-delay: 0.46s; }
  .home-stacked .line:nth-child(5) { animation-delay: 0.58s; }
}

/* =========================================
   DYNAMIC LAYER
   Scroll progress, sticky nav shrink,
   testimonial carousel, activity ticker,
   FAQ smooth animation.
   ========================================= */

/* ---------- scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  z-index: 200;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ---------- topbar shrink on scroll ---------- */
.topbar {
  transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.topbar.scrolled {
  background: rgba(250, 248, 245, 0.96);
  box-shadow: 0 1px 16px rgba(36, 27, 18, 0.08);
}
.topbar.scrolled .topbar-inner { padding-top: 8px; padding-bottom: 8px; }

/* ---------- activity ticker ---------- */
.activity-ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(176, 137, 104, 0.10);
  border: 1px solid rgba(176, 137, 104, 0.28);
  border-radius: 999px;
  font-size: 13px;
  color: var(--body);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.activity-ticker .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success, #4A7C59);
  position: relative;
  flex: 0 0 8px;
}
.activity-ticker .pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--success, #4A7C59);
  animation: tickerPulse 2s ease-out infinite;
}
@keyframes tickerPulse {
  0%   { transform: scale(0.8); opacity: 0.85; }
  100% { transform: scale(2);   opacity: 0;    }
}
.activity-ticker .activity-text { transition: opacity 0.4s ease; }
.activity-ticker .activity-text.fading { opacity: 0; }

/* dark-band variant for the home-dark-hero placement */
.home-dark-hero .activity-ticker {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 22px;
  align-self: flex-start;
}

@media (prefers-reduced-motion: reduce) {
  .activity-ticker .pulse::after { animation: none; }
}

/* ---------- testimonial carousel ---------- */
.testimonial-carousel { position: relative; }
.testimonial-carousel .testimonial-track {
  position: relative;
  min-height: 240px;
}
.testimonial-carousel .testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s cubic-bezier(0.2, 0.6, 0.2, 1),
              transform 0.55s cubic-bezier(0.2, 0.6, 0.2, 1);
  pointer-events: none;
}
.testimonial-carousel .testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}
.carousel-dot:hover { background: rgba(255, 255, 255, 0.5); }
.carousel-arrow {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.carousel-arrow:hover {
  border-color: var(--accent);
  color: #fff;
  background: rgba(176, 137, 104, 0.18);
}
/* light variant for carousels not on a dark background */
.testimonial-carousel.is-light .carousel-dot { background: rgba(36, 27, 18, 0.18); }
.testimonial-carousel.is-light .carousel-dot:hover { background: rgba(36, 27, 18, 0.35); }
.testimonial-carousel.is-light .carousel-dot.active { background: var(--accent); }
.testimonial-carousel.is-light .carousel-arrow {
  border-color: rgba(36, 27, 18, 0.18);
  color: var(--ink);
}
.testimonial-carousel.is-light .carousel-arrow:hover {
  border-color: var(--accent);
  background: rgba(176, 137, 104, 0.10);
}

/* ---------- FAQ smooth animation ---------- */
.faq-item { transition: background 0.2s ease; }
.faq-item[open] { background: rgba(176, 137, 104, 0.04); }
.faq-item summary,
.faq-item .faq-q { transition: color 0.2s ease; }
.faq-item[open] summary,
.faq-item[open] .faq-q { color: var(--accent-deep); }
.faq-item p,
.faq-item .faq-a {
  animation: faqOpen 0.35s cubic-bezier(0.2, 0.6, 0.2, 1);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-item p, .faq-item .faq-a { animation: none; }
}

/* ================================================================
   APPLY — Typeform-style application + Calendly booking
   ================================================================ */
.apply-shell {
  min-height: calc(100vh - 62px);
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.apply-progress {
  position: sticky;
  top: 62px;
  z-index: 30;
  background: var(--bg);
  padding: 14px 0 12px;
  border-bottom: 1px solid var(--line);
}
.apply-progress-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.apply-progress .count {
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  color: var(--accent-deep);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.apply-progress .bar {
  flex: 1;
  height: 4px;
  background: rgba(74,44,26,0.14);
  border-radius: 2px;
  overflow: hidden;
}
.apply-progress .bar-fill {
  height: 100%;
  width: 0;
  background: var(--accent-deep);
  border-radius: 2px;
  transition: width 0.45s cubic-bezier(.2,.7,.2,1);
}

.apply-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 80px;
}
.apply-step {
  display: none;
  width: 100%;
  max-width: 760px;
}
.apply-step.active {
  display: block;
  animation: applyIn 0.45s cubic-bezier(.2,.7,.2,1);
}
.apply-step.leaving {
  animation: applyOut 0.25s ease forwards;
}
@keyframes applyIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes applyOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-20px); }
}

.apply-step .q-num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 18px;
}
.apply-step .q-num svg { width: 14px; height: 14px; }

.apply-step h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.apply-step h2 em {
  font-family: "Freight Big Pro Italic", var(--serif);
  font-style: italic;
  color: var(--accent-deep);
}
.apply-step .q-hint {
  font-size: 16px;
  color: var(--body);
  margin: 0 0 28px;
  max-width: 600px;
}

/* Choice cards */
.apply-choices {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.apply-choice {
  position: relative;
}
.apply-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.apply-choice label {
  display: grid;
  grid-template-columns: 36px 1fr 22px;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink);
  transition: border-color 0.18s, background 0.18s, transform 0.08s, box-shadow 0.18s;
}
.apply-choice label:hover {
  border-color: var(--accent);
  background: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px -16px rgba(74,44,26,0.4);
}
.apply-choice .key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--accent-deep);
  border-radius: 6px;
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-deep);
  letter-spacing: 0;
  background: transparent;
  transition: background 0.18s, color 0.18s;
}
.apply-choice .check {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-deep);
  opacity: 0;
  transition: opacity 0.18s;
}
.apply-choice input:checked + label {
  border-color: var(--accent-deep);
  background: var(--bg-alt);
}
.apply-choice input:checked + label .key {
  background: var(--accent-deep);
  color: #fff;
}
.apply-choice input:checked + label .check { opacity: 1; }

/* Open text area */
.apply-textarea {
  width: 100%;
  min-height: 140px;
  padding: 20px 22px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  outline: none;
  resize: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.apply-textarea:focus {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 4px rgba(74,44,26,0.08);
}
.apply-textarea::placeholder { color: rgba(10,10,10,0.32); font-style: italic; }

/* Contact inputs */
.apply-fields {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}
.apply-field label {
  display: block;
  font-family: "Commuters Sans", var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 6px;
}
.apply-field input {
  width: 100%;
  padding: 16px 18px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.apply-field input:focus {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 4px rgba(74,44,26,0.08);
}
.apply-field .err {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  color: #9c5b4a;
}
.apply-field.invalid input { border-color: #9c5b4a; }
.apply-field.invalid .err { display: block; }

/* Actions row */
.apply-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}
.apply-actions .left,
.apply-actions .right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.apply-back {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 999px;
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.apply-back:hover { color: var(--ink); border-color: var(--ink); }
.apply-next {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, transform 0.08s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.apply-next:hover { background: var(--accent-deep); transform: translateY(-1px); }
.apply-next:disabled {
  background: var(--bg-deep);
  cursor: not-allowed;
  transform: none;
  opacity: 0.6;
}
.apply-next .arrow { display: inline-block; transition: transform 0.18s; }
.apply-next:hover .arrow { transform: translateX(3px); }

.apply-hint {
  font-family: "Commuters Sans", var(--sans);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.apply-hint kbd {
  display: inline-block;
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 4px;
  background: #fff;
  font-family: "Commuters Sans", var(--sans);
  font-size: 11px;
  color: var(--ink);
  margin: 0 2px;
}

/* Calendar / final step */
.apply-final {
  text-align: center;
  max-width: 900px;
}
.apply-final h2 {
  text-align: center;
  margin-bottom: 12px;
}
.apply-final .q-hint {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
.apply-cal {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(74,44,26,0.35);
  margin-top: 8px;
}
.apply-cal iframe,
.apply-cal .calendly-inline-widget {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
}
.apply-final .open-new {
  display: inline-block;
  margin-top: 18px;
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

/* Submitting state */
.apply-step.submitting .apply-next {
  pointer-events: none;
  background: var(--accent-deep);
}
.apply-step.submitting .apply-next .arrow::before {
  content: "";
  display: inline-block;
  width: 12px; height: 12px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: applySpin 0.8s linear infinite;
  vertical-align: -2px;
}
.apply-step.submitting .apply-next .arrow-glyph { display: none; }
@keyframes applySpin { to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 640px) {
  .apply-stage { padding: 36px 20px 60px; }
  .apply-step h2 { font-size: clamp(26px, 7vw, 34px); }
  .apply-choice label {
    grid-template-columns: 28px 1fr 18px;
    gap: 12px;
    padding: 16px 18px;
    font-size: 15px;
  }
  .apply-choice .key { width: 24px; height: 24px; font-size: 11px; }
  .apply-actions { flex-wrap: wrap; }
  .apply-hint { display: none; }
  .apply-cal iframe,
  .apply-cal .calendly-inline-widget { height: 640px; }
}

@media (prefers-reduced-motion: reduce) {
  .apply-step.active,
  .apply-step.leaving { animation: none; }
  .apply-progress .bar-fill { transition: none; }
}

/* Not-yet branch (gated applicants) */
.apply-notyet { max-width: 880px; }
.notyet-paths {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  text-align: left;
}
.notyet-path {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "eyebrow eyebrow"
    "title cta"
    "sub sub";
  gap: 4px 16px;
  padding: 24px 26px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.18s, transform 0.08s, box-shadow 0.18s;
}
.notyet-path:hover {
  border-color: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -28px rgba(74,44,26,0.45);
  border-bottom-color: var(--accent-deep); /* override site default */
}
.notyet-eyebrow {
  grid-area: eyebrow;
  font-family: "Commuters Sans", var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.notyet-h {
  grid-area: title;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  color: var(--ink);
}
.notyet-cta {
  grid-area: cta;
  align-self: end;
  font-family: "Commuters Sans", var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  white-space: nowrap;
}
.notyet-sub {
  grid-area: sub;
  font-size: 15px;
  line-height: 1.55;
  color: var(--body);
  margin-top: 4px;
}
.notyet-foot {
  margin-top: 28px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 640px) {
  .notyet-path {
    grid-template-columns: 1fr;
    grid-template-areas: "eyebrow" "title" "sub" "cta";
    padding: 20px 22px;
  }
  .notyet-cta { align-self: start; }
}

/* ---------- Choose Your Path (high-ticket coaching page) ---------- */
.cyp { --cyp-flame: #DC4B2E; }

.cyp-head {
  padding: 80px 0 32px;
  text-align: center;
}
.cyp-head h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 18px;
  text-transform: uppercase;
  font-weight: 700;
}
.cyp-head h1 em {
  font-style: italic;
  color: var(--cyp-flame);
}
.cyp-head .lede {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
  color: var(--body);
  max-width: 640px;
  margin: 0 auto;
  font-style: italic;
}

.cyp-tiers { padding: 24px 0 100px; }
.cyp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.cyp-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 14px 40px -22px rgba(74,44,26,0.18);
}
.cyp-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 26px 32px;
  font-family: "Commuters Sans", var(--sans);
  text-transform: uppercase;
}
.cyp-card__name {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}
.cyp-card__price {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
}
.cyp-card--mirror .cyp-card__head  { background: var(--ink); }
.cyp-card--mirror .cyp-card__price { color: var(--cyp-flame); }
.cyp-card--growth .cyp-card__head  { background: var(--cyp-flame); }
.cyp-card--growth .cyp-card__price { color: #fff; }

.cyp-card__body {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1;
}
.cyp-list {
  list-style: disc;
  padding-left: 22px;
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
}
.cyp-list li::marker { color: var(--ink); }
.cyp-list strong { color: var(--ink); font-weight: 700; }
.cyp-list em { font-style: italic; color: var(--accent-deep); }

.cyp-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.cyp-cta {
  display: block;
  text-align: center;
  padding: 18px 24px;
  font-family: "Commuters Sans", var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.08s, background 0.18s, color 0.18s, border-color 0.18s;
}
.cyp-cta:hover { transform: translateY(-1px); }
.cyp-cta--mirror {
  background: var(--ink);
  color: #fff;
}
.cyp-cta--mirror:hover { background: var(--accent-deep); }
.cyp-cta--growth {
  background: var(--cyp-flame);
  color: #fff;
}
.cyp-cta--growth:hover { background: #B83A20; }

.cyp-cta--ghost {
  background: transparent;
  padding: 14px 24px;
  font-size: 12px;
}
.cyp-cta--ghost-mirror {
  color: var(--ink);
  border-color: var(--ink);
}
.cyp-cta--ghost-mirror:hover { background: var(--ink); color: #fff; }
.cyp-cta--ghost-growth {
  color: var(--cyp-flame);
  border-color: var(--cyp-flame);
}
.cyp-cta--ghost-growth:hover { background: var(--cyp-flame); color: #fff; }

.cyp-foot {
  text-align: center;
  margin: 48px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
}
.cyp-foot a {
  color: var(--accent-deep);
  border-bottom: 1px solid var(--accent);
}

@media (max-width: 820px) {
  .cyp-grid { grid-template-columns: 1fr; gap: 22px; }
  .cyp-head { padding: 56px 0 24px; }
  .cyp-tiers { padding: 16px 0 72px; }
  .cyp-card__head { padding: 22px 24px; }
  .cyp-card__body { padding: 28px 24px 26px; gap: 22px; }
  .cyp-list { font-size: 16px; line-height: 1.7; }
}
