/* Quality Financial and Tax Services — design system
   Brand: green #6aaa1f · green-dark #4f8510 · lime #8cc33e · charcoal #1e1e1e
   Type:  Cormorant Garamond (display) · Outfit (text) */

:root {
  --green: #6aaa1f;
  --green-dark: #4f8510;
  --green-ink: #3d6a0c;
  --lime: #8cc33e;
  --lime-soft: #e7f2d6;
  --green-50: #f3f8ec;
  --charcoal: #1e1e1e;
  --ink: #1e1e1e;
  --ink-2: #33372f;
  --muted: #5d6258;
  --line: #e3e6dc;
  --line-2: #d4d9cb;
  --paper: #fbfbf7;
  --paper-2: #f4f5ee;
  --white: #fff;
  --grid: rgba(79, 133, 16, 0.07);

  --font-display: 'Cormorant Garamond', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --font-text: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(30, 30, 30, .06), 0 2px 8px rgba(30, 30, 30, .04);
  --shadow: 0 2px 4px rgba(30, 30, 30, .04), 0 12px 32px rgba(30, 30, 30, .08);
  --shadow-lg: 0 24px 60px rgba(30, 30, 30, .14);
  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--green-ink); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--green-dark); }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; color: var(--ink); }
h1, h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
h1 em, h2 em { font-style: italic; color: var(--green-dark); }
h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.005em; }
ul, ol { margin: 0; padding: 0; }
.why .n, .dates strong, .steps li::before, .incl .num, .mono, .doc-head span { font-variant-numeric: lining-nums; font-feature-settings: 'lnum' 1; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip { position: absolute; left: 12px; top: -48px; z-index: 100; background: var(--charcoal); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip:focus { top: 12px; color: #fff; }

.icon { width: 1.1em; height: 1.1em; flex: none; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 112px); }
.section--tight { padding-block: clamp(48px, 6vw, 72px); }
.section--paper2 { background: var(--paper-2); }
.section--white { background: var(--white); }
.ledger {
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ── Type helpers ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-ink);
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--lime); border-radius: 2px; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::after { content: ''; width: 22px; height: 2px; background: var(--lime); border-radius: 2px; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-top: 14px; }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 1.1rem; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.22rem); color: var(--ink-2); }
.muted { color: var(--muted); }
.prose p { color: var(--ink-2); }
.prose p:last-child { margin-bottom: 0; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 1rem; line-height: 1.1; text-decoration: none;
  border: 2px solid transparent; transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn .icon { width: 18px; height: 18px; }
.btn--primary { background: var(--lime); color: var(--charcoal); box-shadow: 0 6px 18px rgba(140, 195, 62, .35); }
.btn--primary:hover { background: #9bd04b; color: var(--charcoal); }
.btn--dark { background: var(--charcoal); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; }
.btn--outline { border-color: var(--line-2); color: var(--ink); background: var(--white); }
.btn--outline:hover { border-color: var(--green); color: var(--ink); }
.btn--ghost-light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost-light:hover { border-color: var(--lime); color: #fff; }
.btn--wa { background: #1f9d55; color: #fff; }
.btn--wa:hover { background: #188747; color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.text-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; text-decoration: none; color: var(--green-ink); }
.text-link .icon { width: 16px; height: 16px; transition: transform .15s ease; }
.text-link:hover .icon { transform: translateX(3px); }

/* ── Top bar & header ─────────────────────────────────────────── */
.topbar { background: var(--charcoal); color: rgba(255,255,255,.85); font-size: .85rem; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: var(--lime); }
.topbar-items { display: flex; gap: 22px; align-items: center; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item .icon { width: 14px; height: 14px; color: var(--lime); }
@media (max-width: 760px) { .topbar-hide-sm { display: none; } }

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header .wrap { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); flex: none; }
.brand img { width: 46px; height: 46px; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name strong { font-weight: 700; font-size: 1.12rem; letter-spacing: .01em; color: var(--green-dark); text-transform: uppercase; }
.brand-name span { margin-top: 5px; font-size: .64rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--ink); }
.brand-name sup { font-size: .55em; margin-left: 1px; color: var(--ink); }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav > a, .nav-drop > button {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 12px; border-radius: 10px; border: 0; background: none;
  font-weight: 500; font-size: .98rem; color: var(--ink); text-decoration: none;
}
.nav > a:hover, .nav-drop > button:hover, .nav-drop.open > button { background: var(--green-50); color: var(--ink); }
.nav > a[aria-current="page"] { color: var(--green-ink); }
.nav-drop { position: relative; }
.nav-drop > button .icon { width: 15px; height: 15px; transition: transform .2s ease; }
.nav-drop.open > button .icon { transform: rotate(180deg); }
.drop {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 22px; display: none; z-index: 60;
}
.nav-drop.open .drop { display: block; }
.drop--services { width: min(680px, 90vw); display: none; }
.nav-drop.open .drop--services { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; }
.drop--areas { width: 280px; }
.drop h4 { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin: 4px 10px 8px; }
.drop a { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; color: var(--ink); text-decoration: none; font-size: .95rem; }
.drop a:hover { background: var(--green-50); }
.drop a .icon { width: 18px; height: 18px; color: var(--green-dark); }
.drop-foot { grid-column: 1 / -1; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 10px; }
.drop-foot a { font-weight: 600; color: var(--green-ink); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.lang {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--line-2); font-size: .88rem; font-weight: 600; color: var(--ink); text-decoration: none;
}
.lang:hover { border-color: var(--green); color: var(--ink); }
.lang .icon { width: 15px; height: 15px; color: var(--green-dark); }
.header .btn { min-height: 44px; padding: 10px 18px; font-size: .95rem; }
.burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line-2); background: var(--white); align-items: center; justify-content: center; color: var(--ink); }
.burger .icon { width: 22px; height: 22px; }

@media (max-width: 1080px) {
  .nav, .header .btn--call-text { display: none; }
  .burger { display: inline-flex; }
  .header-actions { margin-left: auto; }
}
@media (max-width: 520px) {
  .brand-name span { letter-spacing: .18em; }
  .brand img { width: 40px; height: 40px; }
  .lang span { display: none; }
}

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 90; display: none; }
.drawer.open { display: block; }
.drawer-bg { position: absolute; inset: 0; background: rgba(20,20,20,.45); }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(420px, 100%);
  background: var(--white); overflow-y: auto; padding: 18px var(--gutter) 40px;
  box-shadow: var(--shadow-lg);
}
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.drawer details { border-bottom: 1px solid var(--line); }
.drawer summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 16px 4px; font-weight: 600; font-size: 1.05rem; cursor: pointer; }
.drawer summary::-webkit-details-marker { display: none; }
.drawer summary .icon { width: 18px; height: 18px; transition: transform .2s ease; }
.drawer details[open] summary .icon { transform: rotate(180deg); }
.drawer details a { display: block; padding: 9px 12px; color: var(--ink-2); text-decoration: none; border-radius: 8px; }
.drawer details a:hover { background: var(--green-50); }
.drawer details div { padding-bottom: 12px; }
.drawer-link { display: block; padding: 16px 4px; border-bottom: 1px solid var(--line); font-weight: 600; font-size: 1.05rem; color: var(--ink); text-decoration: none; }
.drawer .btn { width: 100%; margin-top: 12px; }

