:root {
  --blue: #0072CE;
  --blue-dark: #005BA6;
  --blue-tint: #E8F2FC;
  --ink: #0E1620;
  --ink-strong: #000000;
  --muted: #46566A;
  --ground: #FFFFFF;
  --ground-2: #F4F8FC;
  --surface: #FFFFFF;
  --hair: #E1E9F1;
  --shadow-sm: 0 1px 2px rgba(14,22,32,.06), 0 4px 12px rgba(14,22,32,.05);
  --shadow-md: 0 2px 6px rgba(14,22,32,.08), 0 18px 40px rgba(14,22,32,.10);
  --ok: #E8F2FC;
  --font-head: 'Arsenal', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --r: 14px;
  --wrap: 1160px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --blue: #3B97E8;
    --blue-dark: #64ABEE;
    --blue-tint: #12283C;
    --ink: #EAF1F8;
    --ink-strong: #FFFFFF;
    --muted: #9FB0C0;
    --ground: #0E141B;
    --ground-2: #131C25;
    --surface: #18222D;
    --hair: #26313D;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow-md: 0 2px 6px rgba(0,0,0,.4), 0 20px 44px rgba(0,0,0,.45);
  }
}
:root[data-theme="light"] {
  --blue:#0072CE;--blue-dark:#005BA6;--blue-tint:#E8F2FC;--ink:#0E1620;--ink-strong:#000;
  --muted:#46566A;--ground:#FFF;--ground-2:#F4F8FC;--surface:#FFF;--hair:#E1E9F1;
  --shadow-sm:0 1px 2px rgba(14,22,32,.06),0 4px 12px rgba(14,22,32,.05);
  --shadow-md:0 2px 6px rgba(14,22,32,.08),0 18px 40px rgba(14,22,32,.10);
}
:root[data-theme="dark"] {
  --blue:#3B97E8;--blue-dark:#64ABEE;--blue-tint:#12283C;--ink:#EAF1F8;--ink-strong:#FFF;
  --muted:#9FB0C0;--ground:#0E141B;--ground-2:#131C25;--surface:#18222D;--hair:#26313D;
  --shadow-sm:0 1px 2px rgba(0,0,0,.4);--shadow-md:0 2px 6px rgba(0,0,0,.4),0 20px 44px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
[id] { scroll-margin-top: 100px; }
body {
  margin: 0; background: var(--ground); color: var(--ink);
  font-family: var(--font-body); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px); }
h1, h2, h3, .h { font-family: var(--font-head); font-weight: 700; letter-spacing: -.01em; line-height: 1.12; text-wrap: balance; }
a { color: var(--blue); text-underline-offset: 3px; }
img { max-width: 100%; display: block; }

/* placeholder marker */
.ph { background: rgba(255,176,32,.22); box-shadow: 0 0 0 1px rgba(214,138,0,.35) inset;
      border-radius: 3px; padding: 0 3px; font-style: normal; }
#ph-note {
  background: #FFF6E6; color: #7a5200; font-family: var(--font-body); font-size: 13px;
  text-align: center; padding: 8px 14px; border-bottom: 1px solid #F0DBA8;
}
#ph-note b { color: #7a5200; }
@media (prefers-color-scheme: dark) { #ph-note { background:#2a2313; color:#e8c987; border-color:#463a1c; } #ph-note b{color:#f0d79a;} }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
header.site.scrolled { border-bottom-color: var(--hair); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 20px; height: 84px; }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; text-decoration: none; }
.brand img { height: 52px; width: auto; }
/* The logo's wordmark is partly black, which vanishes on the dark header —
   sit it on a white rounded chip in dark mode so it stays legible. */
@media (prefers-color-scheme: dark) {
  .brand img { background: #fff; padding: 6px 11px; border-radius: 9px; }
}
:root[data-theme="dark"] .brand img { background: #fff; padding: 6px 11px; border-radius: 9px; }
:root[data-theme="light"] .brand img { background: transparent; padding: 0; }
.nav-links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); text-decoration: none; font-size: 15.5px; font-weight: 600; padding: 6px 0; position: relative; }
.nav-links a::after { content:""; position:absolute; left:0; right:100%; bottom:0; height:2px; background:var(--blue); transition:right .2s; }
.nav-links a:hover::after, .nav-links a:focus-visible::after { right: 0; }
.nav-links a.current { color: var(--blue); font-weight: 700; }
.nav-links a.current::after { right: 0; height: 3px; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.tel { color: var(--ink); font-weight: 700; text-decoration: none; font-size: 15.5px; white-space: nowrap; font-family: var(--font-head); }
.tel span { color: var(--muted); font-weight: 600; font-size: 12px; display: block; letter-spacing: .04em; text-transform: uppercase; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 15.5px; text-decoration: none;
  padding: 12px 22px; border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .18s, box-shadow .18s, color .18s;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(0,114,206,.32); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--blue); border-color: color-mix(in srgb, var(--blue) 45%, transparent); }
