:root {
  --ink: #18262d;
  --muted: #65747b;
  --deep: #103d45;
  --deep-2: #0b2c33;
  --gold: #b98b34;
  --gold-2: #e5c06d;
  --paper: #ffffff;
  --soft: #f5f2ea;
  --line: #e5dfd1;
  --shadow: 0 22px 50px rgba(16, 61, 69, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.62;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(850px, calc(100% - 40px));
}

.skip-link,
.sr-only {
  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:focus {
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 16px;
  background: var(--deep);
  color: white;
  z-index: 99;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.topbar {
  background: var(--deep-2);
  color: white;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar a {
  text-decoration: none;
}

.socials {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.socials a {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.nav {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 162px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-menu a {
  text-decoration: none;
  color: var(--deep-2);
}

.join-link {
  padding: 12px 22px;
  color: white !important;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--deep);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.hero {
  padding: 82px 0 58px;
  background: linear-gradient(180deg, #fbfaf6 0%, #ffffff 100%);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(32px, 5vw, 74px);
}

.section-image-left .split {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  color: var(--deep-2);
  font-weight: 700;
}

h1 {
  max-width: 760px;
  font-size: clamp(46px, 7vw, 88px);
}

h2 {
  font-size: clamp(32px, 4.2vw, 56px);
}

h3 {
  font-size: 24px;
}

p {
  margin: 16px 0 0;
}

.lead {
  max-width: 710px;
  color: #33454d;
  font-size: clamp(19px, 2.4vw, 25px);
}

.clarifier {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 2px solid var(--deep);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.button--primary {
  background: var(--deep);
  color: white;
}

.button--secondary {
  background: transparent;
  color: var(--deep);
}

.media-panel,
.portrait {
  margin: 0;
  position: relative;
  box-shadow: var(--shadow);
}

.media-panel::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 3px solid var(--gold);
  z-index: -1;
}

.media-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.statement {
  padding: 90px 0;
  color: white;
  background: var(--deep);
  text-align: center;
}

.statement h2,
.statement .eyebrow {
  color: white;
}

.statement p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.principles,
.courses,
.providers {
  padding: 78px 0;
  background: var(--soft);
}

.principle-grid,
.tier-grid,
.course-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.principle-grid article,
.tier,
.course-grid article,
.testimonial-grid article {
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
}

.principle-grid article {
  border-top: 5px solid var(--gold);
}

.section-image-left,
.section-image-right,
.founder,
.cta {
  padding: 92px 0;
}

.mini-list,
.event-stack {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.mini-list span,
.event-stack span {
  padding: 13px 16px;
  border-left: 4px solid var(--gold);
  background: #fbfaf6;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.membership,
.testimonials {
  padding: 86px 0;
  background: white;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.tier {
  display: flex;
  min-height: 290px;
  flex-direction: column;
}

.tier--featured {
  color: white;
  background: var(--deep);
}

.tier--featured h3,
.tier--featured p,
.tier--featured a {
  color: white;
}

.tier a {
  margin-top: auto;
  padding-top: 26px;
  color: var(--deep);
  font-family: Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.program-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.program-list article {
  padding: 0 0 18px 22px;
  border-left: 4px solid var(--gold);
}

.course-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.founder {
  background: var(--deep-2);
  color: white;
}

.founder h2,
.founder h3 {
  color: white;
}

.founder p {
  color: rgba(255, 255, 255, 0.84);
}

.portrait img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: top center;
}

.testimonial-grid article {
  min-height: 280px;
}

.testimonial-grid img {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
}

.testimonial-grid strong {
  display: block;
  margin-top: 20px;
  color: var(--deep);
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.provider-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 18px;
  align-items: center;
}

.provider-row img {
  width: 100%;
  max-height: 76px;
  object-fit: contain;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
}

.cta {
  background: linear-gradient(180deg, #ffffff 0%, #f6f3eb 100%);
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--deep-2);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 70px 0 44px;
}

.footer-main h2,
.footer-main h3 {
  color: white;
}

.footer-main h2 {
  font-size: 28px;
}

.footer-main h3 {
  margin-bottom: 16px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-main a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
}

.footer-brand img {
  width: 118px;
  margin-bottom: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: Arial, sans-serif;
  font-size: 13px;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    inset: 140px 20px auto 20px;
    display: none;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .split,
  .section-image-left .split,
  .principle-grid,
  .tier-grid,
  .course-grid,
  .testimonial-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section-image-left .media-panel {
    order: -1;
  }

  .provider-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .wrap,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .topbar__inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar__inner {
    padding: 10px 0;
  }

  .nav {
    min-height: 82px;
  }

  .brand img {
    width: 128px;
  }

  .nav-menu {
    inset: 124px 14px auto 14px;
  }

  .hero,
  .statement,
  .principles,
  .membership,
  .section-image-left,
  .section-image-right,
  .courses,
  .founder,
  .testimonials,
  .providers,
  .cta {
    padding: 58px 0;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .button {
    width: 100%;
  }

  .media-panel::before {
    display: none;
  }
}