/* ── Hero (home) ──────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 96px) clamp(56px, 8vw, 104px); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px 7px 10px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line); font-size: .85rem; font-weight: 500; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.pill .icon { width: 16px; height: 16px; color: var(--green-dark); }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(140,195,62,.25); }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.4rem); margin: 22px 0 20px; }
.hero .lead { max-width: 560px; margin-bottom: 30px; }
.trust { display: grid; grid-template-columns: repeat(2, minmax(0, max-content)); gap: 10px 28px; margin-top: 30px; list-style: none; }
.trust li { display: flex; align-items: center; gap: 9px; font-weight: 500; font-size: .96rem; color: var(--ink-2); }
.trust .icon { width: 18px; height: 18px; color: var(--white); background: var(--green-dark); border-radius: 50%; padding: 3px; }

.hero-art { position: relative; min-height: 460px; }
.doc {
  position: absolute; background: var(--white); border-radius: 18px; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.doc--back { inset: 46px 6% 40px 18%; transform: rotate(5deg); background: var(--paper-2); }
.doc--main { inset: 30px 12% 48px 4%; transform: rotate(-2.5deg); padding: 28px 28px 24px; display: flex; flex-direction: column; }
.doc-head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 2px solid var(--ink); padding-bottom: 10px; }
.doc-head strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; }
.doc-head span { font-size: .8rem; font-weight: 600; letter-spacing: .1em; color: var(--muted); }
.doc-lines { display: grid; gap: 12px; margin: 22px 0; }
.doc-lines i { display: block; height: 9px; border-radius: 6px; background: var(--paper-2); }
.doc-lines i:nth-child(1) { width: 92%; } .doc-lines i:nth-child(2) { width: 76%; } .doc-lines i:nth-child(3) { width: 84%; }
.doc-lines i:nth-child(4) { width: 58%; } .doc-lines i:nth-child(5) { width: 70%; }
.doc-rows { display: grid; gap: 10px; margin-top: auto; }
.doc-row { display: flex; justify-content: space-between; font-size: .92rem; color: var(--ink-2); border-top: 1px dashed var(--line-2); padding-top: 10px; }
.doc-row b { font-variant-numeric: tabular-nums; color: var(--ink); }
.doc-row--total b { color: var(--green-ink); font-size: 1.05rem; }
.stamp {
  position: absolute; right: 26px; top: 92px; transform: rotate(-12deg);
  border: 3px solid var(--green-dark); color: var(--green-dark); border-radius: 12px;
  padding: 6px 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .9rem;
  background: rgba(255,255,255,.7);
}
.chip {
  position: absolute; display: flex; align-items: center; gap: 10px; background: var(--white);
  border: 1px solid var(--line); border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow);
  font-size: .86rem; font-weight: 500; color: var(--ink-2); white-space: nowrap;
}
.chip .ico { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; background: var(--lime-soft); color: var(--green-ink); }
.chip .ico .icon { width: 17px; height: 17px; }
.chip small { display: block; font-size: .72rem; color: var(--muted); font-weight: 500; }
.chip strong { display: block; color: var(--ink); font-weight: 600; }
.chip--1 { left: -4%; bottom: 6px; }
.chip--2 { right: -4%; top: -14px; }
.chip--3 { right: -6%; top: 46%; }
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 380px; max-width: 520px; width: 100%; margin-inline: auto; }
}
@media (max-width: 520px) {
  .hero-art { min-height: 360px; }
  .doc--main { padding: 22px 20px 18px; }
  .doc-lines { gap: 9px; margin: 16px 0; }
  .doc-lines i:nth-child(n+4) { display: none; }
  .stamp { top: 70px; right: 16px; font-size: .8rem; }
  .chip--3 { display: none; }
  .trust { grid-template-columns: 1fr; }
}

/* ── Page hero (inner pages) ──────────────────────────────────── */
.page-hero { padding-block: clamp(32px, 5vw, 56px) clamp(48px, 7vw, 80px); border-bottom: 1px solid var(--line); }
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; font-size: .88rem; color: var(--muted); margin-bottom: clamp(24px, 4vw, 40px); }
.crumbs li { display: inline-flex; align-items: center; gap: 6px; }
.crumbs li + li::before { content: '/'; color: var(--line-2); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--green-ink); }
.page-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); margin: 16px 0 18px; }
.page-hero .lead { max-width: 640px; margin-bottom: 28px; }
.facts-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 26px; }
.facts-card h2 { font-family: var(--font-text); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 14px; }
.facts-card dl { margin: 0; display: grid; gap: 14px; }
.facts-card dt { font-size: .82rem; color: var(--muted); }
.facts-card dd { margin: 2px 0 0; font-weight: 600; color: var(--ink); }
.facts-card dd a { color: var(--ink); text-decoration: none; }
.facts-card dd a:hover { color: var(--green-ink); }
.facts-card .row { display: flex; gap: 12px; align-items: flex-start; }
.facts-card .row .icon { width: 20px; height: 20px; color: var(--green-dark); margin-top: 2px; }
.facts-card .btn { width: 100%; margin-top: 18px; }
@media (max-width: 900px) { .page-hero-grid { grid-template-columns: 1fr; } }

