/* =============================================================================
   Markus Hawkins — Mental Performance Coach · Personal one-pager  (v3)
   Editorial profile + career timeline. Green-dominant (exact logo green),
   gold + cream, mono detailing. Distinct from the Cameron card. Mobile-first.
   ============================================================================= */

:root {
  --green:      #053E35;   /* EXACT MEA logo green — canvas (logo blends in) */
  --green-deep: #042b25;
  --green-2:    #0a4a40;   /* raised panels */
  --cream:      #f4f1ea;   /* warm cream — text on dark */
  --surface:    #ece4d3;   /* soft off-white cream — light section background (easy on eyes) */
  --paper:      #f4eee1;   /* slightly lighter off-white — cards lift off the surface */
  --ink:        #16241f;   /* deep green-ink — body text on light */
  --yellow:     #dfba2c;
  --yellow-2:   #f0d873;
  --gold-ink:   #9a7d12;   /* darker gold — legible on cream */
  --muted:      #9fbcb1;   /* secondary on dark */
  --muted-2:    #55675f;   /* secondary on light (AA on cream) */
  --line:       rgba(223,186,44,.22);
  --line-soft:  rgba(255,255,255,.10);
  --line-2:     #e2dcca;   /* hairline on light */

  --serif: "Fraunces", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --step--1: clamp(0.82rem, 0.78rem + 0.2vw, 0.92rem);
  --step-0:  clamp(1rem, 0.95rem + 0.3vw, 1.12rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.6vw, 1.5rem);
  --step-2:  clamp(1.7rem, 1.3rem + 1.7vw, 2.7rem);
  --step-3:  clamp(2.8rem, 2rem + 3.6vw, 5.2rem);

  --wrap: 74rem;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--sans); font-size: var(--step-0); line-height: 1.65;
  color: var(--cream);
  background: linear-gradient(165deg, var(--green) 0%, var(--green-deep) 140%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden; position: relative;
}
body::before { /* branded playbook × neural motif */
  content: ""; position: fixed; inset: 0; z-index: -2;
  background: url("assets/motif.svg") repeat; background-size: 460px 460px;
  opacity: 0.05; pointer-events: none;
}
body::after { /* matte grain */
  content: ""; position: fixed; inset: 0; z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035; mix-blend-mode: overlay; pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.04; }
p { margin: 0; }
a { color: inherit; }
.wrap { width: min(100% - calc(var(--gutter) * 2), var(--wrap)); margin-inline: auto; position: relative; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--yellow); color: var(--green-deep); padding: .6rem 1rem; border-radius: 0 0 8px 0; font-weight: 600; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

/* ---- shared bits ---------------------------------------------------------- */
.section { padding-block: clamp(4rem, 9vw, 8.5rem); position: relative; }
.eyebrow { font: 500 var(--step--1)/1.3 var(--mono); letter-spacing: .22em; text-transform: uppercase; color: var(--yellow); margin: 0 0 1.2rem; }
.lede { font-size: var(--step-1); line-height: 1.55; color: var(--cream); }

/* mono section kicker with a gold index chip — the v3 section header system */
.kicker { display: flex; align-items: center; gap: .8rem; margin: 0 0 1.6rem;
  font: 500 var(--step--1)/1 var(--mono); letter-spacing: .2em; text-transform: uppercase; color: var(--cream); }
.kicker > span:first-child { background: var(--yellow); color: var(--green-deep); font-weight: 600; padding: .2rem .5rem; border-radius: 5px; letter-spacing: .08em; }
.kicker--light { color: var(--cream); }

/* ---- buttons -------------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .85rem 1.6rem;
  font: 600 var(--step-0)/1 var(--sans); text-decoration: none; border-radius: 999px;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease; }
.btn--primary { background: var(--yellow); color: var(--green-deep); box-shadow: 0 10px 30px -12px rgba(223,186,44,.6); }
.btn--primary:hover { background: var(--yellow-2); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--yellow); color: var(--yellow); }
.btn--outline { background: transparent; color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.3); }
.btn--outline:hover { box-shadow: inset 0 0 0 1.5px var(--yellow-2); color: var(--yellow-2); transform: translateY(-2px); }
.btn--lg { min-height: 54px; padding: 1rem 2rem; }

/* ---- top utility bar ------------------------------------------------------ */
/* exact logo green so the emblem in the bar blends seamlessly */
.topbar { border-bottom: 1px solid var(--line-soft); background: var(--green); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .8rem; }
.topbar__brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--cream);
  font: 600 var(--step--1)/1 var(--sans); letter-spacing: .04em; }
