:root {
  --green: #2f9a44;
  --green-dark: #236f38;
  --green-soft: #e9f5ea;
  --terracotta: #d87836;
  --terracotta-dark: #a85b2c;
  --ink: #233027;
  --muted: #67736a;
  --line: #dce5db;
  --paper: #fffdf8;
  --cream: #f7f2e9;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(35, 48, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(220, 229, 219, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 0;
}

.brand img {
  width: 168px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--green-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white) !important;
  background: var(--green);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);
  scroll-margin-top: 92px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(100svh - 132px);
  padding-top: clamp(22px, 3vw, 42px);
  padding-bottom: clamp(24px, 4vw, 46px);
}

.hero-copy {
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 3.2vw, 2.85rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.55rem;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-text,
.hero-note,
.section-text,
.section-heading p,
.method-copy p,
.program-card p,
.feature-card p,
.step p,
.site-footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 600px;
  margin-bottom: 18px;
  font-size: 1.04rem;
}

.hero-note {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(47, 154, 68, 0.22);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--green-dark);
  background: var(--green-soft);
  border-color: rgba(47, 154, 68, 0.18);
}

.button.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-media {
  position: relative;
  width: min(100%, 430px);
  min-height: 0;
  aspect-ratio: 4 / 5;
  justify-self: end;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
}

.intro-band {
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--green-dark);
}

.intro-band p {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.35;
}

.split,
.method,
.audience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.section-text p {
  margin-bottom: 18px;
  font-size: 1.06rem;
}

.about-section .section-text {
  max-width: 680px;
}

.about-lead {
  display: grid;
  gap: 24px;
}

.about-closing {
  margin-top: 26px;
  color: var(--green-dark) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem !important;
  line-height: 1.45;
}

.about-content {
  max-width: 720px;
}

.about-photo {
  margin: 0;
  width: min(100%, 360px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(35, 48, 39, 0.12);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.feature-grid,
.program-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.program-card {
  min-height: 100%;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--terracotta);
  font-weight: 800;
}

.feature-card p {
  margin-bottom: 0;
}

.method {
  background: linear-gradient(90deg, var(--cream), var(--green-soft));
}

.method-copy {
  position: sticky;
  top: 126px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  padding: 24px 0;
  border-bottom: 1px solid rgba(47, 154, 68, 0.25);
}

.step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.08rem;
}

.step p {
  margin-bottom: 0;
}

.programs {
  background: var(--paper);
}

.program-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
  margin-bottom: 58px;
}

.program-intro .section-heading {
  margin-bottom: 0;
}

.program-intro-text {
  max-width: 760px;
}

.program-intro-text p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.program-intro-closing {
  color: var(--green-dark) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem !important;
  line-height: 1.45;
}

.program-subheading {
  max-width: 720px;
  margin-bottom: 28px;
}

.program-subheading h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.program-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}

.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.program-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 94px;
  aspect-ratio: 1;
  background: url("assets/logo-mark-color.png") center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.program-card > * {
  position: relative;
  z-index: 1;
}

.program-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.program-card p {
  margin-bottom: 0;
}

.program-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.program-number {
  color: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 900;
}

.program-summary {
  color: var(--green-dark) !important;
  font-weight: 800;
}

.program-card.highlighted {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.program-card.highlighted p,
.program-card.highlighted .tag {
  color: rgba(255, 255, 255, 0.76);
}

.tag {
  margin-bottom: 8px;
  color: var(--terracotta-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white) !important;
  background: var(--green);
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.program-button:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
}

.program-card.highlighted a {
  color: var(--white);
}

.audience {
  background: var(--cream);
}

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

.audience-list li {
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid rgba(168, 91, 44, 0.2);
  background:
    radial-gradient(circle at 8px 29px, var(--terracotta) 0 5px, transparent 6px) no-repeat;
}

.testimonials {
  background: var(--white);
}

.testimonial-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.45fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-bottom: 42px;
}

.testimonial-intro .section-heading {
  margin-bottom: 0;
}

.testimonial-photo {
  width: min(100%, 340px);
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(35, 48, 39, 0.12);
}

.testimonial-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding: 26px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.testimonial-card p {
  margin-bottom: 0;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.55;
}

.testimonial-card cite {
  display: block;
  margin-top: auto;
  color: var(--terracotta-dark);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-list {
  max-width: 920px;
}

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

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  cursor: pointer;
  padding: 24px 44px 24px 0;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--terracotta);
  font-size: 1.4rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--muted);
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--green-dark);
}

.cta-logo {
  width: min(240px, 58vw);
  margin-bottom: 28px;
  opacity: 0.9;
}

.cta-section h2 {
  max-width: 760px;
}

.cta-section .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px clamp(20px, 5vw, 72px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 190px;
  align-self: flex-start;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  max-width: 560px;
  text-align: right;
}

.site-footer p {
  flex-basis: 100%;
  margin-bottom: 0;
}

.site-footer a {
  color: var(--green-dark);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .hero,
  .split,
  .method,
  .audience {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .method-copy {
    position: static;
  }

  .about-photo {
    max-width: 360px;
  }

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

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-intro {
    grid-template-columns: 1fr;
  }

  .testimonial-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .testimonial-photo {
    max-width: 360px;
    justify-self: start;
  }

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

@media (max-width: 820px) {
  .site-header {
    min-height: 74px;
  }

  .brand {
    width: auto;
  }

  .brand img {
    width: 132px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 16px 20px 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(35, 48, 39, 0.12);
    transform: translateY(-130%);
    transition: transform 200ms ease;
  }

  .nav.is-open {
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 0;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-media,
  .hero-media img {
    min-height: 390px;
  }

  .hero-media {
    width: 100%;
    justify-self: stretch;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .site-footer div {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

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

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-media,
  .hero-media img {
    min-height: 310px;
  }

  .intro-band p {
    font-size: 1.18rem;
  }
}
