/* ============================================================
   Pro Painting & More: v2 styles. Bold, trust-first painter brand.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.loading { overflow: hidden; height: 100vh; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.02; letter-spacing: -0.022em; color: var(--ink); }
h1 { font-size: var(--type-display); font-weight: 900; }
h2 { font-size: var(--type-h2); }
h3 { font-size: var(--type-h3); font-weight: 700; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(60px, 9vw, 138px) 0; }
.on-dark { color: var(--on-dark); }
h2.on-dark { color: var(--on-dark); }
.accent-word { color: var(--cta-bright); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: var(--type-sm);
  padding: 13px 22px; border-radius: var(--radius); white-space: nowrap;
  transition: transform .2s var(--ease-out), background .2s, box-shadow .25s, color .2s;
  line-height: 1;
}
.btn-lg { padding: 17px 30px; font-size: var(--type-body); }
.btn-cta { background: var(--cta); color: var(--on-cta); box-shadow: 0 10px 26px oklch(0.58 0.12 240 / .34); }
.btn-cta:hover { background: var(--cta-deep); transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 34px oklch(0.58 0.12 240 / .42); }
.btn-ghost { background: oklch(1 0 0 / .08); color: var(--on-dark); border: 1.5px solid oklch(1 0 0 / .55); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: oklch(1 0 0 / .16); border-color: var(--on-dark); transform: translateY(-3px); }
.btn-line { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-line:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

.phone-ico { font-size: .95em; }

/* ============================================================
   Loader
   ============================================================ */
#loader { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; background: var(--navy); transition: opacity .6s ease, visibility .6s; }
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: grid; place-items: center; }
#painter { width: min(78vw, 420px); height: auto; }

/* ============================================================
   Sticky topbar (trust banner + nav freeze together)
   ============================================================ */
.topbar { position: sticky; top: 0; z-index: 200; }
.trustbar { background: var(--navy); color: var(--on-dark); font-size: var(--type-xs); }
.trustbar-in { max-width: var(--maxw); margin: 0 auto; padding: 7px var(--gutter); display: flex; gap: 9px; align-items: center; justify-content: center; flex-wrap: wrap; }
.tb-stars { color: var(--gold); letter-spacing: 1px; }
.trustbar strong { color: #fff; }
.tb-dot { opacity: .4; }

.nav { background: oklch(1 0 0 / .94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); transition: box-shadow .25s; }
.nav.is-scrolled { box-shadow: var(--shadow); }
.nav-in { max-width: var(--maxw); margin: 0 auto; padding: 11px var(--gutter); display: flex; align-items: center; gap: var(--space-lg); }
.brand img { height: 38px; width: auto; }
.nav-links { display: flex; gap: clamp(14px, 1.6vw, 30px); margin-left: auto; }
.nav-links a { font-family: var(--font-display); font-weight: 600; font-size: var(--type-sm); color: var(--ink-2); position: relative; padding: 4px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--cta); transition: width .25s var(--ease-out); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: var(--space-md); margin-left: var(--space-lg); }
.phone { font-family: var(--font-display); font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; font-size: var(--type-sm); }
.phone:hover { color: var(--blue); }

.burger { display: none; width: 44px; height: 44px; margin-left: auto; flex-direction: column; justify-content: center; gap: 5px; padding: 0 10px; }
.burger span { display: block; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .2s; }
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 199; background: var(--navy); display: none; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-lg); padding: var(--space-2xl); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--on-dark); font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; }
.mobile-menu .mm-cta { font-size: var(--type-body); margin-top: var(--space-md); }
.mobile-menu .mm-phone { color: var(--cta-bright); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; min-height: clamp(580px, 90vh, 900px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 72%; transform-origin: 50% 72%; animation: heroPan 34s ease-in-out infinite alternate; will-change: transform; }
@keyframes heroPan { from { transform: scale(1.2) translateX(-5.5%); } to { transform: scale(1.2) translateX(5.5%); } }
@media (prefers-reduced-motion: reduce) { .hero-media img { animation: none; transform: scale(1.12); } }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, oklch(0.2 0.04 250 / .58) 0%, oklch(0.2 0.04 250 / .15) 38%, oklch(0.16 0.04 250 / .85) 100%); }
.hero-body { position: relative; z-index: 1; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: clamp(44px, 7vw, 104px) var(--gutter); }
.hero h1 { color: #fff; max-width: 16ch; margin-bottom: var(--space-lg); text-shadow: 0 2px 34px oklch(0.16 0.04 250 / .4); }
.brush-word { position: relative; display: inline-block; }
.brush { position: absolute; left: -1%; bottom: -0.26em; width: 102%; height: .34em; overflow: visible; }
.brush path { fill: none; stroke: var(--cta-bright); stroke-width: 10; stroke-linecap: round; stroke-dasharray: 360; stroke-dashoffset: 360; }
.brush-word.drawn .brush path { animation: brushDraw 0.9s var(--ease-out) forwards; }
@keyframes brushDraw { to { stroke-dashoffset: 0; } }
.hero-sub { color: var(--on-dark); font-size: var(--type-lead); max-width: 44ch; margin-bottom: var(--space-xl); line-height: 1.34; font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-bottom: var(--space-xl); }
.hero-proof { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: var(--space-lg); color: var(--on-dark); font-size: var(--type-sm); font-weight: 600; }
.hero-proof li { display: flex; align-items: center; gap: 8px; }
.hp-stars { color: var(--gold); letter-spacing: 1px; }
.hp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cta-bright); display: inline-block; }