.topbar__brand img { height: 30px; width: 30px; object-fit: contain; } /* green melts into bar */
.topbar__meta { font: 500 var(--step--1)/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 33rem) { .topbar__brand span { display: none; } }

/* =============================================================================
   1 · HERO — portrait left, identity right
   ============================================================================= */
.hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5.5rem); position: relative; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent); }
.hero__inner { display: grid; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; }
.hero__photo { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--green-2);
  box-shadow: 0 30px 70px -28px rgba(0,0,0,.65), inset 0 0 0 1px var(--line); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 26%; filter: saturate(.9) contrast(1.03); }
.hero__photo::after { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,62,53,0) 40%, rgba(4,43,37,.7) 100%),
    linear-gradient(120deg, rgba(5,62,53,.4), rgba(223,186,44,.10) 95%);
  mix-blend-mode: multiply; }
.hero__photo::before { content: ""; position: absolute; left: 14px; top: 14px; width: 26px; height: 26px; z-index: 1;
  border-top: 2px solid var(--yellow); border-left: 2px solid var(--yellow); border-radius: 3px 0 0 0; opacity: .85; }

.hero__name { font-size: var(--step-3); letter-spacing: -0.015em; color: var(--cream); margin: 0 0 1rem; text-shadow: 0 1px 40px rgba(223,186,44,.12); }
.hero__lede { font-size: var(--step-1); line-height: 1.45; color: var(--cream); max-width: 40ch; margin: 0 0 1.8rem; }

.fields { display: grid; gap: 0; margin: 0 0 2rem; }
.fields > div { display: grid; grid-template-columns: 7.5rem 1fr; gap: 1rem; align-items: baseline;
  border-top: 1px solid var(--line-soft); padding: .7rem 0; }
.fields dt { font: 500 var(--step--1)/1.4 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--yellow); margin: 0; }
.fields dd { margin: 0; color: var(--cream); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }

@media (min-width: 54rem) {
  .hero__inner { grid-template-columns: 0.82fr 1.18fr; }
  .hero__photo { aspect-ratio: 4 / 5; max-width: 26rem; }
}

/* =============================================================================
   2 · ABOUT  (label | statement)
   ============================================================================= */
.about__grid { display: grid; gap: 2.2rem; align-items: start; }
.about__body h2 { font: 300 var(--step-2)/1.08 var(--serif); color: var(--cream); margin-bottom: 1.2rem; max-width: 20ch; }
.about__body .lede { color: var(--cream); max-width: 58ch; }
.about__body p + p { margin-top: 1.1rem; color: var(--cream); opacity: .9; }
.about__photo { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3 / 2; background: var(--green-2);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.6), inset 0 0 0 1px var(--line); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; filter: saturate(.9) contrast(1.03); }
.about__photo::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,62,53,0) 45%, rgba(4,43,37,.72) 100%), linear-gradient(120deg, rgba(5,62,53,.38), rgba(223,186,44,.08) 95%);
  mix-blend-mode: multiply; }
.about__photo::before { content: ""; position: absolute; left: 14px; top: 14px; width: 24px; height: 24px; z-index: 2;
  border-top: 2px solid var(--yellow); border-left: 2px solid var(--yellow); border-radius: 3px 0 0 0; opacity: .85; }
.about__photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: .8rem 1rem;
  font: 500 var(--step--1)/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--cream); }
@media (min-width: 50rem) {
  .about__grid { grid-template-columns: 1fr 24rem; gap: clamp(2.5rem, 5vw, 5rem); }
}

/* =============================================================================
   3 · THE PATH — career timeline
   ============================================================================= */
.path__title { font: 300 var(--step-2)/1.08 var(--serif); color: var(--cream); margin-bottom: 2.8rem; max-width: 18ch; }
.timeline { list-style: none; margin: .4rem 0 0 .4rem; padding: .4rem 0 .4rem 2.2rem; display: grid; gap: 2.6rem; position: relative; }
.timeline::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(var(--yellow), var(--line) 85%);
  transform: scaleY(0); transform-origin: top; transition: transform 1.3s cubic-bezier(.22,1,.36,1); }
.timeline.drawn::before { transform: scaleY(1); }
.tl { position: relative; }
.tl::before { content: ""; position: absolute; left: calc(-2.2rem - 7px); top: .35rem; width: 12px; height: 12px;
  border-radius: 50%; background: var(--green); border: 2px solid var(--yellow); transition: background .3s ease, box-shadow .3s ease; }
