/* Home / assessment chrome — Instrument Serif + Space Grotesk, navy/cream/gold */

:root {
  --cream: #FCF9F1;
  --sand: #F4EDDD;
  --navy: #17203B;
  --navy-deep: #10172E;
  --gold: #C0922F;
  --gold-light: #E5BE6A;
  --ink: #5A5240;
  --muted: #8A8068;
  --ticket: polygon(0 0, 100% 0, 100% calc(50% - 6px), calc(100% - 7px) 50%, 100% calc(50% + 6px), 100% 100%, 0 100%, 0 calc(50% + 6px), 7px 50%, 0 calc(50% - 6px));
  --ticket-lg: polygon(0 0, 100% 0, 100% calc(50% - 7px), calc(100% - 8px) 50%, 100% calc(50% + 7px), 100% 100%, 0 100%, 0 calc(50% + 7px), 8px 50%, 0 calc(50% - 7px));
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--cream);
  font-family: 'Space Grotesk', sans-serif;
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--navy); }
a:hover { color: var(--gold); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@keyframes wl-twinkle {
  0%, 100% { opacity: .35; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1.1); }
}
@keyframes wl-tick {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.wl-ticket {
  clip-path: var(--ticket);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.wl-ticket-lg { clip-path: var(--ticket-lg); }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
}
.wrap-narrow { max-width: 920px; margin: 0 auto; }

.kicker {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.kicker.light { color: var(--gold-light); }

h1, h2, .serif {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
}

/* ── Nav ── */
.site-header {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 64px;
  background: var(--sand);
  border-bottom: 1px solid var(--navy);
  box-shadow: 0 3px 0 var(--sand), 0 4px 0 var(--navy);
  position: sticky;
  top: 0;
  z-index: 40;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.brand:hover { color: var(--navy); }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-name {
  font-family: 'Instrument Serif', serif;
  font-size: 27px;
  letter-spacing: .01em;
}
.brand-name span { color: var(--gold); }
.brand-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 4px;
  border-left: 1px solid rgba(23, 32, 59, .2);
  padding-left: 12px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.site-nav a {
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a.is-current { color: var(--gold); }
.header-cta {
  font-size: 12px;
  color: var(--sand);
  background: var(--navy);
  padding: 14px 26px;
}
.header-cta:hover { color: var(--sand); background: #10172E; }
.ticket-navy {
  display: inline-block;
  font-size: 12px;
  color: var(--sand);
  background: var(--navy);
  padding: 14px 26px;
}
.ticket-navy:hover { color: var(--sand); background: #10172E; }
.ink-link {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
}
.ink-link:hover { color: var(--gold); }
.menu-toggle {
  display: none;
  border: 1px solid var(--navy);
  background: var(--cream);
  color: var(--navy);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 14px;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--sand);
  padding: 84px 64px 88px;
}
.hero-glow {
  position: absolute;
  right: -60px;
  top: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(229, 190, 106, .13), transparent 62%);
  pointer-events: none;
}
.sparkles { position: absolute; inset: 0; pointer-events: none; }
.sparkles svg { position: absolute; animation: wl-twinkle 4s ease-in-out infinite; }
.hero-inner { position: relative; max-width: 920px; margin: 0 auto; text-align: center; }
.hero-inner.left { text-align: left; max-width: 1060px; }
.hero-pack-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: 48px 56px;
  align-items: center;
  max-width: 1100px;
  text-align: left;
}
.hero-with-pack { padding: 56px 64px 64px; }
.hero-pack-layout h1 { font-size: clamp(32px, 5.4vw, 58px); }
.hero-pack-layout .hero-lead { margin-left: 0; margin-bottom: 22px; }
.hero-pack-layout .hero-cta-row { justify-content: flex-start; }
.hero-pack-layout .hero-note { margin-top: 22px; }
.hero-pack-layout .gate-box {
  margin: 0;
  width: 100%;
  color: var(--navy);
  position: relative;
  z-index: 1;
}
.hero-pack-layout .gate-box h3 { color: var(--navy); }
.hero-pack-layout .gate-box p { color: var(--ink); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(229, 190, 106, .45);
  padding: 9px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
}
.eyebrow-text {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-lead {
  margin: 0 auto 36px;
  max-width: 640px;
  font-size: 17.5px;
  line-height: 1.75;
  color: rgba(244, 237, 221, .78);
  text-wrap: pretty;
}
.hero-inner.left .hero-lead { margin-left: 0; }
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-inner.left .hero-cta-row { justify-content: flex-start; }
.hero-cta {
  display: inline-block;
  font-size: 12.5px;
  color: var(--navy);
  background: var(--gold-light);
  padding: 18px 34px;
}
.hero-cta:hover { background: var(--sand); color: var(--navy); }
.hero-link {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sand);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
}
.hero-link:hover { color: var(--gold-light); }
.hero-note {
  margin: 28px 0 0;
  font-size: 13px;
  color: rgba(244, 237, 221, .5);
}
.hero-note em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(244, 237, 221, .8);
}
.hero-quote {
  margin: 48px auto 0;
  max-width: 720px;
  padding-top: 28px;
  border-top: 1px solid rgba(229, 190, 106, .28);
  text-align: center;
}
.hero-quote p {
  margin: 0 0 14px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  color: var(--sand);
}
.hero-quote cite {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.pull-quote {
  background: var(--sand);
  border-bottom: 1px solid rgba(23, 32, 59, .12);
  padding: 48px 64px;
  text-align: center;
}
.pull-quote blockquote {
  margin: 0 auto;
  max-width: 760px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--navy);
}
.pull-quote .quote-mark {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 42px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 8px;
}
.pull-quote cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: left;
}
.pillar {
  background: rgba(252, 249, 241, .06);
  border: 1px solid rgba(244, 237, 221, .16);
  padding: 18px 20px;
}
.pillar-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.pillar h3 {
  margin: 8px 0 6px;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 22px;
}
.pillar p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244, 237, 221, .6);
}

