/* ============================================================
   Clear Unit — site.css
   Tradesman-professional: deep navy + safety orange, squared-off,
   high contrast, mobile-first. Themeable via [data-theme] on <html>.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* dark (navy) */
  --bg:        #0E1A2B;
  --bg-2:      #15263d;
  --bg-3:      #1b3252;
  --ink-d:     #ECF2F8;
  --mut-d:     #93A6BC;
  --line-d:    #25395420;
  --hair-dark: #243a55;
  /* light */
  --surface:   #F4F1EB;
  --surface-2: #FFFFFF;
  --ink:       #15212E;
  --mut:       #586573;
  --line:      #E3DFD5;
  --line-2:    #D6D1C5;
  /* accent */
  --acc:       #FF5A1F;
  --acc-2:     #E64A12;
  --acc-ink:   #16110C;
  /* layout */
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 56px);
  --r: 5px;
  --r-lg: 8px;
  /* type */
  --f-body: 'Archivo', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --f-cond: 'Saira Condensed', 'Archivo', sans-serif;
  --f-disp: 'Anton', 'Archivo', sans-serif;
  /* sticky call bar height (mobile) */
  --callbar: 0px;
}
html[data-theme="charcoal"] {
  --bg:    #15171B;
  --bg-2:  #1d2025;
  --bg-3:  #262a30;
  --ink-d: #F4F1EC;
  --mut-d: #9aa3ad;
  --hair-dark: #2c323b;
}
html[data-accent="amber"] { --acc:#F6A609; --acc-2:#DB9100; --acc-ink:#1c1605; }
html[data-heads="archivo"] { --f-disp: 'Archivo', sans-serif; }

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; overflow-x: hidden; }
body {
  font-family: var(--f-body);
  background: var(--surface);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.06; text-wrap: balance; }
p { text-wrap: pretty; }
:focus-visible { outline: 3px solid var(--acc); outline-offset: 2px; }

/* ---------- LAYOUT HELPERS ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(54px, 9vw, 104px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.dark { background: var(--bg); color: var(--ink-d); }
.dark-2 { background: var(--bg-2); color: var(--ink-d); }
.light { background: var(--surface); color: var(--ink); }
.white { background: var(--surface-2); color: var(--ink); }
.center { text-align: center; }
.eyebrow {
  font-family: var(--f-cond); font-weight: 700; font-size: 15px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--acc);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--acc); display: inline-block; }
.eyebrow.solo::before { display: none; }
.kicker { color: var(--mut); font-size: 1.0625rem; max-width: 60ch; }
.dark .kicker, .dark-2 .kicker { color: var(--mut-d); }

/* ---------- TYPE SCALE ---------- */
.display {
  font-family: var(--f-disp); font-weight: 400;
  font-size: clamp(2.7rem, 11vw, 6rem); line-height: .9;
  letter-spacing: .5px; text-transform: uppercase;
}
.h-page {
  font-family: var(--f-disp); font-weight: 400;
  font-size: clamp(2.2rem, 7.6vw, 4.15rem); line-height: .94;
  letter-spacing: .5px; text-transform: uppercase;
}
.h2 {
  font-family: var(--f-disp); font-weight: 400;
  font-size: clamp(1.9rem, 5.6vw, 3rem); line-height: .98;
  letter-spacing: .4px; text-transform: uppercase;
}
html[data-heads="archivo"] .display,
html[data-heads="archivo"] .h-page,
html[data-heads="archivo"] .h2 { font-weight: 800; letter-spacing: -0.5px; line-height: 1; }
.h3 { font-family: var(--f-body); font-weight: 800; font-size: 1.32rem; letter-spacing: -.2px; }
.lead { font-size: clamp(1.06rem, 2.2vw, 1.32rem); line-height: 1.55; color: var(--mut); }
.dark .lead, .dark-2 .lead { color: #C6D3E0; }
.acc-text { color: var(--acc); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-cond); font-weight: 700; font-size: 1.18rem; letter-spacing: .5px;
  text-transform: uppercase; padding: 15px 26px; border-radius: var(--r);
  border: 2px solid transparent; transition: transform .12s ease, background .15s ease, color .15s ease;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--acc); color: var(--acc-ink); border-color: var(--acc); }
