:root {
  --page: #f3f6f3;
  --surface: #ffffff;
  --surface-2: #f8faf8;
  --ink: #15201a;
  --ink-soft: #47544c;
  --muted: #7e8a81;
  --brand: #0e6147;
  --brand-strong: #0a4a37;
  --brand-tint: #e7f2ec;
  --brand-tint-2: #d2e6db;
  --accent: #d8780f;
  --accent-tint: #fbeeda;
  --line: #e4eae5;
  --line-strong: #d3dbd4;
  --good: #1f8a55;
  --shadow-sm: 0 1px 2px rgba(18,40,28,.05), 0 1px 3px rgba(18,40,28,.05);
  --shadow-md: 0 6px 20px -6px rgba(18,40,28,.12), 0 2px 6px rgba(18,40,28,.05);
  --shadow-lg: 0 18px 44px -16px rgba(18,40,28,.22);
  --r: 12px;
  --r-lg: 18px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --wrap: 1120px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-sans); color: var(--ink); background: var(--page); line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-strong); }
.num { font-variant-numeric: tabular-nums lining-nums; }
.ico { width: 18px; height: 18px; flex: none; display: inline-block; vertical-align: middle; }

h1, h2, h3 { margin: 0; color: var(--ink); }
h1, .serif { font-family: var(--font-display); font-weight: 540; letter-spacing: -0.015em; line-height: 1.06; }
h2 { font-family: var(--font-display); font-weight: 540; letter-spacing: -0.012em; line-height: 1.1; font-size: clamp(1.55rem, 3vw, 2.3rem); }
h3 { font-family: var(--font-sans); font-weight: 600; font-size: 1.1rem; line-height: 1.25; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
p { margin: 0 0 1rem; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brand); }

/* header */
.site-head { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,0.86); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--ink); letter-spacing: -0.02em; }
.brand:hover { color: var(--ink); }
.brand .mark { width: 30px; height: 30px; border-radius: 9px; background: var(--brand); color: #fff; display: grid; place-items: center; font-family: var(--font-sans); font-weight: 700; font-size: 16px; flex: none; box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 24px; font-size: 0.96rem; font-weight: 500; }
.nav a { color: var(--ink-soft); }
.nav a:hover { color: var(--ink); }
@media (max-width: 640px) { .nav a.nav-hide { display: none; } }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-weight: 600; font-size: 0.98rem; padding: 12px 22px; border-radius: 10px; border: 1px solid transparent; cursor: pointer; transition: transform .06s ease, background .15s, box-shadow .15s; text-decoration: none; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-strong); color: #fff; box-shadow: var(--shadow-md); }
.btn-light { background: var(--surface); color: var(--ink); border-color: var(--line-strong); }
.btn-light:hover { background: var(--surface-2); color: var(--ink); border-color: var(--ink-soft); }
.btn-sm { padding: 9px 16px; font-size: 0.9rem; }
.btn .ico { width: 18px; height: 18px; }

/* hero */
.hero { padding: 60px 0 30px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.hero h1 { max-width: 15ch; }
.hero h1 em { font-style: italic; color: var(--brand); }
.hero .lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 46ch; margin: 22px 0 0; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 26px; }
.trust-row .ti { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; color: var(--ink-soft); font-weight: 500; }
.trust-row .ti .ico { width: 17px; height: 17px; color: var(--good); flex: none; }

/* featured price card (hero right) */
.feature-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-lg); }
.feature-card .fc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.feature-card .fc-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; flex: none; }
.feature-card .fc-ico .ico { width: 24px; height: 24px; }
.feature-card .fc-name { font-weight: 600; font-size: 1.08rem; }
.feature-card .fc-sub { font-size: 0.86rem; color: var(--muted); }

