/* ============================================================
   COMPLETE POWERWASHING & RESTORATION
   Brand palette pulled from the logo: water navy → teal → spray cyan
   Headings: Archivo (heavy)  ·  Body: Barlow
   ============================================================ */

:root {
  /* Brand blues */
  --ink:        #07223d;   /* deepest navy text */
  --navy:       #0c2f54;   /* brand navy */
  --navy-2:     #123f70;
  --royal:      #1c5e9c;   /* royal blue */
  --teal:       #1690a8;   /* logo teal */
  --teal-2:     #18a3bd;
  --cyan:       #36bbe0;   /* bright spray */
  --cyan-lite:  #7fd6ef;
  --spray:      #c4ecf8;   /* pale water */
  --foam:       #eef9fd;   /* near-white wash */
  --paper:      #f3fafc;
  --white:      #ffffff;

  /* Warm pop for primary CTAs (orange on blue = eye-popping + high-converting) */
  --pop:        #ff6a2b;
  --pop-2:      #ff8a3d;
  --pop-deep:   #e4521a;

  /* Functional */
  --line:       rgba(8, 45, 80, 0.12);
  --shadow-sm:  0 2px 8px rgba(7, 34, 61, 0.08);
  --shadow-md:  0 14px 36px -12px rgba(7, 34, 61, 0.28);
  --shadow-lg:  0 36px 80px -24px rgba(7, 34, 61, 0.45);
  --shadow-pop: 0 14px 30px -8px rgba(255, 90, 43, 0.5);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 26px;
  --r-xl: 36px;

  --maxw: 1240px;

  --ff-head: "Archivo", system-ui, sans-serif;
  --ff-body: "Barlow", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 800;
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.eyebrow {
  font-family: var(--ff-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
}
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--cyan-lite); }

.section { padding: 104px 0; position: relative; }
.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section h2 {
  font-size: clamp(34px, 5vw, 58px);
  margin: 16px 0 14px;
  color: var(--navy);
}
.section h2 .accent { color: var(--teal); }
.section-head p { font-size: 19px; color: #45607a; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-pop {
  background: linear-gradient(135deg, var(--pop-2), var(--pop));
  color: #fff;
  box-shadow: var(--shadow-pop);
}
.btn-pop:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -8px rgba(255,90,43,.62); }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: #fff; color: var(--navy); transform: translateY(-3px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--royal); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 19px 34px; font-size: 18px; }

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.topbar {
  background: var(--ink);
  color: #cfe6f3;
  font-size: 14px;
  font-weight: 500;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; }
