:root {
  --accent: #d4593e;
  --accent-dark: #b8462f;
  --accent-tint: #f5e2d8;
  --dark: #1c2418;
  --dark-alt: #232c1e;
  --cream: #faf5ed;
  --tint: #f2ebde;
  --white: #ffffff;
  --text: #2a2820;
  --text-light: #ede5d6;
  --muted: #8a8174;
  --border: #e0d8c8;
  --nav-h: 64px;
  --banner-h: 42px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 120px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}

.eyebrow--light {
  color: var(--accent);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--muted);
  text-align: center;
  max-width: 560px;
  margin: 16px auto 0;
}

.text-accent {
  color: var(--accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 150ms ease;
  text-align: center;
  min-height: 48px;
}

.btn--filled {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn--filled:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--outline-light {
  color: var(--text-light);
  border-color: rgba(237, 229, 214, 0.3);
}

.btn--outline-light:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--block {
  width: 100%;
}

/* --- Nav --- */
.nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__brand-mark {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.nav__brand-sub {
  font-size: 0.6875rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links > a:not(.btn) {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  transition: color 200ms ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav__links > a:not(.btn):hover {
  color: var(--accent);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* --- Hero --- */
.hero {
  background: var(--dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  min-height: calc(100vh - var(--banner-h) - var(--nav-h));
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: rgba(212, 89, 62, 0.18);
  pointer-events: none;
}

.valley-motif {
  width: 100%;
  height: 80px;
  display: block;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}

.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 8px 0 20px;
  color: var(--white);
}

.hero__lead {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  line-height: 1.55;
  color: rgba(237, 229, 214, 0.85);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
}

.hero__image img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}

/* --- Pillars --- */
.pillars {
  background: var(--cream);
  padding: 64px 0;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar {
  text-align: center;
}

.pillar__icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin: 0 auto 14px;
}

.pillar__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.pillar__text {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.5;
}

/* --- Programs --- */
.programs {
  background: var(--white);
  padding: 96px 0;
}

.section-head {
  margin-bottom: 56px;
}

.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  background: var(--cream