/* ── Cred strip ── */
.cred {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
  padding: 28px 64px;
  background: var(--sand);
  border-bottom: 1px solid rgba(23, 32, 59, .18);
}
.cred p {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  max-width: 280px;
  line-height: 1.3;
}
.cred-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.cred-stat strong {
  font-family: 'Instrument Serif', serif;
  font-size: 36px;
  font-weight: 400;
}
.cred-stat span {
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 110px;
  line-height: 1.5;
}

/* ── Band / chapter ── */
.band { padding: 96px 64px; }
.band.sand { background: var(--sand); }
.band.cream { background: var(--cream); }
.band.white { background: #fff; }
.band.navy {
  background: var(--navy);
  color: var(--sand);
}
.band-head { text-align: center; margin-bottom: 56px; }
.band-head h2,
.chapter-title {
  margin: 0 0 14px;
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.05;
  text-wrap: balance;
}
.band-head h2 em,
.chapter-title em { font-style: italic; color: var(--gold); }
.band.navy .band-head h2 em,
.band.navy .chapter-title em { color: var(--gold-light); }
.band-lede {
  margin: 0 auto;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  text-wrap: pretty;
}
.band.navy .band-lede { color: rgba(244, 237, 221, .72); }

.chapter-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.chapter-label .roman {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
}
.band.navy .chapter-label .roman { color: var(--gold-light); }
.chapter-label span:nth-child(2) {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.band.navy .chapter-label span:nth-child(2) { color: rgba(244, 237, 221, .55); }
.chapter-label .rule {
  flex: 1;
  height: 1px;
  background: rgba(192, 146, 47, .3);
}

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.wl-card {
  background: var(--sand);
  border: 1px solid rgba(23, 32, 59, .14);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wl-card.lift { box-shadow: 6px 6px 0 rgba(192, 146, 47, .22); background: #fff; }
.wl-card h3 {
  margin: 0;
  font-size: 26px;
}
.wl-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink);
  flex: 1;
}
.wl-card .num {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  color: rgba(23, 32, 59, .28);
}
.gold-link {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  align-self: flex-start;
}
.gold-link:hover { color: var(--gold); }

.quote-card {
  background: var(--sand);
  border: 1px solid rgba(23, 32, 59, .14);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote-mark {
  font-family: 'Instrument Serif', serif;
  font-size: 52px;
  line-height: .6;
  color: var(--gold);
}
.quote-card p {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}
.quote-card cite {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Gap stats ── */
.gap-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 48px;
}
.gap-stat {
  border-top: 1px solid rgba(244, 237, 221, .18);
  padding-top: 22px;
}
.gap-stat .val {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--gold-light);
}
.gap-stat .lbl {
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(244, 237, 221, .72);
}
.sources {
  margin: 40px 0 0;
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(244, 237, 221, .4);
}

/* ── Cohort / built-for ── */
.cohort-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: start;
}
.feature-list { display: flex; flex-direction: column; gap: 16px; margin: 0; padding: 0; list-style: none; }
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 15px;
  line-height: 1.6;
}
.feature-list .dot { color: var(--gold); font-size: 10px; }
.navy-panel {
  background: var(--navy);
  color: var(--sand);
  padding: 44px;
}
.navy-panel h3 {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.navy-panel ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.navy-panel li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244, 237, 221, .85);
}
.navy-panel li::before {
  content: '✦';
  color: var(--gold-light);
  font-size: 9px;
}

