:root {
  --green-950: #10251c;
  --green-900: #17382a;
  --green-800: #1f4d39;
  --green-700: #2d674d;
  --green-100: #e9f3eb;
  --sand-50: #fbf7ef;
  --sand-100: #f4ead8;
  --sand-200: #e4d2b1;
  --orange: #b85b14;
  --orange-light: #f39a4a;
  --orange-dark: #93450f;
  --ink: #17201a;
  --muted: #5a665f;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(16, 37, 28, 0.18);
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand-50);
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 12px; background: var(--white); padding: 10px 14px; border-radius: 8px; z-index: 100; }
.skip-link:focus { left: 12px; }
section[id] { scroll-margin-top: 96px; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(251, 247, 239, 0.88);
  border-bottom: 1px solid rgba(23, 56, 42, 0.1);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; min-width: 0; gap: 10px; text-decoration: none; font-weight: 800; letter-spacing: 0; color: var(--green-950); }
.brand span { line-height: 1.05; }
.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(16, 37, 28, 0.22);
}
.nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid rgba(23, 56, 42, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-950);
  font-weight: 800;
  cursor: pointer;
}
.nav-toggle-icon { display: grid; gap: 4px; width: 18px; }
.nav-toggle-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.site-nav { display: flex; align-items: center; gap: 24px; font-weight: 650; color: var(--green-950); }
.site-nav a { text-decoration: none; opacity: 0.85; transition: opacity 0.2s ease, transform 0.2s ease; }
.site-nav a:hover { opacity: 1; transform: translateY(-1px); }
.nav-cta { padding: 10px 16px; border-radius: 999px; background: var(--green-900); color: var(--white); opacity: 1 !important; }

.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--green-950); color: var(--white); }
.hero-bg { position: absolute; z-index: 0; inset: 0; background: radial-gradient(circle at 18% 20%, rgba(217,121,37,.28), transparent 32%), radial-gradient(circle at 92% 15%, rgba(94,151,112,.38), transparent 36%), linear-gradient(135deg, rgba(16,37,28,.95), rgba(23,56,42,.94)); }
.hero::after { content: ""; position: absolute; z-index: 1; pointer-events: none; inset: auto -10% -20% -10%; height: 240px; background: var(--sand-50); transform: rotate(-3deg); transform-origin: 0 0; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, 440px); gap: clamp(34px, 4vw, 56px); align-items: center; padding: 90px 0 140px; }
.hero-copy { min-width: 0; }
.eyebrow { margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0; font-weight: 800; font-size: 0.78rem; color: var(--orange); }
.hero .eyebrow,
.guide-cta .eyebrow { color: var(--orange-light); }
.hero h1 { margin: 0; font-size: clamp(3rem, 6.6vw, 5.5rem); line-height: 0.94; letter-spacing: 0; max-width: 780px; }
.hero-text { font-size: 1.18rem; color: rgba(255,255,255,.82); margin: 24px 0 0; max-width: 660px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 0; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 14px 20px; border-radius: 999px; border: 0; font-weight: 800; text-align: center; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button.primary { background: var(--orange); color: var(--white); box-shadow: 0 15px 32px rgba(217,121,37,.28); }
.button.primary:hover { background: var(--orange-dark); }
.button.secondary { background: rgba(255,255,255,.12); color: var(--white); border: 1px solid rgba(255,255,255,.18); }
.button.full { width: 100%; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.trust-row span { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.11); color: rgba(255,255,255,.82); font-weight: 700; font-size: .9rem; }

.lead-card { position: relative; background: var(--white); color: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 30px; }
.lead-card h2, .guide-form h2 { margin: 0; font-size: 1.6rem; letter-spacing: 0; }
.lead-card p { margin: 8px 0 20px; color: var(--muted); }
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
label { display: grid; gap: 7px; font-size: .88rem; font-weight: 750; color: var(--green-950); margin-bottom: 14px; }
input, select, textarea { width: 100%; border: 1px solid rgba(23, 56, 42, .18); border-radius: 8px; padding: 13px 14px; background: #fffdf8; color: var(--ink); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(217,121,37,.12); }
.form-note { margin: 12px 0 0 !important; font-size: .78rem; color: var(--muted); }

.intro-band { position: relative; z-index: 3; margin-top: -44px; }
.band-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(23,56,42,.12); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 16px 42px rgba(16,37,28,.08); }
.band-grid > div { background: var(--white); padding: 24px; display: grid; gap: 4px; }
.band-grid strong { color: var(--green-950); }
.band-grid span { color: var(--muted); font-size: .92rem; }

.section { padding: clamp(72px, 8vw, 92px) 0; }
.section.muted { background: var(--green-100); }
.section-heading { max-width: 760px; text-align: center; margin: 0 auto 38px; }
.section-heading.left { text-align: left; margin: 0; }
.section-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: 0; color: var(--green-950); }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; margin: 18px 0 0; }
.card-grid { display: grid; gap: 20px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.feature-card { height: 100%; background: var(--white); border-radius: var(--radius-md); padding: 28px; box-shadow: 0 12px 32px rgba(16,37,28,.07); border: 1px solid rgba(23,56,42,.08); }
.icon { display: inline-grid; place-items: center; min-width: 58px; height: 32px; border-radius: 999px; background: var(--sand-100); margin-bottom: 18px; padding: 0 12px; font-size: .75rem; font-weight: 900; text-transform: uppercase; color: var(--green-900); }
.feature-card h3, .step h3 { margin: 0; color: var(--green-950); letter-spacing: 0; }
.feature-card p, .step p { color: var(--muted); margin: 10px 0 0; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.location-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.location-list a { padding: 20px; border-radius: var(--radius-md); background: var(--white); text-decoration: none; font-weight: 800; color: var(--green-950); border: 1px solid rgba(23,56,42,.08); transition: transform .2s ease, box-shadow .2s ease; }
.location-list a:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(16,37,28,.08); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: steps; }
.step { position: relative; background: var(--white); border-radius: var(--radius-md); padding: 30px; border: 1px solid rgba(23,56,42,.08); }
.step span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--green-900); color: var(--white); font-weight: 900; margin-bottom: 24px; }
.guide-cta { background: linear-gradient(135deg, var(--green-950), var(--green-800)); color: var(--white); }
.guide-grid { display: grid; grid-template-columns: 1fr 430px; gap: 56px; align-items: center; }
.guide-grid h2 { margin: 0; font-size: clamp(2.1rem, 4vw, 3.8rem); line-height: 1; letter-spacing: 0; }
.guide-grid p:not(.eyebrow) { color: rgba(255,255,255,.78); font-size: 1.08rem; max-width: 620px; }
.guide-form { background: var(--white); color: var(--ink); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.faq-list { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
details { background: var(--white); border-radius: var(--radius-md); padding: 20px 22px; border: 1px solid rgba(23,56,42,.08); }
summary { min-height: 28px; font-weight: 850; cursor: pointer; color: var(--green-950); }
details p { color: var(--muted); margin: 12px 0 0; }
.final-cta { background: var(--sand-100); padding: 58px 0; }
.final-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.final-grid h2 { margin: 0; color: var(--green-950); letter-spacing: 0; font-size: clamp(2rem, 3vw, 3rem); }
.final-grid p { color: var(--muted); margin: 8px 0 0; }
.site-footer { background: var(--green-950); color: rgba(255,255,255,.78); padding: 46px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 34px; align-items: start; }
.footer-brand { color: var(--white); margin-bottom: 14px; }
.site-footer a { display: block; text-decoration: none; color: rgba(255,255,255,.86); margin-top: 8px; }
.site-footer strong { color: var(--white); display: block; margin-bottom: 8px; }
.legal { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 22px; display: grid; grid-template-columns: .5fr 1.5fr; gap: 24px; font-size: .78rem; color: rgba(255,255,255,.55); }

.lead-checklist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 22px 0; }
.lead-checklist span { display: block; padding: 12px 14px; border-radius: 8px; background: var(--sand-100); color: var(--green-950); font-weight: 800; font-size: .9rem; }

.contact-section { background: var(--sand-50); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.contact-card { display: grid; gap: 8px; padding: 22px; border-radius: var(--radius-md); background: var(--white); border: 1px solid rgba(23,56,42,.08); text-decoration: none; box-shadow: 0 12px 32px rgba(16,37,28,.06); transition: transform .2s ease, box-shadow .2s ease; }
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(16,37,28,.1); }
.contact-card span { color: var(--orange); text-transform: uppercase; letter-spacing: 0; font-weight: 900; font-size: .72rem; }
.contact-card strong { color: var(--green-950); font-size: 1rem; overflow-wrap: anywhere; }
.contact-card small { color: var(--muted); line-height: 1.45; }
.form-note a, .final-grid a { color: inherit; font-weight: 850; }

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 72px 0 150px;
  }
  .hero-copy { max-width: 800px; }
  .hero h1 {
    max-width: 760px;
    font-size: clamp(3.2rem, 8.5vw, 5rem);
  }
  .lead-card { max-width: 640px; }
  .hero::after {
    bottom: -14%;
    height: 200px;
    transform: rotate(-2deg);
  }
}

