/* ============================================================
   AMBITIOUS PAINTING — brand system & styles
   Wisconsin (Milwaukee + Waukesha Counties) painting contractor
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Core palette */
  --ink:      #14161d;   /* near-black base */
  --ink-2:    #1d212e;   /* raised dark surface */
  --ink-3:    #2a2f3e;   /* hairlines on dark */
  --paper:    #f7f3ec;   /* warm off-white page */
  --paper-2:  #fffefb;   /* card white */
  --sand:     #ece4d6;   /* muted panel */
  --sand-2:   #e0d6c4;   /* darker sand / borders */

  /* Brand accents */
  --brand:    #f2602c;   /* Ambitious orange */
  --brand-d:  #d44d1d;   /* hover/darker */
  --brand-t:  rgba(242, 96, 44, 0.12);
  --teal:     #0e5e63;   /* deep teal — trust */
  --teal-d:   #0a4a4e;
  --gold:     #e7a93b;   /* stars / warm */

  /* Text */
  --tx:       #14161d;
  --tx-60:    #54596a;
  --tx-40:    #878ca0;
  --tx-on-dark:    #f3efe7;
  --tx-on-dark-60: #aab0c0;

  /* Fan-deck swatches */
  --sw1: #f2602c; --sw2: #e7a93b; --sw3: #7ba05b;
  --sw4: #0e5e63; --sw5: #3a6ea5; --sw6: #7a4e7e;

  /* System */
  --radius:    14px;
  --radius-lg: 22px;
  --radius-sm: 9px;
  --shadow:    0 1px 2px rgba(20,22,29,.04), 0 8px 24px rgba(20,22,29,.07);
  --shadow-lg: 0 24px 60px -18px rgba(20,22,29,.30);
  --ring:      0 0 0 3px rgba(242,96,44,.35);
  --maxw:      1180px;
  --gutter:    clamp(18px, 4vw, 44px);
  --ease:      cubic-bezier(.21,.7,.25,1);

  --font-display: "Bricolage Grotesque", "Archivo", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--tx);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: -.02em; color: var(--ink); }