/* ── Host ── */
.host-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.host-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 6px 6px 0 rgba(192, 146, 47, .22);
}
.host-card h2 { margin: 8px 0 16px; font-size: 36px; }
.host-card p { margin: 0 0 14px; font-size: 15.5px; line-height: 1.85; color: var(--ink); }
.cred-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.cred-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(192, 146, 47, .4);
  padding: 7px 14px;
  border-radius: 999px;
}

/* ── Packages ── */
.package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
}
.package {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 44px;
}
.package.featured {
  background: var(--navy);
  color: var(--sand);
}
.package.plain {
  background: #fff;
  border: 1px solid rgba(23, 32, 59, .12);
}
.package-badge {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.package.plain .package-badge { color: var(--gold); }
.package h3 { margin: 0; font-size: 31px; }
.package .tagline {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(244, 237, 221, .75);
}
.package.plain .tagline { color: var(--ink); }
.package ul { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.package li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
  color: rgba(244, 237, 221, .85);
}
.package.plain li { color: var(--ink); }
.package li::before { content: '✦'; color: var(--gold-light); font-size: 9px; }
.package.plain li::before { color: var(--gold); }
.package .price {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(244, 237, 221, .65);
}
.package-cta {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
}
.package.featured .package-cta {
  color: var(--navy);
  background: var(--gold-light);
}
.package.featured .package-cta:hover { background: var(--sand); color: var(--navy); }
.package.plain .package-cta {
  color: var(--navy);
  border: 1px solid rgba(23, 32, 59, .35);
}
.package.plain .package-cta:hover { border-color: var(--gold); color: var(--gold); }

/* ── Checklist sheet ── */
.sheet-frame {
  display: block;
  max-width: 860px;
  margin: 0 auto 28px;
  background: #fff;
  border: 1px solid rgba(23, 32, 59, .12);
  box-shadow: 6px 6px 0 rgba(192, 146, 47, .22);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .35s ease, box-shadow .4s ease, filter .4s ease;
}
.sheet-frame:hover { color: inherit; }
.sheet-frame:not(.sheet-preview):hover { transform: translateY(-4px); }
.sheet-frame img { display: block; width: 100%; height: auto; }

@keyframes wl-sheet-float {
  0%, 100% { transform: translateY(0) rotate(-0.7deg); }
  50% { transform: translateY(-8px) rotate(0.7deg); }
}
.sheet-preview {
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  animation: wl-sheet-float 6.5s ease-in-out infinite;
  transform-origin: 50% 70%;
  transition: box-shadow .4s ease, filter .4s ease;
}
.sheet-frame.sheet-preview:hover,
.figure-frame.sheet-preview:hover {
  box-shadow: 10px 12px 0 rgba(192, 146, 47, .32);
  filter: brightness(1.04);
}

/* ── Invite + footer ── */
.method {
  padding: 72px 64px;
  background: var(--navy);
  color: var(--sand);
  text-align: center;
}
.method p {
  margin: 0 auto;
  max-width: 760px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(21px, 2.3vw, 28px);
  line-height: 1.55;
  text-wrap: pretty;
}
.method span { color: var(--gold-light); }

.invite { padding: 110px 64px; }
.invite-box {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  background: var(--navy);
  color: var(--sand);
  border: 1px solid var(--gold);
  padding: 76px 64px;
  text-align: center;
}
.invite-box::before {
  content: '';
  position: absolute;
  inset: 9px;
  border: 1px dashed rgba(229, 190, 106, .45);
  pointer-events: none;
}
.invite-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.invite h2 {
  margin: 0 0 22px;
  font-style: italic;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
}
.invite p {
  margin: 0 auto 40px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(244, 237, 221, .75);
}
.invite-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.invite-primary {
  display: inline-block;
  font-size: 12.5px;
  color: var(--navy);
  background: var(--gold-light);
  padding: 19px 36px;
}
.invite-primary:hover { background: var(--sand); color: var(--navy); }
.invite-ghost {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: transparent;
  border: 1.5px solid var(--gold-light);
  padding: 17.5px 36px;
  text-decoration: none;
}
.invite-ghost:hover { background: rgba(229, 190, 106, .12); color: var(--gold-light); }
.invite-fine {
  margin: 30px 0 0;
  font-size: 12px;
  color: rgba(244, 237, 221, .45);
}
.invite p.invite-fine { margin: 30px 0 0; }

.site-footer {
  background: var(--navy-deep);
  color: var(--sand);
  padding: 72px 64px 40px;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand img { display: block; }
.footer-brand span {
  font-family: 'Instrument Serif', serif;
  font-size: 24px;
}
.footer-brand em { font-style: normal; color: var(--gold-light); }
.footer-copy {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(244, 237, 221, .55);
  max-width: 340px;
}
.entity-line {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(244, 237, 221, .4);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h3 {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: 'Space Grotesk', sans-serif;
}
.footer-col a {
  font-size: 13.5px;
  color: rgba(244, 237, 221, .75);
  text-decoration: none;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1160px;
  margin: 56px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 237, 221, .14);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 11.5px;
  color: rgba(244, 237, 221, .4);
}
.footer-bottom em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 14px;
}

.discovery-cta {
  display: none;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  background: var(--navy);
  color: var(--sand);
  border: 1px solid var(--gold);
  padding: 18px 22px;
  max-width: 280px;
  box-shadow: 6px 6px 0 rgba(192, 146, 47, .28);
  font-size: 13.5px;
  line-height: 1.55;
}
.discovery-cta.show { display: block; }
.discovery-cta a { color: var(--gold-light); }
.discovery-cta-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: var(--sand);
  cursor: pointer;
  font-size: 16px;
}