.btn--primary:hover { background: var(--acc-2); border-color: var(--acc-2); }
.btn--ghost { background: transparent; color: var(--ink-d); border-color: #ffffff33; }
.btn--ghost:hover { border-color: var(--acc); color: var(--acc); }
.btn--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--dark:hover { background: #000; }
.btn--block { width: 100%; }
.btn svg { width: 19px; height: 19px; }

/* ---------- HEADER ---------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair-dark);
  color: var(--ink-d);
}
.head-row { display: flex; align-items: center; gap: 16px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark { width: 22px; height: 22px; background: var(--acc); transform: rotate(45deg); flex: none; }
.brand-name { font-family: var(--f-cond); font-weight: 800; font-size: 1.4rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-d); white-space: nowrap; }
.brand-name b { color: var(--acc); font-weight: 800; }
.nav { display: none; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--f-cond); font-weight: 600; font-size: 1.02rem; letter-spacing: .5px;
  text-transform: uppercase; color: #C6D3E0; padding: 8px 11px; border-radius: var(--r);
  transition: color .15s ease, background .15s ease; white-space: nowrap;
}
.nav a:hover { color: #fff; }
.nav a[aria-current="page"] { color: var(--acc); }
.head-call {
  display: none; align-items: center; gap: 9px;
  font-family: var(--f-cond); font-weight: 700; font-size: 1.12rem; letter-spacing: .5px;
  background: var(--acc); color: var(--acc-ink); padding: 11px 18px; border-radius: var(--r);
}
.head-call:hover { background: var(--acc-2); }
.head-call svg { width: 17px; height: 17px; }
.burger {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 46px; height: 46px; padding: 11px; background: #ffffff10; border: 1px solid var(--hair-dark);
  border-radius: var(--r); margin-left: auto;
}
.burger span { height: 2.5px; background: var(--ink-d); border-radius: 2px; transition: .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 64px 0 0 0; z-index: 55; background: var(--bg);
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 14px var(--pad) 30px; overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer a {
  font-family: var(--f-cond); font-weight: 700; font-size: 1.7rem; letter-spacing: .5px;
  text-transform: uppercase; color: var(--ink-d); padding: 16px 0;
  border-bottom: 1px solid var(--hair-dark); display: flex; align-items: center; justify-content: space-between;
}
.drawer a[aria-current="page"] { color: var(--acc); }
.drawer a span { color: var(--mut-d); font-size: 1rem; }
.drawer .btn { margin-top: 24px; }
.drawer-meta { margin-top: 22px; color: var(--mut-d); font-size: .95rem; line-height: 1.7; }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; right: -10%; top: -20%; width: 60%; height: 140%;
  background: repeating-linear-gradient(-50deg, transparent 0 22px, #ffffff06 22px 23px);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding-block: clamp(46px, 9vw, 96px); }
.hero .display { margin-top: 22px; max-width: 15ch; font-size: clamp(2.55rem, 8vw, 4.7rem); }
.hero .lead { margin-top: 24px; max-width: 52ch; }
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-sub { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 22px; color: var(--mut-d); font-family: var(--f-cond); font-weight: 600; font-size: 1.05rem; letter-spacing: .4px; text-transform: uppercase; }
.hero-sub span { display: inline-flex; align-items: center; gap: 8px; }
.hero-sub b { color: var(--acc); }

/* ---------- GRID + CARDS ---------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 12px; position: relative;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
a.card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -18px #0e1a2b55; border-color: var(--line-2); }
.card-ico { width: 52px; height: 52px; color: var(--acc); }
.card-ico svg { width: 100%; height: 100%; }
.card h3 { font-size: 1.22rem; }
.card p { color: var(--mut); font-size: .99rem; line-height: 1.55; }
.card-link { margin-top: auto; font-family: var(--f-cond); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--acc); display: inline-flex; align-items: center; gap: 7px; font-size: 1.02rem; }
.card-num { position: absolute; top: 18px; right: 20px; font-family: var(--f-cond); font-weight: 800; color: var(--line-2); font-size: 1.5rem; }

/* ---------- STEPS ---------- */
.steps { display: grid; gap: 16px; grid-template-columns: 1fr; counter-reset: step; }
.step { display: flex; gap: 18px; align-items: flex-start; padding: 22px; background: var(--bg-2); border: 1px solid var(--hair-dark); border-radius: var(--r-lg); }
.step-n { counter-increment: step; flex: none; width: 48px; height: 48px; display: grid; place-items: center; background: var(--acc); color: var(--acc-ink); font-family: var(--f-disp); font-size: 1.5rem; border-radius: var(--r); }
.step-n::before { content: counter(step); }
.step h3 { color: var(--ink-d); font-size: 1.16rem; }
.step p { color: var(--mut-d); font-size: .98rem; margin-top: 4px; }

/* ---------- TRUST BAR ---------- */
.trust { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--hair-dark); border: 1px solid var(--hair-dark); border-radius: var(--r-lg); overflow: hidden; }
.trust-item { background: var(--bg); padding: 24px 22px; display: flex; gap: 14px; align-items: flex-start; }
.trust-item svg { width: 26px; height: 26px; color: var(--acc); flex: none; margin-top: 2px; }
.trust-item b { display: block; color: var(--ink-d); font-size: 1.04rem; font-weight: 700; }
.trust-item span { color: var(--mut-d); font-size: .92rem; line-height: 1.45; }

/* ---------- STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: var(--surface-2); padding: 26px 20px; text-align: center; }
.stat b { font-family: var(--f-disp); font-size: clamp(2.2rem, 8vw, 3.2rem); color: var(--acc); display: block; line-height: 1; }
.stat span { font-family: var(--f-cond); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--mut); font-size: .92rem; margin-top: 8px; display: block; }

/* ---------- SPLIT (page banner) ---------- */
.page-banner { position: relative; overflow: hidden; }
.page-banner .hero-inner { padding-block: clamp(42px, 7vw, 76px); }
.page-banner .eyebrow { margin-bottom: 16px; }
.page-banner .lead { margin-top: 24px; max-width: 56ch; }

/* ---------- SERVICES (anchored) ---------- */
.svc { border-top: 1px solid var(--line); padding-block: clamp(44px, 7vw, 80px); scroll-margin-top: 80px; }
.svc:first-of-type { border-top: none; }
.svc-grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
.svc-media { background: var(--bg); border-radius: var(--r-lg); overflow: hidden; min-height: 220px; }
.svc h2 { margin-top: 14px; }
.svc-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag { font-family: var(--f-cond); font-weight: 700; letter-spacing: .8px; text-transform: uppercase; font-size: .9rem; color: var(--ink); border: 1.5px solid var(--line-2); padding: 6px 13px; border-radius: 50px; }
.tag.tag--acc { color: var(--acc-ink); background: var(--acc); border-color: var(--acc); }
.incl { list-style: none; padding: 0; margin-top: 22px; display: grid; gap: 11px; }
.incl li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 1.02rem; }
.incl li::before { content: ""; flex: none; width: 9px; height: 9px; margin-top: 9px; background: var(--acc); transform: rotate(45deg); }
.svc-who { margin-top: 22px; padding: 16px 18px; background: var(--surface); border-left: 4px solid var(--acc); border-radius: 0 var(--r) var(--r) 0; }
.svc-who b { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: 1px; color: var(--mut); font-size: .85rem; display: block; margin-bottom: 3px; }