.tl--now::before { background: var(--yellow); box-shadow: 0 0 0 0 rgba(223,186,44,.45); animation: nodePulse 2.6s ease-out infinite; }
.tl__tag { display: block; font: 500 var(--step--1)/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--yellow); margin-bottom: .45rem; }
.tl h3 { font-size: var(--step-1); color: var(--cream); margin-bottom: .35rem; }
.tl p { color: var(--muted); max-width: 62ch; }
@media (min-width: 50rem) { .timeline { padding-left: 2.8rem; } .tl::before { left: calc(-2.8rem - 7px); } }

/* path two-column: timeline + a companion photo (Army MRT-PE) */
.path__grid { display: grid; gap: 2.5rem; }
@media (min-width: 60rem) {
  .path__grid { grid-template-columns: 1fr 21rem; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
  .path__photo { position: sticky; top: 2.5rem; }
}
.path__photo { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 5; background: var(--green-2);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.6), inset 0 0 0 1px var(--line); }
.path__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; filter: saturate(.92) contrast(1.03); }
.path__photo::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,62,53,0) 45%, rgba(4,43,37,.72) 100%), linear-gradient(120deg, rgba(5,62,53,.38), rgba(223,186,44,.08) 95%);
  mix-blend-mode: multiply; }
.path__photo::before { content: ""; position: absolute; left: 14px; top: 14px; width: 24px; height: 24px; z-index: 2;
  border-top: 2px solid var(--yellow); border-left: 2px solid var(--yellow); border-radius: 3px 0 0 0; opacity: .85; }
.path__photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: .8rem 1rem;
  font: 500 var(--step--1)/1.3 var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--cream); }

/* =============================================================================
   4 · PHILOSOPHY  (verbatim mission)
   ============================================================================= */
.philosophy__h { font: 300 var(--step-2)/1.08 var(--serif); color: var(--cream); max-width: 18ch; margin-bottom: 1.4rem; }
.philosophy .lede { max-width: 60ch; margin-bottom: 1.6rem; }
.philosophy__mission { max-width: 56ch; color: var(--cream); }
.philosophy__mission em { font-style: italic; color: var(--yellow-2); font-family: var(--serif); }

/* the four mission verbs as an elegant hairline-separated row */
.tenets { list-style: none; margin: 2.4rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tenets li { flex: 1 1 14rem; padding: 1.1rem 1.4rem 1.1rem 0;
  font: 400 var(--step-1)/1.2 var(--serif); color: var(--cream);
  position: relative; }
.tenets li + li { padding-left: 1.4rem; border-left: 1px solid var(--line-soft); }
.tenets li::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow); margin-right: .7rem; vertical-align: middle; }

.pullquote { margin: 2.8rem 0 0; padding: 0 0 0 1.6rem; border-left: 2px solid var(--yellow);
  font: 400 italic var(--step-1)/1.5 var(--serif); color: var(--cream); max-width: 60ch; }

/* =============================================================================
   5 · WHO HE SERVES — struggling vs thriving
   ============================================================================= */
.duo__title { font: 300 var(--step-2)/1.08 var(--serif); color: var(--cream); margin-bottom: 2.6rem; }
.duo__grid { display: grid; gap: 1.6rem; }
@media (min-width: 48rem) { .duo__grid { grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); } }
.duo__col { padding-top: 1.2rem; border-top: 1px solid var(--line); }
.duo__tag { display: block; font: 500 var(--step--1)/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; color: var(--yellow); margin-bottom: .8rem; }
.duo__col p { color: var(--cream); opacity: .9; }
.duo__line { margin-top: 2.6rem; font: 400 italic var(--step-1)/1.4 var(--serif); color: var(--yellow-2); max-width: 48ch; }

/* =============================================================================
   5 · QUOTE BAND
   ============================================================================= */
.quote { background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.06)), var(--green-2);
  border-block: 1px solid var(--line); padding-block: clamp(3.5rem, 8vw, 6.5rem); text-align: center; position: relative; }
.quote::before { content: "“"; position: absolute; top: clamp(.5rem,3vw,2rem); left: 50%; transform: translateX(-50%);
  font: 500 8rem/1 var(--serif); color: var(--yellow); opacity: .18; }
.quote blockquote { margin: 0 auto; max-width: 22ch; font: 500 clamp(1.9rem, 1.2rem + 3vw, 3.3rem)/1.18 var(--serif); color: var(--cream); }
.quote blockquote span { color: var(--yellow); }
.quote cite { display: block; margin-top: 1.5rem; font: 500 var(--step--1)/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-style: normal; }

/* =============================================================================
   6 · FEATURED
   ============================================================================= */