.case-prose {
  max-width: 760px;
  margin: 0 auto;
}
.case-prose h2 {
  margin: 48px 0 16px;
  font-size: clamp(28px, 3vw, 36px);
}
.case-prose p {
  margin: 0 0 16px;
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--ink);
}
.measure-chart {
  margin: 28px 0 8px;
  background: #fff;
  border: 1px solid rgba(23, 32, 59, .12);
  box-shadow: 6px 6px 0 rgba(192, 146, 47, .18);
  padding: 28px 30px;
}
.measure-chart h3 {
  margin: 0 0 22px;
  font-size: 22px;
}
.bar-row {
  display: grid;
  grid-template-columns: 160px 1fr 56px;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 13.5px;
}
.bar-track {
  height: 8px;
  background: rgba(23, 32, 59, .08);
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #8E6520, #D9B064, var(--gold));
}
.measure-note {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.figure-frame {
  display: block;
  margin: 0 auto 40px;
  max-width: 960px;
  background: #fff;
  border: 1px solid rgba(23, 32, 59, .12);
  box-shadow: 6px 6px 0 rgba(192, 146, 47, .22);
  overflow: hidden;
  transition: box-shadow .4s ease, filter .4s ease;
}
.figure-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.figure-caption {
  margin: -24px auto 56px;
  max-width: 720px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}

.gate-box {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(23, 32, 59, .12);
  box-shadow: 6px 6px 0 rgba(192, 146, 47, .22);
  padding: 36px 32px;
  text-align: left;
}
.gate-box h3 {
  margin: 0 0 8px;
  font-size: 28px;
}
.gate-box p {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink);
}
.gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gate-form input {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--navy);
  background: var(--cream);
  color: var(--navy);
  outline: none;
}
.gate-form input:focus { border-color: var(--gold); }
.gate-form button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  text-align: center;
  width: 100%;
}
.gate-form button:disabled { opacity: .6; cursor: wait; }
.gate-fine {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.gate-feedback { display: none; margin-top: 12px; font-size: 13.5px; }
.gate-feedback.is-on { display: block; }
.gate-feedback.error { color: #8E2A2A; }
.gate-feedback.success { color: var(--navy); }
.gate-downloads { display: none; margin-top: 18px; }
.gate-downloads.is-on { display: flex; flex-direction: column; gap: 10px; }
.gate-downloads a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 64px 96px;
}
.legal-kicker {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.legal-main h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.05;
}
.legal-lede {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}
.legal-meta {
  margin: 0 0 40px;
  font-size: 13px;
  color: var(--muted);
}
.legal-toc {
  margin: 0 0 48px;
  padding: 24px 28px;
  background: var(--sand);
  border: 1px solid rgba(23, 32, 59, .12);
}
.legal-toc h2 {
  margin: 0 0 12px;
  font-size: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.legal-toc ol {
  margin: 0;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.9;
}
.legal-section { margin-bottom: 40px; }
.legal-section h2 {
  margin: 0 0 14px;
  font-size: 28px;
}
.legal-section p, .legal-section li {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink);
}
.legal-section ul { padding-left: 20px; }
.legal-section li { margin-bottom: 8px; }
.legal-section code {
  font-size: 13px;
  background: var(--sand);
  padding: 1px 6px;
}

/* ── Home page ── */
.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 56px;
  align-items: center;
  padding: 84px 64px 100px;
}
.home-hero .hero-copy { position: relative; z-index: 1; }
.home-hero .hero-lead {
  margin: 0 0 42px;
  max-width: 540px;
}
.home-hero .hero-cta-row { justify-content: flex-start; }
.home-hero h1 { font-size: clamp(44px, 5.6vw, 84px); }
.home-portrait {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(470px, 100%);
}
.home-portrait svg { display: block; width: 100%; height: auto; }
.home-portrait-card {
  position: absolute;
  left: -26px;
  bottom: 44px;
  background: var(--cream);
  color: var(--navy);
  padding: 16px 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
}
.home-portrait-card strong {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  font-weight: 400;
}
.home-portrait-card span {
  display: block;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.home-mascot {
  position: absolute;
  right: -20px;
  bottom: -12px;
  width: 132px;
  height: auto;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .4));
  pointer-events: none;
}
.cred-clock { flex: none; }
.cred-clock .hand {
  transform-origin: 32px 37px;
  animation: wl-tick 12s linear infinite;
}

