:root {
  --green-950: #123327;
  --green-850: #194735;
  --green-700: #2f6a4d;
  --gold-500: #d7a53b;
  --gold-300: #f2d27c;
  --cream-100: #faf6eb;
  --stone-100: #f4efe5;
  --stone-300: #d9ccba;
  --charcoal-900: #1d2320;
  --charcoal-700: #414842;
  --white: #fffdf8;
  --shadow: 0 22px 55px rgba(18, 51, 39, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(18, 51, 39, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--green-950);
  background: var(--gold-500);
  font-weight: 900;
  border-radius: 50%;
  border: 2px solid var(--green-950);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--charcoal-700);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--charcoal-700);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green-950);
  background: rgba(215, 165, 59, 0.18);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  background: var(--green-950);
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(18, 51, 39, 0.18);
  background: var(--white);
  border-radius: 8px;
  justify-self: end;
}

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

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 74px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 51, 39, 0.9) 0%, rgba(18, 51, 39, 0.66) 42%, rgba(18, 51, 39, 0.2) 100%),
    linear-gradient(0deg, rgba(18, 51, 39, 0.42), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(740px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
  padding: 76px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-300);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.section-heading .eyebrow,
.page-hero .eyebrow,
.contact-hero .eyebrow,
.story .eyebrow,
.checklist-grid .eyebrow,
.split .eyebrow,
.faq-layout .eyebrow {
  color: var(--green-700);
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 253, 248, 0.92);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.15;
}

.button-primary {
  color: var(--green-950);
  background: var(--gold-500);
}

.button-primary:hover {
  background: var(--gold-300);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.54);
  background: rgba(255, 253, 248, 0.1);
}

.hero-note {
  color: rgba(255, 253, 248, 0.84);
  font-size: 0.98rem;
}

.hero-note a,
.text-link {
  color: inherit;
  font-weight: 850;
  text-underline-offset: 4px;
}

.section-pad {
  padding: 84px 0;
}

.bg-soft {
  background: var(--stone-100);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading p,
.split p,
.page-hero p,
.contact-hero p,
.story p {
  color: var(--charcoal-700);
  font-size: 1.05rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.info-grid article,
.card,
.download-card,
.contact-card,
.values-grid article,
.map-card,
.feature-card {
  border: 1px solid rgba(18, 51, 39, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-grid article {
  padding: 18px;
  min-height: 128px;
}

.info-grid span,
.contact-card dt,
.site-footer span {
  display: block;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--green-950);
  line-height: 1.22;
}

.split-grid,
.page-hero-grid,
.contact-grid,
.contact-split,
.checklist-grid,
.faq-layout,
.registration-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 48px;
}

.split-grid.reverse {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
}

.feature-card {
  overflow: hidden;
}

.feature-card img,
.page-hero-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cards {
  display: grid;
  gap: 18px;
}

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

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 26px;
}

.card h2,
.card h3 {
  color: var(--green-950);
}

.card p {
  color: var(--charcoal-700);
  margin-bottom: 0;
}

.registration-panel {
  align-items: stretch;
}

.registration-panel p {
  color: var(--charcoal-700);
  font-size: 1.05rem;
}

.download-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 30px;
}

.download-card span {
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.download-card strong {
  color: var(--green-950);
  font-size: 1.55rem;
  line-height: 1.12;
}

.download-card p {
  margin-bottom: 4px;
  color: var(--charcoal-700);
}

.banner-cta {
  padding: 70px 0;
  color: var(--white);
  background: var(--green-950);
  text-align: center;
}

.banner-cta .container {
  max-width: 880px;
}

.banner-cta h2 {
  margin-bottom: 24px;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  border-top: 1px solid rgba(18, 51, 39, 0.18);
}

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  color: var(--green-950);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(18, 51, 39, 0.18);
  text-align: left;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.faq-item strong {
  font-size: 1.45rem;
}

.faq-answer {
  display: none;
  padding: 0 0 18px;
  color: var(--charcoal-700);
}

.faq-answer.is-open {
  display: block;
}

.page-hero,
.contact-hero {
  padding: 86px 0 74px;
  background: var(--cream-100);
}

.page-hero-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story {
  max-width: 880px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.values-grid article {
  padding: 28px;
}

.values-grid span {
  color: var(--gold-500);
  font-weight: 900;
}

.checklist-grid {
  align-items: start;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid rgba(18, 51, 39, 0.14);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: inset 0 0 0 3px var(--white);
  border: 1px solid var(--green-950);
}

.contact-card {
  padding: 30px;
}

.contact-card h2 {
  font-size: 1.6rem;
}

.contact-card dl,
.contact-card dd {
  margin: 0;
}

.contact-card div {
  padding: 16px 0;
  border-top: 1px solid rgba(18, 51, 39, 0.13);
}

.contact-card dd {
  color: var(--charcoal-700);
  font-weight: 700;
}

.map-card {
  overflow: hidden;
  min-height: 380px;
}

.map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.contact-form-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(18, 51, 39, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: var(--green-950);
  font-size: 0.86rem;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--charcoal-900);
  border: 1px solid rgba(18, 51, 39, 0.22);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(215, 165, 59, 0.32);
  border-color: var(--green-700);
}

.contact-form-card .button {
  width: fit-content;
  min-width: 180px;
  border: 0;
  cursor: pointer;
}

.form-alert {
  padding: 13px 14px;
  border-radius: 8px;
  font-weight: 750;
}

.form-alert-success {
  color: var(--green-950);
  background: rgba(215, 165, 59, 0.24);
  border: 1px solid rgba(47, 106, 77, 0.28);
}

.form-alert-error {
  color: #671f1f;
  background: #fff0ed;
  border: 1px solid rgba(103, 31, 31, 0.22);
}

.form-note {
  margin: 0;
  color: var(--charcoal-700);
  font-size: 0.92rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 253, 248, 0.82);
  background: var(--charcoal-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.9fr;
  gap: 28px;
}

.site-footer strong {
  display: block;
  color: var(--white);
  margin-bottom: 8px;
}

.site-footer a {
  display: inline-block;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 850;
  text-decoration: none;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: stretch;
    flex-direction: column;
    padding: 8px 0 4px;
  }

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

  .site-nav a {
    border-radius: 8px;
  }

  .header-call {
    display: none;
  }

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

  .split-grid,
  .split-grid.reverse,
  .page-hero-grid,
  .contact-grid,
  .contact-split,
  .checklist-grid,
  .faq-layout,
  .registration-panel {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .cards.four,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(18, 51, 39, 0.92) 0%, rgba(18, 51, 39, 0.78) 62%, rgba(18, 51, 39, 0.38) 100%);
  }

  .hero-content {
    width: min(100% - 28px, 680px);
    margin: 0 auto;
    align-self: end;
    padding: 120px 0 44px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.25rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.75rem, 10vw, 2.5rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section-pad {
    padding: 58px 0;
  }

  .page-hero,
  .contact-hero {
    padding: 56px 0;
  }

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

  .card,
  .download-card,
  .values-grid article,
  .contact-card,
  .contact-form-card {
    padding: 22px;
  }

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

  .contact-form-card .button {
    width: 100%;
  }
}
