:root {
  --ink: #16201c;
  --muted: #5b6761;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --forest: #103d30;
  --moss: #6f8d54;
  --gold: #d6a33a;
  --clay: #9d6b4e;
  --line: rgba(22, 32, 28, .14);
  --shadow: 0 16px 44px rgba(19, 34, 28, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(251, 250, 246, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--forest);
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong { font-size: 1.05rem; }
.brand small { color: var(--muted); margin-top: 4px; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 26px);
  margin-left: auto;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: .94rem;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  color: var(--forest);
}

.header-cta,
.button,
form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.header-cta,
.button-primary,
form button {
  background: var(--gold);
  color: #19140a;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
}

.header-cta:hover,
.header-cta:focus,
.button-primary:hover,
.button-primary:focus,
form button:hover,
form button:focus {
  background: #ecc052;
}

.button-secondary:hover,
.button-secondary:focus {
  background: rgba(255,255,255,.2);
}

.nav-toggle { display: none; }

.hero {
  min-height: min(760px, calc(100vh - 74px));
  display: grid;
  align-items: end;
  background-image:
    linear-gradient(90deg, rgba(16, 61, 48, .92), rgba(16, 61, 48, .64) 45%, rgba(16, 61, 48, .18)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: clamp(72px, 10vw, 138px) clamp(18px, 4vw, 58px);
}

.hero-content {
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: 0;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.6rem, 7vw, 5.7rem);
  line-height: .94;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  padding: clamp(62px, 8vw, 104px) clamp(18px, 4vw, 58px);
}

.section-tight { padding-top: 0; }
.section-muted { background: #eef1e8; }

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.copy-block h2,
.section-heading h2,
.request-grid h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.copy-block p,
.section-heading p,
.request-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--moss);
  position: absolute;
  left: 0;
  top: .58em;
}

.media-card {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.card-grid,
.lane-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.action-card,
.lane-grid article {
  display: grid;
  gap: 12px;
  min-height: 174px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  text-decoration: none;
}

.action-card span,
.lane-grid h3 {
  margin: 0;
  color: var(--forest);
  font-size: 1.22rem;
  font-weight: 900;
}

.action-card p,
.lane-grid p {
  margin: 0;
  color: var(--muted);
}

.action-card:hover,
.action-card:focus {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.request-panel { background: var(--forest); color: #fff; }
.request-panel p { color: rgba(255,255,255,.78); }

.request-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}

form {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 3vw, 32px);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
}

label { font-weight: 800; }

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  color: #fff;
  background: rgba(255,255,255,.09);
}

input:focus,
textarea:focus,
a:focus,
button:focus {
  outline: 3px solid rgba(214, 163, 58, .55);
  outline-offset: 3px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  background: #16201c;
  color: #fff;
}

.site-footer div {
  display: grid;
  gap: 3px;
}

.site-footer span,
.site-footer a {
  color: rgba(255,255,255,.72);
}

@media (max-width: 860px) {
  .site-header {
    min-height: 66px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 4px;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    place-content: center;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--forest);
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 5;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }

  .header-cta { display: none; }

  .hero {
    min-height: 650px;
    background-position: center;
  }

  .split,
  .request-grid,
  .media-grid,
  .card-grid,
  .lane-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 620px;
    padding-top: 62px;
    padding-bottom: 56px;
  }

  .section { padding-left: 16px; padding-right: 16px; }

  .brand strong { font-size: .98rem; }
}