.h-xl { font-size: clamp(2.6rem, 6.4vw, 5rem); }
.h-lg { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.h-md { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -.015em; }
p { color: var(--tx-60); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--tx-60); line-height: 1.55; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand); display: inline-flex; align-items: center; gap: .55em;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--brand); }
.eyebrow.on-dark { color: var(--gold); }
.eyebrow.on-dark::before { background: var(--gold); }
.eyebrow.center { justify-content: center; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(60px, 9vw, 120px); }
.section--tight { padding-block: clamp(46px, 6vw, 80px); }
.section--ink { background: var(--ink); color: var(--tx-on-dark); }
.section--ink h1,.section--ink h2,.section--ink h3 { color: #fff; }
.section--ink p { color: var(--tx-on-dark-60); }
.section--teal { background: var(--teal); color: #eaf6f5; }
.section--teal h2, .section--teal h3 { color: #fff; }
.section--teal p { color: #cfe8e6; }
.center { text-align: center; }
[id] { scroll-margin-top: 92px; }
.measure { max-width: 62ch; }
.section > .wrap > .sec-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 60px); }
.sec-head.center { margin-inline: auto; }
.sec-head .h-lg { margin-top: 14px; }
.sec-head p { margin-top: 16px; }

/* ---------- Swatch strip (brand motif) ---------- */
.swatch-strip { display: flex; height: 7px; width: 100%; }
.swatch-strip i { flex: 1; }
.swatch-strip i:nth-child(1){ background: var(--sw1);} .swatch-strip i:nth-child(2){ background: var(--sw2);}
.swatch-strip i:nth-child(3){ background: var(--sw3);} .swatch-strip i:nth-child(4){ background: var(--sw4);}
.swatch-strip i:nth-child(5){ background: var(--sw5);} .swatch-strip i:nth-child(6){ background: var(--sw6);}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--brand); --fg: #1a0e07;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-body); font-weight: 800; font-size: 1rem; letter-spacing: .005em;
  padding: 15px 26px; border-radius: 999px; line-height: 1;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  box-shadow: 0 10px 22px -8px rgba(242,96,44,.6);
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:hover { background: var(--brand-d); transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(242,96,44,.7); }
.btn:active { transform: translateY(0); }
.btn--ghost { --bg: transparent; --fg: var(--ink); box-shadow: inset 0 0 0 2px var(--sand-2); }
.btn--ghost:hover { --bg: var(--ink); --fg: #fff; box-shadow: inset 0 0 0 2px var(--ink); }
.btn--ink { --bg: var(--ink); --fg: #fff; box-shadow: 0 10px 22px -10px rgba(20,22,29,.6); }
.btn--ink:hover { --bg: #000; }
.btn--ghost-light { --bg: transparent; --fg: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.3); }
.btn--ghost-light:hover { --bg: rgba(255,255,255,.1); box-shadow: inset 0 0 0 2px rgba(255,255,255,.6); }
.btn--lg { padding: 18px 32px; font-size: 1.08rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: var(--paper); border-bottom: 1px solid transparent; transition: box-shadow .25s var(--ease), border-color .25s var(--ease); }
.site-header.scrolled { box-shadow: 0 6px 24px -14px rgba(20,22,29,.35); border-color: var(--sand-2); }
.nav { display: flex; align-items: center; gap: 20px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__logo { width: 48px; height: 48px; flex: none; border-radius: 12px; object-fit: cover; display: block; box-shadow: 0 2px 10px rgba(20,22,29,.18); }
.footer .brand__logo { box-shadow: none; outline: 1px solid var(--ink-3); }
.brand__name { font-family: var(--font-body); display: flex; flex-direction: column; gap: 1px; line-height: .9; text-transform: uppercase; color: var(--brand); white-space: nowrap; }
.brand__name b { font-weight: 800; font-size: 1.18rem; letter-spacing: .085em; }
.brand__name em { font-weight: 800; font-style: normal; font-size: 1.07rem; letter-spacing: .02em; }
.brand__name span { display: block; font-family: var(--font-body); font-weight: 700; font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--tx-40); margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a { font-weight: 600; font-size: .95rem; color: var(--tx-60); padding: 8px 11px; border-radius: 8px; white-space: nowrap; transition: color .15s, background .15s; }
.nav__links a:hover, .nav__links a.active { color: var(--ink); background: var(--sand); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--ink); font-size: 1.02rem; white-space: nowrap; }
.brand__name span { white-space: nowrap; }
.nav__phone svg { width: 17px; height: 17px; color: var(--brand); }
.nav__phone small { display: block; font-weight: 700; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; color: var(--tx-40); line-height: 1; margin-bottom: 3px; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after { content: ""; display: block; width: 22px; height: 2.4px; background: var(--ink); border-radius: 2px; position: relative; transition: transform .25s var(--ease), opacity .2s; }
.nav__toggle span::before { position: absolute; top: -7px; } .nav__toggle span::after { position: absolute; top: 7px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: var(--tx-on-dark); overflow: hidden; }
.hero::before { /* subtle painted texture glow */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 88% 8%, rgba(242,96,44,.18), transparent 60%),
    radial-gradient(50% 50% at 8% 92%, rgba(14,94,99,.30), transparent 60%);
  pointer-events: none;
}
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding-block: clamp(48px, 7vw, 92px); }
.hero__eyebrow { color: var(--gold); }
.hero h1 { color: #fff; margin: 18px 0 0; }
.hero h1 em { font-style: normal; color: var(--brand); position: relative; white-space: nowrap; }
.hero h1 em::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: 4%; height: 38%; background: var(--brand); opacity: .16; border-radius: 4px; z-index: -1; }
.hero__sub { margin-top: 20px; max-width: 46ch; color: var(--tx-on-dark-60); font-size: clamp(1.02rem,1.5vw,1.2rem); }
.hero__cta { margin-top: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--ink-3); }
.hero__trust .ht { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: .92rem; color: #e9e5dc; }
.hero__trust .ht svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }

/* Hero before/after card */
.hero__media { position: relative; }
.ba-card { background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: var(--radius-lg); padding: 14px; box-shadow: var(--shadow-lg); }
.ba-card__head { display: flex; align-items: center; justify-content: space-between; padding: 4px 8px 12px; }
.ba-card__head b { font-family: var(--font-display); color: #fff; font-size: 1rem; letter-spacing: -.01em; }
.ba-card__head .pill { font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); background: var(--gold); padding: 5px 10px; border-radius: 999px; }

/* Before/After slider */
.ba { position: relative; width: 100%; aspect-ratio: 4 / 3.05; border-radius: 14px; overflow: hidden; user-select: none; touch-action: pan-y; isolation: isolate; }
.ba__layer { position: absolute; inset: 0; }
.ba__layer svg { width: 100%; height: 100%; }
.ba__after { z-index: 1; }
.ba__before { z-index: 2; clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba__tag { position: absolute; top: 12px; z-index: 4; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; color: #fff; background: rgba(20,22,29,.6); backdrop-filter: blur(2px); }
.ba__tag--b { left: 12px; } .ba__tag--a { right: 12px; background: rgba(14,94,99,.85); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; background: #fff; transform: translateX(-50%); z-index: 5; box-shadow: 0 0 0 1px rgba(0,0,0,.15); }
.ba__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 999px; background: #fff; box-shadow: var(--shadow-lg); display: grid; place-items: center; color: var(--ink); }
.ba__grip svg { width: 22px; height: 22px; }
.ba__range { position: absolute; inset: 0; z-index: 6; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.ba__hint { position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); z-index: 4; font-size: .72rem; font-weight: 700; color: #fff; background: rgba(20,22,29,.55); padding: 5px 12px; border-radius: 999px; display: inline-flex; gap: 6px; align-items: center; transition: opacity .3s; pointer-events: none; }
.ba.touched .ba__hint { opacity: 0; }

/* floating rating badge over hero media */
.hero__badge { position: absolute; left: -14px; bottom: 26px; z-index: 5; background: var(--paper-2); color: var(--ink); border-radius: 16px; padding: 13px 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; }
.hero__badge .g { width: 34px; height: 34px; }
.hero__badge b { font-family: var(--font-display); font-size: 1.15rem; display: block; line-height: 1; }
.hero__badge small { color: var(--tx-60); font-weight: 600; font-size: .76rem; }

/* ---------- Marquee trust bar ---------- */
.trustbar { background: var(--paper-2); border-bottom: 1px solid var(--sand-2); }
.trustbar .wrap { display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; justify-content: space-between; padding-block: 20px; }
.trustbar .ti { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: .95rem; color: var(--tx-60); }
.trustbar .ti svg { width: 20px; height: 20px; color: var(--teal); flex: none; }
.trustbar .ti b { color: var(--ink); }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 3vw, 28px); }
.svc {
  position: relative; background: var(--paper-2); border: 1px solid var(--sand-2); border-radius: var(--radius-lg);
  padding: 0; overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  display: flex; flex-direction: column;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--ink); }
.svc__chip { height: 130px; position: relative; display: flex; align-items: flex-end; padding: 16px; color: #fff; overflow: hidden; }
.svc__chip svg.bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.svc--int .svc__chip { background: var(--teal); }
.svc--ext .svc__chip { background: var(--brand); }
.svc__chip .num { position: relative; font-family: var(--font-display); font-weight: 800; font-size: 3rem; opacity: .9; line-height: .8; }
.svc__body { padding: 22px clamp(20px,2.4vw,28px) 26px; display: flex; flex-direction: column; flex: 1; }
.svc__body h3 { font-size: 1.5rem; }
.svc__body p { margin-top: 10px; }
.svc__list { margin-top: 16px; display: grid; gap: 9px; }
.svc__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; color: var(--tx-60); font-weight: 500; }
.svc__list li svg { width: 18px; height: 18px; color: var(--teal); flex: none; margin-top: 2px; }
.svc__foot { margin-top: auto; padding-top: 22px; }
.svc__link { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; color: var(--ink); }
.svc__link svg { width: 16px; height: 16px; color: var(--brand); transition: transform .2s var(--ease); }
.svc:hover .svc__link svg { transform: translateX(4px); }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); color: #fff; line-height: 1; letter-spacing: -.02em; }
.stat .n em { font-style: normal; color: var(--brand); }
.stat .l { margin-top: 10px; font-weight: 600; font-size: .92rem; color: var(--tx-on-dark-60); }

/* ---------- Process / The Ambitious Standard ---------- */
.proc { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; counter-reset: step; }
.proc__item { position: relative; background: var(--paper-2); border: 1px solid var(--sand-2); border-radius: var(--radius); padding: 26px 22px 24px; }
.proc__item::before { counter-increment: step; content: "0" counter(step); font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--brand); opacity: .9; line-height: 1; display: block; margin-bottom: 14px; letter-spacing: -.03em; }
.proc__item h4 { font-size: 1.18rem; }
.proc__item p { margin-top: 8px; font-size: .96rem; }