/* ============================================================
   Marquee
   ============================================================ */
.marquee { background: var(--navy); color: var(--on-dark); overflow: hidden; white-space: nowrap; padding: 14px 0; }
.marquee-track { display: inline-flex; align-items: center; animation: marquee 42s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-weight: 600; font-size: clamp(0.8rem, 0.68rem + 0.45vw, 0.98rem); text-transform: uppercase; letter-spacing: .16em; padding: 0 1.5em; color: var(--on-dark); }
.marquee-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--blue-bright); display: inline-block; flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Section heading wipe reveal
   ============================================================ */
.wipe { clip-path: inset(0 100% 0 0); transition: clip-path 1s var(--ease-out); }
.wipe.in { clip-path: inset(0 0 0 0); }

/* ============================================================
   Services
   ============================================================ */
.services h2 { margin-bottom: clamp(32px, 5vw, 58px); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.svc-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s; }
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-img { aspect-ratio: 4/3; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease-out); }
.svc-card:hover .svc-img img { transform: scale(1.07); }
.svc-meta { padding: var(--space-lg); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.svc-meta h3 { font-size: 1.16rem; }
.svc-meta p { font-size: var(--type-sm); color: var(--muted); flex: 1; }
.svc-go { font-family: var(--font-display); font-weight: 700; font-size: var(--type-sm); color: var(--blue); margin-top: 4px; display: inline-flex; align-items: center; gap: 6px; }
.svc-go i { font-style: normal; transition: transform .25s var(--ease-out); }
.svc-card:hover .svc-go i { transform: translateX(6px); }

/* ============================================================
   Promise
   ============================================================ */
.promise { background: var(--navy); position: relative; }
.promise-top { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 76px); align-items: center; margin-bottom: clamp(36px, 5vw, 64px); }
.promise-copy h2 { margin-bottom: var(--space-md); }
.promise-lead { color: var(--on-dark-muted); font-size: var(--type-body); max-width: 52ch; }
.promise-list { list-style: none; padding: 0; display: grid; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.promise-list li { position: relative; padding-left: 36px; color: var(--on-dark); font-weight: 500; }
.promise-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: var(--cta); color: var(--on-cta); font-size: .8rem; font-weight: 800; }
.badges-wrap { overflow: hidden; }
.promise-badges { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-md); }
.promise-badges li { background: oklch(1 0 0 / .06); border: 1px solid oklch(1 0 0 / .1); border-radius: var(--radius); padding: var(--space-lg); display: flex; align-items: center; justify-content: center; transition: transform .25s var(--ease-out), background .25s; }
.promise-badges li:hover { transform: translateY(-4px); background: oklch(1 0 0 / .1); }
.promise-badges img { width: 100%; max-width: 96px; aspect-ratio: 1; object-fit: contain; }
/* carousel dots */
.carousel-dots { display: none; justify-content: center; gap: 8px; margin-top: var(--space-md); }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); padding: 0; transition: background .2s, transform .2s; }
.carousel-dots button.on { background: var(--blue); transform: scale(1.3); }
.promise .carousel-dots button { background: oklch(1 0 0 / .25); }
.promise .carousel-dots button.on { background: var(--blue-bright); }

/* ============================================================
   Stats
   ============================================================ */
