:root{
  --black:#1A1A1A;
  --white:#FFFFFF;
  --teal:#1ABFA0;
  --grey:#9A9A9A;
  --light:#F0EDE8;
  --mid:#2E2E2E;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;background:var(--black);color:var(--white);font-size:16px;line-height:1.6;-webkit-font-smoothing:antialiased}

/* A11Y */
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
.skip-link{position:absolute;left:-9999px;top:0;z-index:200;padding:10px 18px;background:var(--teal);color:var(--black);font-size:13px;font-weight:500;text-decoration:none}
.skip-link:focus{left:1rem;top:1rem}
a:focus-visible,button:focus-visible{outline:2px solid var(--teal);outline-offset:3px}

/* NAV */
nav{position:fixed;top:0;left:0;right:0;z-index:100;display:flex;align-items:center;justify-content:space-between;padding:1.25rem 4rem;background:rgba(26,26,26,0.92);backdrop-filter:blur(8px);border-bottom:0.5px solid rgba(255,255,255,0.08)}
.nav-brand{font-size:15px;font-weight:500;letter-spacing:.01em;color:var(--teal);text-decoration:none}
.nav-links{display:flex;gap:2rem}
.nav-links a{font-size:13px;color:var(--grey);text-decoration:none;transition:color .2s}
.nav-links a:hover{color:var(--white)}
.nav-cta{font-size:13px;padding:8px 20px;border:1px solid var(--teal);color:var(--teal);text-decoration:none;border-radius:2px;transition:all .2s;white-space:nowrap}
.nav-cta:hover{background:var(--teal);color:var(--black)}

/* HERO */
.hero{min-height:100vh;display:grid;grid-template-columns:1fr 1fr;padding-top:72px}
/* HERO PORTRAIT — a transparent cutout, so the column background IS the page
   background. A radial teal wash gives it something to sit against, and the
   ::after gradient fades the base into the page: she is photographed seated and
   the stool was removed, so without it she reads as floating. */
/* HERO PORTRAIT — a transparent cutout, so the column background IS the page
   background. A radial teal wash gives it something to sit against, and the
   ::after gradient fades the base into the page: she is photographed seated and
   the stool was removed, so without it she reads as floating.

   The picture is absolutely positioned to the container rather than laid out as
   a flex item. As a flex item its height came from its own content, so the img's
   height:100% had nothing to resolve against and it rendered at intrinsic size —
   overflowing on mobile (clipped to the bottom half) and, combined with
   object-position:bottom, falling below the fold on desktop. inset:0 makes the
   box unambiguous and object-fit:contain can then never overflow. */
.hero-img{position:relative;overflow:hidden;min-height:0;
  background:
    radial-gradient(120% 78% at 50% 96%, rgba(26,191,160,.13) 0%, rgba(26,191,160,.04) 38%, transparent 68%),
    var(--black)}

.hero-img::after{content:'';position:absolute;left:0;right:0;bottom:0;height:110px;pointer-events:none;z-index:1;
  background:linear-gradient(to top, var(--black) 10%, rgba(26,26,26,.7) 45%, transparent 100%)}
.hero-portrait{position:absolute;inset:0;display:block;width:100%;height:100%;
  object-fit:contain;object-position:center bottom;
  /* The asset is grayscale+alpha (half the bytes of RGBA); the brown hue is
     applied here so it stays tunable without re-exporting. */
  filter:sepia(.38) saturate(1.15) contrast(1.03)}
.hero-right{display:flex;flex-direction:column;justify-content:center;padding:3.5rem 4rem 3.5rem 4.5rem;max-width:640px}
.hero-eyebrow{font-size:11px;font-weight:500;letter-spacing:.14em;color:var(--teal);margin-bottom:1.5rem}
.hero-headline{font-size:clamp(2.4rem,4vw,3.4rem);font-weight:300;line-height:1.1;margin-bottom:1.75rem}
.hero-headline strong{font-weight:500}
.hero-divider{width:48px;height:1.5px;background:var(--teal);margin-bottom:1.75rem}
.hero-body{font-size:17px;font-weight:300;line-height:1.75;color:rgba(255,255,255,.82);max-width:440px;margin-bottom:2rem}
.hero-body em{font-style:italic;color:var(--white)}
.hero-meta{font-size:13px;color:var(--grey);margin-bottom:2rem}
.btn-primary{display:inline-block;padding:14px 32px;background:var(--teal);color:var(--black);font-family:'DM Sans',sans-serif;font-size:14px;font-weight:500;text-decoration:none;border-radius:2px;transition:opacity .2s;border:none;cursor:pointer}
.btn-primary:hover{opacity:.88}
.btn-ghost{display:inline-block;padding:13px 32px;border:1px solid rgba(255,255,255,.25);color:var(--white);font-family:'DM Sans',sans-serif;font-size:14px;font-weight:300;text-decoration:none;border-radius:2px;margin-left:1rem;transition:border-color .2s}
.btn-ghost:hover{border-color:rgba(255,255,255,.6)}
.hero-btn-row{display:flex;flex-wrap:wrap;gap:1rem}
.hero-btn-row .btn-ghost{margin-left:0}
.hero-stat-row{display:flex;gap:2.5rem;margin-top:2.25rem;padding-top:1.5rem;border-top:0.5px solid rgba(255,255,255,.1);flex-wrap:wrap}
.hero-stat-n{font-size:26px;font-weight:500;color:var(--white)}
.hero-stat-l{font-size:12px;color:var(--grey);margin-top:2px}

/* STAGES SECTION */
.stages{background:var(--light);color:var(--black);padding:7rem 4rem}
.stages-inner{max-width:1100px;margin:0 auto}
.section-label{font-size:11px;font-weight:500;letter-spacing:.14em;color:var(--teal);margin-bottom:1.25rem}
.stages-headline{font-size:clamp(2rem,3vw,2.75rem);font-weight:300;line-height:1.2;max-width:520px;margin-bottom:.5rem}
.stages-headline em{font-family:'DM Serif Display',serif;font-style:italic}
.stages-sub{font-size:15px;color:#555;max-width:480px;margin-bottom:4rem;line-height:1.7}
.stages-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px}
.stage-item{padding:2.25rem 2rem;background:rgba(26,26,26,.04);border-top:2px solid transparent;transition:border-color .2s,background .2s}
.stage-item:hover{border-color:var(--teal);background:rgba(26,26,26,.07)}
.stage-decade{font-size:28px;font-weight:300;color:var(--black);margin-bottom:.75rem}
.stage-tags{font-size:13px;color:#555;line-height:1.8}
.stage-item.mixed{grid-column:span 1;background:rgba(26,165,140,.06);border-top-color:var(--teal)}
.stage-item.youth{background:rgba(26,26,26,.04)}
.stages-note{margin-top:2px;padding:1.75rem 2rem;background:rgba(26,165,140,.08);border-left:3px solid var(--teal)}
.stages-note p{font-size:14px;color:#333;line-height:1.7}

/* APPROACH */
.approach{padding:7rem 4rem;background:var(--black)}
.approach-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:start}
.approach-left h2{font-size:clamp(2rem,3vw,2.6rem);font-weight:300;line-height:1.2;margin-bottom:1.5rem}
.approach-left h2 em{font-family:'DM Serif Display',serif;font-style:italic;color:rgba(255,255,255,.75)}
.approach-left p{font-size:15px;color:var(--grey);line-height:1.8;max-width:400px}
.approach-list{list-style:none;display:flex;flex-direction:column;gap:1.5rem}
.approach-list li{display:flex;gap:1rem;align-items:flex-start}
.approach-list li::before{content:'';display:block;width:6px;height:6px;border-radius:50%;background:var(--teal);margin-top:8px;flex-shrink:0}
.approach-list li span{font-size:15px;color:rgba(255,255,255,.8);line-height:1.7}

/* CREDENTIALS */
.credentials{padding:7rem 4rem;background:var(--mid)}
.credentials-inner{max-width:1100px;margin:0 auto}
.cred-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:2px;margin-top:3.5rem}
.cred-item{padding:2rem 2.25rem;background:rgba(255,255,255,.03)}
.cred-org{font-size:12px;font-weight:500;letter-spacing:.08em;color:var(--teal);margin-bottom:.4rem}
.cred-title{font-size:16px;font-weight:400;color:var(--white);line-height:1.4}
.cred-note{font-size:13px;color:var(--grey);margin-top:.3rem}
.perf-row{margin-top:2px;display:grid;grid-template-columns:repeat(3,1fr);gap:2px}
.perf-item{padding:2rem 2.25rem;background:rgba(255,255,255,.03);display:flex;flex-direction:column;gap:.3rem}
.perf-n{font-size:28px;font-weight:300;color:var(--white)}
.perf-l{font-size:13px;color:var(--grey)}
.bg-note{margin-top:2px;padding:1.75rem 2.25rem;background:rgba(26,191,160,.06);border-left:2px solid var(--teal);display:flex;align-items:center;gap:1rem}
.bg-note p{font-size:14px;color:rgba(255,255,255,.7);line-height:1.7}

/* ADAPTIVE */
.adaptive{padding:7rem 4rem;background:var(--black)}
.adaptive-inner{max-width:1100px;margin:0 auto}
.adaptive-head{max-width:580px;margin-bottom:4rem}
.adaptive-head h2{font-size:clamp(1.9rem,3vw,2.6rem);font-weight:300;line-height:1.2;margin-bottom:1rem}
.adaptive-head p{font-size:15px;color:var(--grey);line-height:1.7}
.adaptive-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.adap-card{padding:2.25rem;border:0.5px solid rgba(255,255,255,.1);border-radius:2px}
.adap-card h4{font-size:15px;font-weight:500;color:var(--teal);margin-bottom:.75rem}
.adap-card p{font-size:14px;color:var(--grey);line-height:1.75}
.scope-note{margin-top:1.5rem;padding:1.5rem 2rem;border-left:2px solid rgba(255,255,255,.15)}
.scope-note p{font-size:14px;color:var(--grey);line-height:1.7}

/* CTA SECTION */
.cta-section{padding:8rem 4rem;background:var(--light);color:var(--black);text-align:center}
.cta-inner{max-width:600px;margin:0 auto}
.cta-inner h2{font-size:clamp(2.2rem,4vw,3rem);font-weight:300;line-height:1.15;margin-bottom:1.25rem}
.cta-inner h2 em{font-family:'DM Serif Display',serif;font-style:italic}
.cta-inner p{font-size:16px;color:#555;line-height:1.75;margin-bottom:2.5rem}
.btn-dark{display:inline-block;padding:15px 36px;background:var(--black);color:var(--white);font-family:'DM Sans',sans-serif;font-size:14px;font-weight:500;text-decoration:none;border-radius:2px;transition:opacity .2s}
.btn-dark:hover{opacity:.8}
.cta-meta{margin-top:1.5rem;font-size:13px;color:#888}
.cta-meta a{color:var(--black);text-decoration:none;border-bottom:1px solid rgba(0,0,0,.25)}

/* FOOTER */
footer{padding:3rem 4rem;background:var(--black);border-top:0.5px solid rgba(255,255,255,.08);display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem}
.foot-brand{font-size:14px;letter-spacing:.01em;color:var(--teal);font-weight:500}
.foot-links{display:flex;gap:2rem;flex-wrap:wrap}
.foot-links a{font-size:12px;color:var(--grey);text-decoration:none}
.foot-links a:hover{color:var(--white)}
.foot-copy{font-size:12px;color:var(--grey)}

/* APOKALYPTO */
.apokalypto{padding:7rem 4rem;background:#0D0D0D;position:relative;overflow:hidden}
.apokalypto::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--teal),transparent)}
.apo-inner{max-width:1100px;margin:0 auto}
.apo-top{margin-bottom:4rem;border-left:2px solid var(--teal);padding-left:2rem}
.apo-label{font-size:11px;font-weight:500;letter-spacing:.14em;color:var(--teal);margin-bottom:1rem}
.apo-wordmark{font-size:clamp(2.8rem,6vw,5rem);font-weight:300;color:var(--white);letter-spacing:.06em;line-height:1}
.apo-tagline{font-size:clamp(1.1rem,2vw,1.5rem);font-weight:300;color:var(--grey);margin-top:.5rem;font-style:italic;font-family:'DM Serif Display',serif}
.apo-body{display:grid;grid-template-columns:1fr 1fr;gap:4rem;margin-bottom:4rem}
.apo-intro{font-size:18px;font-weight:400;color:var(--white);line-height:1.65;margin-bottom:1.5rem}
.apo-desc{font-size:14px;color:var(--grey);line-height:1.8;margin-bottom:1rem}
.apo-pillars{display:flex;flex-direction:column;gap:1.25rem;margin-top:2rem;border-top:.5px solid rgba(255,255,255,.08);padding-top:2rem}
.apo-pillar-title{font-size:13px;font-weight:500;color:var(--teal);margin-bottom:.3rem}
.apo-pillar-body{font-size:13px;color:var(--grey);line-height:1.7}
.apo-weeks{margin-bottom:2rem}
.apo-week-label{font-size:11px;font-weight:500;letter-spacing:.1em;color:var(--grey);margin-bottom:1rem;text-transform:uppercase}
.apo-week-list{display:flex;flex-direction:column;gap:0}
.apo-week{display:grid;grid-template-columns:28px 1fr 1fr;gap:.5rem;padding:.6rem 0;border-bottom:.5px solid rgba(255,255,255,.06);align-items:baseline}
.wk-n{font-size:11px;color:rgba(26,191,160,.5);font-weight:500}
.wk-t{font-size:13px;color:var(--white);font-weight:400}
.wk-d{font-size:12px;color:var(--grey)}
.apo-who{border-left:.5px solid rgba(255,255,255,.1);padding-left:1.5rem;margin-top:2rem}
.apo-who-item{font-size:13px;color:var(--grey);padding:.35rem 0;border-bottom:.5px solid rgba(255,255,255,.05)}
.apo-team{display:grid;grid-template-columns:1fr auto 1fr;gap:2rem;align-items:start;padding:3rem 0;border-top:.5px solid rgba(255,255,255,.08);border-bottom:.5px solid rgba(255,255,255,.08);margin-bottom:2.5rem}
.apo-divider-v{width:.5px;background:rgba(255,255,255,.1);align-self:stretch}
.apo-person-name{font-size:16px;font-weight:500;color:var(--white);margin-bottom:.25rem}
.apo-person-role{font-size:12px;color:var(--teal);margin-bottom:.75rem;line-height:1.5}
.apo-person-bio{font-size:13px;color:var(--grey);line-height:1.75}
.apo-cta-row{display:flex;align-items:center;gap:2rem;flex-wrap:wrap}
.apo-btn{padding:12px 28px;background:var(--teal);color:var(--black);font-family:'DM Sans',sans-serif;font-size:13px;font-weight:500;text-decoration:none;border-radius:2px;transition:opacity .2s}
.apo-btn:hover{opacity:.88}
.apo-link{font-size:13px;color:var(--grey);text-decoration:none;border-bottom:.5px solid rgba(255,255,255,.2);padding-bottom:1px;transition:color .2s}
.apo-link:hover{color:var(--white)}
.apo-wip-note{font-size:12px;color:rgba(26,191,160,.6);margin-left:auto}

/* RESPONSIVE */
@media(max-width:860px){
  nav{padding:1.25rem 1.5rem}
  .nav-links{display:none}
  .hero{grid-template-columns:1fr;min-height:auto}
  .hero-img{height:62vh;min-height:380px}
  .hero-right{padding:3rem 1.5rem}
  .stages,.approach,.credentials,.adaptive,.cta-section{padding:4.5rem 1.5rem}
  .approach-inner{grid-template-columns:1fr;gap:3rem}
  .stages-grid,.cred-grid,.adaptive-grid{grid-template-columns:1fr}
  .perf-row{grid-template-columns:1fr 1fr}
  .stage-item.mixed{grid-column:span 1}
  .apokalypto{padding:4.5rem 1.5rem}
  .apo-body{grid-template-columns:1fr}
  .apo-team{grid-template-columns:1fr;gap:2rem}
  .apo-divider-v{display:none}
  .apo-wip-note{margin-left:0}
  footer{padding:2rem 1.5rem}
}

@media(max-width:520px){
  /* hardcoded <br> in the headline strands single words at this width */
  .hero-headline br{display:none}
  .hero-stat-row{gap:1.5rem}
  .apo-week{grid-template-columns:24px 1fr;row-gap:.15rem}
  .apo-week .wk-d{grid-column:2}
  .hero-btn-row{flex-direction:column;align-items:flex-start}
  .hero-btn-row a{width:100%;text-align:center}
}

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

/* ============================================================
   WORKSHOPS
   ============================================================ */
.workshops{padding:7rem 4rem;background:var(--mid)}
.workshops-inner{max-width:1100px;margin:0 auto}
.workshops-head{display:flex;justify-content:space-between;align-items:flex-end;gap:2rem;flex-wrap:wrap;margin-bottom:3.5rem}
.workshops-head h2{font-size:clamp(1.9rem,3vw,2.6rem);font-weight:300;line-height:1.2;max-width:520px}
.workshops-head h2 em{font-family:'DM Serif Display',serif;font-style:italic}
.workshops-head p{font-size:15px;color:var(--grey);line-height:1.7;max-width:420px;margin-top:1rem}
.ws-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem}
.ws-card{display:flex;flex-direction:column;padding:2rem;background:rgba(255,255,255,.03);border:.5px solid rgba(255,255,255,.1);border-top:2px solid var(--teal);border-radius:2px}
.ws-when{font-size:11px;font-weight:500;letter-spacing:.1em;color:var(--teal);text-transform:uppercase;margin-bottom:.85rem}
.ws-title{font-size:19px;font-weight:400;color:var(--white);line-height:1.35;margin-bottom:.6rem}
.ws-summary{font-size:14px;color:var(--grey);line-height:1.75;margin-bottom:1.5rem;flex-grow:1}
.ws-meta{display:flex;flex-direction:column;gap:.4rem;padding-top:1.25rem;border-top:.5px solid rgba(255,255,255,.08);margin-bottom:1.5rem}
.ws-meta-row{display:flex;justify-content:space-between;gap:1rem;font-size:13px}
.ws-meta-k{color:var(--grey)}
.ws-meta-v{color:rgba(255,255,255,.85);text-align:right}
.ws-price{font-size:24px;font-weight:300;color:var(--white)}
.ws-price .ws-price-free{color:var(--teal)}
.ws-foot{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.ws-seats{font-size:12px;color:var(--grey)}
.ws-seats.low{color:#E8A33D}
.badge{display:inline-block;padding:3px 10px;font-size:10px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;border-radius:2px}
.badge-full{background:rgba(255,255,255,.1);color:var(--grey)}
.badge-online{background:rgba(26,191,160,.12);color:var(--teal)}
.badge-person{background:rgba(255,255,255,.07);color:rgba(255,255,255,.7)}

/* ============================================================
   PRICING
   ============================================================ */
.pricing{padding:7rem 4rem;background:var(--black)}
.pricing-inner{max-width:1100px;margin:0 auto}
.pricing-head{max-width:560px;margin-bottom:3.5rem}
.pricing-head h2{font-size:clamp(1.9rem,3vw,2.6rem);font-weight:300;line-height:1.2;margin-bottom:1rem}
.pricing-head h2 em{font-family:'DM Serif Display',serif;font-style:italic}
.pricing-head p{font-size:15px;color:var(--grey);line-height:1.7}
.pk-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.pk-card{display:flex;flex-direction:column;padding:2.25rem;border:.5px solid rgba(255,255,255,.12);border-radius:2px;position:relative}
.pk-card.featured{border-color:var(--teal);background:rgba(26,191,160,.04)}
.pk-flag{position:absolute;top:-1px;right:1.5rem;transform:translateY(-50%);padding:4px 12px;background:var(--teal);color:var(--black);font-size:10px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;border-radius:2px}
.pk-name{font-size:15px;font-weight:500;color:var(--teal);margin-bottom:.75rem}
.pk-price{font-size:34px;font-weight:300;color:var(--white);line-height:1;margin-bottom:.3rem}
.pk-period{font-size:13px;color:var(--grey);margin-bottom:1.5rem}
.pk-blurb{font-size:14px;color:var(--grey);line-height:1.75;padding-bottom:1.5rem;border-bottom:.5px solid rgba(255,255,255,.08);margin-bottom:1.5rem}
.pk-features{list-style:none;display:flex;flex-direction:column;gap:.85rem;flex-grow:1;margin-bottom:2rem}
.pk-features li{display:flex;gap:.75rem;align-items:flex-start;font-size:14px;color:rgba(255,255,255,.8);line-height:1.6}
.pk-features li::before{content:'';display:block;width:5px;height:5px;border-radius:50%;background:var(--teal);margin-top:8px;flex-shrink:0}
.pricing-note{margin-top:2rem;padding:1.5rem 2rem;border-left:2px solid rgba(255,255,255,.15)}
.pricing-note p{font-size:14px;color:var(--grey);line-height:1.7}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials{padding:7rem 4rem;background:var(--light);color:var(--black)}
.testimonials-inner{max-width:1100px;margin:0 auto}
.tm-head{max-width:560px;margin-bottom:3.5rem}
.tm-head h2{font-size:clamp(1.9rem,3vw,2.6rem);font-weight:300;line-height:1.2;margin-bottom:1rem}
.tm-head h2 em{font-family:'DM Serif Display',serif;font-style:italic}
.tm-head p{font-size:15px;color:#555;line-height:1.7}
.tm-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem}
.tm-card{padding:2rem;background:rgba(26,26,26,.04);border-left:2px solid var(--teal);border-radius:2px;display:flex;flex-direction:column}
.tm-stars{font-size:13px;color:var(--teal);letter-spacing:.15em;margin-bottom:1rem}
.tm-quote{font-size:15px;color:#333;line-height:1.8;flex-grow:1;margin-bottom:1.5rem}
.tm-quote::before{content:'\201C'}
.tm-quote::after{content:'\201D'}
.tm-who{padding-top:1.25rem;border-top:.5px solid rgba(26,26,26,.12)}
.tm-name{font-size:14px;font-weight:500;color:var(--black)}
.tm-role{font-size:13px;color:#666;margin-top:.15rem}
.tm-cta{margin-top:2.5rem;padding:1.75rem 2rem;background:rgba(26,165,140,.08);border-left:3px solid var(--teal);display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap}
.tm-cta p{font-size:14px;color:#333;line-height:1.7;max-width:560px}

/* ============================================================
   WRITING / BLOG
   ============================================================ */
.writing{padding:7rem 4rem;background:var(--mid)}
.writing-inner{max-width:1100px;margin:0 auto}
.writing-head{display:flex;justify-content:space-between;align-items:flex-end;gap:2rem;flex-wrap:wrap;margin-bottom:3.5rem}
.writing-head h2{font-size:clamp(1.9rem,3vw,2.6rem);font-weight:300;line-height:1.2}
.writing-head h2 em{font-family:'DM Serif Display',serif;font-style:italic}
.post-list{display:flex;flex-direction:column}
.post{display:grid;grid-template-columns:132px 1fr auto;gap:2rem;align-items:baseline;padding:1.6rem 0;border-bottom:.5px solid rgba(255,255,255,.08);text-decoration:none;transition:background .2s}
.post:hover{background:rgba(255,255,255,.02)}
.post:hover .post-title{color:var(--teal)}
.post-date{font-size:12px;color:var(--grey);letter-spacing:.04em}
.post-title{display:block;font-size:17px;font-weight:400;color:var(--white);line-height:1.4;transition:color .2s}
.post-excerpt{display:block;font-size:13px;color:var(--grey);line-height:1.7;margin-top:.4rem}
.post-arrow{font-size:14px;color:var(--grey)}

/* SUBSCRIBE — our own form, handing off to Substack with ?email= prefilled.
   The Substack iframe was unstyleable (cross-origin) and shipped its own
   light-mode look, so it is gone. */
.subscribe{margin-top:3.5rem;padding:2.75rem 3rem;border:.5px solid rgba(255,255,255,.12);
  border-left:2px solid var(--teal);border-radius:2px;
  background:linear-gradient(115deg,rgba(26,191,160,.08) 0%,rgba(26,191,160,.02) 42%,transparent 78%);
  display:grid;grid-template-columns:1.05fr 1fr;gap:3.5rem;align-items:center}
.sub-eyebrow{font-size:11px;font-weight:500;letter-spacing:.14em;color:var(--teal);margin-bottom:.9rem}
.subscribe h3{font-size:clamp(1.3rem,2vw,1.6rem);font-weight:300;color:var(--white);
  line-height:1.25;margin-bottom:.85rem}
.subscribe h3 em{font-family:'DM Serif Display',serif;font-style:italic}
.subscribe p{font-size:14px;color:var(--grey);line-height:1.75;max-width:38ch}
.sub-form{display:flex;gap:.6rem;flex-wrap:wrap}
.sub-form input[type=email]{flex:1 1 210px;min-width:0;padding:14px 16px;
  background:rgba(0,0,0,.34);border:.5px solid rgba(255,255,255,.2);border-radius:2px;
  color:var(--white);font-family:'DM Sans',sans-serif;font-size:15px;font-weight:300;
  transition:border-color .2s}
.sub-form input[type=email]::placeholder{color:rgba(255,255,255,.32)}
.sub-form input[type=email]:focus{outline:none;border-color:var(--teal)}
.sub-form button{padding:14px 28px;background:var(--teal);color:var(--black);border:none;
  border-radius:2px;font-family:'DM Sans',sans-serif;font-size:14px;font-weight:500;
  cursor:pointer;white-space:nowrap;transition:opacity .2s}
.sub-form button:hover{opacity:.88}
.sub-note{margin-top:1rem;font-size:12px;color:var(--grey);line-height:1.7}
.sub-note a{color:rgba(255,255,255,.72);text-decoration:none;border-bottom:.5px solid rgba(255,255,255,.22)}
.sub-note a:hover{color:var(--white)}

/* blog index page */
.page-head{padding:10rem 4rem 4rem;background:var(--black);border-bottom:.5px solid rgba(255,255,255,.08)}
.page-head-inner{max-width:1100px;margin:0 auto}
.page-head h1{font-size:clamp(2.2rem,4vw,3rem);font-weight:300;line-height:1.15;margin-bottom:1rem}
.page-head h1 em{font-family:'DM Serif Display',serif;font-style:italic}
.page-head p{font-size:16px;color:var(--grey);line-height:1.75;max-width:520px}
.page-body{padding:4rem;background:var(--black);min-height:40vh}
.page-body-inner{max-width:1100px;margin:0 auto}

/* ============================================================
   FORMS  (testimonial submit, workshop signup, admin)
   ============================================================ */
.form-wrap{max-width:620px;margin:0 auto}
.field{margin-bottom:1.5rem}
.field label{display:block;font-size:12px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:var(--grey);margin-bottom:.6rem}
.field .req{color:var(--teal)}
.field input[type=text],.field input[type=email],.field input[type=tel],
.field input[type=number],.field input[type=date],.field input[type=datetime-local],
.field select,.field textarea{
  width:100%;padding:12px 14px;background:rgba(255,255,255,.04);
  border:.5px solid rgba(255,255,255,.18);border-radius:2px;
  color:var(--white);font-family:'DM Sans',sans-serif;font-size:15px;font-weight:300;
  transition:border-color .2s}
.field textarea{min-height:150px;resize:vertical;line-height:1.7}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--teal)}
.field input::placeholder,.field textarea::placeholder{color:rgba(255,255,255,.3)}
.field-hint{font-size:12px;color:var(--grey);margin-top:.5rem;line-height:1.6}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.counter{float:right;font-size:11px;color:var(--grey);font-weight:400;letter-spacing:0;text-transform:none}
.counter.over{color:#E8635D}
.stars-input{display:flex;gap:.4rem}
.stars-input button{background:none;border:none;cursor:pointer;font-size:26px;line-height:1;color:rgba(255,255,255,.2);transition:color .15s;padding:0}
.stars-input button.on{color:var(--teal)}
.check{display:flex;gap:.75rem;align-items:flex-start}
.check input[type=checkbox]{width:17px;height:17px;margin-top:2px;accent-color:var(--teal);flex-shrink:0}
.check label{font-size:14px;color:rgba(255,255,255,.8);line-height:1.65;text-transform:none;letter-spacing:0;font-weight:300;margin:0}
.honeypot{position:absolute;left:-9999px;opacity:0;height:0;overflow:hidden}
.form-msg{padding:1rem 1.25rem;border-radius:2px;font-size:14px;line-height:1.65;margin-bottom:1.5rem;display:none}
.form-msg.show{display:block}
.form-msg.error{background:rgba(232,99,93,.1);border-left:2px solid #E8635D;color:#F0A9A5}
.form-msg.ok{background:rgba(26,191,160,.1);border-left:2px solid var(--teal);color:#8FE0D0}
.btn-primary[disabled],.btn-dark[disabled]{opacity:.45;cursor:not-allowed}
.form-success{text-align:center;padding:3rem 2rem;border:.5px solid rgba(26,191,160,.3);background:rgba(26,191,160,.04);border-radius:2px}
.form-success h2{font-size:26px;font-weight:300;margin-bottom:1rem}
.form-success p{font-size:15px;color:var(--grey);line-height:1.75;margin-bottom:2rem}

/* skeleton / empty states */
.empty{padding:3rem 2rem;border:.5px dashed rgba(255,255,255,.15);border-radius:2px;text-align:center}
.empty p{font-size:15px;color:var(--grey);line-height:1.75;max-width:420px;margin:0 auto 1.5rem}
.empty.light{border-color:rgba(26,26,26,.2)}
.empty.light p{color:#555}
.skeleton{padding:2rem;background:rgba(255,255,255,.02);border:.5px solid rgba(255,255,255,.06);border-radius:2px}
.skeleton-line{height:11px;background:rgba(255,255,255,.07);border-radius:2px;margin-bottom:.85rem}
.skeleton-line:last-child{margin-bottom:0;width:55%}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.45}}
.skeleton-line{animation:pulse 1.6s ease-in-out infinite}

/* ============================================================
   MODAL (workshop signup)
   ============================================================ */
.modal{position:fixed;inset:0;z-index:300;display:none;align-items:flex-start;justify-content:center;
       padding:2rem 1rem;background:rgba(10,10,10,.86);backdrop-filter:blur(4px);overflow-y:auto}
.modal.open{display:flex}
.modal-panel{width:100%;max-width:560px;background:#161616;border:.5px solid rgba(255,255,255,.14);
             border-radius:3px;padding:2.5rem;margin:auto}
.modal-head{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;margin-bottom:.5rem}
.modal-head h3{font-size:21px;font-weight:400;line-height:1.35}
.modal-close{background:none;border:none;color:var(--grey);font-size:26px;line-height:1;cursor:pointer;padding:0 0 0 1rem}
.modal-close:hover{color:var(--white)}
.modal-sub{font-size:13px;color:var(--teal);margin-bottom:2rem}

/* ============================================================
   ADMIN
   ============================================================ */
.admin-shell{padding:8rem 2rem 4rem;max-width:1000px;margin:0 auto}
.admin-bar{display:flex;justify-content:space-between;align-items:center;gap:1rem;flex-wrap:wrap;
           padding-bottom:1.5rem;border-bottom:.5px solid rgba(255,255,255,.1);margin-bottom:2.5rem}
.admin-who{font-size:13px;color:var(--grey)}
.admin-tabs{display:flex;gap:.5rem;margin-bottom:2.5rem;flex-wrap:wrap}
.tab{padding:9px 18px;background:none;border:.5px solid rgba(255,255,255,.15);color:var(--grey);
     font-family:'DM Sans',sans-serif;font-size:13px;border-radius:2px;cursor:pointer;transition:all .2s}
.tab:hover{color:var(--white)}
.tab.active{background:var(--teal);border-color:var(--teal);color:var(--black);font-weight:500}
.admin-panel{display:none}
.admin-panel.active{display:block}
.row{padding:1.5rem;background:rgba(255,255,255,.03);border:.5px solid rgba(255,255,255,.08);
     border-radius:2px;margin-bottom:1rem}
.row-top{display:flex;justify-content:space-between;gap:1rem;align-items:flex-start;margin-bottom:.75rem;flex-wrap:wrap}
.row-title{font-size:16px;font-weight:400;color:var(--white)}
.row-meta{font-size:12px;color:var(--grey);margin-top:.25rem}
.row-body{font-size:14px;color:rgba(255,255,255,.75);line-height:1.75;margin-bottom:1rem}
.row-actions{display:flex;gap:.6rem;flex-wrap:wrap}
.btn-sm{padding:7px 15px;font-family:'DM Sans',sans-serif;font-size:12px;font-weight:500;
        border-radius:2px;cursor:pointer;border:.5px solid transparent;transition:opacity .2s}
.btn-sm:hover{opacity:.85}
.btn-approve{background:var(--teal);color:var(--black)}
.btn-neutral{background:rgba(255,255,255,.08);color:var(--white);border-color:rgba(255,255,255,.15)}
.btn-danger{background:rgba(232,99,93,.15);color:#E8635D;border-color:rgba(232,99,93,.4)}
.pill{display:inline-block;padding:3px 9px;font-size:10px;font-weight:500;letter-spacing:.06em;
      text-transform:uppercase;border-radius:2px}
.pill-pending{background:rgba(232,163,61,.15);color:#E8A33D}
.pill-live{background:rgba(26,191,160,.15);color:var(--teal)}
.pill-draft{background:rgba(255,255,255,.08);color:var(--grey)}
.pill-paid{background:rgba(26,191,160,.15);color:var(--teal)}
.admin-section-title{font-size:12px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;
                     color:var(--grey);margin:2.5rem 0 1.25rem}
.admin-section-title:first-child{margin-top:0}
table.reg-table{width:100%;border-collapse:collapse;font-size:13px}
table.reg-table th{text-align:left;padding:.75rem;font-size:11px;letter-spacing:.08em;text-transform:uppercase;
                   color:var(--grey);font-weight:500;border-bottom:.5px solid rgba(255,255,255,.12)}
table.reg-table td{padding:.85rem .75rem;border-bottom:.5px solid rgba(255,255,255,.06);color:rgba(255,255,255,.8)}
.copy-link{display:flex;gap:.6rem;align-items:center;flex-wrap:wrap;margin-top:1rem}
.copy-link code{flex-grow:1;min-width:220px;padding:10px 12px;background:rgba(255,255,255,.04);
                border:.5px solid rgba(255,255,255,.12);border-radius:2px;font-size:13px;color:var(--teal);
                font-family:ui-monospace,SFMono-Regular,Menlo,monospace;overflow-x:auto;white-space:nowrap}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media(max-width:860px){
  .workshops,.pricing,.testimonials,.writing{padding:4.5rem 1.5rem}
  .page-head{padding:7rem 1.5rem 3rem}
  .page-body{padding:3rem 1.5rem}
  .subscribe{grid-template-columns:1fr;gap:2rem;padding:2rem 1.75rem}
  .sub-form{flex-direction:column}
  /* main axis is vertical here, so flex-basis would set the HEIGHT */
  .sub-form input[type=email]{flex:0 0 auto;width:100%}
  .sub-form button{width:100%;flex:0 0 auto}
  .post{grid-template-columns:1fr;gap:.5rem}
  .post-arrow{display:none}
  .field-row{grid-template-columns:1fr;gap:0}
  .modal-panel{padding:2rem 1.5rem}
  .admin-shell{padding:6.5rem 1.5rem 3rem}
  .tm-cta,.workshops-head,.writing-head{flex-direction:column;align-items:flex-start}
  table.reg-table{display:block;overflow-x:auto;white-space:nowrap}
}

/* WORDMARK — moveWithKP. Never uppercase this: the camelCase is the mark. */
.wordmark{letter-spacing:.01em;text-transform:none;white-space:nowrap}
.wordmark .wm-w{font-weight:300;opacity:.6}

/* Section eyebrows must stay teal. Container rules like `.workshops-head p`
   and `.tm-head p` have specificity (0,1,1) and were beating `.section-label`
   (0,1,0), silently rendering several eyebrows grey. Same specificity, declared
   last, so this wins — without resorting to !important. */
p.section-label{font-size:11px;font-weight:500;letter-spacing:.14em;
  color:var(--teal);margin-bottom:1.25rem;line-height:1.5;max-width:none}