/* ── Cards & grids ────────────────────────────────────────────── */
.grid { display: grid; gap: clamp(14px, 2vw, 22px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
a.card { display: block; color: inherit; text-decoration: none; }
a.card:hover { border-color: var(--lime); box-shadow: var(--shadow); transform: translateY(-2px); }
.card-ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--green-50); color: var(--green-dark); margin-bottom: 18px; border: 1px solid var(--lime-soft); }
.card-ico .icon { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; margin-bottom: 0; }
.card .text-link { margin-top: 16px; }
.card--svc { display: flex; flex-direction: column; }
.card--svc p { flex: 1; }
.group-label { display: flex; align-items: center; gap: 14px; margin: 0 0 18px; font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.group-label::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.group + .group { margin-top: 40px; }

.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); }
.checklist .icon { width: 20px; height: 20px; color: var(--green-dark); margin-top: 3px; }
.checklist--2 { grid-template-columns: 1fr 1fr; gap: 12px 28px; }
@media (max-width: 640px) { .checklist--2 { grid-template-columns: 1fr; } }

.incl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); }
.incl > div { padding: 22px 24px 22px 0; border-bottom: 1px solid var(--line); display: flex; gap: 14px; }
.incl > div:nth-child(odd) { padding-right: 28px; }
.incl > div:nth-child(even) { padding-left: 28px; border-left: 1px solid var(--line); }
.incl .num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--lime); line-height: 1; min-width: 32px; }
.incl h3 { font-size: 1.05rem; margin-bottom: 4px; }
.incl p { margin: 0; color: var(--muted); font-size: .96rem; }
@media (max-width: 760px) {
  .incl { grid-template-columns: 1fr; }
  .incl > div:nth-child(even) { padding-left: 0; border-left: 0; }
}