.btn-ghost:hover { background: var(--blue-tint); }
.btn-lg { padding: 15px 30px; font-size: 17px; }
.hamburger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.hamburger svg { display: block; }

@media (max-width: 1024px) {
  .nav-links, .nav-cta .tel span { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; position: absolute; left: 0; right: 0; top: 84px; flex-direction: column;
    gap: 0; background: var(--ground); border-bottom: 1px solid var(--hair); padding: 8px 0; box-shadow: var(--shadow-md);
  }
  .nav-links.open li { padding: 0 clamp(18px,4vw,40px); }
  .nav-links.open a { display: block; padding: 13px 0; border-bottom: 1px solid var(--hair); }
  .nav-links.open li:last-child a { border-bottom: 0; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden;
  background: radial-gradient(120% 100% at 100% 0%, var(--blue-tint) 0%, transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px);
  align-items: center; padding: clamp(40px, 6vw, 80px) 0 clamp(44px, 6vw, 76px); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head);
  font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-tint); padding: 7px 14px; border-radius: 999px; }
.hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); margin: 20px 0 0; max-width: 15ch; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero p.sub { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--muted); max-width: 44ch; margin: 20px 0 0; }
.trust { display: flex; flex-direction: column; gap: 12px; margin: 28px 0 0; list-style: none; padding: 0; }
.trust li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15.5px; color: var(--ink); }
.trust svg { flex: none; color: var(--blue); }
.hero-call { margin: 24px 0 0; color: var(--muted); font-size: 15.5px; }
.hero-call a { font-weight: 700; font-family: var(--font-head); text-decoration: none; white-space: nowrap; }
.hero-call a:hover { text-decoration: underline; }

/* estimate form */
.hero-form { background: var(--surface); border: 1px solid var(--hair); border-radius: 20px;
  padding: clamp(20px, 2.6vw, 30px); box-shadow: var(--shadow-md); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-title { font-size: 1.5rem; margin: 0; }
.form-sub { color: var(--muted); margin: 6px 0 18px; font-size: 15px; line-height: 1.45; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 13px; }
.field label { font-size: 13.5px; font-weight: 700; font-family: var(--font-head); letter-spacing: .01em; }
.field label span { color: var(--muted); font-weight: 400; font-family: var(--font-body); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15.5px; padding: 11px 13px; border: 1.5px solid var(--hair);
  border-radius: 10px; background: var(--ground); color: var(--ink); width: 100%; transition: border-color .15s, box-shadow .15s; }
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--muted) 70%, transparent); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-tint); }
.field textarea { resize: vertical; min-height: 62px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-block { width: 100%; margin-top: 4px; }
.form-note { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--muted);
  font-size: 12.5px; margin: 13px 0 0; text-align: center; }
.form-note svg { flex: none; color: var(--blue); }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .sc-ic { width: 60px; height: 60px; border-radius: 50%; background: var(--blue-tint);
  color: var(--blue); display: grid; place-items: center; margin: 0 auto 16px; }
