:root {
  --ink: #17211d;
  --muted: #5b675f;
  --page-bg: #fbfaf5;
  --panel: #ffffff;
  --forest: #1f5d48;
  --forest-dark: #12392e;
  --gold: #d79b38;
  --sky: #d9eef4;
  --line: rgba(23, 33, 29, 0.12);
  --shadow: 0 22px 70px rgba(18, 57, 46, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #ffffff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled {
  background: rgba(251, 250, 245, 0.94);
  color: var(--ink);
  box-shadow: 0 8px 35px rgba(23, 33, 29, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--forest-dark);
  font-weight: 900;
  letter-spacing: 0;
}

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

.brand strong {
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand small {
  color: currentColor;
  opacity: 0.78;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.scrolled .site-nav a:hover {
  background: rgba(31, 93, 72, 0.09);
}

.nav-cta {
  border: 1px solid currentColor;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 57, 46, 0.86), rgba(18, 57, 46, 0.45) 48%, rgba(18, 57, 46, 0.1)),
    linear-gradient(0deg, rgba(18, 57, 46, 0.72), transparent 42%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 80px) clamp(52px, 9vw, 98px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.contact-panel h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  background: var(--gold);
  color: var(--forest-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) 0;
}

.band {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1160px) / 2));
  background: #eef5ef;
}

.section-heading {
  max-width: 700px;
}

.section-heading h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  margin-top: 34px;
}

.intro-grid p {
  font-size: 1.12rem;
  color: var(--muted);
}

.facts {
  margin: 0;
  display: grid;
  gap: 12px;
}

.facts div,
.info-list div,
.policy-grid article,
.program-grid article,
.sample-box,
.contact-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.facts div {
  padding: 18px;
}

.facts dt {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.facts dd {
  margin: 3px 0 0;
  font-weight: 900;
}

.program-grid,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.program-grid article,
.policy-grid article {
  padding: 24px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--sky);
  color: var(--forest-dark);
  font-weight: 900;
}

h3 {
  margin: 18px 0 8px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.program-grid p,
.policy-grid p,
.privacy-copy,
.info-list span,
.contact-panel p {
  color: var(--muted);
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-list div {
  padding: 18px;
}

.info-list strong,
.info-list span {
  display: block;
}

.info-list strong {
  margin-bottom: 4px;
  font-size: 1.04rem;
}

.sms-section {
  width: min(1160px, calc(100% - 36px));
}

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

.sample-box {
  margin-top: 18px;
  padding: 26px;
  background: var(--forest-dark);
  color: #ffffff;
}

.sample-box h3 {
  margin-top: 0;
}

.sample-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.privacy-copy {
  max-width: 900px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
}

address {
  display: grid;
  gap: 9px;
  font-style: normal;
}

address strong {
  font-size: 1.15rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.8);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    display: none;
    width: min(320px, calc(100vw - 36px));
    padding: 10px;
    border-radius: 8px;
    background: rgba(251, 250, 245, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

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

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 57, 46, 0.9), rgba(18, 57, 46, 0.52)),
      linear-gradient(0deg, rgba(18, 57, 46, 0.78), transparent 45%);
  }

  .intro-grid,
  .split,
  .contact-panel,
  .program-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

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

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 14px 42px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 15vw, 4.4rem);
  }

  .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }
}


.forms-page {
  background: #f6f4ec;
}

.simple-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: var(--forest-dark);
  color: #ffffff;
}

.simple-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.simple-nav a {
  text-decoration: none;
  font-weight: 800;
}

.forms-main {
  width: min(1060px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px) 0;
}

.forms-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.forms-intro h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1.03;
}

.forms-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.form-sheet {
  margin-top: 24px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.form-sheet-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.form-sheet-header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.1;
}

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

.form-grid label label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.form-grid span span {
  display: block;
  min-height: 44px;
  border: 1px solid rgba(23, 33, 29, 0.3);
  border-radius: 4px;
}

.consent-box {
  margin: 26px 0;
  padding: 20px;
  border: 1px solid rgba(31, 93, 72, 0.3);
  border-radius: 8px;
  background: #f7fbf8;
}

.consent-box p {
  margin-bottom: 16px;
  color: var(--muted);
}

.checkbox-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 900;
}

.checkbox-line span {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border: 2px solid var(--forest);
  border-radius: 4px;
  background: #ffffff;
}

@media (max-width: 860px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .simple-header,
  .form-sheet-header {
    display: grid;
  }
}

.digital-form input,
.digital-form select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 33, 29, 0.3);
  border-radius: 4px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.digital-form input[type="checkbox"] {
  width: 20px;
  min-height: 20px;
  margin: 3px 0 0;
}

.form-submit {
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 16px 0 0;
  color: var(--forest-dark);
  font-weight: 800;
}



.form-error {
  margin: 16px 0 0;
  color: #9f1d1d;
  font-weight: 800;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}
