:root {
  --bg: #f5eedf;
  --paper: rgba(255, 250, 241, 0.88);
  --paper-strong: #fffaf1;
  --ink: #21332a;
  --muted: #596b5f;
  --sage: #758d62;
  --moss: #3f5d45;
  --clay: #bb6c4e;
  --sun: #ebc56d;
  --line: rgba(63, 93, 69, 0.16);
  --shadow: 0 24px 60px rgba(33, 51, 42, 0.12);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1140px;
  --heading-font: "Trebuchet MS", "Avenir Next Condensed", "Gill Sans", sans-serif;
  --body-font: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--body-font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(235, 197, 109, 0.4), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(117, 141, 98, 0.26), transparent 22%),
    linear-gradient(180deg, #f8f1e5 0%, #f2eadb 52%, #efe4d0 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.45;
}

body::before {
  width: 18rem;
  height: 18rem;
  top: 5rem;
  right: -4rem;
  background: rgba(117, 141, 98, 0.18);
}

body::after {
  width: 22rem;
  height: 22rem;
  left: -6rem;
  bottom: 10rem;
  background: rgba(187, 108, 78, 0.13);
}

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

p,
li {
  line-height: 1.65;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding: 1.25rem 0 2rem;
}

.site-header,
.hero,
.section,
.trust-strip,
.site-footer {
  animation: rise 700ms ease both;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand strong,
h1,
h2,
h3 {
  font-family: var(--heading-font);
  letter-spacing: -0.03em;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
}

.brand small {
  display: block;
  color: var(--muted);
  margin-top: 0.15rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--paper-strong);
  background:
    linear-gradient(145deg, rgba(117, 141, 98, 0.95), rgba(63, 93, 69, 0.98));
  box-shadow: var(--shadow);
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-nav a {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 250, 241, 0.74);
  color: var(--ink);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.9fr);
  gap: 1.5rem;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.feature-card,
.program-card,
.info-panel,
.quote-panel,
.cta-card {
  backdrop-filter: blur(10px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(2rem, 4vw, 4rem);
  border-radius: var(--radius-xl);
}

.hero-card {
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(238, 231, 212, 0.88));
}

.eyebrow,
.card-label,
.program-age {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--moss);
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.intro {
  margin: 1.35rem 0 0;
  max-width: 38rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button-primary {
  color: var(--paper-strong);
  background: linear-gradient(135deg, var(--clay), #9c583d);
  box-shadow: 0 14px 24px rgba(156, 88, 61, 0.22);
}

.button-secondary {
  color: var(--moss);
  background: rgba(117, 141, 98, 0.12);
}

.hero-points,
.detail-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.card-grid article {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 241, 0.7);
  border: 1px solid rgba(63, 93, 69, 0.1);
}

.card-grid strong,
.program-card h3,
.feature-card h3 {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.card-grid span {
  color: var(--muted);
}

.trust-strip {
  margin: 1.5rem 0 0;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  text-align: center;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid var(--line);
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
}

.section {
  margin-top: 1.5rem;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 241, 0.56);
  border: 1px solid rgba(63, 93, 69, 0.09);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(235, 197, 109, 0.11), rgba(255, 250, 241, 0.65));
}

.section-heading {
  max-width: 44rem;
}

.section-heading h2,
.hero-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.section-heading p:last-child,
.hero-card p {
  color: var(--muted);
}

.approach-grid,
.program-grid,
.details-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

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

.details-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.feature-card,
.program-card,
.info-panel,
.quote-panel {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.feature-card p,
.program-card p,
.info-panel li {
  color: var(--muted);
}

.quote-panel {
  display: grid;
  place-items: center;
  min-height: 100%;
  background:
    linear-gradient(160deg, rgba(117, 141, 98, 0.9), rgba(63, 93, 69, 0.96));
  color: var(--paper-strong);
}

.quote-panel p {
  margin: 0;
  max-width: 18ch;
  font-family: var(--heading-font);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.cta-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.82), rgba(235, 197, 109, 0.16));
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.cta-card p {
  margin: 0;
  color: var(--muted);
}

.cta-card .button {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 1.5rem 0 0.5rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero,
  .details-grid,
  .approach-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--content-width));
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a {
    padding-left: 0;
  }

  .hero-copy,
  .hero-card,
  .section {
    border-radius: 1.6rem;
  }

  .hero-copy {
    padding: 1.6rem;
  }

  h1 {
    max-width: 9ch;
  }
}
