: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: #d97925;
  --orange-dark: #a85318;
  --ink: #17201a;
  --muted: #5a665f;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(16, 37, 28, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
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;
}

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: 10; }
.skip-link:focus { left: 12px; }

.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; gap: 10px; text-decoration: none; font-weight: 800; letter-spacing: -0.03em; color: var(--green-950); }
.brand-mark { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--green-800), var(--green-950)); color: var(--sand-50); font-size: 14px; box-shadow: 0 10px 24px rgba(16, 37, 28, 0.22); }
.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; overflow: hidden; background: var(--green-950); color: var(--white); }
.hero-bg { position: absolute; 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; inset: auto -10% -20% -10%; height: 240px; background: var(--sand-50); transform: rotate(-3deg); transform-origin: 0 0; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) 440px; gap: 56px; align-items: center; padding: 90px 0 120px; }
.eyebrow { margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 800; font-size: 0.78rem; color: var(--orange); }
.hero h1 { margin: 0; font-size: clamp(3rem, 7vw, 5.75rem); line-height: 0.94; letter-spacing: -0.075em; 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: 48px; padding: 14px 20px; border-radius: 999px; border: 0; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.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 { 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.04em; }
.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: 14px; 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: 2; margin-top: -40px; }
.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: 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.065em; 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 { 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; width: 46px; height: 46px; border-radius: 14px; background: var(--sand-100); margin-bottom: 18px; font-size: 1.3rem; }
.feature-card h3, .step h3 { margin: 0; color: var(--green-950); letter-spacing: -0.025em; }
.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.065em; }
.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 { 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.05em; 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); }

@media (max-width: 940px) {
  .nav-wrap { flex-direction: column; align-items: flex-start; }
  .site-nav { width: 100%; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
  .site-nav a { padding: 8px 0; }
  .nav-cta { text-align: center; color: var(--white) !important; padding: 10px 14px !important; }
  .hero-grid, .guide-grid, .split { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 64px; gap: 34px; }
  .lead-card { max-width: 620px; }
  .band-grid, .card-grid.three, .steps, .footer-grid, .legal { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero h1 { font-size: 3.15rem; }
  .two-col, .location-list { grid-template-columns: 1fr; }
  .lead-card, .guide-form { padding: 22px; }
  .section { padding: 68px 0; }
  .final-grid { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; }
  .hero-actions .button { width: 100%; }
}

.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: 14px; background: var(--sand-100); color: var(--green-950); font-weight: 800; font-size: .9rem; }

@media (max-width: 620px) {
  .lead-checklist { grid-template-columns: 1fr; }
}


.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: .12em; 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: 940px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .contact-grid { grid-template-columns: 1fr; } }