.form-success h2 { font-size: 1.5rem; margin: 0 0 8px; }
.form-success p { color: var(--muted); margin: 0; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 20ch; }
  .hero p.sub { max-width: 54ch; }
  .trust { gap: 10px; }
}
@media (max-width: 440px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- Area strip ---------- */
.areastrip { background: var(--ink-strong); color: #fff; }
.areastrip .wrap { display: flex; align-items: center; justify-content: center; gap: 10px 26px;
  flex-wrap: wrap; padding-top: 16px; padding-bottom: 16px; font-family: var(--font-head); font-weight: 700; }
.areastrip .lead { color: #7fc0f5; text-transform: uppercase; letter-spacing: .1em; font-size: 12.5px; }
.areastrip span.town { font-size: 15px; }
.areastrip a.town { color: #fff; text-decoration: none; font-size: 15px; }
.areastrip a.town:hover { text-decoration: underline; text-underline-offset: 3px; }
.areastrip .dot { color: #4a5a6b; }

/* ---------- Sections ---------- */
section.block { padding: clamp(52px, 7vw, 92px) 0; }
.block.alt { background: var(--ground-2); }
.sec-head { max-width: 62ch; margin: 0 auto clamp(28px,4vw,48px); text-align: center; }
.sec-head .kick { font-family: var(--font-head); font-weight: 700; color: var(--blue); letter-spacing: .08em;
  text-transform: uppercase; font-size: 13px; }
.sec-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin: 10px 0 0; }
.sec-head p { color: var(--muted); margin: 14px 0 0; font-size: 1.08rem; }

/* Services */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .thumb { aspect-ratio: 16/11; overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .thumb img { transform: scale(1.05); }
.card .cbody { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card h3 { font-size: 1.25rem; margin: 0; }
.card p { margin: 0; color: var(--muted); font-size: 15.5px; flex: 1; }
.card a.more { color: var(--blue); font-weight: 700; text-decoration: none; font-family: var(--font-head); margin-top: 6px; }
.card a.more:hover { text-decoration: underline; }

/* Why us */
.why { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px,5vw,60px); align-items: center; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; margin: 0; padding: 0; list-style: none; }
.why-list li { display: flex; gap: 13px; }
.why-list .ic { flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--blue-tint);
  color: var(--blue); display: grid; place-items: center; }
.why-list h3 { font-size: 1.05rem; margin: 0 0 3px; }
.why-list p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.why-visual img { border-radius: 18px; box-shadow: var(--shadow-md); width: 100%; object-fit: cover; max-height: 440px; }
@media (max-width: 820px) { .why { grid-template-columns: 1fr; } .why-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .why-list { grid-template-columns: 1fr; } }

/* Process */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 26px 22px; background: var(--surface); border: 1px solid var(--hair);
  border-radius: var(--r); box-shadow: var(--shadow-sm); }
.step .n { counter-increment: step; font-family: var(--font-head); font-weight: 700; font-size: 15px;
  width: 38px; height: 38px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; }
.step .n::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.12rem; margin: 16px 0 6px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

/* Reviews */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.quote { background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r); padding: 26px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px; }
.quote .stars { color: #F5A623; letter-spacing: 2px; }
.quote blockquote { margin: 0; font-size: 16.5px; line-height: 1.6; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote .av { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-tint); color: var(--blue);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote .who b { display: block; font-family: var(--font-head); }
.quote .who small { color: var(--muted); }

/* Projects */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery figure { margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .4s; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.72)); color: #fff; font-size: 14px; font-weight: 600; }
@media (max-width: 720px) { .gallery { grid-template-columns: 1fr 1fr; } .gallery figure:nth-child(3){ grid-column: span 2; } }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; text-align: center; }
.cta-band .wrap { padding: clamp(48px,6vw,80px) clamp(18px,4vw,40px); }
.cta-band h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin: 0; color: #fff; }
.cta-band p { font-size: 1.12rem; margin: 14px auto 0; max-width: 48ch; color: rgba(255,255,255,.9); }
.cta-band .row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.cta-band .btn-primary { background: #fff; color: var(--blue-dark); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.cta-band .btn-primary:hover { background: #f0f6ff; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.14); }
.cta-trust { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px !important;
  font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,.92); }
.cta-trust svg { flex: none; }

/* Footer */
footer.site { background: var(--ink-strong); color: #c6d2de; font-size: 15px; }
footer.site .wrap { padding: clamp(46px,6vw,68px) clamp(18px,4vw,40px) 26px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
footer.site img.flogo { height: 64px; background: #fff; padding: 14px 20px; border-radius: 14px; margin-bottom: 18px; }
footer.site h4 { font-family: var(--font-head); color: #fff; font-size: 15px; letter-spacing: .05em; text-transform: uppercase; margin: 0 0 14px; }
footer.site ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
footer.site a { color: #c6d2de; text-decoration: none; }
footer.site a:hover { color: #fff; text-decoration: underline; }
footer.site .contact-line { display: flex; gap: 10px; margin-bottom: 10px; }
footer.site .contact-line svg { flex: none; color: #7fc0f5; margin-top: 3px; }
.social { display: flex; gap: 12px; margin-top: 16px; }
.social a { width: 40px; height: 40px; border: 1px solid #2a3947; border-radius: 10px; display: grid; place-items: center; color: #c6d2de; }
.social a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.foot-bottom { border-top: 1px solid #26313d; margin-top: 40px; padding-top: 22px; display: flex;
  justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13.5px; color: #8496a6; }
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

/* ===================================================================
   SERVICE PAGES
   =================================================================== */
.breadcrumb { font-size: 13.5px; color: var(--muted); padding-top: 18px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); text-decoration: underline; }
.breadcrumb .sep { margin: 0 8px; opacity: .6; }
.breadcrumb .here { color: var(--ink); font-weight: 600; }

.svc-hero { position: relative; overflow: hidden;
  background: radial-gradient(120% 110% at 100% 0%, var(--blue-tint) 0%, transparent 60%); }
.svc-hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,5vw,58px);
  align-items: center; padding: clamp(22px,3vw,40px) 0 clamp(38px,5vw,60px); }
.svc-hero h1 { font-size: clamp(2rem, 4.6vw, 3.05rem); margin: 16px 0 0; max-width: 18ch; }
.svc-hero p.sub { font-size: clamp(1.05rem,2vw,1.2rem); color: var(--muted); margin: 18px 0 0; max-width: 46ch; }
.svc-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.svc-hero-media img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-md); max-height: 400px; object-fit: cover; }
@media (max-width: 860px) {
  .svc-hero .wrap { grid-template-columns: 1fr; }
  .svc-hero-media { order: -1; }
  .svc-hero-media img { max-height: 280px; }
  .svc-hero h1 { max-width: 22ch; }
}

.svc-layout { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: clamp(30px,5vw,58px); align-items: start; }
@media (max-width: 900px) { .svc-layout { grid-template-columns: 1fr; } }

.prose { font-size: 17px; min-width: 0; }
.prose > h2 { font-size: clamp(1.5rem,3vw,2rem); margin: 40px 0 12px; }
.prose > h2:first-child { margin-top: 0; }
.prose > h3 { font-size: 1.2rem; margin: 26px 0 6px; }
.prose p { margin: 14px 0; }
.prose p.lead { font-size: 1.16rem; color: var(--muted); line-height: 1.6; }
.prose strong { font-weight: 700; }

.checklist { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 11px; }
.checklist.two { grid-template-columns: 1fr 1fr; gap: 11px 26px; }
@media (max-width: 560px) { .checklist.two { grid-template-columns: 1fr; } }
.checklist li { position: relative; padding-left: 32px; line-height: 1.5; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .12em; width: 21px; height: 21px; border-radius: 6px;
  background: var(--blue-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f92e0' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}

.callout { background: var(--blue-tint); border: 1px solid color-mix(in srgb, var(--blue) 25%, var(--hair));
  border-radius: 14px; padding: 20px 22px; margin: 24px 0; }
.callout p { margin: 0; }
.callout p + p { margin-top: 10px; }
.callout strong { color: var(--ink); }

/* Sidebar */
.svc-aside { position: sticky; top: 96px; display: grid; gap: 18px; }
@media (max-width: 900px) { .svc-aside { position: static; } }
.aside-card { background: var(--surface); border: 1px solid var(--hair); border-radius: 16px;
  padding: 24px; box-shadow: var(--shadow-md); }
.aside-card h3 { font-size: 1.3rem; margin: 0 0 6px; }
.aside-card > p { color: var(--muted); font-size: 14.5px; margin: 0 0 16px; }
.aside-card .or { text-align: center; color: var(--muted); font-size: 12.5px; letter-spacing: .06em;
  text-transform: uppercase; margin: 14px 0; }
.aside-card .callbig { display: flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--ink); text-decoration: none; }
.aside-card .callbig svg { color: var(--blue); }
.aside-card .callbig:hover { color: var(--blue); }
.aside-sep { border: none; border-top: 1px solid var(--hair); margin: 18px 0; }
.aside-insured { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); line-height: 1.45; }
.aside-insured svg { flex: none; color: var(--blue); margin-top: 1px; }

/* FAQ */
.faq { display: grid; gap: 12px; margin-top: 18px; }
.faq details { background: var(--surface); border: 1px solid var(--hair); border-radius: 12px; padding: 2px 20px; }
.faq summary { cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 1.06rem;
  padding: 17px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--blue); font-weight: 400; transition: transform .2s; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { margin: 0 0 18px; color: var(--muted); }

/* Keep the header compact on phones */
@media (max-width: 560px) {
  .nav { height: 70px; }
  .brand img { height: 42px; }
  .nav-links.open { top: 70px; }
  [id] { scroll-margin-top: 86px; }
}