.topbar .tb-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar .tb-item svg { width: 15px; height: 15px; color: var(--cyan); }
.topbar a:hover { color: #fff; }
.topbar .tb-right { display: inline-flex; align-items: center; gap: 18px; }
.tb-phone { color: #fff; font-weight: 700; font-family: var(--ff-head); letter-spacing: .02em; }
@media (max-width: 980px){ .topbar .tb-left .tb-hide { display: none; } }
@media (max-width: 600px){ .topbar { font-size: 13px; } .topbar .tb-right .tb-item:not(.tb-phone) { display: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.nav.scrolled { box-shadow: 0 8px 30px -16px rgba(7,34,61,.35); background: rgba(255,255,255,.95); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 14px; position: relative; z-index: 3; }
.brand-badge { height: 116px; width: auto; display: block; margin: 6px 0 -42px; filter: drop-shadow(0 12px 22px rgba(7,34,61,.26)); transition: transform .28s cubic-bezier(.34,1.56,.64,1); }
.brand:hover .brand-badge { transform: scale(1.04) rotate(-2deg); }
.brand-text { font-family: var(--ff-head); font-weight: 800; color: var(--navy); font-size: 23px; line-height: .92; letter-spacing: -.01em; }
.brand-text small { display: block; font-size: 10px; letter-spacing: .15em; color: var(--teal); font-weight: 700; margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-weight: 600; font-size: 16px; color: var(--navy); position: relative; padding: 4px 0;
}
.nav-links a::after {
  content:""; position:absolute; left:0; bottom:-3px; height:2px; width:0;
  background: linear-gradient(90deg, var(--cyan), var(--teal)); transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 9px; font-family: var(--ff-head); font-weight: 800; color: var(--navy); font-size: 18px; }
.nav-phone svg { width: 20px; height: 20px; color: var(--teal); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 3px; margin: 5px 0; transition: .25s; }

@media (max-width: 1080px){ .nav-links, .nav-phone { display: none; } .nav-toggle { display: block; } }
@media (max-width: 600px){ .brand-text { font-size: 19px; } .brand-badge { height: 86px; margin-bottom: -30px; } }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); z-index: 80;
  background: var(--navy); color: #fff; transform: translateX(100%); transition: transform .32s cubic-bezier(.5,0,.2,1);
  padding: 26px; display: flex; flex-direction: column; gap: 6px; box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer a { padding: 15px 8px; font-family: var(--ff-head); font-weight: 700; font-size: 20px; border-bottom: 1px solid rgba(255,255,255,.12); }
.drawer .btn { margin-top: 18px; justify-content: center; }
.drawer-close { align-self: flex-end; background: none; border: 0; color: #fff; font-size: 30px; cursor: pointer; line-height: 1; }
.scrim { position: fixed; inset: 0; background: rgba(7,34,61,.55); z-index: 70; opacity: 0; pointer-events: none; transition: opacity .3s; }
.scrim.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 640px at 82% -10%, rgba(54,187,224,.22), transparent 60%),
    radial-gradient(820px 560px at 0% 22%, rgba(28,94,156,.12), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #eef7fb 58%, #e1eef7 100%);
  color: var(--ink);
  overflow: hidden;
  padding: 70px 0 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.04fr; gap: 36px; align-items: center;
  position: relative; z-index: 3; padding-bottom: 130px;
}
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(12,47,84,.05); border: 1px solid rgba(12,47,84,.12);
  padding: 8px 15px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--navy);
}
.chip svg { width: 15px; height: 15px; color: var(--teal); }
.hero h1 {
  font-size: clamp(44px, 6.4vw, 88px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: .96;
  color: var(--navy);
}
.hero h1 .grad {
  background: linear-gradient(110deg, var(--teal), var(--cyan) 55%, var(--royal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lede { font-size: 21px; color: #45607a; max-width: 560px; margin: 22px 0 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust .ht { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-trust .ht b { font-family: var(--ff-head); font-size: 52px; font-weight: 800; color: var(--navy); line-height: 1; }
.hero-trust .ht span { font-size: 13.5px; color: #5f7d95; letter-spacing: .04em; margin-top: 8px; text-transform: uppercase; font-weight: 600; }

/* hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 460px; }
.hero-logo-ring { position: relative; width: min(740px, 118%); aspect-ratio: 1; display: grid; place-items: center; }
.hero-logo { position: relative; z-index: 3; width: 100%; display: block; animation: floaty 6s ease-in-out infinite; filter: drop-shadow(0 24px 38px rgba(7,34,61,.26)); }
.water-fx { position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; }
.water-fx .ripple { position: absolute; width: 58%; aspect-ratio: 1; border-radius: 50%; border: 2px solid rgba(54,187,224,.42); animation: ripple 4.2s ease-out infinite; }
.water-fx .ripple:nth-child(2){ animation-delay: 1.4s; border-color: rgba(28,94,156,.34); }
.water-fx .ripple:nth-child(3){ animation-delay: 2.8s; border-color: rgba(22,144,168,.3); }
@keyframes ripple { 0%{ transform: scale(.42); opacity: .6 } 80%{ opacity: .06 } 100%{ transform: scale(1.55); opacity: 0 } }
.spin-ring { position: absolute; inset: -5%; border-radius: 50%; border: 2px dashed rgba(28,94,156,.22); animation: spin 38s linear infinite; }
.spin-ring.r2 { inset: -15%; border-color: rgba(54,187,224,.28); animation-duration: 26s; animation-direction: reverse; }

@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-16px) } }
@keyframes pulseGlow { 0%,100%{ opacity: .65; transform: scale(1) } 50%{ opacity: 1; transform: scale(1.06) } }
@keyframes spin { to { transform: rotate(360deg) } }

/* floating droplets */
.droplet { position: absolute; border-radius: 50% 50% 50% 0; background: linear-gradient(160deg, var(--cyan), var(--royal)); transform: rotate(45deg); opacity: .5; filter: drop-shadow(0 4px 8px rgba(28,94,156,.25)); animation: rise linear infinite; z-index: 1; }
@keyframes rise {
  0% { transform: translateY(40px) rotate(45deg) scale(.7); opacity: 0; }
  15% { opacity: .55; }
  85% { opacity: .4; }
  100% { transform: translateY(-160px) rotate(45deg) scale(1.05); opacity: 0; }
}

/* animated wave footer of hero */
.hero-waves { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2; line-height: 0; }
.hero-waves svg { width: 100%; height: 150px; display: block; }
.wave-move { animation: waveShift 14s linear infinite; }
.wave-move.w2 { animation-duration: 20s; animation-direction: reverse; opacity: .6; }
.wave-move.w3 { animation-duration: 28s; opacity: .4; }
@keyframes waveShift { from { transform: translateX(0) } to { transform: translateX(-50%) } }

@media (max-width: 940px){
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding-bottom: 110px; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-copy h1, .hero-copy .lede, .hero-badges, .hero-trust, .hero-sub-actions { width: 100%; }
  .hero-badges, .hero-trust, .quote-mini, .quote-success, .hero-sub-actions { justify-content: center; }
  .quote-mini, .quote-success { margin-left: auto; margin-right: auto; }
  .hero .lede { margin-left: auto; margin-right: auto; }
  .hero-visual { order: -1; min-height: 320px; }
}

/* ============================================================
   MARQUEE STRIP (what we clean)
   ============================================================ */
.marquee { background: var(--navy); color: #fff; padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: marq 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .mi { display: inline-flex; align-items: center; gap: 14px; padding: 0 26px; font-family: var(--ff-head); font-weight: 700; font-size: 20px; letter-spacing: .02em; color: #eaf6fc; }
.marquee-track .mi::after { content: "•"; color: var(--cyan); margin-left: 26px; }
@keyframes marq { to { transform: translateX(-50%) } }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--paper); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.svc-card {
  position: relative; background: #fff; border-radius: var(--r-lg); padding: 34px 30px 30px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s ease, border-color .3s;
}
.svc-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s ease;
  background: linear-gradient(165deg, rgba(54,187,224,.10), rgba(22,144,168,.04));
}
.svc-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: rgba(54,187,224,.5); }
.svc-card:hover::before { opacity: 1; }
.svc-card > * { position: relative; z-index: 2; }
.svc-num { position: absolute; top: 18px; right: 24px; font-family: var(--ff-head); font-weight: 800; font-size: 60px; color: rgba(12,47,84,.05); z-index: 1; }
.svc-icon {
  width: 66px; height: 66px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(150deg, var(--royal), var(--teal)); color: #fff; box-shadow: 0 10px 22px -8px rgba(22,144,168,.6);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.svc-card:hover .svc-icon { transform: rotate(-6deg) scale(1.08); }
.svc-icon svg { width: 34px; height: 34px; }
.svc-card h3 { font-size: 24px; color: var(--navy); margin-bottom: 10px; }
.svc-card p { color: #51687d; font-size: 16.5px; margin: 0; }
.svc-card .svc-more { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-family: var(--ff-head); font-weight: 700; font-size: 14.5px; color: var(--teal); opacity: 0; transform: translateX(-6px); transition: .3s; }
.svc-card:hover .svc-more { opacity: 1; transform: translateX(0); }
.svc-bar { position: absolute; left: 0; bottom: 0; height: 4px; width: 0; background: linear-gradient(90deg, var(--cyan), var(--teal)); transition: width .4s ease; }
.svc-card:hover .svc-bar { width: 100%; }
@media (max-width: 920px){ .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .svc-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba { background: linear-gradient(180deg, #fff, var(--foam)); }
.ba-stage {
  position: relative; max-width: 1000px; margin: 50px auto 0; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 16/9; user-select: none; touch-action: none; border: 1px solid var(--line);
}
.ba-layer { position: absolute; inset: 0; }
.ba-layer image-slot { width: 100%; height: 100%; display: block; }
.ba-after { z-index: 1; }
.ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-tag { position: absolute; bottom: 18px; z-index: 4; font-family: var(--ff-head); font-weight: 800; font-size: 14px; letter-spacing: .12em; padding: 8px 16px; border-radius: 999px; color: #fff; text-transform: uppercase; }
.ba-tag.b { left: 18px; background: rgba(7,34,61,.78); }
.ba-tag.a { right: 18px; background: linear-gradient(135deg, var(--teal), var(--cyan)); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: #fff; z-index: 5; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(7,34,61,.15); cursor: ew-resize; }
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 56px; height: 56px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-md); display: grid; place-items: center; color: var(--royal);
}
.ba-knob svg { width: 26px; height: 26px; }
.ba-hint { text-align: center; margin-top: 18px; color: #5a7088; font-size: 15px; font-weight: 600; }
.ba-hint kbd { font-family: var(--ff-body); background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 2px 8px; box-shadow: var(--shadow-sm); }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.stats::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 380px at 85% 120%, rgba(54,187,224,.3), transparent 60%); }
.stats .wrap { position: relative; z-index: 2; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; padding: 18px; }
.stat .num { font-family: var(--ff-head); font-weight: 800; font-size: clamp(46px, 6vw, 76px); line-height: 1; background: linear-gradient(120deg,#fff,var(--cyan-lite)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lab { margin-top: 12px; font-size: 15px; letter-spacing: .05em; text-transform: uppercase; color: #b6d6ea; font-weight: 600; }
@media (max-width: 720px){ .stat-grid { grid-template-columns: repeat(2,1fr); gap: 12px; } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--paper); }
.filters { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin: 40px 0 38px; }
.filter {
  font-family: var(--ff-head); font-weight: 700; font-size: 15px; padding: 11px 22px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--line); color: var(--navy); cursor: pointer; transition: .22s;
}
.filter:hover { border-color: var(--teal); color: var(--teal); }
.filter.active { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: var(--shadow-sm); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 18px; }
.gal-item { position: relative; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s, box-shadow .3s; }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }
.gal-item image-slot { width: 100%; height: 100%; display: block; }
.gal-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 30px 18px 16px;
  background: linear-gradient(transparent, rgba(7,34,61,.82)); color: #fff; transform: translateY(8px); opacity: 0; transition: .35s; pointer-events: none;
}
.gal-item .cap b { font-family: var(--ff-head); font-size: 17px; display: block; }
.gal-item .cap span { font-size: 13px; color: var(--cyan-lite); font-weight: 600; }
.gal-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gal-item:hover .cap { transform: translateY(0); opacity: 1; }
.gal-item.hide { display: none; }
@media (max-width: 980px){ .gal-grid { grid-template-columns: repeat(2,1fr); } .gal-item.wide { grid-column: span 2; } }
@media (max-width: 560px){ .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 210px; } .gal-item.wide,.gal-item.tall { grid-column: auto; grid-row: auto; } }

/* ============================================================
   SERVICE AREA / MICHIGAN
   ============================================================ */
.area { background: linear-gradient(165deg, #0a2747, #0e447a); color: #fff; overflow: hidden; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.area h2 { color: #fff; }
.area h2 .accent { color: var(--cyan-lite); }
.area .lede { color: #c8e1f1; font-size: 19px; }
.city-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 30px 0; }
.city {
  display: flex; align-items: center; gap: 11px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: 13px 16px; border-radius: 12px; font-weight: 600; transition: .25s; cursor: default;
}
.city:hover { background: rgba(54,187,224,.18); border-color: var(--cyan); transform: translateX(4px); }
.city svg { width: 18px; height: 18px; color: var(--cyan-lite); flex: none; }
.area-note { display: inline-flex; align-items: center; gap: 12px; background: rgba(54,187,224,.14); border: 1px solid rgba(54,187,224,.4); border-radius: 14px; padding: 16px 20px; font-weight: 600; color: #eaf6fc; }
.area-note svg { width: 26px; height: 26px; color: var(--cyan-lite); flex: none; }

.mitten-wrap { position: relative; display: grid; place-items: center; }
.mitten-wrap .mi-map {
  width: 100%; max-width: 500px; height: auto; display: block;
  background: #fff; border-radius: 22px; padding: 14px;
  box-shadow: 0 36px 80px -24px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.6);
}
.mitten-wrap svg { width: 100%; max-width: 460px; height: auto; overflow: visible; filter: drop-shadow(0 30px 50px rgba(0,0,0,.4)); }
.mi-state { fill: rgba(54,187,224,.16); stroke: var(--cyan-lite); stroke-width: 3; }
.mi-pin { fill: var(--pop); stroke: #fff; stroke-width: 2.5; transform-box: fill-box; transform-origin: center; }
.mi-pin-pulse { fill: rgba(255,106,43,.5); animation: pinPulse 2.4s ease-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pinPulse { 0%{ transform: scale(1); opacity: .7 } 70%,100%{ transform: scale(3.4); opacity: 0 } }
.mi-label { font-family: var(--ff-head); font-weight: 700; font-size: 15px; fill: #fff; }
@media (max-width: 880px){ .area-grid { grid-template-columns: 1fr; gap: 36px; } .mitten-wrap { order: -1; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center; }
.about-photo { position: relative; }
.about-photo image-slot { width: 100%; aspect-ratio: 4/5; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.about-photo .badge-float {
  position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: var(--r); padding: 18px 22px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px; border: 1px solid var(--line);
}
.about-photo .badge-float .bn { font-family: var(--ff-head); font-weight: 800; font-size: 38px; color: var(--teal); line-height: 1; }
.about-photo .badge-float .bl { font-size: 13.5px; color: #51687d; font-weight: 600; line-height: 1.25; }
.about h2 { color: var(--navy); }
.about .sig { margin-top: 26px; display: flex; align-items: center; gap: 16px; }
.about .sig .av { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(150deg,var(--royal),var(--teal)); display: grid; place-items: center; color: #fff; font-family: var(--ff-head); font-weight: 800; font-size: 22px; flex: none; }
.about .sig .who b { font-family: var(--ff-head); color: var(--navy); font-size: 18px; display:block; }
.about .sig .who span { color: #51687d; font-size: 14.5px; }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.value { display: flex; gap: 13px; align-items: flex-start; }
.value .vi { width: 42px; height: 42px; border-radius: 11px; background: var(--foam); display: grid; place-items: center; color: var(--teal); flex: none; border: 1px solid rgba(54,187,224,.25); }
.value .vi svg { width: 22px; height: 22px; }
.value b { font-family: var(--ff-head); color: var(--navy); font-size: 16.5px; display: block; }
.value span { font-size: 14.5px; color: #51687d; }
@media (max-width: 880px){ .about-grid { grid-template-columns: 1fr; gap: 60px; } .about-photo { max-width: 420px; margin: 0 auto; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: stretch; }
.contact-info { background: linear-gradient(165deg, var(--navy), #0e447a); color: #fff; border-radius: var(--r-lg); padding: 44px 40px; position: relative; overflow: hidden; }
.contact-info::after { content:""; position:absolute; right:-60px; bottom:-60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(54,187,224,.35), transparent 70%); }
.contact-info h3 { font-size: 30px; margin-bottom: 8px; }
.contact-info > p { color: #c8e1f1; position: relative; }
.ci-list { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; position: relative; }
.ci { display: flex; gap: 15px; align-items: flex-start; }
.ci .cii { width: 48px; height: 48px; border-radius: 13px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; flex: none; color: var(--cyan-lite); }
.ci .cii svg { width: 22px; height: 22px; }
.ci .lab { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: #9fc5dd; font-weight: 600; }
.ci .val { font-family: var(--ff-head); font-weight: 700; font-size: 19px; color: #fff; }
.ci a.val:hover { color: var(--cyan-lite); }
.ci-social { margin-top: 30px; position: relative; }
.fb-btn { display: inline-flex; align-items: center; gap: 11px; background: #fff; color: var(--navy); padding: 13px 20px; border-radius: 12px; font-family: var(--ff-head); font-weight: 700; transition: .25s; }
.fb-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fb-btn svg { width: 22px; height: 22px; color: #1877f2; }

.form-card { background: #fff; border-radius: var(--r-lg); padding: 42px 40px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.form-card h3 { font-size: 28px; color: var(--navy); margin-bottom: 6px; }
.form-card .fsub { color: #51687d; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14.5px; color: var(--navy); margin-bottom: 7px; }
.field label .req { color: var(--pop); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff-body); font-size: 16px; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper); transition: .2s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan); background: #fff; box-shadow: 0 0 0 4px rgba(54,187,224,.15); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 13px; color: #8094a6; text-align: center; margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .chk { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(150deg,var(--teal),var(--cyan)); display: grid; place-items: center; margin: 0 auto 18px; color: #fff; animation: popIn .5s cubic-bezier(.34,1.56,.64,1); }
.form-success .chk svg { width: 40px; height: 40px; }
.form-success h3 { color: var(--navy); margin-bottom: 8px; }
.form-success p { color: #51687d; }
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: #b9d3e4; padding: 70px 0 26px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-brand { text-align: center; align-self: start; }
.foot-brand img { height: 198px; width: auto; margin: -34px auto 4px; display: block; }
.foot-brand p { font-size: 15px; color: #8fb2c9; max-width: 320px; margin: 0 auto; }
.foot-col h4 { font-family: var(--ff-head); color: #fff; font-size: 16px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.foot-col a, .foot-col p { display: block; color: #9fc0d6; font-size: 15.5px; margin-bottom: 11px; transition: .2s; }
.foot-col a:hover { color: var(--cyan); }
.foot-contact .fc { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.foot-contact .fc svg { width: 18px; height: 18px; color: var(--cyan); flex: none; margin-top: 3px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; font-size: 14px; color: #7fa0b8; }
.foot-bottom .badges { display: flex; gap: 14px; }
.foot-bottom-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.foot-seal { min-height: 42px; display: block; }
.foot-seal img { border: 0; }
.foot-bottom .badges span { display: inline-flex; align-items: center; gap: 7px; }
.foot-bottom .badges svg { width: 15px; height: 15px; color: var(--cyan); }
@media (max-width: 880px){ .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px){ .foot-grid { grid-template-columns: 1fr; } }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1 !important; transform: none !important; }
  .droplet, .wave-move, .spin-ring, .hero-logo, .water-fx .ripple, .marquee-track, .mi-pin-pulse { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* floating call button (mobile) */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 55; display: none; }
.fab a { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg,var(--pop-2),var(--pop)); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-pop); animation: fabPulse 2.4s ease-in-out infinite; }
.fab a svg { width: 26px; height: 26px; }
@keyframes fabPulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(255,106,43,.5) } 50%{ box-shadow: 0 0 0 14px rgba(255,106,43,0) } }
@media (max-width: 1080px){ .fab { display: block; } }

/* ============================================================
   REAL PHOTO ELEMENTS (added after photo upload)
   ============================================================ */
/* before / after images */
.ba-layer img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before img { object-position: left center; }
.ba-pairs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.ba-pair {
  font-family: var(--ff-head); font-weight: 700; font-size: 14.5px; padding: 10px 20px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--line); color: var(--navy); cursor: pointer; transition: .22s;
}
.ba-pair:hover { border-color: var(--teal); color: var(--teal); }
.ba-pair.active { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: var(--shadow-sm); }

/* gallery images */
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* about photo */
.about-photo .about-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); display: block; }
.about-photo .photo-name {
  position: absolute; right: 18px; bottom: 18px; z-index: 2;
  font-family: var(--ff-head); font-weight: 700; font-size: 15px; color: #fff;
  background: rgba(7,34,61,.62); backdrop-filter: blur(4px); padding: 8px 15px; border-radius: 999px;
}

/* Michigan Upper Peninsula accent */
.mi-up { fill: rgba(54,187,224,.10); stroke: rgba(127,214,239,.6); stroke-width: 2.5; }

/* ============================================================
   HERO MINI QUOTE FORM
   ============================================================ */
.quote-mini {
  display: flex; align-items: center; gap: 8px; max-width: 540px; margin: 30px 0 14px;
  background: #fff; padding: 7px 7px 7px 16px; border-radius: 999px;
  box-shadow: 0 18px 40px -16px rgba(7,34,61,.35); border: 1px solid var(--line);
}
.quote-mini .qm-ic { display: inline-flex; color: var(--teal); flex: none; }
.quote-mini .qm-ic svg { width: 22px; height: 22px; }
.quote-mini input[type="tel"] {
  flex: 1; min-width: 0; border: 0; background: transparent; outline: none;
  font-family: var(--ff-body); font-size: 17px; color: var(--ink); padding: 12px 6px;
}
.quote-mini input[type="tel"]::placeholder { color: #8aa0b3; }
.quote-mini .btn { white-space: nowrap; flex: none; }
.quote-success {
  display: none; align-items: center; gap: 12px; max-width: 540px; margin: 30px 0 14px;
  background: linear-gradient(135deg, var(--teal), var(--cyan)); color: #fff;
  font-size: 17px; padding: 16px 22px; border-radius: 16px; box-shadow: var(--shadow-md);
}
.quote-success.show { display: flex; animation: popIn .5s cubic-bezier(.34,1.56,.64,1); }
.quote-success svg { width: 26px; height: 26px; flex: none; }
.quote-success strong { font-family: var(--ff-head); }
.hero-sub-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-sub-actions .hero-link { font-family: var(--ff-head); font-weight: 700; font-size: 15.5px; color: var(--navy); }
.hero-sub-actions .hero-link:hover { color: var(--teal); }
.hero-sub-actions .dot { color: #9bb3c5; }
@media (max-width: 520px){
  .quote-mini { flex-wrap: wrap; border-radius: 20px; padding: 12px; }
  .quote-mini input[type="tel"] { width: 100%; flex-basis: 100%; }
  .quote-mini .btn { width: 100%; justify-content: center; }
  .quote-mini .qm-ic { display: none; }
}

/* ============================================================
   MOBILE REFINEMENTS
   ============================================================ */
@media (max-width: 940px){
  .hero-logo-ring { width: min(560px, 84vw); }
  .spin-ring { inset: -4%; }
  .spin-ring.r2 { inset: -13%; }
}
@media (max-width: 700px){
  /* lead with the headline + form on phones, logo follows */
  .hero-visual { order: 0; min-height: 0; margin-top: 6px; }
  .hero-grid { gap: 8px; }
}
@media (max-width: 600px){
  .wrap { padding: 0 18px; }
  .section { padding: 60px 0; }
  .hero { padding-top: 44px; }
  .hero-grid { padding-bottom: 78px; }

  /* header: de-crowd */
  .nav .wrap { min-height: 70px; gap: 12px; }
  .nav-cta .btn-pop { display: none; }
  .brand { gap: 11px; }
  .brand-badge { height: 74px; margin: 4px 0 -22px; }
  .brand-text { font-size: 16px; }
  .brand-text small { font-size: 8px; letter-spacing: .08em; white-space: nowrap; }

  /* hero logo sized so the headline + form lead */
  .hero-logo-ring { width: min(320px, 76vw); }
  .spin-ring { inset: -3%; }
  .spin-ring.r2 { inset: -10%; }
  .hero h1 { font-size: clamp(38px, 11vw, 56px); }
  .hero .lede { font-size: 18px; margin: 18px auto 24px; }
  .hero-trust { gap: 24px 30px; margin-top: 28px; }
  .hero-trust .ht b { font-size: 40px; }

  /* section rhythm */
  .section h2 { font-size: clamp(30px, 8.4vw, 42px); }
  .section-head p { font-size: 16.5px; }
  .svc-grid { margin-top: 38px; }

  /* about overlay tweaks so nothing clips the screen edge */
  .about-photo .badge-float { left: 0; bottom: -16px; padding: 14px 18px; }
  .about-photo .badge-float .bn { font-size: 32px; }
  .about-photo .photo-name { right: 12px; bottom: 12px; font-size: 14px; }

  /* contact + footer */
  .contact-info, .form-card { padding: 32px 24px; }
  .foot-brand img { height: 150px; }
  .foot-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 400px){
  .brand-text { font-size: 14px; }
  .brand-badge { height: 64px; }
  .hero-trust .ht b { font-size: 34px; }
}
/* touch devices have no hover — keep captions/labels visible */
@media (hover: none){
  .gal-item .cap { opacity: 1; transform: none; }
  .svc-card .svc-more { opacity: 1; transform: none; }
}

/* ============================================================
   REVIEWS / TESTIMONIALS CAROUSEL
   ============================================================ */
.reviews { background: linear-gradient(180deg, #ffffff, var(--foam)); }
.reviews-rating { display: inline-flex; align-items: center; gap: 9px; margin-top: 14px; font-size: 16px; color: #51687d; flex-wrap: wrap; justify-content: center; }
.reviews-rating .stars { display: inline-flex; gap: 3px; color: #ffb020; }
.reviews-rating .stars svg { width: 20px; height: 20px; }
.reviews-rating strong { color: var(--navy); font-family: var(--ff-head); font-size: 18px; }
.reviews-carousel { position: relative; max-width: 880px; margin: 46px auto 0; }
.rev-viewport { display: grid; }
.rev-slide {
  grid-area: 1 / 1; opacity: 0; visibility: hidden; transition: opacity .55s ease;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 46px 52px; box-shadow: var(--shadow-md); text-align: center;
}
.rev-slide.active { opacity: 1; visibility: visible; }
.rev-stars { display: flex; justify-content: center; gap: 4px; color: #ffb020; margin-bottom: 20px; }
.rev-stars svg { width: 24px; height: 24px; }
.rev-slide blockquote {
  font-family: var(--ff-head); font-weight: 600; font-size: clamp(20px, 2.3vw, 27px);
  line-height: 1.36; color: var(--navy); margin: 0 0 26px; letter-spacing: -.01em; text-wrap: balance;
}
.rev-slide figcaption { display: flex; align-items: center; justify-content: center; gap: 14px; }
.rev-av { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(150deg, var(--royal), var(--teal)); color: #fff; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 800; font-size: 17px; flex: none; }
.rev-who { text-align: left; }
.rev-who b { display: block; font-family: var(--ff-head); color: var(--navy); font-size: 17px; }
.rev-who span { font-size: 14px; color: #5f7d95; }
.rev-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-md); color: var(--navy); font-size: 28px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background .2s, color .2s, transform .2s;
}
.rev-arrow:hover { background: var(--navy); color: #fff; }
.rev-arrow.prev { left: -22px; }
.rev-arrow.next { right: -22px; }
.rev-dots { display: flex; justify-content: center; gap: 9px; margin-top: 26px; }
.rev-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(12,47,84,.18); border: 0; cursor: pointer; transition: background .2s, transform .2s; padding: 0; }
.rev-dot:hover { background: rgba(12,47,84,.4); }
.rev-dot.active { background: var(--teal); transform: scale(1.3); }
@media (max-width: 640px){
  .reviews-carousel { max-width: 100%; }
  .rev-slide { padding: 34px 22px; }
  .rev-arrow { width: 42px; height: 42px; font-size: 23px; }
  .rev-arrow.prev { left: -4px; }
  .rev-arrow.next { right: -4px; }
  .rev-who { text-align: center; }
  .rev-slide figcaption { flex-direction: column; gap: 10px; }
}