.letters-bar { padding: 56px 64px 0; background: var(--cream); }
.letters-box {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--gold);
  background: var(--sand);
  padding: 26px 34px;
  box-shadow: 6px 6px 0 rgba(192, 146, 47, .18);
}
.letters-copy { min-width: 240px; }
.letters-copy h2 {
  margin: 0;
  font-size: 24px;
}
.letters-copy p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--ink);
}
.letters-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-left: auto;
}
.letters-form input {
  font-family: inherit;
  font-size: 13.5px;
  border: 1px solid var(--navy);
  background: var(--cream);
  color: var(--navy);
  padding: 14px 16px;
  outline: none;
  width: 170px;
}
.letters-form input[type="email"] { width: 250px; }
.letters-form input:focus { border-color: var(--gold); }
.letters-form input.input-error { border-color: #8E2A2A; }
.letters-form button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}
.letters-form button:disabled { opacity: .6; cursor: wait; }
.newsletter-feedback {
  display: none;
  width: 100%;
  margin: 4px 0 0;
  font-size: 13.5px;
  line-height: 1.5;
}
.newsletter-feedback.visible { display: block; }
.newsletter-feedback.error { color: #8E2A2A; }
.newsletter-feedback.success { color: var(--navy); }

.foundation-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: start;
}
.foundation-grid h2 {
  margin: 0;
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.06;
  text-wrap: balance;
}
.foundation-grid h2 em { font-style: italic; color: var(--gold); }
.foundation-copy { padding-top: 58px; }
.foundation-copy p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  text-wrap: pretty;
}
.foundation-copy p:last-child {
  margin: 0;
  font-weight: 600;
  color: var(--navy);
}