/* price band */
.priceband { }
.pb-figs { display: grid; grid-template-columns: 1fr auto 1fr; gap: 4px; align-items: end; }
.pb-fig { text-align: center; }
.pb-fig .pb-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); font-weight: 600; }
.pb-fig .pb-amt { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; margin-top: 2px; letter-spacing: -0.01em; }
.pb-fig.typical .pb-amt { font-size: 2.2rem; color: var(--brand); }
.pb-fig.typical .pb-label { color: var(--accent); }
.pb-sep { color: var(--line-strong); font-size: 1.2rem; padding-bottom: 6px; }
.pb-track { position: relative; height: 9px; background: var(--brand-tint); border-radius: 6px; margin: 18px 4px 9px; overflow: visible; }
.pb-fill { position: absolute; top: 0; bottom: 0; background: var(--brand); border-radius: 6px; }
.pb-mark { position: absolute; top: -5px; width: 4px; height: 19px; background: var(--accent); border-radius: 3px; box-shadow: 0 0 0 3px var(--accent-tint); }
.pb-unit { text-align: center; font-size: 0.84rem; color: var(--muted); margin-top: 10px; }

/* sections */
.section { padding: 46px 0; }
.section-head { max-width: 56ch; margin-bottom: 30px; }
.section-head p { color: var(--ink-soft); margin-top: 10px; }
.kicker { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); margin-bottom: 11px; }

/* job cards */
.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .jobs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .jobs-grid { grid-template-columns: 1fr; } }
.job-card { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; color: var(--ink); box-shadow: var(--shadow-sm); transition: transform .12s ease, box-shadow .15s, border-color .15s; }
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-tint-2); color: var(--ink); }
.job-card .jc-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-tint); color: var(--brand); display: grid; place-items: center; margin-bottom: 16px; }
.job-card .jc-ico .ico { width: 25px; height: 25px; }
.job-card .jc-name { font-weight: 600; font-size: 1.12rem; letter-spacing: -0.01em; }
.job-card .jc-range { font-family: var(--font-display); font-weight: 500; font-size: 1.18rem; color: var(--brand); margin-top: 8px; }
.job-card .jc-unit { color: var(--muted); font-size: 0.85rem; margin-top: 2px; }
.job-card .jc-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-weight: 600; font-size: 0.9rem; color: var(--brand); }
.job-card:hover .jc-link .ico { transform: translateX(3px); }
.job-card .jc-link .ico { width: 15px; height: 15px; transition: transform .15s; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.step .st-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--brand); color: #fff; display: grid; place-items: center; margin-bottom: 16px; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.step h3 { margin-bottom: 7px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }

