:root {
  color-scheme: light;
  --ink: #111a15;
  --muted: #627067;
  --soft: #f5f8f2;
  --soft-strong: #edf3e8;
  --panel: #ffffff;
  --line: #dbe5d8;
  --leaf: #377a35;
  --leaf-dark: #285924;
  --gold: #dba63b;
  --rust: #9a3e2e;
  --shadow: 0 18px 45px rgba(17, 26, 21, 0.1);
  --shadow-soft: 0 1px 2px rgba(17, 26, 21, 0.06), 0 18px 35px rgba(17, 26, 21, 0.08);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--leaf-dark);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 10;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  background: rgba(251, 252, 248, 0.9);
  border-bottom: 1px solid rgba(220, 230, 220, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-title {
  font-size: 1.05rem;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  padding: 0.72rem;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  border-radius: 2px;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--leaf-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.8rem 1.12rem;
  border-radius: 7px;
  border: 1px solid transparent;
  background: var(--leaf);
  color: white;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 12px 25px rgba(63, 127, 56, 0.22);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus {
  background: var(--leaf-dark);
  color: white;
  transform: translateY(-1px);
}

.button.secondary {
  background: white;
  color: var(--leaf-dark);
  border-color: var(--line);
  box-shadow: none;
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--soft);
  color: var(--leaf-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #fbfcf8 0%, #f6f9f2 54%, #ffffff 100%);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7.5rem) 1.25rem clamp(3.25rem, 6vw, 5.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.lead {
  max-width: 650px;
  margin: 1.3rem 0 0;
  color: #334137;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(63, 127, 56, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--leaf-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-panel {
  border: 1px solid rgba(219, 229, 216, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-panel-top {
  padding: 1.25rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(237, 243, 232, 0.95), rgba(255, 255, 255, 0.95));
}

.hero-panel-top p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 1rem;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 2.35rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.service-list strong {
  display: block;
  line-height: 1.2;
}

.service-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 7px;
  background: var(--soft-strong);
  color: var(--leaf-dark);
  font-weight: 900;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-item {
  min-width: 0;
  padding: 1rem;
  background: white;
}

.trust-item strong {
  display: block;
  line-height: 1.2;
}

.trust-item span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 1.25rem;
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  background: #121c16;
  color: white;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

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

.dark .section-head p,
.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.dark a {
  color: #e6f6dc;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 1.25rem;
  box-shadow: 0 1px 0 rgba(23, 32, 27, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card.featured {
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.card:hover {
  border-color: rgba(63, 127, 56, 0.26);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  background: var(--soft-strong);
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.card h3 {
  margin-bottom: 0.65rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card ul,
.check-list {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.media-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  object-fit: cover;
}

.media-panel .caption {
  padding: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.brand-panel {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(63, 127, 56, 0.1), rgba(219, 166, 59, 0.12)),
    var(--panel);
}

.brand-panel img {
  width: min(240px, 60vw);
  filter: drop-shadow(0 18px 28px rgba(23, 32, 27, 0.14));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: white;
  padding: 1rem;
}

.stat strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.process {
  counter-reset: process;
}

.process .card {
  position: relative;
  padding-top: 4.25rem;
}

.process .card::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  left: 1.25rem;
  top: 1.15rem;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--gold);
  color: #1d2117;
  font-weight: 900;
}

.notice {
  border-left: 5px solid var(--gold);
  background: #fff8e8;
  padding: 1rem 1.1rem;
  border-radius: 6px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
  gap: 1rem;
  align-items: stretch;
}

.contact-box {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 1.35rem;
}

.contact-box a {
  color: white;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: white;
  padding: 2rem 1.25rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner a {
  color: var(--muted);
}

.page-hero {
  background: linear-gradient(180deg, var(--soft) 0%, white 100%);
  border-bottom: 1px solid var(--line);
  padding: 4rem 1.25rem;
}

.page-hero .wrap {
  max-width: 900px;
}

.content {
  max-width: 900px;
  margin: 0 auto;
}

.content p,
.content li {
  color: #445047;
}

.content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content h3 {
  margin-top: 1.6rem;
  margin-bottom: 0.45rem;
}

.prep-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
}

.prep-grid li {
  break-inside: avoid;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    margin-left: 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
    align-items: stretch;
    flex-direction: column;
  }

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

  .nav-links a {
    padding: 0.25rem 0;
  }

  .hero {
    background: linear-gradient(180deg, #fbfcf8 0%, #f3f7f0 100%);
  }

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

  .hero-inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .grid.three,
  .grid.two,
  .split,
  .contact-band {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .nav {
    padding: 0.75rem 1rem;
  }

  .brand-title {
    font-size: 0.98rem;
  }

  .brand-subtitle {
    max-width: 180px;
    font-size: 0.68rem;
  }

  .section,
  .page-hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .button {
    width: 100%;
  }

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

  .trust-strip .wrap {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }
}