.path-track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  column-gap: 28px;
  row-gap: 8px;
  align-items: start;
}
.path-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 12px;
  width: 0;
  border-left: 2px dashed rgba(192, 146, 47, .6);
  transform: translateX(-50%);
}
.path-num {
  position: relative;
  z-index: 1;
  grid-column: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
}
.path-card {
  max-width: 420px;
  background: var(--cream);
  border: 1px solid rgba(23, 32, 59, .16);
  padding: 30px 32px;
}
.path-card.left {
  grid-column: 1;
  justify-self: end;
  box-shadow: 6px 6px 0 rgba(192, 146, 47, .22);
}
.path-card.right {
  grid-column: 3;
  justify-self: start;
  box-shadow: -6px 6px 0 rgba(192, 146, 47, .22);
}
.path-card.navy {
  background: var(--navy);
  color: var(--sand);
  border: 0;
  box-shadow: -6px 6px 0 rgba(192, 146, 47, .35);
}
.path-card h3 {
  margin: 0 0 10px;
  font-size: 27px;
}
.path-card p {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink);
}
.path-card.navy p { color: rgba(244, 237, 221, .75); }
.path-card.navy .gold-link {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}
.path-card.navy .gold-link:hover { color: var(--sand); }
.path-card h3 em { font-style: italic; color: var(--gold-light); }
.path-gap { min-height: 0; }

.events-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
}
.events-head h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  max-width: 640px;
}
.events-head h2 em { font-style: italic; color: var(--gold-light); }
.events-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
  align-items: start;
}
.polaroid {
  background: var(--cream);
  padding: 12px 12px 0;
  box-shadow: 0 26px 60px rgba(0, 0, 0, .4);
}
.polaroid img,
.polaroid video {
  display: block;
  width: 100%;
  object-fit: cover;
  background: var(--navy-deep);
}
.polaroid-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 8px;
  border-top: 2px dashed rgba(23, 32, 59, .3);
  color: var(--navy);
}
.polaroid-caption span:first-child {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.polaroid-stamp {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold);
  white-space: nowrap;
}
.polaroid.wide { grid-column: 1 / span 7; transform: rotate(-1.1deg); }
.polaroid.wide img { height: 380px; }
.polaroid.side { grid-column: 8 / span 5; margin-top: 46px; transform: rotate(1.3deg); }
.polaroid.side img { height: 300px; }
.polaroid.low { grid-column: 2 / span 5; margin-top: 8px; transform: rotate(.9deg); }
.polaroid.low img { height: 280px; }
.polaroid.clip { grid-column: 7 / span 6; margin-top: 40px; transform: rotate(-.8deg); }
.polaroid.clip video { height: 300px; }

.home-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.home-split h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 50px);
  line-height: 1.05;
}
.home-split h2 em { font-style: italic; color: var(--gold); }
.home-split p {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  text-wrap: pretty;
}

.package-grid.three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1160px;
}
.package .price-lg {
  margin: 0;
  font-family: 'Instrument Serif', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
}
.package.featured .price-lg { color: var(--gold-light); }
.package .price-lg span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  color: var(--muted);
}
.package.featured .price-lg span { color: rgba(244, 237, 221, .5); }

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 56px;
  align-items: center;
  padding: 84px 64px 96px;
}
.page-hero .hero-copy { position: relative; z-index: 1; }
.page-hero .hero-lead {
  margin: 0 0 36px;
  max-width: 560px;
}
.page-hero .hero-cta-row { justify-content: flex-start; }
.page-hero h1 { font-size: clamp(42px, 5.2vw, 76px); }
.about-hero {
  text-align: center;
  padding: 96px 64px 72px;
}
.about-hero h1 {
  margin: 0 auto 18px;
  max-width: 900px;
  font-size: clamp(48px, 6vw, 76px);
}
.about-hero .hero-lead {
  margin: 0 auto;
  max-width: 640px;
}
.about-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}
.about-kicker .rule {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--gold-light);
}
.about-sub {
  margin: 0 auto 22px;
  max-width: 760px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  color: var(--gold-light);
}