.featured { background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(0,0,0,.06)), var(--green-2); border-bottom: 1px solid var(--line-soft); }
.featured__grid { display: grid; gap: 1.2rem; }
@media (min-width: 48rem) { .featured__grid { grid-template-columns: repeat(3, 1fr); } }
.feat { display: flex; flex-direction: column; padding: 0; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.06));
  border: 1px solid var(--line-soft); border-radius: var(--radius); text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease; }
.feat:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -26px rgba(0,0,0,.75); border-color: var(--yellow); }
.feat__thumb { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--green-2); border-bottom: 1px solid var(--line-soft); position: relative; }
.feat__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.feat:hover .feat__thumb img { transform: scale(1.05); }
.feat__body { display: flex; flex-direction: column; gap: .55rem; padding: 1.3rem 1.4rem 1.5rem; flex: 1; }
.feat__kind { font: 600 var(--step--1)/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--yellow); }
.feat__title { font: 500 var(--step-1)/1.25 var(--serif); color: var(--cream); }
.feat__go { margin-top: auto; font-weight: 600; color: var(--muted); }
.feat:hover .feat__go { color: var(--yellow-2); }

/* =============================================================================
   7 · CONNECT
   ============================================================================= */
.connect { position: relative; }
.connect__grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 52rem) { .connect__grid { grid-template-columns: 1fr auto; gap: clamp(3rem, 6vw, 6rem); } }
.connect__lead > p { color: var(--muted); max-width: 40ch; margin-bottom: 2rem; }
.connect__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.socials__label { font: 600 var(--step--1)/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--yellow); margin: 2.2rem 0 .2rem; }
.socials { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.socials li { border-top: 1px solid var(--line-soft); }
.socials li:last-child { border-bottom: 1px solid var(--line-soft); }
.socials a { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 52px; padding: .4rem 0;
  text-decoration: none; font-weight: 600; letter-spacing: .02em; color: var(--cream); transition: color .2s ease, padding .2s ease; }
.socials a span { color: var(--muted); font-weight: 400; text-align: right; }
.socials a:hover { color: var(--yellow-2); padding-inline-start: .4rem; }
.socials a:hover span { color: var(--yellow-2); }

.qr-group { display: flex; flex-direction: column; gap: 2rem; justify-self: center; }
.qr-block { text-align: center; }
.qr__frame { background: var(--cream); padding: 16px; border-radius: var(--radius); display: inline-block; box-shadow: 0 22px 50px -20px rgba(0,0,0,.7); border: 1px solid var(--line); }
.qr__frame img { width: 200px; height: 200px; display: block; }
.qr__cap { margin: .9rem 0 .2rem; font: 600 var(--step--1)/1 var(--mono); letter-spacing: .2em; text-transform: uppercase; color: var(--yellow); }
.qr__fallback { color: var(--muted); font-size: var(--step--1); text-decoration: underline; text-underline-offset: 3px; }
.qr__fallback:hover { color: var(--cream); }

/* =============================================================================
   FOOTER — full emblem blends into matching logo green
   ============================================================================= */
.footer { background: var(--green); border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 4rem); }
.footer__inner { display: flex; flex-direction: column; gap: 2rem; align-items: flex-start; justify-content: space-between; }
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__mark img { height: 116px; width: 116px; object-fit: contain; }
.footer__meta { font-size: var(--step--1); color: var(--muted); line-height: 1.3; display: flex; flex-direction: column; gap: .3rem; }
.footer__coach-name { font: 500 var(--step-1)/1.1 var(--serif); color: var(--cream); }
.footer__mea-name { font: 600 var(--step-0)/1.2 var(--sans); color: var(--yellow); letter-spacing: .02em; }
.footer__links { font: 500 var(--step--1)/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s ease; }
.footer__links span { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.footer__links:hover { color: var(--cream); }
@media (min-width: 46rem) { .footer__inner { flex-direction: row; align-items: center; } }

/* ---- reveal + subtle motion ----------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .85s ease, transform .85s cubic-bezier(.22,1,.36,1); }
.no-js .reveal, html:not(.js) .reveal { opacity: 1; transform: none; }

/* gentle cascades within groups */
.timeline .tl:nth-child(2) { transition-delay: .06s; }
.timeline .tl:nth-child(3) { transition-delay: .12s; }
.timeline .tl:nth-child(4) { transition-delay: .18s; }
.timeline .tl:nth-child(5) { transition-delay: .24s; }
.timeline .tl:nth-child(6) { transition-delay: .30s; }
.featured__grid .feat:nth-child(2) { transition-delay: .10s; }
.featured__grid .feat:nth-child(3) { transition-delay: .20s; }
.duo__grid .duo__col:nth-child(2) { transition-delay: .12s; }
.fields > div:nth-child(2) { transition-delay: .07s; }
.fields > div:nth-child(3) { transition-delay: .14s; }
.hero__id .reveal:nth-child(2){transition-delay:.06s}
.hero__id .reveal:nth-child(3){transition-delay:.12s}
.hero__id .reveal:nth-child(4){transition-delay:.18s}
.hero__id .reveal:nth-child(5){transition-delay:.24s}

/* gold underline that draws beneath the name */
.hero__name { font-weight: 400; }
.hero__name::after { content: ""; display: block; width: 0; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--yellow), rgba(223,186,44,0)); margin-top: 1.1rem;
  animation: lineGrow 1.1s cubic-bezier(.22,1,.36,1) .35s forwards; }

