
:root {
  --ink: #18201c;
  --muted: #536056;
  --paper: #fbfaf4;
  --white: #ffffff;
  --green: #2f6b3f;
  --green-dark: #183f28;
  --red: #d9472f;
  --gold: #f5b642;
  --sky: #77b7d9;
  --line: rgba(24, 32, 28, .16);
  --shadow: 0 18px 50px rgba(24, 32, 28, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; line-height: 1.03; letter-spacing: 0; }
h1 { font-size: clamp(3rem, 8vw, 7.2rem); max-width: 10ch; }
h2 { font-size: clamp(2rem, 4vw, 4rem); max-width: 12ch; }
h3 { font-size: 1.35rem; }
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .75rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(251, 250, 244, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: .65rem; font-weight: 900; text-transform: uppercase; font-size: .92rem; }
.brand img { width: 70px; height: auto; }
.site-nav { display: flex; justify-content: center; align-items: center; gap: .2rem; }
.site-nav a, .header-call {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .65rem .85rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 800;
  color: var(--ink);
}
.site-nav a:hover, .header-call:hover { background: rgba(47, 107, 63, .1); }
.header-call { background: var(--green); color: var(--white); justify-self: end; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; }
.hero {
  min-height: 78svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-media, .hero-media img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-img { object-fit: cover; object-position: center 42%; }
.hero-shade { background: linear-gradient(90deg, rgba(12, 18, 15, .82), rgba(12, 18, 15, .44) 46%, rgba(12, 18, 15, .2)); }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8.5rem 0 8rem;
}
.hero-content p { max-width: 680px; font-size: clamp(1.06rem, 2vw, 1.45rem); }
.hero-actions, .section-head, .program-meta, .footer-bottom { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .78rem 1rem;
  border-radius: 8px;
  font-weight: 900;
  border: 2px solid transparent;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--ink); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.hero-stats {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 2rem));
  margin: -5rem auto 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.hero-stats div {
  min-height: 126px;
  background: rgba(251, 250, 244, .95);
  color: var(--ink);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-stats strong { display: block; font-size: clamp(1.8rem, 4vw, 3.6rem); line-height: 1; }
.hero-stats span { display: block; margin-top: .55rem; color: var(--muted); font-weight: 700; }
.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}
.eyebrow, .kicker {
  margin: 0 0 .8rem;
  color: var(--red);
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0;
}
.intro-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 2rem;
  align-items: end;
}
.intro-strip p:last-child { font-size: 1.15rem; color: var(--muted); }
.services-band {
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - 1180px) / 2));
  padding-right: max(1rem, calc((100vw - 1180px) / 2));
  background: #eaf2ea;
}
.section-head { justify-content: space-between; margin-bottom: 2rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.service-card, .session-card, .testimonial-card, .fact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(24, 32, 28, .08);
  overflow: hidden;
}
.service-card > div, .session-card, .testimonial-card, .fact-panel { padding: 1.1rem; }
.card-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.text-link { display: inline-flex; margin-top: .5rem; font-weight: 950; color: var(--green-dark); border-bottom: 2px solid var(--gold); }
.split-section, .two-col, .contact-band, .page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.alt-split { grid-template-columns: minmax(300px, 520px) minmax(0, 1fr); }
.split-copy p, .page-hero-copy p, .article-hero p { color: var(--muted); font-size: 1.08rem; }
.feature-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.workshop-panel {
  background: var(--green-dark);
  color: var(--white);
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - 1180px) / 2));
  padding-right: max(1rem, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  gap: 2rem;
  align-items: center;
}
.workshop-panel .eyebrow { color: var(--gold); }
.workshop-panel p { color: rgba(255,255,255,.8); }
.contact-band {
  background: #fff4e0;
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - 1180px) / 2));
  padding-right: max(1rem, calc((100vw - 1180px) / 2));
}
.contact-band a { font-weight: 950; color: var(--green-dark); }
.lead-form { display: grid; gap: .75rem; background: var(--white); padding: 1rem; border-radius: 8px; border: 1px solid var(--line); }
.lead-form label { display: grid; gap: .35rem; font-weight: 900; color: var(--ink); }
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%;
  min-height: 46px;
  padding: .72rem .75rem;
  border-radius: 8px;
  border: 1px solid rgba(24, 32, 28, .28);
  font: inherit;
  background: #fffdf7;
}
.form-status { min-height: 1.5rem; margin: 0; color: var(--green-dark); font-weight: 800; }
.page-hero {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 9rem 0 4rem;
}
.compact-hero h1, .contact-hero h1, .book-hero h1 { font-size: clamp(2.75rem, 6vw, 5.7rem); max-width: 12ch; }
.program-meta span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: .4rem .65rem;
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 850;
  font-size: .88rem;
}
.check-list { display: grid; gap: .75rem; list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding: .9rem .9rem .9rem 2.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
}
.check-list li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: .9rem;
  top: 1.35rem;
  background: var(--red);
  border-radius: 50%;
}
.related-links div, .article-links { display: flex; flex-wrap: wrap; gap: .75rem; }
.related-links a, .article-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: .65rem .8rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 900;
}
.session-grid, .testimonial-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.testimonial-card p { color: var(--muted); }
.testimonial-card span { color: var(--red); font-weight: 900; }
.fact-panel ul { margin: 0; padding-left: 1.2rem; color: var(--muted); font-weight: 750; }
.book-cover { justify-self: center; }
.book-img { width: min(320px, 70vw); border-radius: 8px; box-shadow: var(--shadow); }
.article-hero {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 9rem 0 2.5rem;
}
.article-hero h1 { font-size: clamp(2.4rem, 5vw, 5rem); max-width: 14ch; }
.article-body { align-items: start; }
.site-footer {
  background: #121513;
  color: var(--white);
  padding: 3rem max(1rem, calc((100vw - 1180px) / 2)) 6rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
.footer-logo { margin-bottom: 1rem; background: var(--white); border-radius: 8px; padding: .25rem; }
.site-footer p { color: rgba(255,255,255,.72); max-width: 420px; }
.site-footer h2 { font-size: 1rem; margin-bottom: .75rem; }
.site-footer a { display: block; color: rgba(255,255,255,.78); margin: .35rem 0; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { justify-content: space-between; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.68); }
.footer-credit a { display: inline; color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.mobile-sticky { display: none; }
@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto auto; }
  .menu-toggle { display: block; justify-self: end; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .65rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { justify-content: center; }
  .header-call { display: none; }
  .hero-stats, .service-grid, .split-section, .two-col, .contact-band, .page-hero, .intro-strip, .workshop-panel, .alt-split, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats { margin-top: -3rem; }
  .session-grid, .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  body { padding-bottom: 58px; }
  .brand span { display: none; }
  .hero { min-height: 700px; }
  .hero-content { padding: 6.2rem 0 3.8rem; }
  .hero-content p { font-size: 1rem; }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: .5rem;
    margin: -2.15rem auto 1rem;
  }
  .hero-stats div {
    display: grid;
    grid-template-columns: 6.6rem 1fr;
    gap: .65rem;
    align-items: center;
    padding: .75rem .9rem;
  }
  .hero-stats strong { font-size: 1.55rem; }
  .hero-stats span { margin: 0; font-size: .82rem; }
  .session-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .hero-stats div { min-height: auto; }
  .page-hero { padding-top: 7rem; }
  .section { padding: 3.5rem 0; }
  .footer-bottom { align-items: flex-start; }
  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.2);
  }
  .mobile-sticky a {
    min-height: 56px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 950;
  }
  .mobile-sticky a:first-child { background: var(--green); }
  .mobile-sticky a:last-child { background: var(--red); }
}
