:root {
  --ink: #18211f;
  --muted-ink: #53605c;
  --paper: #fbfaf6;
  --soft: #eef2ec;
  --panel: #ffffff;
  --line: #dce3dc;
  --forest: #1f5f4b;
  --forest-dark: #123f35;
  --sage: #93ab8f;
  --clay: #c85f3d;
  --gold: #d79b35;
  --blue: #47708f;
  --shadow: 0 24px 70px rgba(18, 63, 53, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(220, 227, 220, 0.8);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 8px;
  border: 1px solid rgba(220, 227, 220, 0.9);
  background: #fff;
  object-fit: contain;
  padding: 3px;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand small {
  display: block;
  color: var(--muted-ink);
  font-size: 0.76rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted-ink);
  font-size: 0.93rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--forest);
}

.nav-cta {
  padding: 10px 16px !important;
  border-radius: 8px;
  background: var(--forest);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 72px) 54px;
  isolation: isolate;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 31, 28, 0.78) 0%, rgba(16, 31, 28, 0.55) 44%, rgba(16, 31, 28, 0.16) 100%),
    linear-gradient(0deg, rgba(16, 31, 28, 0.42), rgba(16, 31, 28, 0.06));
}

.hero-content {
  width: min(720px, 100%);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2c972;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero p {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-actions,
.section-heading,
.band-inner,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 14px 34px rgba(31, 95, 75, 0.3);
}

.hero .button.primary {
  background: #fff;
  color: var(--forest-dark);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.section {
  padding: clamp(66px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.intro {
  padding-bottom: clamp(46px, 7vw, 76px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.split h2,
.band h2,
.activities h2,
.contact-section h2 {
  max-width: 820px;
}

.intro-grid p,
.section-heading p,
.split p,
.band p,
.contact-copy p {
  color: var(--muted-ink);
  font-size: 1.03rem;
}

.muted {
  background: var(--soft);
}

.section-heading > p {
  width: min(500px, 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.service-grid article {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--forest-dark);
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(18, 63, 53, 0.05);
}

.partner-note {
  margin-top: 28px;
  padding: 26px;
  border-left: 5px solid var(--clay);
  background: #fff;
  box-shadow: var(--shadow);
}

.partner-note p {
  margin: 8px 0 0;
  color: var(--muted-ink);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-list article,
.support-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-list article:nth-child(2) {
  border-top: 5px solid var(--gold);
}

.feature-list article:nth-child(3) {
  border-top: 5px solid var(--blue);
}

.feature-list article:nth-child(4) {
  border-top: 5px solid var(--clay);
}

.feature-list p,
.support-grid p,
.activity-panel li,
footer p {
  margin-bottom: 0;
  color: var(--muted-ink);
}

.band {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
  background: var(--forest-dark);
  color: #fff;
}

.band .section-kicker {
  color: #f2c972;
}

.band p {
  width: min(590px, 100%);
  color: rgba(255, 255, 255, 0.78);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.support-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
}

.activities {
  padding-top: 0;
}

.activity-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  padding: clamp(32px, 6vw, 62px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(31, 95, 75, 0.95), rgba(71, 112, 143, 0.9)),
    var(--forest);
  color: #fff;
}

.activity-panel .section-kicker {
  color: #f2c972;
}

.activity-panel ul {
  margin: 0;
  padding-left: 22px;
}

.activity-panel li {
  color: rgba(255, 255, 255, 0.84);
}

.activity-panel li + li {
  margin-top: 14px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 0.85fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
  padding: clamp(66px, 9vw, 116px) clamp(20px, 5vw, 72px);
  background: #fff;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--forest-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd8d1;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(31, 95, 75, 0.14);
}

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

.form-status.is-error {
  color: #b42318;
}

.contact-form button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

footer {
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

footer .brand-logo {
  border-color: rgba(255, 255, 255, 0.2);
}

footer p {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 760px;
  }

  .intro-grid,
  .split,
  .band-inner,
  .activity-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    top: 70px;
  }

  .hero {
    min-height: 720px;
    padding: 108px 18px 36px;
  }

  .hero img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 31, 28, 0.82), rgba(16, 31, 28, 0.52)),
      linear-gradient(0deg, rgba(16, 31, 28, 0.55), rgba(16, 31, 28, 0.12));
  }

  h1 {
    max-width: 10ch;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-highlights span {
    flex: 1 1 100%;
    justify-content: center;
  }

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

  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
