:root {
  --ink: #13201d;
  --muted: #5d6b66;
  --line: #dce6df;
  --paper: #fbfcf9;
  --soft: #eef5ef;
  --soft-2: #f5f0e7;
  --green: #0d5f49;
  --green-2: #0a4938;
  --gold: #b8892f;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(17, 41, 33, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { 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(--paper);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  background: var(--green);
  color: var(--white);
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 99;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}
.section-pad { padding: 92px 0; }
.section-pad-sm { padding: 64px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 249, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 230, 223, .8);
}
.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-2));
  font-weight: 800;
  letter-spacing: -.04em;
  box-shadow: 0 10px 24px rgba(13, 95, 73, .24);
}
.brand strong { display: block; font-size: 1rem; letter-spacing: -.02em; }
.brand small { display: block; color: var(--muted); font-size: .77rem; margin-top: -2px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: .94rem;
  font-weight: 600;
  color: var(--muted);
}
.site-nav a:hover { color: var(--green); }
.nav-cta {
  color: var(--white) !important;
  background: var(--green);
  padding: .82rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(13, 95, 73, .2);
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(184, 137, 47, .18), transparent 28%),
    radial-gradient(circle at 10% 0%, rgba(13, 95, 73, .12), transparent 35%),
    linear-gradient(180deg, #fbfcf9 0%, #eef5ef 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -14vw;
  bottom: -18vw;
  width: 42vw;
  height: 42vw;
  min-width: 420px;
  min-height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(13, 95, 73, .12);
  box-shadow: inset 0 0 0 50px rgba(255,255,255,.3);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .7fr);
  gap: 48px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 800;
}
.eyebrow.light { color: #e5c06a; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 810px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: .95;
  letter-spacing: -.07em;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -.05em;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.hero-lede {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .9rem 1.18rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 38px rgba(13, 95, 73, .22);
}
.button.secondary {
  background: rgba(255,255,255,.7);
  border-color: var(--line);
  color: var(--ink);
}
.light-button { background: var(--white) !important; color: var(--green) !important; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-row span {
  background: rgba(255,255,255,.74);
  border: 1px solid var(--line);
  color: var(--green-2);
  padding: .55rem .75rem;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
}
.hero-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.card-topline {
  display: inline-flex;
  background: var(--soft-2);
  color: var(--green-2);
  border-radius: 999px;
  padding: .45rem .7rem;
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero-card h2 { font-size: 2rem; }
.check-list, .dash-list, .x-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li,
.dash-list li,
.x-list li {
  position: relative;
  padding-left: 30px;
  margin: 13px 0;
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(13,95,73,.12);
  color: var(--green);
  font-size: .75rem;
  font-weight: 900;
}
.x-list li::before {
  content: "×";
  position: absolute;
  left: 1px;
  color: #9b4d38;
  font-weight: 900;
}
.dash-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #e5c06a;
  font-weight: 900;
}
.strong li { color: var(--ink); font-weight: 600; }
.mini-note {
  margin-top: 22px;
  padding: 16px;
  border-radius: 16px;
  color: var(--green-2);
  background: var(--soft);
  font-weight: 700;
}
.problem { background: var(--green-2); color: var(--white); }
.problem-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 48px;
  align-items: center;
}
.problem p:not(.eyebrow) { color: rgba(255,255,255,.82); font-size: 1.2rem; margin-bottom: 0; }
.problem h2 { margin-bottom: 0; }

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-heading.narrow { max-width: 700px; text-align: center; margin-inline: auto; }
.section-heading p:not(.eyebrow), .section-copy { color: var(--muted); font-size: 1.08rem; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px;
  min-height: 260px;
  box-shadow: 0 12px 35px rgba(17, 41, 33, .06);
}
.service-number {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 48px;
}
.service-card p { color: var(--muted); margin-bottom: 0; }
.split { background: var(--soft); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.split-panel {
  border-radius: var(--radius);
  padding: 36px;
}
.dark-panel {
  background: var(--green-2);
  color: var(--white);
}
.dark-panel .dash-list li { color: rgba(255,255,255,.8); }
.light-panel {
  background: var(--white);
  border: 1px solid var(--line);
}
.timeline {
  list-style: none;
  margin: 46px auto 0;
  padding: 0;
  max-width: 900px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--line);
}
.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  padding-bottom: 30px;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline span {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(13,95,73,.22);
}
.timeline div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.timeline p { color: var(--muted); margin-bottom: 0; }
.fit { background: var(--white); }
.fit-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 42px;
  align-items: start;
}
.fit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fit-cards article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px;
}
.advisor {
  background:
    linear-gradient(90deg, rgba(13,95,73,.08), rgba(184,137,47,.1));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.advisor-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 42px;
  align-items: center;
}
.advisor-badge {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--green);
  font-size: 2.1rem;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.advisor p { color: var(--muted); }
.small-print { font-size: .92rem; }
.accordion {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 24px 52px 24px 0;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.08rem;
  cursor: pointer;
  position: relative;
}
.faq-item button::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 21px;
  color: var(--green);
  font-size: 1.5rem;
  line-height: 1;
}
.faq-item button[aria-expanded="true"]::after { content: "−"; }
.faq-answer {
  display: none;
  max-width: 760px;
  color: var(--muted);
  padding: 0 40px 22px 0;
}
.faq-item.open .faq-answer { display: block; }
.cta-band {
  background: var(--green);
  color: var(--white);
}
.cta-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}
.cta-grid p:not(.eyebrow) { color: rgba(255,255,255,.84); margin-bottom: 0; }
.cta-grid h2 { max-width: 650px; }
.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 42px;
  align-items: start;
}
.contact p { color: var(--muted); }
.contact-card {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}
.contact-card span { color: var(--muted); }
.lead-form {
  display: grid;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 16px 45px rgba(17, 41, 33, .08);
}
.lead-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .88rem .95rem;
  background: var(--paper);
  color: var(--ink);
  outline: none;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(13,95,73,.12);
}

.calendly-inline-widget {
  width: 100%;
  min-width: 0 !important;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.form-note { min-height: 24px; font-size: .92rem; margin: 0; }
.site-footer {
  background: #0e1916;
  color: var(--white);
  padding: 48px 0 30px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand-mark { background: var(--white); color: var(--green); box-shadow: none; }
.footer-brand small, .site-footer p { color: rgba(255,255,255,.66); }
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
  color: rgba(255,255,255,.8);
  font-weight: 700;
}
.disclosures { padding-top: 24px; }
.disclosures p { font-size: .78rem; color: rgba(255,255,255,.58); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .nav-cta { text-align: center; }
  .hero-grid,
  .problem-grid,
  .split-grid,
  .fit-grid,
  .advisor-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-grid, .fit-cards { grid-template-columns: 1fr 1fr; }
  .advisor-badge { width: 120px; height: 120px; font-size: 1.6rem; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 46px 0; }
  .service-grid, .fit-cards { grid-template-columns: 1fr; }
  .hero-grid { gap: 30px; }
  .hero-card, .split-panel, .lead-form { padding: 22px; }
  .hero-actions, .cta-grid, .footer-grid { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .timeline li { gap: 14px; }
  .timeline div { padding: 18px; }
  h1 { font-size: clamp(2.65rem, 18vw, 4rem); }
}

.contact-card a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}
.contact-card a:hover { text-decoration: underline; }
