:root{
  --ground:#F1F2ED; --surface:#FFFFFF; --surface-2:#E8EAE3; --band:#2C4034;
  --ink:#1B211C; --ink-2:#414B42; --muted:#6D766E;
  --rule:#D3D7CD; --rule-2:#A9B0A5;
  --green:#2C4034; --green-2:#3E5A4A;
  --rust:#A5522C; --rust-2:#8C4423; --rust-soft:#F4E6DD;
  --band-ink:#EDEFE8; --band-muted:#AEBBAF;
  --focus:#A5522C;
}
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]){
    --ground:#141815; --surface:#1C211D; --surface-2:#242A25; --band:#1C231E;
    --ink:#E9ECE6; --ink-2:#BAC2BA; --muted:#8B948C;
    --rule:#333B35; --rule-2:#4C564E;
    --green:#8FB79C; --green-2:#A6C9B1;
    --rust:#DE8B62; --rust-2:#EBA37F; --rust-soft:#2D1E16;
    --band-ink:#E9ECE6; --band-muted:#9AA79C;
    --focus:#DE8B62;
  }
}
:root[data-theme="dark"]{
  --ground:#141815; --surface:#1C211D; --surface-2:#242A25; --band:#1C231E;
  --ink:#E9ECE6; --ink-2:#BAC2BA; --muted:#8B948C;
  --rule:#333B35; --rule-2:#4C564E;
  --green:#8FB79C; --green-2:#A6C9B1;
  --rust:#DE8B62; --rust-2:#EBA37F; --rust-soft:#2D1E16;
  --band-ink:#E9ECE6; --band-muted:#9AA79C;
  --focus:#DE8B62;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; background:var(--ground); color:var(--ink);
  font-family:"Source Sans 3",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,sans-serif;
  font-size:17px; line-height:1.68; -webkit-font-smoothing:antialiased;
}
.wrap{max-width:1000px; margin:0 auto; padding:0 22px}
.narrow{max-width:700px}

a{color:var(--rust); text-underline-offset:2px}
a:hover{color:var(--rust-2)}
a:focus-visible{outline:2px solid var(--focus); outline-offset:3px; border-radius:2px}

h1,h2,h3{font-family:Fraunces,Georgia,"Times New Roman",serif; font-weight:600; letter-spacing:-.012em; margin:0; text-wrap:balance}
h1{font-size:clamp(31px,4.6vw,46px); line-height:1.09}
h2{font-size:clamp(23px,3vw,30px); line-height:1.2}
h3{font-size:19px; line-height:1.3}
p{margin:0; max-width:66ch}
.lede{font-size:clamp(18px,2.1vw,21px); color:var(--ink-2); max-width:60ch}

/* ---------- header ---------- */
header.site{background:var(--surface); border-bottom:1px solid var(--rule)}
.hrow{display:flex; flex-wrap:wrap; gap:12px 20px; align-items:center; justify-content:space-between; padding:15px 0}
.brand{display:flex; align-items:baseline; gap:9px; text-decoration:none; color:var(--ink)}
.brand .bm{font-family:Fraunces,Georgia,serif; font-weight:600; font-size:20px; letter-spacing:-.015em}
.brand .bs{font-size:11px; letter-spacing:.11em; text-transform:uppercase; color:var(--muted); font-weight:600}
.hcta{display:flex; align-items:center; gap:14px; flex-wrap:wrap}
.tel{font-family:Fraunces,Georgia,serif; font-size:19px; font-weight:600; color:var(--ink); text-decoration:none; white-space:nowrap}
.tel:hover{color:var(--rust)}
.btn{
  display:inline-block; background:var(--rust); color:#fff; text-decoration:none;
  font-weight:600; font-size:15px; padding:10px 18px; border-radius:3px; border:1px solid var(--rust);
  white-space:nowrap;
}
.btn:hover{background:var(--rust-2); border-color:var(--rust-2); color:#fff}
.btn.ghost{background:transparent; color:var(--ink); border-color:var(--rule-2)}
.btn.ghost:hover{background:var(--surface-2); color:var(--ink); border-color:var(--rule-2)}
nav.main{border-top:1px solid var(--rule); padding:9px 0; overflow-x:auto}
nav.main ul{display:flex; gap:18px; list-style:none; margin:0; padding:0; white-space:nowrap}
nav.main a{font-size:14.5px; color:var(--ink-2); text-decoration:none; font-weight:500}
nav.main a:hover,nav.main a[aria-current]{color:var(--rust)}

/* ---------- hero ---------- */
.hero{background:var(--band); color:var(--band-ink); padding:52px 0 46px}
.hero h1{color:var(--band-ink)}
.hero .lede{color:var(--band-muted); margin-top:14px}
.hero .kick{font-size:11.5px; letter-spacing:.13em; text-transform:uppercase; color:var(--band-muted); font-weight:600; margin-bottom:13px}
.hero .btnrow{display:flex; flex-wrap:wrap; gap:12px; margin-top:26px}
.hero .btn.ghost{color:var(--band-ink); border-color:rgba(255,255,255,.32)}
.hero .btn.ghost:hover{background:rgba(255,255,255,.09); color:var(--band-ink)}

/* ---------- sections ---------- */
main section{padding:44px 0; border-bottom:1px solid var(--rule)}
main section:last-of-type{border-bottom:none}
.stack{display:flex; flex-direction:column; gap:16px}
.stack-lg{display:flex; flex-direction:column; gap:30px}

.pt{display:flex; flex-direction:column; gap:9px}
.pt h3{color:var(--green)}

ul.plain{margin:0; padding-left:21px; display:flex; flex-direction:column; gap:8px; max-width:64ch}
ul.plain li::marker{color:var(--rule-2)}

/* ---------- cards / grids ---------- */
.grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(215px,1fr)); gap:12px}
.card{
  background:var(--surface); border:1px solid var(--rule); border-radius:3px; padding:16px 17px;
  text-decoration:none; color:var(--ink); display:flex; flex-direction:column; gap:5px;
}
.card:hover{border-color:var(--rust); color:var(--ink)}
.card b{font-family:Fraunces,Georgia,serif; font-size:17px; font-weight:600}
.card span{font-size:14px; color:var(--muted); line-height:1.45}