.stats { background: var(--blue); padding: clamp(42px, 6vw, 76px) 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.stat { text-align: center; color: #fff; }
.stat-num { display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(2.6rem, 1.6rem + 3.4vw, 4.6rem); line-height: 1; letter-spacing: -0.03em; }
.stat-label { display: block; margin-top: 8px; font-size: var(--type-sm); color: oklch(1 0 0 / .85); font-weight: 600; }

/* ============================================================
   Work gallery
   ============================================================ */
.work-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: var(--space-md); margin-bottom: clamp(28px, 4vw, 48px); }
.work-note { color: var(--muted); font-size: var(--type-sm); font-weight: 600; }
.gallery { display: flex; gap: var(--space-md); overflow-x: auto; padding: 8px var(--gutter) var(--space-md); scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; cursor: grab; }
.gallery::-webkit-scrollbar { display: none; }
.gallery.is-drag { cursor: grabbing; }
.gallery figure { flex: 0 0 clamp(280px, 38vw, 460px); aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; scroll-snap-align: start; }
.gallery img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; transition: transform .5s var(--ease-out); }
.tilt { transition: transform .4s var(--ease-out); }
.tilt:hover { transform: scale(1.02) rotate(-1deg); }
.tilt:hover img { transform: scale(1.06); }

/* ============================================================
   Reviews
   ============================================================ */
.reviews { background: var(--paper-2); }
.reviews-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-lg); margin-bottom: clamp(28px, 4vw, 48px); }
.rh-score { display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap; }
.rh-num { font-family: var(--font-display); font-weight: 900; font-size: clamp(3rem, 2rem + 3vw, 4.6rem); line-height: 1; color: var(--ink); }
.rh-stars { color: var(--gold); font-size: 1.5rem; letter-spacing: 2px; }
.rh-sub { color: var(--muted); font-weight: 600; }
.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.review-cards blockquote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-xl); display: flex; flex-direction: column; gap: var(--space-md); box-shadow: var(--shadow); transition: transform .25s var(--ease-out), box-shadow .25s; }
.review-cards blockquote:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.rc-stars { color: var(--gold); letter-spacing: 2px; }
.review-cards p { font-size: var(--type-body); color: var(--ink); line-height: 1.5; }
.review-cards cite { font-style: normal; font-weight: 700; font-family: var(--font-display); font-size: var(--type-sm); color: var(--muted); }

/* ============================================================
   Areas
   ============================================================ */
.areas-grid { display: grid; grid-template-columns: 0.95fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.areas-copy h2 { margin-bottom: var(--space-md); }
.accent-blue { color: var(--blue); }
.areas-note { color: var(--ink-2); font-size: var(--type-body); margin-bottom: var(--space-lg); max-width: 42ch; }
.areas-note strong { color: var(--ink); font-weight: 700; }
.areas-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xs) var(--space-sm); margin-bottom: var(--space-lg); }
.areas-list li { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 11px 16px; font-family: var(--font-display); font-weight: 700; font-size: var(--type-sm); color: var(--ink); transition: transform .2s var(--ease-out), border-color .2s, color .2s; }
.areas-list li:hover { transform: translateX(4px); border-color: var(--blue); color: var(--blue); }

