:root {
  --ink: #151515;
  --muted: #5b635f;
  --paper: #fbfaf6;
  --white: #ffffff;
  --green: #0f6d56;
  --green-dark: #064234;
  --mint: #dff4e9;
  --coral: #ef6948;
  --gold: #f0b84b;
  --sky: #d7eff4;
  --line: rgba(21, 21, 21, 0.14);
  --shadow: 0 24px 70px rgba(15, 43, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 246, 0.94);
  color: var(--ink);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.brand-logo {
  width: 120px;
  height: auto;
  flex: none;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-cta,
.button,
.tab-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid currentColor;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-cta svg,
.button svg,
.tab-button svg,
.quote-panel svg,
.check-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 44, 33, 0.9) 0%, rgba(6, 44, 33, 0.65) 42%, rgba(6, 44, 33, 0.16) 100%),
    linear-gradient(0deg, rgba(6, 44, 33, 0.58), rgba(6, 44, 33, 0.08));
}

.hero-content {
  display: flex;
  width: min(1040px, calc(100% - 48px));
  min-height: 84svh;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 118px 0 50px;
  color: var(--white);
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 8px;
}

.button-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(239, 105, 72, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 100%);
  gap: 1px;
  margin-top: 46px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  overflow: hidden;
}

.metric-strip div {
  padding: 18px;
  background: rgba(21, 21, 21, 0.24);
}

.metric-strip strong {
  display: block;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
}

.metric-strip span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.section {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
  padding: 152px 0;
}

.section-kicker {
  margin-bottom: 18px;
}

.program-layout,
.apply-section,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.84fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.13rem;
  line-height: 1.2;
}

.program-layout > div > p,
.section-heading p,
.apply-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.quote-panel,
.interest-form,
.curriculum-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.program-band,
.curriculum-band {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1040px) / 2));
  padding-left: max(24px, calc((100vw - 1040px) / 2));
}

.program-band {
  padding-top: 136px;
  padding-bottom: 136px;
  background: var(--green-dark);
  color: var(--white);
}

.program-band .section-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.program-band .program-layout > div > p {
  max-width: 600px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.quote-panel {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 34px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.quote-panel p {
  margin: 0;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
}

.audience-list {
  display: grid;
  gap: 16px;
}

.audience-list span {
  display: block;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.section-heading {
  margin-bottom: 64px;
}

.week-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.tab-button {
  min-height: 58px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.tab-button.is-active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.curriculum-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: start;
  padding: clamp(32px, 5vw, 50px);
}

.curriculum-panel p[data-week-copy] {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 700;
}

.check-list svg {
  margin-top: 2px;
}

.curriculum-band {
  background: var(--sky);
}

.experience-heading {
  max-width: 850px;
}

.experience-heading h2 {
  max-width: 820px;
}

.experience-heading > p {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 64px;
}

.outcome-list div {
  display: grid;
  min-height: 160px;
  grid-template-columns: 1fr;
  align-content: space-between;
  gap: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.outcome-list svg {
  width: 26px;
  height: 26px;
  color: var(--green);
}

.weekly-rhythm {
  display: grid;
  grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  margin-top: 58px;
  padding: 52px;
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
}

.weekly-rhythm h3 {
  font-size: 1.5rem;
}

.rhythm-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rhythm-list li {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 16px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
}

.rhythm-list li > span {
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 900;
}

.rhythm-list strong {
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.35;
}

.credibility-band {
  padding: 136px max(24px, calc((100vw - 1040px) / 2));
  background: var(--mint);
}

.credibility-inner {
  display: block;
}

.credibility-inner > div:first-child {
  max-width: 720px;
}

.people-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 62px;
}

.people-list article {
  overflow: hidden;
  border: 1px solid rgba(6, 66, 52, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.person-photo {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
}

.person-photo span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
}

.person-photo-cameron {
  background: #fbd9cf;
  color: #8f2f1c;
}

.person-photo-bjorn {
  background: var(--sky);
  color: var(--green-dark);
}

.person-photo-jack {
  background: #f8e7b7;
  color: #75520c;
}

.person-details {
  padding: 22px;
}

.people-list h3 {
  font-size: 1.05rem;
}

.people-list p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 104px;
}

.faq-heading p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.faq-list {
  border-bottom: 1px solid var(--line);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-size: 1.06rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--coral);
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 680px;
  margin: -4px 46px 22px 0;
  color: var(--muted);
}

.apply-section {
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.application-path {
  display: grid;
  gap: 0;
  margin-top: 28px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.application-path li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.application-path span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
}

.application-path strong {
  font-size: 0.92rem;
}

.interest-form {
  display: grid;
  gap: 20px;
  padding: clamp(30px, 4vw, 42px);
}

.application-card h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.application-card .check-list {
  margin: 4px 0;
}

.application-card .form-submit {
  width: 100%;
  text-align: center;
}

.application-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  outline: 0;
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 109, 86, 0.12);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.mobile-interest-bar {
  display: none;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .program-layout,
  .apply-section,
  .faq-section,
  .section-heading,
  .credibility-inner,
  .weekly-rhythm,
  .curriculum-panel {
    grid-template-columns: 1fr;
  }

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

  .faq-heading {
    position: static;
  }

}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 14px;
    gap: 12px;
  }

  .brand {
    padding: 4px 6px;
  }

  .brand-logo {
    width: 96px;
    height: auto;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 78svh;
  }

  .hero-content {
    padding-top: 92px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 15vw, 4.3rem);
  }

  .metric-strip,
  .week-tabs {
    grid-template-columns: 1fr;
  }

  .outcome-list,
  .rhythm-list {
    grid-template-columns: 1fr;
  }

  .outcome-list div {
    min-height: 124px;
  }

  .rhythm-list li:last-child {
    grid-column: 1 / -1;
  }

  .weekly-rhythm {
    margin-top: 44px;
    padding: 38px 30px;
  }

  .rhythm-list li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .people-list {
    grid-template-columns: 1fr;
  }

  .person-photo {
    aspect-ratio: 16 / 9;
  }

  .metric-strip div {
    padding: 15px;
  }

  .section {
    padding: 104px 0;
  }

  .program-band,
  .curriculum-band {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .credibility-band {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .site-footer {
    flex-direction: column;
  }

  body {
    padding-bottom: 78px;
  }

  .mobile-interest-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 8px;
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(21, 21, 21, 0.28);
    font-weight: 800;
  }

  .mobile-interest-bar svg {
    width: 18px;
    height: 18px;
  }
}