.two-col { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.aside-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; }
.aside-box h2, .aside-box h3 { font-family: var(--font-text); font-size: 1.05rem; font-weight: 600; margin-bottom: 14px; }
.aside-box + .aside-box { margin-top: 18px; }
.aside-box--green { background: var(--green-50); border-color: var(--lime-soft); }
.aside-box ul.facts { list-style: none; display: grid; gap: 12px; }
.aside-box ul.facts li { position: relative; padding-left: 18px; color: var(--ink-2); font-size: .96rem; }
.aside-box ul.facts li::before { content: ''; position: absolute; left: 0; top: .6em; width: 7px; height: 7px; border-radius: 2px; background: var(--green); }

.city-note {
  border-left: 4px solid var(--lime); background: var(--white); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px; box-shadow: var(--shadow-sm); margin-bottom: 28px;
}
.city-note p { margin: 0; color: var(--ink-2); }
.city-note strong { display: block; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green-ink); margin-bottom: 8px; }

/* ── Why / values ─────────────────────────────────────────────── */
.why { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); }
.why > div { padding: 30px 32px 30px 0; border-bottom: 1px solid var(--line); }
.why > div:nth-child(even) { padding: 30px 0 30px 32px; border-left: 1px solid var(--line); }
.why .n { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--lime); line-height: 1; display: block; margin-bottom: 12px; }
.why h3 { font-size: 1.2rem; margin-bottom: 8px; }
.why p { color: var(--muted); margin: 0; }
@media (max-width: 760px) {
  .why { grid-template-columns: 1fr; }
  .why > div:nth-child(even) { padding: 30px 0; border-left: 0; }
}