/* interactive service-area map */
.areas-map { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 5 / 4.6; background: radial-gradient(ellipse at 48% 50%, #ffffff 0%, var(--paper-2) 68%, #E3E8EA 100%); box-shadow: var(--shadow-lg), inset 0 0 0 1px var(--line); }
.areas-map::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: repeating-linear-gradient(45deg, transparent 0 13px, oklch(0.4 0.03 244 / .02) 13px 14px), repeating-linear-gradient(-45deg, transparent 0 13px, oklch(0.4 0.03 244 / .02) 13px 14px); }
.areas-svg { position: relative; z-index: 2; width: 100%; height: 100%; display: block; transform-origin: 47.5% 48.8%; transform: scale(3.2); animation: mapZoomLoop 16s ease-in-out infinite; animation-play-state: paused; }
.areas-map.is-active .areas-svg { animation-play-state: running; }
@keyframes mapZoomLoop { 0%, 8% { transform: scale(3.2); } 42%, 80% { transform: scale(1); } 100% { transform: scale(3.2); } }
.areas-svg .town-label { fill: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.areas-svg .town-label.sm { font-family: var(--font-body); font-weight: 600; font-size: 12.5px; }
.areas-svg .road { stroke-dasharray: 5 7; }
.areas-map.is-active .road { animation: roadFlow 1.3s linear infinite; }
@keyframes roadFlow { to { stroke-dashoffset: -24; } }
.areas-svg .town { cursor: pointer; }
.areas-svg .town .town-dot { transition: r .2s var(--ease-out); }
.areas-svg .town:hover .town-dot, .areas-svg .town:focus .town-dot { r: 9; }
.areas-svg .town:hover .town-label, .areas-svg .town:focus .town-label { fill: var(--blue); }
/* labels + dots fade in once after the zoom-out settles, then stay */
.areas-svg .town-label, .areas-svg .town-dot, .areas-svg .road-label { opacity: 0; }
.areas-map.is-active .town-label, .areas-map.is-active .town-dot, .areas-map.is-active .road-label { animation: mapLabelsLoop 16s ease-in-out infinite; }
@keyframes mapLabelsLoop { 0%, 22% { opacity: 0; } 40%, 82% { opacity: 1; } 96%, 100% { opacity: 0; } }
.areas-svg .hq-label { fill: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 16px; }
.areas-svg .hq-tag { fill: #fff; font-family: var(--font-display); font-weight: 800; font-size: 9px; letter-spacing: 1px; }
.areas-svg .hq-pulse { transform-origin: 475px 400px; animation: hqPulse 2.4s ease-out infinite; }
@keyframes hqPulse { 0% { transform: scale(1); opacity: .4; } 70%, 100% { transform: scale(2.6); opacity: 0; } }
.areas-badge { position: absolute; z-index: 3; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: oklch(1 0 0 / .82); backdrop-filter: blur(8px); border: 1px solid var(--line); font-family: var(--font-display); font-weight: 700; font-size: var(--type-xs); color: var(--ink); }
.ab-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px oklch(0.64 0.13 236 / .25); }
@media (prefers-reduced-motion: reduce) {
  .areas-svg { animation: none; transform: scale(1); }
  .areas-svg .town-label, .areas-svg .town-dot, .areas-svg .road-label { opacity: 1; }
  .areas-svg .road, .areas-svg .hq-pulse { animation: none; }
}

/* ============================================================
   Estimate
   ============================================================ */
.estimate { background: var(--blue-deep); }
.estimate-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.estimate-copy h2 { margin-bottom: var(--space-md); }
.estimate-lead { color: var(--on-dark); font-size: var(--type-body); margin-bottom: var(--space-lg); max-width: 42ch; }
.estimate-phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); color: #fff; }
.estimate-phone:hover { color: var(--cta-bright); }
.estimate-form { background: var(--paper); border-radius: var(--radius); padding: clamp(22px, 3vw, 36px); display: grid; gap: var(--space-md); box-shadow: var(--shadow-lg); }
.estimate-form label { display: grid; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: var(--type-xs); text-transform: uppercase; letter-spacing: .06em; color: var(--ink-2); }
.estimate-form input, .estimate-form select, .estimate-form textarea {
  font-family: var(--font-body); font-size: 16px; font-weight: 400;
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); color: var(--ink); width: 100%; text-transform: none; letter-spacing: 0;
  transition: border-color .15s, box-shadow .15s;
}
.estimate-form textarea { resize: vertical; }
.estimate-form input:focus, .estimate-form select:focus, .estimate-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px oklch(0.64 0.12 236 / .25); }
.ef-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.ef-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.ef-submit { width: 100%; margin-top: 4px; }
.ef-ok { color: oklch(0.5 0.13 150); font-weight: 600; font-size: var(--type-sm); }
.ef-err { color: oklch(0.55 0.18 25); font-weight: 600; font-size: var(--type-sm); }
.ef-fine { font-size: var(--type-2xs); color: var(--muted); text-align: center; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: var(--on-dark-muted); padding-top: clamp(48px, 7vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: var(--space-xl); padding-bottom: var(--space-xl); align-items: start; }
.foot-meta { display: flex; align-items: center; gap: 12px; }
.foot-icon { height: 20px; width: auto; opacity: .8; flex: none; }
.foot-meta span { line-height: 1.5; }
.foot-meta a { color: inherit; text-decoration: none; }
.foot-meta a:hover { color: var(--cta-bright); }
.foot-col h4 { color: #fff; font-size: var(--type-sm); text-transform: uppercase; letter-spacing: .1em; margin-bottom: var(--space-md); }
.foot-col a { display: block; font-size: var(--type-sm); padding: 5px 0; color: var(--on-dark-muted); transition: color .15s; }
.foot-col a:hover { color: var(--cta-bright); }
.foot-social { display: flex; gap: var(--space-sm); }
.foot-social .soc { width: 42px; height: 42px; padding: 0; display: grid; place-items: center; border-radius: 50%; background: oklch(1 0 0 / .08); border: 1px solid oklch(1 0 0 / .12); transition: background .2s, transform .2s var(--ease-out); }
.foot-social .soc svg { width: 19px; height: 19px; fill: var(--on-dark); }
.foot-social .soc:hover { background: var(--blue); transform: translateY(-3px); }
.foot-social .soc:hover svg { fill: #fff; }
.footer-base { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-sm); padding: var(--space-lg) var(--gutter); border-top: 1px solid oklch(1 0 0 / .1); font-size: var(--type-xs); }
.site-by { display: inline-flex; align-items: center; gap: 8px; color: oklch(1 0 0 / .5); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; opacity: .85; transition: color .2s, opacity .2s; }
.site-by:hover { color: #fff; opacity: 1; }
.site-by img { height: 15px; width: auto; display: inline-block; }

/* ============================================================
   Sticky mobile call bar
   ============================================================ */
.callbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 180; padding: 10px; gap: 10px; background: oklch(1 0 0 / .96); backdrop-filter: blur(10px); box-shadow: 0 -2px 16px oklch(0.2 0.04 250 / .12); transform: translateY(115%); transition: transform .4s var(--ease-out); }
.callbar.show { transform: translateY(0); }
.callbar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-display); font-weight: 800; padding: 14px; border-radius: var(--radius); font-size: var(--type-body); }
.cb-call { background: #fff; color: var(--blue); border: 1.5px solid var(--blue); }
.cb-quote { background: var(--blue); color: #fff; }

/* ============================================================
   Reveal animations
   ============================================================ */
[data-reveal], [data-hero] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--d, 0ms); }
[data-reveal].in, [data-hero].in { opacity: 1; transform: none; }
.wipe[data-reveal] { transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .review-cards { grid-template-columns: 1fr; }
  .promise-top { grid-template-columns: 1fr; gap: var(--space-lg); }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .areas-grid, .estimate-grid { grid-template-columns: 1fr; }
  .areas-map { max-width: 540px; width: 100%; margin: 0 auto; aspect-ratio: 1 / 1.02; }
  /* enlarge map labels (SVG units) so towns read on small screens */
  .areas-svg .town-label { font-size: 24px; }
  .areas-svg .town-label.sm { font-size: 21px; }
  .areas-svg .hq-label { font-size: 27px; }
  .areas-svg .hq-tag { font-size: 14px; }
  .areas-svg .road-label text { font-size: 18px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl) var(--space-md); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl) var(--space-lg); }
  .foot-connect { grid-column: 1 / -1; }
  .footer { padding-bottom: 84px; }
  .callbar { display: flex; }
}
/* mobile carousels: one item at a time, auto-rotating */
@media (max-width: 600px) {
  [data-carousel] { display: block !important; }
  [data-carousel] > * { display: none !important; }
  [data-carousel] > *.cur { display: flex !important; animation: cFade .45s var(--ease-out); }
  .carousel-dots { display: flex; }
}
@keyframes cFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (max-width: 540px) {
  .svc-grid { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr 1fr; }
  .ef-2 { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; }
  .trustbar-in { font-size: 11px; gap: 6px; }
  /* tighter mobile footer */
  .footer { padding-top: 44px; padding-bottom: 84px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px 16px; padding-bottom: var(--space-xl); }
  .foot-brand, .foot-connect { grid-column: 1 / -1; }
  .foot-brand .foot-sil { height: 96px; }
  .foot-col h4 { margin-bottom: 10px; }
  .foot-col a { padding: 4px 0; }
  .footer-base { flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: flex-end; gap: 10px; padding: var(--space-md) var(--gutter); }
  .foot-meta .foot-icon { display: none; }
  .foot-addr { font-size: 11.5px; line-height: 1.65; }
  .footer-base .site-by { flex: none; align-self: flex-end; }
}

/* Hero on mobile: landscape photo in a tall viewport shows too much sky,
   so anchor low and keep it zoomed enough to crop the sky. */
@media (max-width: 700px) {
  .hero-media img { transform-origin: 50% 90%; animation: heroPanMobile 30s ease-in-out infinite alternate; }
  @keyframes heroPanMobile { from { transform: scale(1.42) translateX(-6%); } to { transform: scale(1.42) translateX(6%); } }
}
@media (max-width: 700px) and (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; transform: scale(1.42); }
}
