:root {
  --green-brand: #006241;
  --green-accent: #00754a;
  --green-house: #1e3932;
  --green-uplift: #2b5148;
  --green-light: #d4e9e2;
  --gold: #cba258;
  --gold-lightest: #faf6ee;
  --cream: #f2f0eb;
  --ceramic: #edebe9;
  --white: #ffffff;
  --ink: rgba(0, 0, 0, 0.87);
  --ink-soft: rgba(0, 0, 0, 0.58);
  --white-soft: rgba(255, 255, 255, 0.74);
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 98, 65, 0.28);
  --nav-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.07);
  --card-shadow: 0 0 0.5px rgba(0, 0, 0, 0.14), 0 1px 1px rgba(0, 0, 0, 0.24);
  --float-shadow: 0 0 6px rgba(0, 0, 0, 0.24), 0 8px 12px rgba(0, 0, 0, 0.14);
  --radius-xl: 32px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --button-active-scale: 0.95;
  --container: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

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

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

button,
a {
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

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

main {
  overflow: clip;
}

.site-shell {
  position: relative;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

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

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

.section--gold {
  background: var(--gold-lightest);
}

.section--dark {
  background: var(--green-house);
  color: var(--white);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading__eyebrow {
  margin: 0;
  color: var(--green-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading__title,
h1,
h2 {
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  max-width: 11ch;
  margin-bottom: 20px;
}

h2,
.section-heading__title {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

.section-heading__body,
.hero__description,
.feature-card p,
.schedule-card p,
.person-card p,
.update-card h3,
.faq-item p,
.site-footer p,
.site-footer small,
.bullet-list li,
.final-cta p,
.stat-card span {
  color: var(--ink-soft);
}

.section--dark .section-heading__eyebrow,
.section--dark .hero__eyebrow,
.section--dark .hero__meta span,
.section--dark .person-card__role,
.section--dark .feature-card__index,
.section--dark .update-card__meta {
  color: rgba(255, 255, 255, 0.82);
}

.section--dark .section-heading__body,
.section--dark .feature-card p,
.section--dark .schedule-card p,
.section--dark .person-card p,
.section--dark .update-card h3,
.section--dark .faq-item p,
.section--dark .bullet-list li,
.section--dark .final-cta p,
.section--dark .site-footer p,
.section--dark .site-footer small {
  color: var(--white-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 7px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.button:hover,
.site-nav a:hover,
.site-footer__links a:hover,
.float-cta:hover {
  transform: translateY(-1px);
}

.button:active,
.float-cta:active {
  transform: scale(var(--button-active-scale));
}

.button--primary {
  background: var(--green-accent);
  border-color: var(--green-accent);
  box-shadow: 0 1px 2px rgba(0, 117, 74, 0.18);
  color: var(--white);
}

.button--ghost {
  background: transparent;
  border-color: var(--green-accent);
  color: var(--green-accent);
}

.section--dark .button--primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--green-accent);
}

.section--dark .button--ghost {
  border-color: var(--white);
  color: var(--white);
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

.media-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bullet-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 24px;
}

.bullet-list li::before {
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-accent);
  content: "";
}

.section--dark .bullet-list li::before {
  background: var(--white);
}

.float-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-accent);
  box-shadow: var(--float-shadow);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .card-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section {
    padding: 72px 0;
  }

  .container {
    width: min(100vw - 28px, 100%);
  }

  .card-grid--three {
    grid-template-columns: 1fr;
  }

  .float-cta {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none;
    transition: none;
  }
}