/* ── Process ──────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; counter-reset: s; list-style: none; }
.steps li { position: relative; padding-top: 58px; }
.steps li::before {
  counter-increment: s; content: counter(s);
  position: absolute; top: 0; left: 0; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: var(--charcoal); color: var(--lime);
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
}
.steps li::after { content: ''; position: absolute; top: 22px; left: 56px; right: -10px; height: 2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 12px); }
.steps li:last-child::after { display: none; }
.steps h3 { margin-bottom: 6px; }
.steps p { color: var(--muted); margin: 0; font-size: .97rem; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .steps li::after { display: none; }
}
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ── Dark band (dates / CTA) ──────────────────────────────────── */
.dark { background: var(--charcoal); color: rgba(255,255,255,.86); position: relative; overflow: hidden; }
.dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 32px 32px;
}
.dark > * { position: relative; }
.dark h2, .dark h3 { color: #fff; }
.dark h2 em { color: var(--lime); }
.dark .eyebrow { color: var(--lime); }
.dark .section-head p { color: rgba(255,255,255,.7); }
.dates { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); overflow: hidden; }
.dates li { background: var(--charcoal); padding: 26px; }
.dates strong { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--lime); line-height: 1.1; margin-bottom: 8px; }
.dates span { color: rgba(255,255,255,.78); font-size: .96rem; }
@media (max-width: 900px) { .dates { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .dates { grid-template-columns: 1fr; } }

.cta-band { background: var(--green-dark); color: #fff; border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 56px); display: grid; grid-template-columns: 1.3fr .7fr; gap: 28px; align-items: center; position: relative; overflow: hidden; }
.cta-band::after { content: ''; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px; border-radius: 50%; border: 40px solid rgba(140,195,62,.25); }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); }
.cta-band p { color: rgba(255,255,255,.85); margin: 12px 0 0; max-width: 560px; }
.cta-band .btn-row { justify-content: flex-end; position: relative; z-index: 1; }
.cta-band .btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.cta-band .btn--outline:hover { border-color: #fff; color: #fff; }
@media (max-width: 860px) { .cta-band { grid-template-columns: 1fr; } .cta-band .btn-row { justify-content: flex-start; } }

/* ── Areas ────────────────────────────────────────────────────── */
.city-card { display: flex; flex-direction: column; gap: 6px; }
.city-card .county { font-size: .85rem; color: var(--muted); }
.city-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tag { display: inline-block; padding: 4px 10px; border-radius: 999px; background: var(--paper-2); border: 1px solid var(--line); font-size: .8rem; color: var(--ink-2); }
.tag--green { background: var(--green-50); border-color: var(--lime-soft); color: var(--green-ink); font-weight: 600; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pills a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); color: var(--ink); text-decoration: none; font-weight: 500; font-size: .95rem; }
.pills a:hover { border-color: var(--green); color: var(--ink); }
.pills .icon { width: 15px; height: 15px; color: var(--green-dark); }
.zips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }

/* ── Team ─────────────────────────────────────────────────────── */
.team-card { text-align: left; }
.mono {
  width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--charcoal); color: var(--lime); font-family: var(--font-display); font-size: 1.7rem; font-weight: 600;
  box-shadow: 0 0 0 5px var(--lime-soft);
}
.team-card .role { color: var(--green-ink); font-weight: 600; font-size: .92rem; margin-bottom: 12px; }
.team-card a { font-size: .92rem; }

/* ── Testimonial ──────────────────────────────────────────────── */
.quote { max-width: 860px; margin-inline: auto; text-align: center; }
.quote .stars { display: inline-flex; gap: 4px; color: #e9a81a; margin-bottom: 18px; }
.quote .stars .icon { width: 20px; height: 20px; }
.quote blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 500; line-height: 1.3; color: var(--ink); }
.quote figcaption { margin-top: 18px; color: var(--muted); font-weight: 500; }
.quote .review-links { display: flex; justify-content: center; gap: 18px; margin-top: 22px; flex-wrap: wrap; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 22px 0; font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-2); position: relative; transition: background .2s ease, border-color .2s ease; }
.faq summary .plus::before, .faq summary .plus::after { content: ''; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--ink); transform: translate(-50%, -50%); transition: transform .2s ease; }
.faq summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details[open] summary .plus { background: var(--lime); border-color: var(--lime); }
.faq details[open] summary .plus::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq .answer { padding: 0 50px 22px 0; color: var(--ink-2); }
.faq-group + .faq-group { margin-top: 48px; }
.faq-group h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 14px; }