/* ---------- Why choose us ---------- */
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.why-list { display: grid; gap: 14px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px; background: var(--paper-2); border: 1px solid var(--sand-2); border-radius: var(--radius); transition: border-color .2s, transform .2s var(--ease); }
.why-item:hover { border-color: var(--ink); transform: translateX(4px); }
.why-item .ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--brand-t); color: var(--brand); display: grid; place-items: center; }
.why-item .ic svg { width: 24px; height: 24px; }
.why-item h4 { font-size: 1.1rem; }
.why-item p { margin-top: 4px; font-size: .94rem; }
.why-aside { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: clamp(26px,3vw,38px); position: relative; overflow: hidden; }
.why-aside .swatch-strip { position: absolute; top: 0; left: 0; right: 0; }
.why-aside h3 { color: #fff; font-size: 1.7rem; margin-top: 8px; }
.why-aside p { color: var(--tx-on-dark-60); margin-top: 14px; }
.why-aside .owner { display: flex; align-items: center; gap: 14px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--ink-3); }
.why-aside .owner .av { width: 54px; height: 54px; border-radius: 999px; background: var(--brand); color: #1a0e07; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; flex: none; }
.why-aside .owner b { color: #fff; display: block; } .why-aside .owner small { color: var(--tx-on-dark-60); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gtile { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--sand-2); background: var(--sand); }
.gtile:nth-child(1){ grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gtile svg { width: 100%; height: 100%; }
.gtile__label { position: absolute; left: 12px; bottom: 12px; z-index: 2; background: rgba(20,22,29,.7); color: #fff; font-size: .76rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(2px); }
.gtile__swap { position: absolute; inset: 0; display: grid; place-content: center; place-items: center; text-align: center; gap: 6px; color: var(--tx-40); font-size: .78rem; font-weight: 700; opacity: 0; transition: opacity .2s; }

/* ---------- Reviews ---------- */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rev { background: var(--paper-2); border: 1px solid var(--sand-2); border-radius: var(--radius-lg); padding: 26px 24px; display: flex; flex-direction: column; }
.rev .stars { margin-bottom: 14px; }
.rev p { color: var(--ink); font-size: 1.04rem; line-height: 1.55; font-weight: 500; }
.rev__who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 22px; }
.rev__who .av { width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: #fff; flex: none; }
.rev__who b { display: block; font-size: .98rem; color: var(--ink); }
.rev__who small { color: var(--tx-40); font-size: .8rem; display: inline-flex; align-items: center; gap: 5px; }
.rev__who small svg { width: 13px; height: 13px; }
.rev__g { width: 22px; height: 22px; position: absolute; }

/* ---------- Service areas ---------- */
.areas { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,3vw,40px); }
.area-col h3 { font-size: 1.3rem; display: flex; align-items: center; gap: 10px; }
.area-col h3 svg { width: 22px; height: 22px; color: var(--brand); }
.area-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.area-chips span { background: var(--paper-2); border: 1px solid var(--sand-2); border-radius: 999px; padding: 8px 15px; font-size: .9rem; font-weight: 600; color: var(--tx-60); transition: all .15s; }
.area-chips span:hover { border-color: var(--brand); color: var(--ink); background: var(--brand-t); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--sand-2); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--ink); }
.faq__q .ico { width: 28px; height: 28px; flex: none; border-radius: 8px; background: var(--sand); display: grid; place-items: center; transition: background .2s, transform .25s var(--ease); position: relative; }
.faq__q .ico::before, .faq__q .ico::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; }
.faq__q .ico::before { width: 13px; height: 2.4px; } .faq__q .ico::after { width: 2.4px; height: 13px; transition: transform .25s var(--ease); }
.faq__item[open] .faq__q .ico { background: var(--brand); }
.faq__item[open] .faq__q .ico::before, .faq__item[open] .faq__q .ico::after { background: #fff; }
.faq__item[open] .faq__q .ico::after { transform: rotate(90deg); }
.faq__a { padding: 0 4px 24px; color: var(--tx-60); max-width: 70ch; }
details > summary { list-style: none; cursor: pointer; } details > summary::-webkit-details-marker { display: none; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--brand); color: #1a0e07; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 85% 50%, rgba(255,255,255,.18), transparent 60%); }
.cta-band .wrap { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-block: clamp(40px,6vw,70px); }
.cta-band h2 { color: #1a0e07; font-size: clamp(1.8rem,3.6vw,2.8rem); max-width: 18ch; }
.cta-band p { color: #5a2a12; font-weight: 600; margin-top: 10px; }
.cta-band .btn--ink { box-shadow: 0 14px 30px -10px rgba(20,22,29,.5); }

/* ---------- Quote form ---------- */
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px,4vw,56px); align-items: start; }
.quote-info .h-lg { color: #fff; }
.quote-info p { margin-top: 16px; }
.contact-list { margin-top: 28px; display: grid; gap: 6px; }
.contact-list a, .contact-list div { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--radius); background: var(--ink-2); border: 1px solid var(--ink-3); transition: border-color .2s, transform .2s var(--ease); }
.contact-list a:hover { border-color: var(--brand); transform: translateX(3px); }
.contact-list .ic { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.06); color: var(--brand); display: grid; place-items: center; flex: none; }
.contact-list .ic svg { width: 20px; height: 20px; }
.contact-list small { display: block; color: var(--tx-on-dark-60); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-list b { color: #fff; font-size: 1.06rem; }

.form-card { background: var(--paper-2); border-radius: var(--radius-lg); padding: clamp(24px,3vw,38px); box-shadow: var(--shadow-lg); color: var(--ink); }
.form-card h3 { font-size: 1.5rem; }
.form-card .sub { color: var(--tx-60); margin-top: 6px; font-size: .96rem; }
.field { margin-top: 16px; }
.field label { display: block; font-weight: 700; font-size: .86rem; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: var(--brand); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--sand-2); border-radius: 11px; padding: 13px 15px; transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--tx-40); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px var(--brand-t); outline: none; }
.field textarea { resize: vertical; min-height: 96px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { margin-top: 14px; font-size: .82rem; color: var(--tx-40); text-align: center; }
.form-note svg { width: 13px; height: 13px; vertical-align: -2px; color: var(--teal); }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success .ck { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 999px; background: var(--teal); color: #fff; display: grid; place-items: center; }
.form-success .ck svg { width: 32px; height: 32px; }
.form-success h3 { color: var(--ink); }
.form-success p { margin-top: 8px; }
.is-hidden { display: none !important; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--tx-on-dark-60); padding-block: clamp(46px,6vw,72px) 28px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer h4 { color: #fff; font-size: 1rem; font-family: var(--font-body); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer a { color: var(--tx-on-dark-60); transition: color .15s; }
.footer a:hover { color: var(--brand); }
.footer__links { display: grid; gap: 10px; font-size: .95rem; }
.footer .brand__name { color: var(--brand); } .footer .brand__name span { color: var(--tx-on-dark-60); }
.footer__about { color: var(--tx-on-dark-60); font-size: .95rem; margin-top: 16px; max-width: 34ch; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; background: var(--ink-2); border: 1px solid var(--ink-3); display: grid; place-items: center; color: #fff; }
.footer__social a:hover { background: var(--brand); color: #1a0e07; border-color: var(--brand); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--ink-3); font-size: .86rem; }

/* ---------- Sticky mobile action bar ---------- */
.mobilebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(247,243,236,.92); backdrop-filter: blur(8px); border-top: 1px solid var(--sand-2); }
.mobilebar .btn { padding: 14px; font-size: 1rem; box-shadow: none; }
.mobilebar .btn--ink { box-shadow: none; }

/* ---------- Mobile menu panel ---------- */
.mobile-menu { position: fixed; inset: 74px 0 0; z-index: 55; background: var(--paper); transform: translateX(100%); transition: transform .3s var(--ease); display: flex; flex-direction: column; padding: 24px var(--gutter) 40px; overflow-y: auto; }
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a.ml { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--ink); padding: 16px 0; border-bottom: 1px solid var(--sand-2); display: flex; justify-content: space-between; align-items: center; }
.mobile-menu a.ml svg { width: 20px; height: 20px; color: var(--brand); }
.mobile-menu .mm-cta { margin-top: 26px; display: grid; gap: 12px; }
.mobile-menu .mm-phone { margin-top: 22px; text-align: center; font-weight: 700; color: var(--tx-60); }
.mobile-menu .mm-phone b { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); }

/* ---------- Reveal animations ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; } .js .reveal.d2 { transition-delay: .16s; } .js .reveal.d3 { transition-delay: .24s; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 80% at 90% 10%, rgba(242,96,44,.16), transparent 60%); }
.page-hero .wrap { position: relative; padding-block: clamp(48px,7vw,90px); }
.page-hero .crumbs { font-size: .86rem; color: var(--tx-on-dark-60); font-weight: 600; margin-bottom: 16px; }
.page-hero .crumbs a:hover { color: var(--brand); }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero p { color: var(--tx-on-dark-60); margin-top: 18px; max-width: 56ch; font-size: 1.12rem; }
.page-hero .btn-row { margin-top: 28px; }

/* prose blocks for service detail */
.prose { max-width: 760px; }
.prose h3 { font-size: 1.5rem; margin-top: 40px; }
.prose h3:first-child { margin-top: 0; }
.prose p { margin-top: 14px; }
.checklist { margin-top: 18px; display: grid; gap: 11px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--tx-60); font-weight: 500; }
.checklist li svg { width: 20px; height: 20px; color: var(--teal); flex: none; margin-top: 2px; }
.callout { background: var(--brand-t); border-left: 4px solid var(--brand); border-radius: 10px; padding: 18px 20px; margin-top: 28px; }
.callout b { color: var(--ink); }

/* split content layout */
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px,4vw,56px); align-items: start; }
.split__media { position: sticky; top: 100px; }
.figure { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--sand-2); background: var(--sand); box-shadow: var(--shadow); }
.figure svg { width: 100%; height: auto; display: block; }