/* ---------- facts strip ---------- */
.facts{display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); border:1px solid var(--rule); background:var(--surface); border-radius:3px}
.fact{padding:15px 17px; border-right:1px solid var(--rule)}
.fact:last-child{border-right:none}
.fact .v{font-family:Fraunces,Georgia,serif; font-size:24px; font-weight:600; color:var(--green); line-height:1.15}
.fact .l{font-size:13px; color:var(--muted); margin-top:3px; line-height:1.4}

/* ---------- callout ---------- */
.note{background:var(--surface); border-left:3px solid var(--green); padding:17px 20px; border-radius:0 3px 3px 0; display:flex; flex-direction:column; gap:9px}
.note.warm{border-left-color:var(--rust); background:var(--rust-soft)}
.note .t{font-size:11px; letter-spacing:.13em; text-transform:uppercase; font-weight:700; color:var(--muted)}
.note.warm .t{color:var(--rust-2)}

/* ---------- steps ---------- */
.steps{display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:16px}
.step{display:flex; flex-direction:column; gap:7px}
.step .n{font-family:Fraunces,Georgia,serif; font-size:15px; font-weight:600; color:var(--rust)}
.step b{font-size:16.5px}
.step p{font-size:15px; color:var(--ink-2)}

/* ---------- faq ---------- */
details{border-bottom:1px solid var(--rule); padding:13px 0}
details summary{cursor:pointer; font-weight:600; font-size:17px; list-style:none; display:flex; gap:11px; align-items:flex-start}
details summary::-webkit-details-marker{display:none}
details summary::before{content:"+"; color:var(--rust); font-weight:700; line-height:1.5}
details[open] summary::before{content:"–"}
details p{margin-top:9px; padding-left:23px; color:var(--ink-2); font-size:16px}
details summary:focus-visible{outline:2px solid var(--focus); outline-offset:3px}

/* ---------- form ---------- */
.formwrap{background:var(--surface); border:1px solid var(--rule); border-radius:4px; padding:24px}
.field{display:flex; flex-direction:column; gap:5px; margin-bottom:14px}
.field label{font-size:14px; font-weight:600}
.field input,.field textarea,.field select{
  font-family:inherit; font-size:16px; padding:10px 12px; border:1px solid var(--rule-2);
  border-radius:3px; background:var(--ground); color:var(--ink);
}
.field input:focus,.field textarea:focus,.field select:focus{outline:2px solid var(--focus); outline-offset:1px; border-color:var(--focus)}
.f2{display:grid; grid-template-columns:1fr 1fr; gap:0 14px}
.formnote{font-size:13.5px; color:var(--muted); margin-top:10px}

/* ---------- offer CTA ---------- */
.ctarow{display:flex; flex-wrap:wrap; align-items:center; gap:14px 18px}
.btn.big{font-size:17px; padding:14px 24px}
.or{color:var(--muted); font-size:15px}

/* ---------- footer ---------- */
footer.site{background:var(--band); color:var(--band-ink); padding:40px 0 30px; margin-top:0}
footer.site h4{font-family:Fraunces,Georgia,serif; font-size:14px; font-weight:600; margin:0 0 9px; color:var(--band-ink)}
.fgrid{display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:26px}
footer.site ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:6px}
footer.site a{color:var(--band-muted); text-decoration:none; font-size:14.5px}
footer.site a:hover{color:var(--band-ink); text-decoration:underline}
.disc{margin-top:30px; padding-top:18px; border-top:1px solid rgba(255,255,255,.14); font-size:12.5px; color:var(--band-muted); line-height:1.6; max-width:82ch}
.disc strong{color:var(--band-ink)}

@media (max-width:640px){
  .f2{grid-template-columns:1fr}
  .fact{border-right:none; border-bottom:1px solid var(--rule)}
  .fact:last-child{border-bottom:none}
  .hero{padding:38px 0 34px}
}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto} *{transition:none!important;animation:none!important}}