.session-card-wrap {
  position: relative;
  justify-self: center;
  width: min(460px, 100%);
  z-index: 1;
}
.session-card-shadow {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px solid rgba(229, 190, 106, .5);
  pointer-events: none;
}
.session-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(23, 32, 59, .12);
  box-shadow: 0 20px 50px rgba(23, 32, 59, .18);
  padding: 28px 30px;
  color: var(--navy);
}
.session-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.session-card-head span:last-child { color: var(--muted); }
.session-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.25;
}
.session-list { display: flex; flex-direction: column; gap: 12px; }
.session-item {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
  color: var(--ink);
}
.session-item.done { text-decoration: line-through; text-decoration-color: rgba(138, 143, 152, .5); }
.session-item.current { color: var(--navy); font-weight: 500; }
.session-item.later { color: var(--muted); }
.session-check { color: var(--gold); font-size: 12px; }
.session-radio {
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  top: 1px;
}
.session-radio.empty { border-color: rgba(23, 32, 59, .25); }
.session-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(23, 32, 59, .08);
  margin-top: 22px;
  padding-top: 16px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.session-bars { display: flex; gap: 6px; }
.session-bars i {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--gold);
}
.session-bars i.dim { opacity: .45; }
.session-bars i.off { background: rgba(23, 32, 59, .15); }
.session-note {
  position: absolute;
  top: -15px;
  right: 20px;
  transform: rotate(2deg);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  background: #fff;
  padding: 0 10px;
  border: 1px solid rgba(192, 146, 47, .3);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(23, 32, 59, .1);
  border-bottom: 1px solid rgba(23, 32, 59, .1);
  padding: 15px 0;
  background: #fff;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: wl-marquee 44s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
}
.marquee-group .dot { color: var(--gold); font-size: 9px; font-style: normal; }
@keyframes wl-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.compare {
  padding: 30px 32px;
}
.compare.minus {
  background: var(--sand);
  border: 1px solid rgba(23, 32, 59, .1);
}
.compare.plus {
  position: relative;
  background: #fff;
  border: 1px solid var(--gold);
  box-shadow: 0 16px 40px rgba(192, 146, 47, .12);
}
.compare .lbl {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare.plus .lbl { color: var(--gold); }
.compare p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
.compare.minus p {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(138, 143, 152, .55);
}
.compare p:last-child { margin: 0; }

.coach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(244, 237, 221, .12);
  border: 1px solid rgba(244, 237, 221, .12);
}
.coach-cell {
  background: var(--navy);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.coach-cell.highlight {
  background: #1E2A3C;
  border-top: 2px solid var(--gold-light);
}
.coach-cell .meta {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.coach-cell h3 {
  margin: 0;
  font-size: 25px;
}
.coach-cell p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(244, 237, 221, .68);
}
.promise {
  margin: 52px auto 0;
  max-width: 760px;
  text-align: center;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 29px);
  line-height: 1.55;
}
.promise span { color: var(--gold-light); }

.about-story {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.about-portrait {
  position: relative;
  padding: 0 18px 18px 0;
}
.about-portrait::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(192, 146, 47, .55);
  border-radius: 230px 230px 6px 6px;
  pointer-events: none;
}
.about-portrait img {
  position: relative;
  display: block;
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 230px 230px 6px 6px;
}
.lede-serif {
  margin: 0 0 30px;
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  line-height: 1.5;
  color: var(--navy);
  text-wrap: pretty;
}
.lede-serif em { font-style: italic; color: var(--gold); }
.story-copy p {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--ink);
}
.story-copy p:last-child {
  margin: 0;
  color: var(--navy);
  font-weight: 500;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.cred-item {
  border-top: 1px solid rgba(23, 32, 59, .18);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cred-item .meta {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.cred-item h3 {
  margin: 0;
  font-size: 26px;
}
.cred-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.impact-grid h3 {
  margin: 0 0 12px;
  font-size: 27px;
  color: var(--gold-light);
}
.impact-grid p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(244, 237, 221, .72);
}

.mission-block { text-align: center; max-width: 920px; margin: 0 auto; }
.mission-block h2 {
  margin: 0 auto 34px;
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1.18;
}
.mission-block h2 em { font-style: italic; color: var(--gold); }
.mission-block p {
  margin: 0 auto 22px;
  max-width: 680px;
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--ink);
}
.mission-block .fine {
  font-size: 14.5px;
  color: var(--muted);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-btn {
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(23, 32, 59, .2);
  padding: 10px 16px;
  cursor: pointer;
}
.filter-btn.is-active,
.filter-btn:hover {
  background: var(--navy);
  color: var(--sand);
  border-color: var(--navy);
}
.workshop-card {
  background: #fff;
  border: 1px solid rgba(23, 32, 59, .12);
  padding: 28px 32px;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 6px 6px 0 rgba(192, 146, 47, .12);
}
.workshop-card[data-hidden="true"] { display: none; }
.workshop-card h3 {
  margin: 0 0 8px;
  font-size: 26px;
}
.workshop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}
.workshop-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 640px;
}
.workshop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.pill {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(192, 146, 47, .4);
  color: var(--gold);
}
.pill.upcoming { background: var(--navy); color: var(--gold-light); border-color: var(--navy); }
.pill.past { color: var(--muted); border-color: rgba(23, 32, 59, .2); }
.section-kicker {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 36px 0 16px;
}

