:root {
  --deep-blue: #1D3557;
  --earth-brown: #7C5A3A;
  --rooted-green: #3B6B3B;
  --light-sage: #C8D5B9;
  --white: #FFFFFF;
  --ink: #2E3A45;
  --radius: 16px;
  --shadow-sm: 0 8px 22px rgba(16,30,48,.14);
  --shadow-md: 0 22px 54px rgba(16,30,48,.2);
  --maxw: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    linear-gradient(135deg, rgba(29,53,87,.15), transparent 34%),
    linear-gradient(225deg, rgba(59,107,59,.13), transparent 36%),
    linear-gradient(180deg, #d8e2d0 0%, #eff4e9 38%, #d9e5d0 100%);
}
a { color: var(--rooted-green); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrapper { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 30px rgba(16,30,48,.1);
  backdrop-filter: saturate(140%) blur(6px);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }
.brand img { height: 40px; width: auto; display: block; }
nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
nav a { color: var(--deep-blue); font-weight: 700; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--rooted-green);
  color: var(--white);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.cta-btn:hover { background: #335533; text-decoration: none; }
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(29,53,87,.18);
  background: var(--white);
  color: var(--deep-blue);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.secondary-btn:hover { background: rgba(29,53,87,.06); text-decoration: none; }
.action-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.hero {
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 42%),
    linear-gradient(115deg, rgba(124,90,58,.18), transparent 42%),
    linear-gradient(135deg, rgba(9,19,32,.98), rgba(29,53,87,.94) 50%, rgba(38,76,48,.9));
  color: var(--white);
  padding: 64px 0 48px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 32px;
  align-items: center;
}
.eyebrow {
  color: var(--earth-brown);
  font: 700 .9rem 'Source Sans 3', system-ui, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero .eyebrow { color: rgba(222,234,208,.92); }
h1 {
  margin: 8px 0 12px;
  color: var(--deep-blue);
  font-size: clamp(2rem, 3vw + 1rem, 3.2rem);
  line-height: 1.12;
}
.hero h1 { color: var(--white); }
.lead { font: 600 1.14rem 'Source Sans 3', system-ui, sans-serif; color: rgba(255,255,255,.88); max-width: 62ch; }
.logo-panel {
  min-height: 270px;
  display: grid;
  place-items: center;
  padding: 38px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(29,53,87,.16);
  box-shadow: var(--shadow-md);
}
.logo-panel img { max-width: 280px; max-height: 96px; width: auto; height: auto; object-fit: contain; }
.logo-panel .logo-wide { max-width: 320px; }
.logo-panel .logo-short { max-height: 64px; }
section { padding: 48px 0; }
main > section:not(.hero) {
  background: linear-gradient(180deg, rgba(236,242,228,.97), rgba(218,230,208,.97));
}
.section-title { margin: 0 0 12px; color: var(--deep-blue); font-size: 1.75rem; line-height: 1.2; }
.section-sub { margin: -4px 0 20px; color: var(--earth-brown); font: 700 1rem 'Source Sans 3', system-ui, sans-serif; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(29,53,87,.16);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.card h2, .card h3 { margin-top: 0; color: var(--deep-blue); }
.card p:last-child { margin-bottom: 0; }
.panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(211,226,199,.76));
  border: 1px solid rgba(29,53,87,.16);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-md);
}
.compact-list { margin: 0; padding-left: 20px; }
.compact-list li { margin: 8px 0; }
.fit-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.fit-list li {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(29,53,87,.08);
  border: 1px solid rgba(29,53,87,.14);
}
.note {
  border-left: 5px solid var(--rooted-green);
  padding: 18px 20px;
  background: rgba(59,107,59,.12);
  border-radius: 12px;
}
.partner-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.partner-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(29,53,87,.08);
  color: var(--deep-blue);
  font-weight: 700;
  font-size: .92rem;
}
.partner-nav a:hover { background: rgba(59,107,59,.14); text-decoration: none; }
.partner-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  max-width: 920px;
}
.partner-list-item {
  display: grid;
  grid-template-columns: minmax(150px, .32fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(29,53,87,.16);
  box-shadow: var(--shadow-sm);
}
.partner-list-item a {
  color: var(--deep-blue);
  font-weight: 800;
}
.partner-list-item p {
  margin: 0;
  color: var(--ink);
}
footer { background: var(--deep-blue); color: var(--white); padding: 34px 0; }
footer a { color: var(--white); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; font-weight: 700; }
.floating-home {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--rooted-green);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(29,53,87,.22);
}
.floating-home:hover {
  background: #335533;
  text-decoration: none;
}

@media (max-width: 860px) {
  .hero-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 36px; }
  section { padding: 38px 0; }
}
@media (max-width: 640px) {
  header { position: static; }
  .nav { flex-direction: column; gap: 12px; }
  nav { justify-content: center; gap: 12px; font-size: .9rem; }
  .wrapper { padding: 0 16px; }
  .logo-panel { min-height: 210px; padding: 28px; }
  .logo-panel img { max-width: 230px; }
  .card, .panel { padding: 18px; }
  .partner-list-item { grid-template-columns: 1fr; gap: 4px; }
  .floating-home { left: 16px; bottom: 16px; min-height: 40px; padding: 8px 12px; font-size: .85rem; }
}
