:root {
  --ink: #21312c;
  --ink-soft: #4c5d56;
  --paper: #fbfaf6;
  --paper-strong: #ffffff;
  --line: #d9ddd1;
  --field: #f3f1eb;
  --green: #314c3d;
  --green-dark: #20382d;
  --moss: #8da36f;
  --clay: #c86b3c;
  --clay-dark: #9b4d2b;
  --gold: #d7b46a;
  --focus: #145fd7;
  --shadow: 0 16px 40px rgba(33, 49, 44, 0.12);
  --radius: 8px;
  color-scheme: light;
}

* {
  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.6;
  font-size: 17px;
  letter-spacing: 0;
}

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

a {
  color: var(--clay-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  margin: 0 0 0.65rem;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  font-size: 3rem;
  max-width: 980px;
}

h2 {
  font-size: 2rem;
  margin-top: 0;
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0 0 1.1rem;
  padding-left: 1.35rem;
}

li + li {
  margin-top: 0.3rem;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--paper-strong);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border: 2px solid var(--focus);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(251, 250, 246, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--paper-strong);
  background: var(--green);
  border-radius: 6px;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.95rem;
}

.site-nav > a,
.nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.72rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
}

.site-nav > a:hover,
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary {
  background: #eeeee5;
  color: var(--green-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  list-style: none;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: 280px;
  padding: 0.55rem;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dropdown-panel a {
  display: block;
  padding: 0.58rem 0.68rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: 5px;
}

.dropdown-panel a:hover {
  background: var(--field);
}

.header-cta {
  display: grid;
  gap: 0.1rem;
  justify-items: end;
  font-size: 0.82rem;
  color: var(--ink-soft);
  white-space: nowrap;
}

.header-cta a {
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--clay-dark);
}

.mobile-menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-strong);
  color: var(--ink);
  min-height: 42px;
  padding: 0 0.9rem;
  font: inherit;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  min-height: 650px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

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

.hero-bg {
  background-size: cover;
  background-position: center;
  z-index: -3;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(20, 28, 25, 0.83), rgba(20, 28, 25, 0.56) 46%, rgba(20, 28, 25, 0.18));
  z-index: -2;
}

.hero-content {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 6rem 0 5.2rem;
  color: var(--paper-strong);
}

.hero-content h1,
.hero-content p {
  color: var(--paper-strong);
}

.hero-content p {
  max-width: 720px;
  font-size: 1.12rem;
}

.hero-interior {
  background: #eceadf;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 3rem;
  align-items: center;
  padding: 4.2rem 0;
}

.hero-grid > div > p {
  font-size: 1.08rem;
  max-width: 720px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 0.55rem;
  color: var(--clay-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-content .eyebrow {
  color: var(--gold);
}

.hero-actions,
.cta-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.05rem;
  border-radius: 5px;
  border: 2px solid transparent;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.15;
  text-align: center;
}

.button-primary {
  color: #ffffff;
  background: var(--clay);
}

.button-primary:hover {
  color: #ffffff;
  background: var(--clay-dark);
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(33, 49, 44, 0.46);
}

.hero-interior .button-secondary {
  color: var(--green-dark);
  border-color: var(--green-dark);
  background: transparent;
}

.button-dark {
  color: #ffffff;
  background: var(--green-dark);
}

.button-light {
  color: var(--green-dark);
  background: var(--paper-strong);
}

.trust-line {
  margin-top: 1.15rem;
  max-width: 760px;
  font-size: 0.98rem;
}

.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding-top: 1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--ink-soft);
}

.page-content {
  padding: 3.2rem 0 4rem;
}

.section {
  padding: 2.6rem 0;
  border-bottom: 1px solid var(--line);
}

.section:last-child {
  border-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.section-heading p:last-child {
  color: var(--ink-soft);
}

.split,
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 2rem;
  align-items: start;
}

.wide-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: start;
}

.media-frame {
  margin: 0;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(33, 49, 44, 0.08);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.media-frame figcaption {
  padding: 0.65rem 0.85rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
  background: var(--paper-strong);
}

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

.service-card,
.mini-card,
.info-card {
  min-height: 100%;
  display: block;
  color: var(--ink);
  text-decoration: none;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.service-card:hover,
.resource-list a:hover,
.location-pills a:hover {
  border-color: var(--moss);
  box-shadow: 0 8px 22px rgba(49, 76, 61, 0.12);
}

.service-card h3,
.mini-card h3,
.info-card h3 {
  font-size: 1.06rem;
}

.service-card p,
.mini-card p,
.info-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--clay-dark);
  font-weight: 800;
  font-size: 0.92rem;
}

