/* ============================================================
   Peoria Trimlight — Flagship (premium, cinematic)
   Near-black + gold/silver. Montserrat display (logo font) + Hanken Grotesk body.
   Large whitespace, strong grid, restraint. No blobs, no glass.
   ============================================================ */

:root {
  --bg:      #0B0C0E;
  --bg-2:    #0F1114;
  --panel:   #14161B;
  --line:    rgba(255,255,255,.10);
  --line-2:  rgba(255,255,255,.18);
  --ink:     #F4F1EA;   /* warm white */
  --muted:   #A8A69D;
  --muted-2: #706F68;
  --gold:    #C6A24E;
  --gold-lt: #E7CE86;
  --gold-dp: #9C7B2E;
  --silver:  #C9CDD4;

  --maxw:  1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --sp:    clamp(88px, 12vw, 168px);   /* section rhythm */

  --display: 'Montserrat', system-ui, sans-serif;
  --sans:    'Hanken Grotesk', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--sans); background: var(--bg); color: var(--ink);
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1,h2,h3,h4 { font-family: var(--display); font-weight: 800; letter-spacing: -.02em; line-height: 1.06; }
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
::selection { background: var(--gold); color: #14110a; }

/* ---------- atmosphere: film grain + vignette (cinematic depth) ---------- */
body::before { /* grain */
  content: ""; position: fixed; inset: 0; z-index: 300; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
body::after { /* vignette */
  content: ""; position: fixed; inset: 0; z-index: 299; pointer-events: none;
  background: radial-gradient(120% 90% at 50% 42%, transparent 55%, rgba(0,0,0,.5) 100%);
}

/* ---------- orchestrated hero load ---------- */
@keyframes heroIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero__media { animation: fadeIn 1.2s ease both; }
.hero__copy > * { animation: heroIn .9s cubic-bezier(.2,.75,.2,1) both; }
.hero__copy > .eyebrow    { animation-delay: .10s; }
.hero__copy > h1          { animation-delay: .20s; }
.hero__copy > .hero__sub  { animation-delay: .34s; }
.hero__copy > .hero__cta  { animation-delay: .46s; }
.hero__copy > .hero__scenes { animation-delay: .58s; }
.hero__copy > .hero__trust  { animation-delay: .70s; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 820px; }

/* ---------- type utilities ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-size: 12px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .8; }
.eyebrow--plain::before { display: none; }
.h-xl { font-size: clamp(38px, 5.8vw, 84px); line-height: 1.02; letter-spacing: -.022em; font-weight: 800; }
.h-xl em, .accent-i { font-style: normal; color: var(--gold-lt); }
.h-lg { font-size: clamp(30px, 4.4vw, 60px); }
/* Title Case for section titles (leaves FAQ questions + eyebrows untouched) */
.h-xl, .h-lg, .svc h3, .step h3, .band h2, .areas h2, .guarantee h3, .cta h2, .quote h3 { text-transform: capitalize; }
.lead { color: var(--muted); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; }
.gold { color: var(--gold-lt); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 15.5px;
  padding: 15px 28px; border-radius: 6px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: #14110a; }
.btn--gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }
.arrowlink { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--gold-lt); }
.arrowlink svg { width: 18px; height: 18px; transition: transform .25s ease; }
.arrowlink:hover svg { transform: translateX(5px); }

/* ---------- icons ---------- */
.icon { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.badge { display: block; }

/* ============================================================
   TOP BAR + NAV
   ============================================================ */
.topbar { background: #08090b; border-bottom: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.topbar__in { max-width: var(--maxw); margin: 0 auto; padding: 8px var(--gutter); display: flex; align-items: center; gap: 20px; }
.topbar a { color: var(--ink); font-weight: 500; }
.topbar a:hover { color: var(--gold-lt); }
.topbar__sp { margin-left: auto; }
.topbar__live { display: inline-flex; align-items: center; gap: 8px; }
.topbar__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px 1px var(--gold); }

.nav { position: sticky; top: 0; z-index: 70; background: rgba(11,12,14,.72); backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: background .3s, border-color .3s; }
.nav.is-scrolled { background: rgba(9,10,12,.94); border-bottom-color: var(--line); }
.nav__in { max-width: var(--maxw); margin: 0 auto; padding: 12px var(--gutter); display: flex; align-items: center; gap: 30px; }
.brand__logo { height: 46px; width: auto; display: block; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { font-family: var(--display); font-size: 14px; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 20px; }
.nav__phone { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.nav__phone:hover { color: var(--gold-lt); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: none; flex-direction: column; padding-inline: var(--gutter); overflow: hidden; max-height: 0; transition: max-height .35s ease; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.nav__mobile.is-open { max-height: 560px; padding-bottom: 22px; }
.nav__mobile a { padding: 14px 2px; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 15.5px; }
.nav__mobile a.btn { border: 0; color: #14110a; margin-top: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; isolation: isolate; min-height: min(92vh, 900px); display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
/* Real-photo scene switcher: crossfade stacked photos of the same home */
.hero__scene { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity .6s ease; }
.hero__scene.is-active { opacity: 1; }
/* scrim sits BELOW the lights so its darkening deepens the glow backdrop instead of muting it */
.roof-lights { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3; pointer-events: none; mix-blend-mode: screen; }
.roof-lights .bulbs__halos circle { fill: #ffd9a0; fill-opacity: .85; transition: fill .35s ease; }
.roof-lights .bulbs__cores circle { fill: url(#coreGrad); }
.roof-spill { fill: none; stroke: #ffd9a0; stroke-opacity: .5; stroke-width: 20; stroke-linecap: round; stroke-linejoin: round; transition: stroke .35s ease; }
.bulbs__cores circle { animation: twinkle 4.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes twinkle { 0%, 100% { opacity: 1; } 50% { opacity: .82; } }
.hero__scrim { position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(9,10,12,.72) 0%, rgba(9,10,12,0) 26%, rgba(9,10,12,.15) 55%, rgba(9,10,12,.92) 100%),
    linear-gradient(90deg, rgba(9,10,12,.85) 0%, rgba(9,10,12,.35) 45%, rgba(9,10,12,0) 80%);
}
.hero__in { position: relative; z-index: 4; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 40px var(--gutter) clamp(44px, 6vw, 76px); }
.hero__inner-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: 40px; }
.hero__copy { max-width: 760px; }
.hero h1 { margin: 20px 0 22px; color: #fff; }
.hero__sub { max-width: 44ch; color: rgba(244,241,234,.82); font-size: clamp(17px,1.7vw,20px); }
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scenes { margin-top: 40px; }
.hero__scenes-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 13px; }
.scene-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.scene-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 600; font-size: 13px; padding: 8px 15px 8px 9px; border-radius: 999px; cursor: pointer; background: rgba(255,255,255,.06); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.16); transition: all .2s ease; }
.scene-btn__bar { width: 20px; height: 11px; border-radius: 3px; flex: none; }
.scene-btn__bar[data-bar="warm"]      { background: linear-gradient(90deg,#ffe0b0,#ffb765); }
.scene-btn__bar[data-bar="christmas"] { background: repeating-linear-gradient(90deg,#ff3b3b 0 50%,#22c55e 50% 100%); }
.scene-btn__bar[data-bar="july4"]     { background: repeating-linear-gradient(90deg,#ff3b3b 0 33%,#fff 33% 66%,#3b82f6 66% 100%); }
.scene-btn__bar[data-bar="halloween"] { background: repeating-linear-gradient(90deg,#c026d3 0 50%,#7c3aed 50% 100%); }
.scene-btn__bar[data-bar="rainbow"]   { background: linear-gradient(90deg,#ff3b3b,#f59e0b,#22c55e,#38bdf8,#7c3aed); }
.scene-btn__bar[data-bar="pink"]      { background: linear-gradient(90deg,#ff8ad4,#ec4899); }
.scene-btn:hover { color: #fff; border-color: rgba(255,255,255,.34); }
.scene-btn.is-active { background: var(--gold); color: #14110a; border-color: var(--gold); }

/* hero trust row */
.hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 30px; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line); }
.htrust { display: flex; align-items: center; gap: 11px; }
.htrust__num { font-family: var(--display); font-size: 21px; font-weight: 600; color: #fff; }
.htrust__lbl { font-size: 13px; color: var(--muted); line-height: 1.25; max-width: 15ch; }
.htrust__stars { color: var(--gold); letter-spacing: 1px; font-size: 14px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.strip { border-bottom: 1px solid var(--line); background: var(--bg-2); }
.strip__in { max-width: var(--maxw); margin: 0 auto; padding: 22px var(--gutter); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 34px; }
.strip__item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.strip__item strong { color: var(--ink); font-weight: 600; }
.strip__item .icon { width: 18px; height: 18px; color: var(--gold); }
.strip__stars { color: var(--gold); letter-spacing: 1px; }

/* ============================================================
   SECTION scaffolding
   ============================================================ */
.section { padding-block: var(--sp); }
.section--tight { padding-block: clamp(60px, 8vw, 110px); }
.section__head { max-width: 780px; margin-bottom: clamp(44px, 6vw, 76px); }
.section__head .eyebrow { margin-bottom: 22px; }
.section__head p { margin-top: 22px; }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* ============================================================
   STATEMENT (authority intro)
   ============================================================ */
.statement { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px,5vw,80px); align-items: end; }
.statement h2 { font-size: clamp(28px, 3.8vw, 54px); }
.statement__aside { color: var(--muted); font-size: 17px; }
.statement__aside p + p { margin-top: 16px; }

/* ============================================================
   SERVICES — editorial alternating rows
   ============================================================ */
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 74px); align-items: center; }
.svc + .svc { margin-top: clamp(64px, 9vw, 128px); }
.svc__media { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 4px; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.svc:hover .svc__media img { transform: scale(1.04); }
.svc__index { font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; }
.svc h3 { font-size: clamp(26px, 3.2vw, 42px); margin: 14px 0 16px; }
.svc p { color: var(--muted); max-width: 46ch; }
.svc__list { list-style: none; margin: 22px 0 26px; display: grid; gap: 11px; }
.svc__list li { position: relative; padding-left: 26px; font-size: 15px; color: var(--muted); }
.svc__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 13px; height: 7px; border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(-45deg); }
.svc--rev .svc__media { order: 2; }
.svc--text { grid-template-columns: 1fr; }
.svc--text .svc__body { max-width: 760px; }

/* ============================================================
   CINEMATIC BAND (full-bleed statement over photo)
   ============================================================ */
.band { position: relative; min-height: min(70vh, 640px); display: flex; align-items: center; overflow: hidden; }
.band--solid { min-height: auto; background: radial-gradient(120% 140% at 18% 15%, #15181e, var(--bg) 68%); }
.band__media { position: absolute; inset: 0; z-index: 0; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(8,9,11,.9) 0%, rgba(8,9,11,.55) 50%, rgba(8,9,11,.2) 100%); }
.band__in { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 80px var(--gutter); width: 100%; }
.band__copy { max-width: 620px; }
.band h2 { font-size: clamp(30px, 4.6vw, 64px); color: #fff; }
.band p { margin: 20px 0 30px; color: rgba(244,241,234,.82); max-width: 44ch; }

/* ============================================================
   BEFORE / AFTER slider
   ============================================================ */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ba-cta { display: flex; justify-content: center; margin-top: clamp(40px, 6vw, 68px); }
@media (max-width: 820px) { .ba-grid { grid-template-columns: 1fr; } }
.ba { position: relative; isolation: isolate; aspect-ratio: 3/2; overflow: hidden; border-radius: 4px; user-select: none; touch-action: none; }
.ba__layer { position: absolute; inset: 0; }
.ba__layer img { width: 100%; height: 100%; object-fit: cover; }
.ba__night { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: rgba(255,255,255,.85); z-index: 4; transform: translateX(-1px); }
.ba__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; color: #14110a; box-shadow: 0 6px 20px rgba(0,0,0,.5); }
.ba__grip svg { width: 22px; height: 22px; }
.ba__range { position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.ba__tag { position: absolute; bottom: 16px; z-index: 3; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,.45); padding: 6px 12px; border-radius: 4px; backdrop-filter: blur(4px); }
.ba__tag--l { left: 16px; }
.ba__tag--r { right: 16px; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.cmp { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.cmp__row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; }
.cmp__row + .cmp__row { border-top: 1px solid var(--line); }
.cmp__row--head { background: var(--bg-2); }
.cmp__cell { padding: 14px 22px; font-size: 15px; min-height: 66px; display: flex; align-items: center; }
.cmp__cell--feat { color: var(--ink); font-weight: 500; }
.cmp__cell--pro { color: var(--ink); border-left: 1px solid var(--line); background: rgba(198,162,78,.05); }
.cmp__cell--diy { color: var(--muted); border-left: 1px solid var(--line); }
.cmp__row--head .cmp__cell { font-family: var(--display); font-weight: 600; font-size: 16px; letter-spacing: -.01em; }
.cmp__row--head .cmp__cell--pro { color: var(--gold-lt); }
.cmp__ck { display: inline-flex; align-items: center; gap: 10px; }
.cmp__ck .icon { width: 17px; height: 17px; flex: none; }
.cmp__ck--yes .icon { color: var(--gold); }
.cmp__ck--no .icon { color: var(--muted-2); }

/* ============================================================
   PROCESS
   ============================================================ */
.steps { display: grid; max-width: 820px; border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 64px 1fr; column-gap: clamp(16px,2.5vw,34px); align-items: center; padding: clamp(20px,2.8vw,30px) 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }
.step__n { grid-column: 1; font-family: var(--display); font-size: clamp(26px,3.4vw,38px); font-weight: 800; color: var(--gold); line-height: 1; }
.step h3 { grid-column: 2; font-size: clamp(19px,2.2vw,24px); margin: 0; }
.step p { grid-column: 2; grid-row: 2; color: var(--muted); font-size: 15px; max-width: 58ch; margin: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.shot { position: relative; overflow: hidden; border-radius: 4px; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.shot::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }
.shot:hover img { transform: scale(1.05); }
.shot figcaption { position: absolute; left: 14px; bottom: 12px; z-index: 1; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.shot--a { grid-column: span 7; aspect-ratio: 16/10; }
.shot--b { grid-column: span 5; aspect-ratio: 16/10; }
.shot--c, .shot--d, .shot--e { grid-column: span 4; aspect-ratio: 4/3; }
.shot--f { grid-column: span 7; aspect-ratio: 16/9; }
.shot--g { grid-column: span 5; aspect-ratio: 16/9; }

/* ============================================================
   REVIEWS
   ============================================================ */
.rev-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(40px,5vw,64px); }
.rev-score { display: flex; align-items: center; gap: 16px; }
.rev-score__big { font-family: var(--display); font-size: 52px; font-weight: 600; line-height: 1; }
.rev-score__stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.rev-score__meta { font-size: 13px; color: var(--muted); }
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review { border: 1px solid var(--line); border-radius: 6px; padding: 28px 26px; display: flex; flex-direction: column; gap: 16px; background: var(--bg-2); }
.review__stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }
.review blockquote { font-size: 15.5px; line-height: 1.6; color: var(--ink); }
.review__by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__av { width: 40px; height: 40px; border-radius: 50%; background: rgba(198,162,78,.14); color: var(--gold-lt); display: grid; place-items: center; font-family: var(--display); font-weight: 600; }
.review__by strong { display: block; font-size: 14.5px; }
.review__by span { font-size: 12.5px; color: var(--muted); }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px,5vw,72px); align-items: start; }
.areas h2 { font-size: clamp(28px,3.8vw,52px); }
.areas__lead { color: var(--muted); margin: 20px 0 26px; }
.areas__cols { columns: 3; column-gap: 26px; }
.areas__cols li { list-style: none; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--muted); break-inside: avoid; }
.areas__cols li b { color: var(--ink); font-weight: 500; }
.areas__note { margin-top: 22px; font-size: 13.5px; color: var(--muted-2); }

/* ============================================================
   GUARANTEE band
   ============================================================ */
.guarantee { border-block: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.guarantee__in { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(24px,4vw,54px); align-items: center; }
.guarantee__seal { width: 96px; height: 96px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-lt); display: grid; place-items: center; text-align: center; font-family: var(--display); font-weight: 600; font-size: 12px; line-height: 1.2; letter-spacing: .04em; }
.guarantee__badge { width: 140px; height: auto; flex: none; filter: drop-shadow(0 8px 22px rgba(0,0,0,.45)); }

/* ===== See it in action (video) ===== */
.section__head.center { margin-inline: auto; text-align: center; }
.videobox { position: relative; overflow: hidden; border-radius: 6px; border: 1px solid var(--line); background: #000; }
.videobox video { display: block; width: 100%; height: 100%; }
.videobox figcaption { position: absolute; left: 14px; bottom: 12px; z-index: 2; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: #fff; text-shadow: 0 1px 10px rgba(0,0,0,.75); pointer-events: none; }
.videobox--feature { max-width: 960px; margin: 0 auto 20px; aspect-ratio: 16/9; }
.videobox--feature video { height: 100%; object-fit: contain; background: #000; }
.videos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 960px; margin: 0 auto; }
.videos .videobox { aspect-ratio: 16/10; }
.videos .videobox video { object-fit: cover; }
@media (max-width: 640px) { .videos { grid-template-columns: 1fr; } }
.guarantee h3 { font-size: clamp(22px,2.6vw,34px); }
.guarantee p { color: var(--muted); margin-top: 10px; max-width: 60ch; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { cursor: pointer; list-style: none; padding: 26px 0; font-family: var(--display); font-weight: 600; font-size: clamp(18px,2vw,22px); display: flex; justify-content: space-between; align-items: center; gap: 20px; letter-spacing: -.01em; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--sans); font-weight: 300; font-size: 26px; color: var(--gold); transition: transform .25s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 0 26px; color: var(--muted); max-width: 74ch; }
.faq__item a { color: var(--gold-lt); text-decoration: underline; }

/* ============================================================
   FINAL CTA + QUOTE
   ============================================================ */
.cta { position: relative; overflow: hidden; }
.cta__media { position: absolute; inset: 0; z-index: 0; }
.cta__media img { width: 100%; height: 100%; object-fit: cover; }
.cta__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,9,11,.86), rgba(8,9,11,.94)); }
.cta__in { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: var(--sp) var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.cta h2 { font-size: clamp(32px,4.4vw,60px); color: #fff; }
.cta__lead { margin: 22px 0 30px; color: rgba(244,241,234,.82); max-width: 40ch; }
.cta__points { list-style: none; display: grid; gap: 12px; }
.cta__points li { display: flex; align-items: center; gap: 12px; color: var(--ink); font-size: 15.5px; }
.cta__points .icon { width: 18px; height: 18px; color: var(--gold); flex: none; }

.quote { background: var(--panel); border: 1px solid var(--line); border-radius: 10px; padding: clamp(26px,3vw,38px); }
.quote h3 { font-size: 22px; margin-bottom: 6px; }
.quote__sub { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.quote form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--muted); }
.field input, .field select, .field textarea { font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--bg); border: 1px solid var(--line); border-radius: 6px; padding: 13px 14px; width: 100%; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,162,78,.16); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23A8A69D' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field select option { color: #111; }
.form-note { font-size: 13px; color: var(--muted); text-align: center; }
.form-note a { color: var(--gold-lt); }
.form-note.is-success { color: #7FCF9B; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); background: #08090b; padding-top: clamp(56px,7vw,88px); }
.footer__in { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) 48px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__logo { height: 58px; width: auto; margin-bottom: 18px; }
.footer__brand p { color: var(--muted); font-size: 14px; max-width: 320px; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); color: var(--muted); transition: color .2s, background .2s, border-color .2s; }
.footer__social a:hover { color: #14110a; background: var(--gold); border-color: var(--gold); }
.footer__social svg { width: 20px; height: 20px; }
.footer__col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-2); margin-bottom: 16px; }
.footer__col a, .footer__col span { display: block; color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.footer__col a:hover { color: var(--gold-lt); }
.footer__bar { border-top: 1px solid var(--line); }
.footer__bar > div { max-width: var(--maxw); margin: 0 auto; padding: 20px var(--gutter); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted-2); }

/* ============================================================
   REVEAL
   ============================================================ */
/* gated behind .reveal-on so content is NEVER hidden without JS confirming support */
.reveal-on .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal-on .reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }
  .statement { grid-template-columns: 1fr; gap: 26px; }
  .svc { grid-template-columns: 1fr; gap: 24px; }
  .svc--rev .svc__media { order: 0; }
  .step { grid-template-columns: 52px 1fr; gap: 18px; }
  .reviews { grid-template-columns: 1fr; }
  .areas { grid-template-columns: 1fr; gap: 30px; }
  .cta__in { grid-template-columns: 1fr; }
  .guarantee__in { grid-template-columns: 1fr; gap: 22px; }
  .btn { white-space: normal; }
  .footer__in { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery { grid-template-columns: repeat(6,1fr); }
  .shot--a,.shot--f { grid-column: span 6; }
  .shot--b,.shot--g { grid-column: span 6; }
  .shot--c,.shot--d,.shot--e { grid-column: span 3; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .topbar__live { display: none; }
  .topbar__in { justify-content: flex-end; gap: 16px; }
  .cmp__row { grid-template-columns: 1.3fr .85fr .85fr; }
  .cmp__cell { padding: 13px 12px; font-size: 12.5px; }
  .cmp__ck .icon { width: 15px; height: 15px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; }
  .field-row { grid-template-columns: 1fr; }
  .areas__cols { columns: 2; }
  .footer__in { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .shot--a,.shot--b,.shot--c,.shot--d,.shot--e,.shot--f,.shot--g { grid-column: span 1; aspect-ratio: 4/3; }
  .rev-head { flex-direction: column; align-items: flex-start; }
  .hero__trust { gap: 14px 22px; }
}
@media (max-width: 400px) { .footer__in { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  * { animation: none !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