@media (max-width: 940px) {
  .guide-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .guide-form { max-width: 640px; }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .legal { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 82px; }
  section[id] { scroll-margin-top: 82px; }
  .nav-wrap {
    min-height: 68px;
    flex-wrap: wrap;
  }
  .js .nav-toggle { display: inline-flex; }
  .site-nav {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 0 0 14px;
  }
  .js .site-nav { display: none; }
  .js .site-nav.is-open { display: grid; }
  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 8px;
  }
  .site-nav a:hover {
    background: rgba(23, 56, 42, .07);
    transform: none;
  }
  .nav-cta {
    grid-column: 1 / -1;
    justify-content: center;
    color: var(--white) !important;
    padding: 10px 14px !important;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    gap: 30px;
    padding: 58px 0 126px;
  }
  .hero::after {
    bottom: -10%;
    height: 150px;
  }
  .intro-band { margin-top: -34px; }
  .band-grid,
  .card-grid.three,
  .steps {
    grid-template-columns: 1fr;
  }
  .band-grid > div { padding: 20px; }
  .section-heading { margin-bottom: 30px; }
  .final-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 3.35rem);
    line-height: .97;
    letter-spacing: 0;
  }
  .hero-text {
    margin-top: 20px;
    font-size: 1rem;
  }
  .hero-actions { margin-top: 26px; }
  .hero-actions .button,
  .final-grid > .button {
    width: 100%;
  }
  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }
  .trust-row span { text-align: center; }
  .trust-row span:last-child { grid-column: 1 / -1; }
  .two-col,
  .location-list,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > :last-child { grid-column: auto; }
  .lead-card,
  .guide-form {
    padding: 22px;
    border-radius: 8px;
  }
  .lead-checklist { gap: 8px; }
  .lead-checklist span {
    padding: 11px 12px;
    font-size: .82rem;
  }
  .section { padding: 68px 0; }
  .section-heading h2 { line-height: 1.04; }
  .feature-card,
  .step,
  .contact-card {
    padding: 22px;
  }
  .final-cta { padding: 48px 0; }
}

@media (max-width: 380px) {
  .brand { gap: 8px; font-size: .95rem; }
  .brand span { max-width: 170px; }
  .brand-mark { width: 38px; height: 38px; }
  .nav-toggle { padding-inline: 10px; }
  .lead-checklist { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