@keyframes lineGrow { to { width: 96px; } }
@keyframes nodePulse { 0% { box-shadow: 0 0 0 0 rgba(223,186,44,.5); } 70%,100% { box-shadow: 0 0 0 12px rgba(223,186,44,0); } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero__name::after { width: 96px; animation: none; }
  .tl--now::before { animation: none; }
  .timeline::before { transition: none; transform: scaleY(1); }
}

/* =============================================================================
   EXPERIENCE / CREDENTIAL STRIP — institution wordmarks (dark, bridges hero→about)
   ============================================================================= */
.creds { background: linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.04)); border-bottom: 1px solid var(--line-soft); }
.creds__inner { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem clamp(1.2rem, 3vw, 2.4rem); padding-block: clamp(1.3rem, 3vw, 1.9rem); }
.creds__label { font: 500 var(--step--1)/1 var(--mono); letter-spacing: .2em; text-transform: uppercase; color: var(--yellow); white-space: nowrap; }
.creds__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: .5rem clamp(1.1rem, 2.5vw, 1.8rem); }
.creds__list li { display: flex; align-items: center; gap: clamp(1.1rem, 2.5vw, 1.8rem);
  font: 400 var(--step-0)/1.4 var(--serif); color: var(--cream); letter-spacing: .01em; white-space: nowrap; }
.creds__list li::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); opacity: .65; }
.creds__list li:last-child::after { display: none; }

/* =============================================================================
   LIGHT SECTIONS — airier rhythm (cream content between dark anchors)
   ============================================================================= */
.light { background: var(--surface); color: var(--ink); }
.light .kicker { color: var(--ink); }                 /* gold index chip stays as-is */
.light h2, .light h3 { color: var(--green); }
.light .lede, .light p { color: var(--ink); }

/* mono labels/tags: brand gold is too low-contrast on cream → deep green */
.light .tl__tag, .light .duo__tag, .light .feat__kind { color: var(--green); }

/* secondary copy */
.light .tl p, .light .feat__go, .light .duo__col p, .light .tenets li,
.light .philosophy__mission, .light .about__body p + p { color: var(--ink); }
.light .tl p, .light .feat__go, .light .duo__col p { color: var(--muted-2); }
.light .philosophy__mission em { color: var(--green); font-style: italic; }
.light .duo__line { color: var(--green); }
.light .pullquote { color: var(--ink); }

/* hairlines + rules → light tone (gold accent rules stay gold) */
.light .tenets, .light .tenets li + li, .light .duo__col,
.light .work__grid, .light .work__grid .service { border-color: var(--line-2); }

/* cards on cream */
.light.featured { background: var(--surface); }
.light .feat { background: var(--paper); border-color: var(--line-2); }
.light .feat__thumb { border-color: var(--line-2); }
.light .feat__title { color: var(--green); }
.light .pillar { background: var(--paper); border-color: var(--line-2); border-top-color: var(--yellow); }
.light .pillar p { color: var(--muted-2); }

/* timeline: keep the gold line + nodes (read well on cream) */
.light .tl::before { background: var(--surface); }

/* photos keep their green/gold duotone — they read as intentional on cream too */

/* ---- print ---------------------------------------------------------------- */
@media print {
  body { background: #fff !important; color: #000; }
  body::before, body::after, .connect::before, .quote::before { display: none !important; }
  .about__body h2, .path__title, .tl h3, .feat__title, .focuslist__k, .footer__coach-name, .quote blockquote { color: #053E35; }
  .btn, .skip-link, .qr__fallback { display: none !important; }
  .qr__frame { box-shadow: none; border: 1px solid #ccc; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