/* ---------- PLACEHOLDER MEDIA ---------- */
.ph {
  position: relative; width: 100%; height: 100%; min-height: inherit;
  background:
    repeating-linear-gradient(45deg, #ffffff08 0 12px, transparent 12px 24px),
    var(--bg-2);
  display: grid; place-items: center; color: var(--mut-d);
  font-family: 'IBM Plex Mono', ui-monospace, Menlo, monospace; font-size: .82rem;
  letter-spacing: .5px; text-align: center; padding: 18px; border: 1px solid var(--hair-dark);
}
.ph span { display: block; }
.ph .ph-tag { color: var(--acc); font-weight: 600; }
.ph--light { background: repeating-linear-gradient(45deg, #00000007 0 12px, transparent 12px 24px), #ece8df; color: #9a958a; border-color: var(--line-2); }

/* ---------- GALLERY ---------- */
.gal { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.gal-cell { display: flex; flex-direction: column; gap: 10px; }
.gal-fig { aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden; min-height: 0; }
.gal-cap b { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: .8px; color: var(--acc); font-size: .92rem; display: block; }
.gal-cap span { color: var(--mut); font-size: .92rem; }
.ba { position: relative; }
.ba-split { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; }
.ba-split > div { display: grid; place-items: center; }
.ba-tag { position: absolute; top: 8px; font-family: var(--f-cond); font-weight: 700; font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }
.ba-before { left: 8px; background: #ffffff18; color: var(--ink-d); }
.ba-after { right: 8px; background: var(--acc); color: var(--acc-ink); }

/* ---------- AREAS ---------- */
.area-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.area-card { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.area-card h3 { font-family: var(--f-disp); font-weight: 400; text-transform: uppercase; font-size: 1.7rem; letter-spacing: .5px; }
.area-card .cities { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.area-card .cities span { font-family: var(--f-cond); font-weight: 600; text-transform: uppercase; letter-spacing: .6px; font-size: .9rem; background: var(--surface); padding: 5px 12px; border-radius: 50px; border: 1px solid var(--line); }
.area-card p { color: var(--mut); font-size: 1rem; }
.area-flag { margin-top: 16px; display: inline-flex; gap: 9px; align-items: center; font-family: var(--f-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .6px; font-size: .92rem; color: var(--acc); }
.area-flag svg { width: 17px; height: 17px; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
.contact-list { display: grid; gap: 14px; }
.contact-row { display: flex; gap: 15px; align-items: flex-start; padding: 18px; background: var(--bg-2); border: 1px solid var(--hair-dark); border-radius: var(--r-lg); }
.contact-row svg { width: 24px; height: 24px; color: var(--acc); flex: none; margin-top: 3px; }
.contact-row b { color: var(--ink-d); font-size: .82rem; font-family: var(--f-cond); text-transform: uppercase; letter-spacing: 1.2px; display: block; }
.contact-row a, .contact-row p { color: #fff; font-size: 1.18rem; font-weight: 600; word-break: break-word; }
.contact-row p.sm, .contact-row a.sm { font-size: 1rem; font-weight: 500; color: var(--mut-d); }
.form { display: grid; gap: 16px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--f-cond); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: .85rem; color: var(--mut); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; padding: 13px 14px; border: 1.5px solid var(--line-2); border-radius: var(--r);
  background: var(--surface); color: var(--ink); width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--acc); }
.form-note { font-size: .9rem; color: var(--mut); }
.form-ok { display: none; padding: 16px; background: #e7f3ec; border: 1px solid #b8dcc5; border-radius: var(--r); color: #1c5733; font-weight: 600; }
.form-ok.show { display: block; }

/* ---------- BIG CTA ---------- */
.cta-band { text-align: center; }
.cta-band .h2 { max-width: 20ch; margin-inline: auto; }
.cta-band .lead { margin: 18px auto 30px; max-width: 50ch; }
.cta-phone { font-family: var(--f-disp); font-size: clamp(2.4rem, 9vw, 4rem); color: var(--acc); letter-spacing: 1px; display: inline-block; margin-top: 6px; }

/* ---------- FOOTER ---------- */
.site-foot { background: #0a121d; color: var(--mut-d); padding-block: 52px 120px; border-top: 3px solid var(--acc); }
html[data-theme="charcoal"] .site-foot { background: #0e1013; }
.foot-grid { display: grid; gap: 34px; grid-template-columns: 1fr; }
.foot-brand .brand { margin-bottom: 16px; }
.foot-brand p { font-size: .96rem; max-width: 38ch; }
.foot-col h4 { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: 1.5px; font-size: .9rem; color: #fff; margin-bottom: 14px; }
.foot-col ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.foot-col a, .foot-col li { font-size: .98rem; }
.foot-col a:hover { color: var(--acc); }
.nap { font-style: normal; line-height: 1.8; font-size: .98rem; }
.nap b { color: #fff; }
.nap a { color: var(--acc); }
.foot-bottom { border-top: 1px solid #ffffff14; margin-top: 38px; padding-top: 22px; display: flex; flex-direction: column; gap: 8px; font-size: .85rem; }
.foot-bottom .badges { display: flex; flex-wrap: wrap; gap: 10px; }
.foot-bottom .badge { font-family: var(--f-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .8px; font-size: .8rem; border: 1px solid #ffffff22; padding: 4px 10px; border-radius: 50px; color: #C6D3E0; }

/* ---------- STICKY CALL (mobile) ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(8px);
  border-top: 1px solid var(--hair-dark); gap: 9px;
}
.callbar a { flex: 1; }
.callbar .btn { width: 100%; }
.callbar .btn--text { flex: 0 0 auto; background: #ffffff12; color: var(--ink-d); border-color: var(--hair-dark); padding-inline: 18px; }

/* ---------- THEME SWITCHER ---------- */
.theme-toggle {
  position: fixed; left: 14px; bottom: calc(var(--callbar) + 14px); z-index: 65;
  width: 44px; height: 44px; border-radius: 50%; background: var(--bg-2); color: var(--ink-d);
  border: 1px solid var(--hair-dark); display: grid; place-items: center; box-shadow: 0 6px 20px -8px #000a;
}
.theme-toggle svg { width: 20px; height: 20px; }
.theme-panel {
  position: fixed; left: 14px; bottom: calc(var(--callbar) + 66px); z-index: 66;
  width: 248px; background: var(--bg-2); color: var(--ink-d); border: 1px solid var(--hair-dark);
  border-radius: var(--r-lg); padding: 16px; box-shadow: 0 18px 50px -16px #000b;
  display: none; transform-origin: bottom left;
}
.theme-panel.open { display: block; animation: pop .16s ease; }
@keyframes pop { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }
.theme-panel h5 { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: 1.5px; font-size: .78rem; color: var(--mut-d); margin: 4px 0 9px; }
.theme-panel h5:not(:first-child) { margin-top: 16px; }
.swatch-row { display: flex; gap: 8px; }
.swatch { flex: 1; height: 38px; border-radius: var(--r); border: 2px solid transparent; cursor: pointer; font-family: var(--f-cond); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .5px; color: #fff; display: grid; place-items: center; }
.swatch[aria-pressed="true"] { border-color: var(--acc); }
.theme-panel .tnote { font-size: .72rem; color: var(--mut-d); margin-top: 14px; line-height: 1.5; }
.theme-panel .close-x { position: absolute; top: 10px; right: 12px; background: none; border: none; color: var(--mut-d); font-size: 1.1rem; }

/* ---------- PM PAGE COMPONENTS ---------- */
.compare { display: grid; gap: 16px; grid-template-columns: 1fr; }
.cmp { border-radius: var(--r-lg); padding: 28px 24px; }
.cmp--old { background: var(--surface-2); border: 1px solid var(--line); }
.cmp--new { background: var(--bg); color: var(--ink-d); border: 2px solid var(--acc); }
.cmp h3 { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: 1px; font-size: 1.15rem; margin-bottom: 4px; }
.cmp .cmp-sub { font-size: .9rem; color: var(--mut); margin-bottom: 18px; }
.cmp--new .cmp-sub { color: var(--mut-d); }
.cmp ul { list-style: none; padding: 0; display: grid; gap: 13px; }
.cmp li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; }
.cmp li svg { width: 21px; height: 21px; flex: none; margin-top: 2px; }
.cmp--old li svg { color: #b6431f; }
.cmp--new li svg { color: var(--acc); }

.vmath { display: grid; gap: 26px; grid-template-columns: 1fr; align-items: center; }
.calc { background: var(--bg-2); border: 1px solid var(--hair-dark); border-radius: var(--r-lg); padding: 26px; }
.calc label { font-family: var(--f-cond); text-transform: uppercase; letter-spacing: 1px; font-size: .85rem; color: var(--mut-d); display: block; margin-bottom: 8px; }
.calc-input { display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1.5px solid var(--hair-dark); border-radius: var(--r); padding: 4px 16px; }
.calc-input span { font-family: var(--f-disp); font-size: 1.7rem; color: var(--mut-d); }
.calc-input input { font-family: var(--f-disp); font-size: 2rem; background: transparent; border: none; color: var(--ink-d); width: 100%; padding: 8px 0; }
.calc-input input:focus { outline: none; }
.calc input[type=range] { width: 100%; margin-top: 18px; accent-color: var(--acc); }
.calc-out { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hair-dark); border: 1px solid var(--hair-dark); border-radius: var(--r); overflow: hidden; margin-top: 22px; }
.calc-out div { background: var(--bg); padding: 18px 16px; text-align: center; }
.calc-out b { font-family: var(--f-disp); font-size: clamp(1.8rem, 6vw, 2.6rem); color: var(--acc); display: block; line-height: 1; }
.calc-out span { font-size: .82rem; color: var(--mut-d); margin-top: 8px; display: block; line-height: 1.35; }
.calc-note { margin-top: 18px; font-size: 1.05rem; color: var(--ink-d); }
.calc-note b { color: var(--acc); }

.guarantee { background: var(--acc); color: var(--acc-ink); border-radius: var(--r-lg); padding: clamp(32px, 6vw, 56px); position: relative; overflow: hidden; }
.guarantee::after { content: ""; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px; border: 22px solid #00000012; border-radius: 50%; }
.guarantee .eyebrow { color: var(--acc-ink); }
.guarantee .eyebrow::before { background: var(--acc-ink); }
.guarantee h2 { font-family: var(--f-disp); text-transform: uppercase; font-size: clamp(1.9rem, 6vw, 3.2rem); line-height: .98; margin-top: 14px; max-width: 18ch; position: relative; z-index: 1; }
.guarantee p { margin-top: 18px; font-size: 1.12rem; max-width: 52ch; position: relative; z-index: 1; font-weight: 500; }
.guarantee .btn { margin-top: 26px; position: relative; z-index: 1; }
.btn--onacc { background: var(--acc-ink); color: #fff; border-color: var(--acc-ink); }
.btn--onacc:hover { background: #000; }

.paperwork { display: grid; gap: 14px; grid-template-columns: 1fr; }
.paper { display: flex; gap: 16px; align-items: flex-start; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; }
.paper svg { width: 26px; height: 26px; color: var(--acc); flex: none; margin-top: 2px; }
.paper b { display: block; font-size: 1.08rem; }
.paper span { color: var(--mut); font-size: .96rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 820px; }
.faq details { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; justify-content: space-between; gap: 16px; align-items: center; font-family: var(--f-body); font-weight: 700; font-size: 1.12rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 24px; height: 24px; flex: none; position: relative; }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; background: var(--acc); border-radius: 2px; transition: transform .2s ease; }
.faq summary .pm::before { left: 4px; right: 4px; top: 11px; height: 2.5px; }
.faq summary .pm::after { top: 4px; bottom: 4px; left: 11px; width: 2.5px; }
.faq details[open] summary .pm::after { transform: scaleY(0); }
.faq details[open] summary { color: var(--acc); }
.faq .faq-a { padding: 0 22px 22px; color: var(--mut); font-size: 1.02rem; line-height: 1.6; }

/* ---------- REVEAL ANIM ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 600px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gal { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 860px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .trust { grid-template-columns: repeat(4, 1fr); }
  .svc-grid { grid-template-columns: 1.05fr 1fr; align-items: center; }
  .svc-grid.flip .svc-media { order: 2; }
  .gal { grid-template-columns: repeat(4, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1.1fr; }
  .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .compare { grid-template-columns: 1fr 1fr; }
  .vmath { grid-template-columns: 1fr 1fr; gap: 40px; }
  .paperwork { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .nav { display: flex; }
  .burger { display: none; }
  .callbar { display: none; }
  .theme-toggle, .theme-panel { bottom: 14px; }
}
@media (min-width: 1140px) {
  .head-call { display: inline-flex; }
}
@media (max-width: 999px) {
  body { padding-bottom: 64px; } /* room for sticky call bar */
}