.checklist,
.plain-list {
  padding-left: 0;
  list-style: none;
}

.checklist li,
.plain-list li {
  position: relative;
  padding-left: 1.35rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66rem;
  width: 0.48rem;
  height: 0.48rem;
  background: var(--moss);
  border-radius: 50%;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.5rem;
  height: 2px;
  background: var(--clay);
}

.callout,
.reg-note,
.form-note {
  border-left: 5px solid var(--clay);
  background: #f7f3e9;
  padding: 1rem 1.1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.reg-note {
  border-color: var(--green);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.stat-strip > div {
  background: var(--green);
  color: #ffffff;
  border-radius: var(--radius);
  padding: 1rem;
}

.stat-strip strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.step-list {
  counter-reset: steps;
  display: grid;
  gap: 0.85rem;
  padding-left: 0;
  list-style: none;
}

.step-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.8rem;
  align-items: start;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
}

.step-list li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.resource-list a {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  color: var(--ink);
  text-decoration: none;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.resource-list span {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.location-pills a {
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.82rem;
  text-decoration: none;
  font-weight: 700;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin: 2.2rem 0;
  padding: 1.4rem;
  color: #ffffff;
  background: var(--green);
  border-radius: var(--radius);
}

.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.cta-band .eyebrow {
  color: var(--gold);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

.faq-list details > div {
  margin-top: 0.8rem;
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.form-panel {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.35rem;
}

.field label,
.fieldset-label {
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #bfc8ba;
  border-radius: 5px;
  background: #ffffff;
  min-height: 46px;
  padding: 0.65rem 0.72rem;
  color: var(--ink);
  font: inherit;
}

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

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  border: 0;
  padding: 0;
  margin: 0;
}

.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  background: var(--field);
}

.honeypot {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer {
  background: var(--green-dark);
  color: #edf1e9;
  padding: 3rem 0 2.4rem;
}

.footer-grid {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h2 {
  color: #ffffff;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  color: #ffffff;
  margin: 0.28rem 0;
}

.site-footer p {
  color: #d7ded2;
  font-size: 0.94rem;
}

.footer-brand {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.small {
  font-size: 0.84rem;
}

.mobile-bottom-cta {
  display: none;
}

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

.privacy-list dt {
  font-weight: 800;
  margin-top: 1rem;
}

.privacy-list dd {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    align-items: stretch;
    justify-content: start;
    flex-direction: column;
    padding: 0 0 0.9rem;
  }

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

  .dropdown-panel {
    position: static;
    width: 100%;
    box-shadow: none;
    margin: 0.2rem 0 0.4rem;
  }

  .header-cta {
    display: none;
  }

  .card-grid,
  .resource-list,
  .image-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  body {
    font-size: 16px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: 2.22rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .container,
  .hero-content,
  .footer-grid {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    width: min(100% - 24px, 1240px);
    min-height: 68px;
  }

  .brand {
    font-size: 0.95rem;
  }

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

  .hero-home {
    min-height: 590px;
  }

  .hero-overlay {
    background: rgba(20, 28, 25, 0.72);
  }

  .hero-content {
    padding: 4.5rem 0 4rem;
  }

  .hero-content p,
  .hero-grid > div > p {
    font-size: 1rem;
  }

  .hero-grid {
    padding: 2.8rem 0;
    gap: 1.4rem;
  }

  .page-content {
    padding-top: 2rem;
  }

  .section {
    padding: 2rem 0;
  }

  .split,
  .two-col,
  .wide-split,
  .contact-grid,
  .cta-band,
  .footer-grid,
  .field-grid,
  .stat-strip,
  .card-grid,
  .resource-list,
  .image-row {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions,
  .inline-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .step-list li {
    grid-template-columns: 38px 1fr;
  }

  .mobile-bottom-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 -8px 24px rgba(33, 49, 44, 0.18);
  }

  .mobile-bottom-cta a {
    display: grid;
    place-items: center;
    min-height: 58px;
    color: #ffffff;
    background: var(--green-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 900;
    text-align: center;
    padding: 0.5rem;
  }

  .mobile-bottom-cta a + a {
    background: var(--clay);
  }
}