/* trust / honesty strip */
.honesty { background: var(--brand); color: #d9ece2; border-radius: var(--r-lg); padding: 38px 40px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; box-shadow: var(--shadow-md); }
@media (max-width: 760px) { .honesty { grid-template-columns: 1fr; gap: 22px; } }
.honesty h2 { color: #fff; max-width: 18ch; }
.honesty p { color: #c2ddd0; margin: 12px 0 0; }
.honesty .hpoints { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.honesty .hpoints li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; color: #eaf4ef; }
.honesty .hpoints .ico { width: 20px; height: 20px; color: #8fd3b3; flex: none; margin-top: 2px; }

/* article */
.article { padding: 40px 0 8px; max-width: 740px; }
.crumb { font-size: 0.86rem; color: var(--muted); margin-bottom: 18px; }
.crumb a { color: var(--muted); }
.article h1 { max-width: 22ch; }
.article .stand { font-size: 1.16rem; color: var(--ink-soft); margin: 18px 0 26px; }
.article h2 { margin-top: 40px; font-size: 1.5rem; }
.card-soft { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.incl { list-style: none; padding: 0; margin: 16px 0; }
.incl li { position: relative; padding: 8px 0 8px 30px; border-top: 1px solid var(--line); font-size: 0.98rem; }
.incl li:first-child { border-top: 0; }
.incl li::before { content: ""; position: absolute; left: 0; top: 12px; width: 18px; height: 18px; background: var(--good); border-radius: 50%; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z'/></svg>") center/14px no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12-1.4-1.4z'/></svg>") center/14px no-repeat; }
.factors { padding-left: 22px; margin: 14px 0; }
.factors li { margin: 8px 0; }
.metaline { display: inline-flex; align-items: center; gap: 9px; background: var(--brand-tint); color: var(--brand-strong); border-radius: 10px; padding: 9px 14px; font-size: 0.92rem; font-weight: 500; margin: 4px 0; }
.metaline .ico { width: 17px; height: 17px; }
.faq dt { font-weight: 600; font-size: 1.04rem; margin-top: 20px; }
.faq dd { margin: 7px 0 0; color: var(--ink-soft); }
.related-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.related-row a { display: inline-flex; align-items: center; gap: 6px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 9px 15px; font-size: 0.92rem; color: var(--ink); font-weight: 500; box-shadow: var(--shadow-sm); }
.related-row a .ico { width: 15px; height: 15px; }
.related-row a:hover { border-color: var(--brand-tint-2); color: var(--brand); }
.disclaimer { font-size: 0.85rem; color: var(--muted); border-top: 1px solid var(--line); margin-top: 26px; padding-top: 16px; }

/* calculator */
.calc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 26px; box-shadow: var(--shadow-md); }
.calc-title { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.calc-title .ico { width: 22px; height: 22px; color: var(--brand); }
.calc h3 { font-size: 1.15rem; }
.calc .calc-hint { font-size: 0.88rem; color: var(--muted); margin: 0 0 18px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.field select, .field input[type=number] { width: 100%; font: inherit; font-size: 0.98rem; padding: 11px 13px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--surface); color: var(--ink); appearance: none; -webkit-appearance: none; }
.field select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237e8a81' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 38px; }
.field select:focus, .field input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-tint); }
.addon { display: flex; align-items: center; gap: 10px; font-size: 0.94rem; padding: 8px 0; cursor: pointer; font-weight: 500; }
.addon input { width: 18px; height: 18px; accent-color: var(--brand); }
.calc-out { margin-top: 20px; padding: 18px; background: var(--brand-tint); border-radius: 12px; }
.calc-out .co-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--brand-strong); font-weight: 600; }
.calc-out .co-amt { font-family: var(--font-display); font-weight: 540; font-size: 2.1rem; color: var(--brand); margin: 3px 0 0; letter-spacing: -0.01em; }
.calc-out .co-note { font-size: 0.86rem; color: var(--ink-soft); margin-top: 5px; }
.calc-out .btn { margin-top: 14px; }

/* quote */
.quote { background: var(--ink); color: #d9e2dc; border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-md); }
@media (max-width: 600px) { .quote { padding: 28px 24px; } }
.quote .q-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 760px) { .quote .q-grid { grid-template-columns: 1fr; gap: 24px; } }
.quote h2 { color: #fff; max-width: 16ch; }
.quote p { color: #aab8b0; margin-top: 12px; }
.quote .q-trust { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 0.88rem; color: #8fd3b3; }
.quote .q-trust .ico { width: 16px; height: 16px; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.quote-form .full { grid-column: 1 / -1; }
.quote-form input, .quote-form select { font: inherit; font-size: 0.96rem; padding: 12px 14px; border: 1px solid #34423b; border-radius: 10px; background: #1d2a24; color: #fff; appearance: none; }
.quote-form input::placeholder { color: #7f8d85; }
.quote-form input:focus, .quote-form select:focus { outline: none; border-color: var(--good); box-shadow: 0 0 0 3px rgba(31,138,85,.25); }
.quote-form button { grid-column: 1 / -1; }
.quote .small { font-size: 0.8rem; color: #7f8d85; margin: 12px 0 0; }

/* two-col */
.two-col { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.sticky { position: sticky; top: 90px; }
@media (max-width: 860px) { .sticky { position: static; } }

/* footer */
.site-foot { background: var(--ink); color: #97a39b; margin-top: 60px; padding: 48px 0 42px; font-size: 0.92rem; }
.site-foot a { color: #cdd6cf; }
.site-foot a:hover { color: #fff; }
.site-foot .cols { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.site-foot .brand { color: #fff; }
.site-foot .brand .mark { background: var(--brand); }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.site-foot .legal { margin-top: 30px; padding-top: 20px; border-top: 1px solid #2b362f; color: #75817a; max-width: 74ch; }

.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; padding: 13px 20px; border-radius: 11px; font-size: 0.92rem; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; z-index: 60; box-shadow: var(--shadow-lg); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