/* ---------- City cards (service areas) ---------- */
.county-head { display: flex; align-items: center; gap: 12px; margin: 8px 0 22px; }
.county-head svg { width: 26px; height: 26px; color: var(--brand); flex: none; }
.county-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(218px, 1fr)); gap: 14px; }
.city { background: var(--paper-2); border: 1px solid var(--sand-2); border-radius: var(--radius); padding: 18px 18px 20px; transition: border-color .2s, transform .2s var(--ease); }
.city:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow); }
.city h3 { font-size: 1.1rem; }
.city p { font-size: .89rem; margin-top: 6px; }
.city a { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-weight: 800; font-size: .86rem; color: var(--ink); }
.city a svg { width: 14px; height: 14px; color: var(--brand); }

/* ---------- Before/After illustrated house ---------- */
.only-before { display: none; }
.ba__before .only-before { display: block; }
.crack { fill: none; stroke-linecap: round; stroke-width: 2.4; }

/* AFTER — freshly painted */
.ba__after .h-sky{fill:#bfe2f2} .ba__after .h-sun{fill:#e7a93b} .ba__after .h-cloud{fill:#eaf6fb}
.ba__after .h-ground{fill:#84bd64} .ba__after .h-trunk{fill:#6b4a2e} .ba__after .h-tree{fill:#5f9e4f}
.ba__after .h-chimney{fill:#7a4b3a} .ba__after .h-roof{fill:#1b2130} .ba__after .h-wall{fill:#2f3644}
.ba__after .h-trim{fill:#fffefb} .ba__after .h-door{fill:#f2602c} .ba__after .h-knob{fill:#14161d}
.ba__after .h-glass{fill:#bfe0ef} .ba__after .h-muntin{fill:#fffefb}

/* BEFORE — weathered & faded */
.ba__before .h-sky{fill:#b7bdc4} .ba__before .h-sun{fill:#c7c0b1} .ba__before .h-cloud{fill:#c6ccd0}
.ba__before .h-ground{fill:#9aa07a} .ba__before .h-trunk{fill:#5a4636} .ba__before .h-tree{fill:#808a60}
.ba__before .h-chimney{fill:#6a5347} .ba__before .h-roof{fill:#5b564f} .ba__before .h-wall{fill:#9a9183}
.ba__before .h-trim{fill:#c9c2b3} .ba__before .h-door{fill:#7d6f5c} .ba__before .h-knob{fill:#3a3329}
.ba__before .h-glass{fill:#9aa3a6} .ba__before .h-muntin{fill:#c9c2b3}
.ba__before .peel{fill:#cfc7b6} .ba__before .crack{stroke:#6e6456}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 540px; }
  .why-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split__media { position: static; order: -1; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 1120px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 820px) {
  .nav__phone small { display: none; }
  .nav__cta .btn { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gtile:nth-child(1){ grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; }
  .stats { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .areas { grid-template-columns: 1fr; }
  .mobilebar { display: grid; }
  body { padding-bottom: 76px; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .nav__phone { display: none; }
  .hero__trust { gap: 10px 16px; }
  .footer__top { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gtile:nth-child(1){ aspect-ratio: 4/3; }
}

/* ============================================================
   V2 COMPONENTS
   ============================================================ */

/* ---- Offer / promo bar ---- */
.offerbar { background: var(--ink); color: #fff; font-size: .92rem; font-weight: 600; }
.offerbar .wrap { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 10px var(--gutter); text-align: center; position: relative; }
.offerbar b { color: var(--gold); }
.offerbar a { text-decoration: underline; text-underline-offset: 3px; font-weight: 800; color: #fff; }
.offerbar .x { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); opacity: .6; font-size: 1.1rem; line-height: 1; }
.offerbar .x:hover { opacity: 1; }
@media (max-width: 600px){ .offerbar { font-size: .8rem; } .offerbar .x { display:none; } }

/* ---- Photo slot (branded placeholder until real photo dropped) ---- */
.pslot { position: relative; overflow: hidden; background:
    linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 60%, var(--teal-d) 140%);
  display: grid; place-items: center; isolation: isolate; }
.pslot::after { content: attr(data-label); position: absolute; z-index: 1; color: rgba(255,255,255,.5);
  font-family: var(--font-body); font-weight: 800; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  padding: 0 16px; text-align: center; }
.pslot .ic { position: relative; z-index: 1; width: 40px; height: 40px; color: rgba(255,255,255,.35); margin-bottom: 40px; }
.pslot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.pslot--light { background: linear-gradient(135deg, var(--sand) 0%, var(--paper-2) 70%); }
.pslot--light::after { color: var(--tx-40); }
.pslot--light .ic { color: var(--sand-2); }

/* ---- Hero additions ---- */
.hero__bgphoto { position: absolute; inset: 0; z-index: 0; opacity: .22; object-fit: cover; width: 100%; height: 100%; }
.hero__grid, .hero__copy, .hero__media { position: relative; z-index: 1; }

/* ---- Services v2 (6 cards w/ icon + photo) ---- */
.svc6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc6 .card { background: var(--paper-2); border: 1px solid var(--sand-2); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.svc6 .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--ink); }
.svc6 .ph { aspect-ratio: 16/10; }
.svc6 .bd { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc6 .ic2 { width: 42px; height: 42px; border-radius: 11px; background: var(--brand-t); color: var(--brand); display: grid; place-items: center; margin: -42px 0 12px; position: relative; z-index: 3; box-shadow: 0 6px 16px -6px rgba(20,22,29,.4); background-color: var(--paper-2); }
.svc6 .ic2 svg { width: 22px; height: 22px; }
.svc6 h3 { font-size: 1.22rem; }
.svc6 p { font-size: .93rem; margin-top: 7px; }
.svc6 .lk { margin-top: auto; padding-top: 16px; font-weight: 800; font-size: .9rem; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.svc6 .lk svg { width: 15px; height: 15px; color: var(--brand); transition: transform .2s var(--ease); }
.svc6 .card:hover .lk svg { transform: translateX(4px); }

/* ---- Portfolio masonry ---- */
.pf { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.pf .tile { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--sand-2); }
.pf .tile.t-wide { grid-column: span 2; }
.pf .tile.t-tall { grid-row: span 2; }
.pf .tile .pslot { width: 100%; height: 100%; }
.pf .cap { position: absolute; left: 12px; bottom: 12px; z-index: 3; background: rgba(20,22,29,.72); color:#fff; font-size: .74rem; font-weight: 700; padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(3px); }
.pf .tile--cta { display: flex; align-items: center; justify-content: center; text-align: center; text-decoration: none; padding: 26px 22px; background: linear-gradient(150deg, var(--brand) 0%, #d24c1c 100%); border-color: transparent; transition: filter .2s ease, transform .2s ease; }
.pf .tile--cta:hover { filter: brightness(1.07); transform: translateY(-2px); }
.pf .tile--cta b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; line-height: 1.18; letter-spacing: -.015em; color: #fff; }
.pf .tile--cta .cta-tile__go { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-weight: 700; font-size: .82rem; color: #fff; background: rgba(255,255,255,.18); padding: 9px 15px; border-radius: 999px; }
.pf .tile--cta .cta-tile__go svg { width: 15px; height: 15px; }
.pf.pf--work { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 230px; }
@media (max-width: 820px) { .pf.pf--work { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; } }
@media (max-width: 480px) { .pf.pf--work { grid-auto-rows: 168px; } .pf .tile--cta { padding: 14px 12px; } .pf .tile--cta b { font-size: 1.04rem; } .pf .tile--cta .cta-tile__go { margin-top: 10px; font-size: .72rem; padding: 7px 11px; } .pf .cap { font-size: .68rem; left: 8px; bottom: 8px; padding: 4px 9px; } }

/* ---- Meet the owner / about ---- */
.meet { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px,5vw,64px); align-items: center; }
.meet__photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--sand-2); box-shadow: var(--shadow-lg); position: relative; }
.meet__photo .badge { position: absolute; right: 16px; bottom: 16px; z-index: 4; background: var(--paper-2); color: var(--ink); border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow-lg); font-weight: 800; font-size: .85rem; display:flex; align-items:center; gap:8px; }
.meet__photo .badge svg { width: 22px; height: 22px; color: var(--brand); }
.meet h2 { margin-top: 12px; }
.meet p { margin-top: 16px; }
.meet .sig { margin-top: 22px; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--ink); }
.meet .sigsub { color: var(--tx-40); font-weight: 600; font-size: .85rem; }
.meet .pts { margin-top: 22px; display: grid; gap: 12px; }
.meet .pts li { display:flex; gap:11px; align-items:flex-start; font-weight:500; color: var(--tx-60); }
.meet .pts svg { width:20px; height:20px; color: var(--teal); flex:none; margin-top:2px; }

/* ---- Guarantee band + badges ---- */
.guar { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.gcard { text-align: center; padding: 26px 18px; background: rgba(255,255,255,.04); border: 1px solid var(--ink-3); border-radius: var(--radius); }
.gcard .ic { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 14px; background: rgba(242,96,44,.14); color: var(--brand); display: grid; place-items: center; }
.gcard .ic svg { width: 26px; height: 26px; }
.gcard h4 { color: #fff; font-size: 1.08rem; }
.gcard p { font-size: .88rem; margin-top: 6px; }

.revbadges { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 38px; }
.revbadge { display: flex; align-items: center; gap: 12px; background: var(--paper-2); border: 1px solid var(--sand-2); border-radius: 14px; padding: 12px 18px; box-shadow: var(--shadow); }
.revbadge svg.lg { width: 30px; height: 30px; }
.revbadge .n { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; line-height: 1; color: var(--ink); }
.revbadge .s { color: var(--gold); font-size: .9rem; letter-spacing: 1px; }
.revbadge small { color: var(--tx-40); font-weight: 600; font-size: .76rem; }

/* ---- Multi-step estimator ---- */
.est { background: var(--paper-2); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; max-width: 640px; margin-inline: auto; }
.est__bar { height: 6px; background: var(--sand); }
.est__bar i { display: block; height: 100%; background: var(--brand); width: 25%; transition: width .35s var(--ease); }
.est__in { padding: clamp(24px, 3.5vw, 40px); }
.est__step { display: none; }
.est__step.active { display: block; animation: estfade .35s var(--ease); }
@keyframes estfade { from { opacity: 0; transform: translateY(10px);} to { opacity:1; transform:none; } }
.est__count { font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); }
.est__q { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem,2.6vw,1.9rem); margin: 8px 0 22px; color: var(--ink); letter-spacing: -.01em; }
.est__opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.est__opt { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1.5px solid var(--sand-2); border-radius: 12px; background: var(--paper); cursor: pointer; font-weight: 700; color: var(--ink); transition: all .15s; text-align: left; }
.est__opt:hover { border-color: var(--brand); background: var(--brand-t); }
.est__opt.sel { border-color: var(--brand); background: var(--brand-t); box-shadow: inset 0 0 0 1px var(--brand); }
.est__opt .eic { width: 38px; height: 38px; border-radius: 9px; background: var(--paper-2); color: var(--brand); display: grid; place-items: center; flex: none; box-shadow: var(--shadow); }
.est__opt .eic svg { width: 20px; height: 20px; }
.est__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; gap: 12px; }
.est__back { font-weight: 700; color: var(--tx-60); display: inline-flex; align-items: center; gap: 6px; }
.est__back:hover { color: var(--ink); }
.est__back svg { width: 16px; height: 16px; }
.est .field { margin-top: 14px; }
.est__trust { margin-top: 16px; text-align: center; font-size: .82rem; color: var(--tx-40); }
.est__done { display: none; text-align: center; padding: 10px 0 4px; }
.est__done.show { display: block; }
.est__done .ck { width: 66px; height: 66px; margin: 0 auto 16px; border-radius: 999px; background: var(--teal); color: #fff; display: grid; place-items: center; }
.est__done .ck svg { width: 34px; height: 34px; }

/* ---- "How we compare" ---- */
.cmp { max-width: 760px; margin-inline: auto; border: 1px solid var(--sand-2); border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-2); }
.cmp__row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; align-items: center; }
.cmp__row + .cmp__row { border-top: 1px solid var(--sand-2); }
.cmp__row.head { background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 800; }
.cmp__row.head .us { color: var(--gold); }
.cmp__cell { padding: 15px 18px; font-size: .94rem; }
.cmp__cell.c { text-align: center; }
.cmp__row:not(.head) .lbl { font-weight: 700; color: var(--ink); }
.cmp .yes { color: var(--teal); } .cmp .no { color: #c0563f; opacity:.8; }
.cmp .yes svg, .cmp .no svg { width: 22px; height: 22px; }
.cmp__row .us { background: rgba(242,96,44,.06); }

/* ---- Responsive v2 ---- */
@media (max-width: 1000px){
  .svc6 { grid-template-columns: 1fr 1fr; }
  .meet { grid-template-columns: 1fr; }
  .meet__photo { max-width: 460px; aspect-ratio: 4/3; }
  .guar { grid-template-columns: 1fr 1fr; }
  .pf { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
  .pf .tile.t-wide { grid-column: span 2; }
  .pf .tile.t-tall { grid-row: span 1; }
}
@media (max-width: 600px){
  .svc6 { grid-template-columns: 1fr; }
  .guar { grid-template-columns: 1fr; }
  .est__opts { grid-template-columns: 1fr; }
  .cmp__row { grid-template-columns: 1.4fr .8fr .8fr; }
  .cmp__cell { padding: 12px 10px; font-size: .82rem; }
  .pf { grid-template-columns: 1fr 1fr; }
}

/* v3: keep why-list readable on mobile even when overridden to 2-col inline */
@media (max-width: 700px){ .why-list { grid-template-columns: 1fr !important; } }