/* ── Contact ──────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 16px; }
.contact-list .ci { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: none; background: var(--green-50); color: var(--green-dark); border: 1px solid var(--lime-soft); }
.contact-list .ci .icon { width: 20px; height: 20px; }
.contact-list small { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.contact-list a, .contact-list span.v { color: var(--ink); text-decoration: none; font-weight: 500; }
.contact-list a:hover { color: var(--green-ink); }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(24px, 4vw, 40px); }
.form-card h2 { font-size: 2rem; }
.form-card > p { color: var(--muted); }
.form { display: grid; gap: 16px; margin-top: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--line-2); border-radius: 12px; padding: 13px 14px; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(140,195,62,.2); background: var(--white); }
.form .btn { width: 100%; }
.form-note { font-size: .82rem; color: var(--muted); margin: 0; }
.form-status { display: none; padding: 14px 16px; border-radius: 12px; font-weight: 500; }
.form-status.ok { display: block; background: var(--green-50); color: var(--green-ink); border: 1px solid var(--lime-soft); }
.form-status.err { display: block; background: #fdf0ee; color: #9b2c1c; border: 1px solid #f3cdc6; }
.hp { position: absolute; left: -9999px; }
.map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); aspect-ratio: 16 / 10; max-width: 100%; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

.disclaimer-box { border: 1px solid var(--line-2); border-radius: var(--radius); padding: 18px 20px; background: var(--white); font-size: .88rem; color: var(--ink-2); }
.disclaimer-box strong { display: block; margin-bottom: 6px; }

/* ── Footer ───────────────────────────────────────────────────── */
.footer { background: var(--charcoal); color: rgba(255,255,255,.72); padding-top: clamp(56px, 7vw, 88px); font-size: .95rem; }
.footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.footer a:hover { color: var(--lime); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 48px); }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h2 { font-family: var(--font-text); font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 9px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: #fff; }
.footer-brand img { width: 52px; height: 52px; background: #fff; border-radius: 50%; padding: 5px; }
.footer-brand strong { display: block; font-size: 1.05rem; letter-spacing: .02em; }
.footer-brand span { display: block; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.footer-nap { font-style: normal; display: grid; gap: 8px; margin-top: 16px; }
.footer-nap div { display: flex; gap: 10px; align-items: flex-start; }
.footer-nap .icon { width: 16px; height: 16px; color: var(--lime); margin-top: 4px; }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; }
.social a:hover { border-color: var(--lime); }
.social .icon { width: 18px; height: 18px; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.1); margin-top: clamp(40px, 6vw, 64px); padding-block: 24px 96px; font-size: .82rem; color: rgba(255,255,255,.55); display: grid; gap: 10px; }
@media (min-width: 900px) { .footer-legal { padding-bottom: 28px; } }

/* ── Mobile action bar ────────────────────────────────────────── */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: none;
  grid-template-columns: repeat(3, 1fr); background: var(--white); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(0,0,0,.08); padding-bottom: env(safe-area-inset-bottom);
}
.actionbar a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 10px 4px; font-size: .78rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.actionbar a .icon { width: 22px; height: 22px; color: var(--green-dark); }
.actionbar a.wa .icon { color: #1f9d55; }
.actionbar a.call { background: var(--lime); }
.actionbar a.call .icon { color: var(--charcoal); }
@media (max-width: 899px) { .actionbar { display: grid; } }

/* ── Reveal ───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
  .js .reveal.in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
@media print {
  .topbar, .header, .actionbar, .footer, .cta-band { display: none !important; }
}