.apply-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--sand);
  border: 1px solid rgba(23, 32, 59, .12);
  padding: 40px 36px;
  box-shadow: 6px 6px 0 rgba(192, 146, 47, .18);
}
.apply-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14.5px;
  border: 1px solid var(--navy);
  background: var(--cream);
  color: var(--navy);
  padding: 14px 16px;
  outline: none;
}
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus { border-color: var(--gold); }
.apply-form textarea { resize: vertical; min-height: 96px; }
.apply-form .req { color: #8E2A2A; }
.apply-note {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: var(--ink);
}

.wl-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(16, 23, 46, .72);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.wl-modal.is-open { display: flex; }
.wl-modal-card {
  position: relative;
  max-width: 480px;
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--gold);
  padding: 48px 36px;
  text-align: center;
}
.wl-modal-card h2 { margin: 0 0 12px; font-size: 32px; }
.wl-modal-card p { margin: 0 0 24px; font-size: 15.5px; line-height: 1.7; color: var(--ink); }
.wl-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--navy);
}

@media (max-width: 900px) {
  .site-header, .hero, .cred, .band, .method, .invite, .site-footer, .pull-quote, .legal-main, .letters-bar, .about-hero {
    padding-left: 24px;
    padding-right: 24px;
  }
  .site-nav, .header-cta { display: none; }
  .site-header.is-open .site-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    order: 4;
  }
  .menu-toggle { display: inline-block; }
  .card-grid, .card-grid.two, .gap-stats, .cohort-layout, .package-grid, .package-grid.three, .footer-grid, .host-card,
  .home-hero, .page-hero, .foundation-grid, .home-split, .compare-grid, .coach-grid, .about-story, .cred-grid, .impact-grid {
    grid-template-columns: 1fr;
  }
  .invite-box { padding: 48px 24px; }
  .brand-tag { display: none; }
  .discovery-cta { right: 16px; left: 16px; max-width: none; }
  .bar-row { grid-template-columns: 1fr; gap: 6px; }
  .home-hero { padding-top: 56px; padding-bottom: 72px; gap: 36px; }
  .page-hero { padding-top: 56px; padding-bottom: 72px; gap: 36px; grid-template-columns: 1fr; }
  .hero-pack-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .hero-pack-layout .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-pack-layout .hero-cta-row { justify-content: center; }
  .sheet-preview { max-width: 220px; }
  .about-portrait img { height: 420px; }
  .home-portrait { justify-self: center; }
  .home-portrait-card { left: 8px; bottom: 16px; }
  .home-mascot { width: 96px; right: 0; }
  .letters-form { margin-left: 0; width: 100%; }
  .letters-form input,
  .letters-form input[type="email"] { width: 100%; }
  .foundation-copy { padding-top: 0; }
  .path-track {
    grid-template-columns: 44px 1fr;
    column-gap: 16px;
  }
  .path-track::before { left: 22px; transform: none; }
  .path-num { grid-column: 1; }
  .path-gap { display: none; }
  .path-card.left,
  .path-card.right {
    grid-column: 2;
    justify-self: stretch;
    max-width: none;
    box-shadow: 6px 6px 0 rgba(192, 146, 47, .22);
  }
  .events-head { flex-direction: column; align-items: flex-start; }
  .events-masonry { grid-template-columns: 1fr; }
  .polaroid.wide,
  .polaroid.side,
  .polaroid.low,
  .polaroid.clip {
    grid-column: auto;
    margin-top: 0;
    transform: none;
  }
  .polaroid img,
  .polaroid video { height: 240px; }
}

.scroll-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.scroll-to-top:hover {
  background: var(--gold);
  color: var(--cream);
}
.scroll-to-top svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}
