/* ============================================================
   Clean N' Go Power Washing — stylesheet
   Brand: azure blue + bright yellow + orange duck, navy text
   Type: Fredoka (display), Oswald (eyebrows), Mulish (body)
   ============================================================ */

:root {
  --blue: #2B78D4;
  --blue-deep: #1F5DAB;
  --blue-ink: #0a2540;
  --yellow: #FFD600;
  --yellow-deep: #E6B800;
  --orange: #2B78D4; /* deprecated — mapped to brand blue, no orange on site */
  --ink: #102a43;
  --muted: #5b7186;
  --line: #e3ecf7;
  --paper: #ffffff;
  --paper-2: #f3f8ff;
  --paper-3: #eaf3ff;

  --shadow-sm: 0 1px 2px rgba(10,37,64,.06), 0 2px 8px rgba(10,37,64,.06);
  --shadow-md: 0 8px 24px rgba(10,37,64,.10);
  --shadow-lg: 0 24px 60px rgba(10,55,120,.18);
  --shadow-blue: 0 16px 36px rgba(43,120,212,.30);

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --maxw: 1200px;
  --gutter: clamp(18px, 5vw, 56px);

  --font-display: "Fredoka", system-ui, sans-serif;
  --font-eyebrow: "Oswald", system-ui, sans-serif;
  --font-body: "Mulish", system-ui, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--blue-ink);
  line-height: 1.05;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p { margin: 0; }

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

.eyebrow {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 600;
  font-size: .82rem;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: .55em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px; border-radius: 3px;
  background: var(--yellow);
}

.section { padding: clamp(56px, 8vw, 108px) 0; }
.section--tint { background: var(--paper-2); }
.section--navy { background: var(--blue-ink); color: #dce8f7; }
.section--navy h2, .section--navy h3 { color: #fff; }

.section-head { max-width: 680px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  margin: .35em 0 .35em;
}
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section--navy .section-head p { color: #b8cbe4; }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  border: 0;
  border-radius: 999px;
  padding: 15px 28px;
  display: inline-flex;
  align-items: center;
  gap: .55em;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--blue-deep); transform: translateY(-2px); }
.btn--yellow { background: var(--yellow); color: var(--blue-ink); box-shadow: 0 14px 30px rgba(242,181,0,.35); }
.btn--yellow:hover { background: var(--yellow-deep); transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--blue-ink); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.btn--ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 18px 34px; font-size: 1.12rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--blue-ink);
  color: #cfe0f5;
  font-size: .86rem;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar .tb-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: .45em; }
.topbar .tb-item svg { width: 15px; height: 15px; color: var(--yellow); }
.topbar .tb-right { display: inline-flex; align-items: center; gap: .4em; font-weight: 700; color: #fff; }
.topbar .stars { color: var(--yellow); letter-spacing: 1px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 20px; min-height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__duck { width: 46px; height: 46px; object-fit: contain; transform: scaleX(-1); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__top {
  font-family: var(--font-eyebrow); font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; font-size: .72rem; color: var(--blue);
}
.brand__main {
  font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; color: var(--blue-ink);
  letter-spacing: -.01em;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--blue-ink); font-weight: 700; font-size: .98rem;
  padding: 10px 14px; border-radius: 999px; transition: background .15s, color .15s;
}
.nav a:hover { background: var(--paper-3); color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: 12px; margin-left: 6px; }
.header-phone {
  font-family: var(--font-display); font-weight: 600; color: var(--blue-ink);
  display: inline-flex; align-items: center; gap: .5em; font-size: 1.02rem;
}
.header-phone svg { width: 18px; height: 18px; color: var(--blue); }

.hamburger {
  display: none; margin-left: auto; background: var(--blue-ink); color: #fff;
  border: 0; width: 46px; height: 46px; border-radius: 12px; cursor: pointer;
  align-items: center; justify-content: center;
}
.hamburger svg { width: 24px; height: 24px; }

/* mobile drawer */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(10,37,64,.45); z-index: 70;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: #fff; z-index: 80; transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 22px; box-shadow: var(--shadow-lg);
}
.drawer.open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.drawer__close { background: var(--paper-2); border: 0; width: 42px; height: 42px; border-radius: 10px; cursor: pointer; font-size: 22px; color: var(--blue-ink); }
.drawer nav { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.drawer nav a { padding: 14px 12px; border-radius: 12px; color: var(--blue-ink); font-weight: 700; font-size: 1.1rem; }
.drawer nav a:hover { background: var(--paper-2); }
.drawer .btn { margin-top: 16px; }
.drawer__phone { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .92rem; }
.drawer__phone strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--blue-ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--paper); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px);
  align-items: center; padding: clamp(48px, 7vw, 92px) 0 clamp(40px, 6vw, 80px);
}
.hero__rating {
  display: inline-flex; align-items: center; gap: 10px; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); border-radius: 999px;
  padding: 7px 16px 7px 8px; font-weight: 700; color: var(--blue-ink); font-size: .92rem; margin-bottom: 22px;
}
.hero__rating .g { width: 30px; height: 30px; display: grid; place-items: center; background: var(--paper-2); border-radius: 50%; font-family: var(--font-display); color: var(--blue); }
.hero__rating .stars { color: var(--yellow-deep); letter-spacing: 1px; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  line-height: .98;
  margin-bottom: 22px;
}
.hero h1 .hl { color: var(--blue); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .26em;
  background: var(--yellow); z-index: -1; border-radius: 4px; opacity: .9;
}
.hero__sub { font-size: 1.18rem; color: var(--muted); max-width: 36ch; margin-bottom: 30px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 30px; }
.hero__trust .ht { display: inline-flex; align-items: center; gap: .5em; font-weight: 700; color: var(--blue-ink); font-size: .94rem; }
.hero__trust .ht svg { width: 20px; height: 20px; color: var(--blue); flex: none; }

/* hero visual */
.hero__media { position: relative; }
.hero__photo {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute; bottom: -18px; left: -18px; background: #fff;
  border-radius: var(--r); box-shadow: var(--shadow-md); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; max-width: 230px;
}
.hero__badge .duck { width: 52px; height: 52px; object-fit: contain; flex: none; }
.hero__badge b { font-family: var(--font-display); color: var(--blue-ink); display: block; font-size: 1.05rem; }
.hero__badge span { font-size: .82rem; color: var(--muted); }
.hero__blob {
  position: absolute; z-index: -1; border-radius: 50%;
  filter: blur(2px);
}
.hero__blob--y { width: 260px; height: 260px; background: radial-gradient(circle at 30% 30%, #fff0b3, var(--yellow)); top: -60px; right: -40px; opacity: .55; }
.hero__blob--b { width: 320px; height: 320px; background: radial-gradient(circle at 30% 30%, #cfe3ff, #9cc4ff); bottom: -80px; left: 10%; opacity: .4; }

/* Hero variant B: full-bleed */
body[data-hero="b"] .hero { background: var(--blue-ink); color: #eaf2fc; }
body[data-hero="b"] .hero__bg { display: block; }
body[data-hero="b"] .hero__grid { grid-template-columns: 1fr; min-height: min(78vh, 720px); align-content: center; text-align: center; position: relative; z-index: 2; }
body[data-hero="b"] .hero__media { display: none; }
body[data-hero="b"] .hero h1 { color: #fff; font-size: clamp(2.6rem, 7vw, 5rem); }
body[data-hero="b"] .hero h1 .hl { color: var(--yellow); }
body[data-hero="b"] .hero h1 .hl::after { background: rgba(255,210,10,.28); }
body[data-hero="b"] .hero__sub { color: #c6d8ef; max-width: 52ch; margin-inline: auto; }
body[data-hero="b"] .hero__actions { justify-content: center; }
body[data-hero="b"] .hero__trust { justify-content: center; }
body[data-hero="b"] .hero__trust .ht { color: #fff; }
body[data-hero="b"] .hero__trust .ht svg { color: var(--yellow); }
body[data-hero="b"] .hero__rating { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
body[data-hero="b"] .hero__rating .g { background: rgba(255,255,255,.15); color: #fff; }

.hero__bg { display: none; position: absolute; inset: 0; z-index: 0; }
.hero__bg image-slot, .hero__bg .hero__bg-img { width: 100%; height: 100%; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,37,64,.74), rgba(10,37,64,.86)); }

/* Hero variant C: mascot-forward */
body[data-hero="c"] .hero { background: linear-gradient(180deg, var(--paper-3), var(--paper)); }
body[data-hero="c"] .hero__grid { grid-template-columns: 1fr; text-align: center; max-width: 920px; margin-inline: auto; }
body[data-hero="c"] .hero__copy { display: flex; flex-direction: column; align-items: center; }
body[data-hero="c"] .hero__sub { max-width: 54ch; }
body[data-hero="c"] .hero__actions, body[data-hero="c"] .hero__trust { justify-content: center; }
body[data-hero="c"] .hero__media { margin-top: 14px; }
body[data-hero="c"] .hero__photo { aspect-ratio: 16/8; }
body[data-hero="c"] .hero__mascot { display: block; }
.hero__mascot { display: none; width: clamp(120px, 22vw, 200px); margin: 0 auto 6px; }
.hero__mascot img { width: 100%; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; gap: 18px 40px; align-items: center; justify-content: space-between; padding-block: 22px; }
.trust-strip .ts { display: flex; align-items: center; gap: 12px; }
.trust-strip .ts__num { font-family: var(--font-display); font-size: 1.9rem; color: var(--blue); line-height: 1; }
.trust-strip .ts__lbl { font-size: .9rem; color: var(--muted); font-weight: 600; line-height: 1.2; }
.trust-strip .divider { width: 1px; height: 38px; background: var(--line); }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-card__media { position: relative; aspect-ratio: 16/10; }
.svc-card__media image-slot { width: 100%; height: 100%; }
.svc-card__tag {
  position: absolute; top: 14px; left: 14px; background: var(--yellow); color: var(--blue-ink);
  font-family: var(--font-eyebrow); text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
  font-size: .74rem; padding: 6px 12px; border-radius: 999px; z-index: 3;
}
.svc-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 { font-size: 1.7rem; margin-bottom: 10px; }
.svc-card__body p { color: var(--muted); margin-bottom: 18px; }
.svc-card__list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.svc-card__list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; color: var(--blue-ink); font-size: .96rem; }
.svc-card__list svg { width: 20px; height: 20px; color: var(--blue); flex: none; margin-top: 1px; }
.svc-card__foot { margin-top: auto; }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.ba {
  position: relative; aspect-ratio: 3/2; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); user-select: none; touch-action: pan-y;
}
.ba__layer { position: absolute; inset: 0; }
.ba__layer image-slot, .ba__layer .ba-img { width: 100%; height: 100%; }
.ba__after { z-index: 1; }
.ba__before { z-index: 2; clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba__tag {
  position: absolute; bottom: 14px; z-index: 4; background: rgba(10,37,64,.82); color: #fff;
  font-family: var(--font-eyebrow); text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
  font-size: .72rem; padding: 6px 12px; border-radius: 999px;
}
.ba__tag--before { right: 14px; }
.ba__tag--after { left: 14px; }
.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); z-index: 5; width: 3px; background: #fff;
  transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(10,37,64,.1);
}
.ba__knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md);
  display: grid; place-items: center; color: var(--blue); cursor: ew-resize;
}
.ba__knob svg { width: 24px; height: 24px; }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 6; margin: 0; }
.ba-copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; }
.ba-copy p { color: var(--muted); margin-bottom: 22px; }
.ba-note { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-ink); font-weight: 700; font-size: .95rem; background: var(--paper-2); border-radius: 999px; padding: 10px 16px; }
.ba-note svg { width: 18px; height: 18px; color: var(--orange); }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.why-card__icon { width: 56px; height: 56px; border-radius: 16px; background: var(--paper-3); display: grid; place-items: center; color: var(--blue); margin-bottom: 18px; }
.why-card__icon svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: .98rem; }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.areas__list { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.areas__list li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px;
  font-weight: 700; color: var(--blue-ink); display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow-sm);
}
.areas__list li svg { width: 16px; height: 16px; color: var(--blue); }
.areas__map { background: var(--paper-3); border-radius: var(--r-lg); aspect-ratio: 4/3; position: relative; overflow: hidden; border: 1px solid var(--line); }
.areas__map image-slot { width: 100%; height: 100%; }
.areas__pin { position: absolute; display: grid; place-items: center; color: var(--blue); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.review__stars { color: var(--yellow-deep); letter-spacing: 2px; font-size: 1.15rem; margin-bottom: 14px; }
.review__text { color: var(--ink); font-size: 1.04rem; margin-bottom: 20px; }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.1rem; }
.review__name { font-weight: 800; color: var(--blue-ink); }
.review__loc { font-size: .85rem; color: var(--muted); }
.reviews-cta { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 38px; flex-wrap: wrap; }

/* ============================================================
   QUOTE / CONTACT
   ============================================================ */
.quote-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.quote-info h2 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 16px; }
.quote-info > p { color: #b8cbe4; font-size: 1.1rem; margin-bottom: 30px; }
.quote-contact { display: grid; gap: 16px; margin-bottom: 30px; }
.quote-contact a, .quote-contact div { display: flex; align-items: center; gap: 14px; color: #eaf2fc; font-weight: 600; }
.quote-contact .ic { width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: var(--yellow); flex: none; }
.quote-contact .ic svg { width: 22px; height: 22px; }
.quote-contact small { display: block; color: #93aacb; font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.quote-contact b { font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; }
.quote-mascot { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 16px 18px; }
.quote-mascot img { width: 64px; height: 64px; object-fit: contain; flex: none; }
.quote-mascot p { color: #cfe0f5; font-size: .95rem; }
.quote-mascot b { color: #fff; font-family: var(--font-display); }

.quote-form { background: #fff; border-radius: var(--r-xl); padding: clamp(26px, 3.5vw, 40px); box-shadow: var(--shadow-lg); }
.quote-form h3 { font-size: 1.5rem; margin-bottom: 4px; color: var(--blue-ink); }
.quote-form .sub { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; color: var(--blue-ink); font-size: .9rem; margin-bottom: 7px; }
.field .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 15px; background: var(--paper-2);
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(11,116,240,.12);
}
.field textarea { resize: vertical; min-height: 96px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e5484d; background: #fff5f5; }
.field .err { color: #e5484d; font-size: .82rem; margin-top: 5px; display: none; font-weight: 600; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-foot { font-size: .82rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .check { width: 72px; height: 72px; border-radius: 50%; background: var(--paper-3); color: var(--blue); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .check svg { width: 38px; height: 38px; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 8px; }
.form-success p { color: var(--muted); }
.form-success .duck { width: 84px; margin: 16px auto 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 24px; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--blue-ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .pm { width: 30px; height: 30px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; color: var(--blue); flex: none; transition: transform .25s, background .2s; }
.faq-q .pm svg { width: 18px; height: 18px; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.cta-band { background: var(--yellow); }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: clamp(36px, 5vw, 56px); flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--blue-ink); max-width: 22ch; }
.cta-band p { color: #5a4a00; font-weight: 700; margin-top: 6px; }
.cta-band__mascot { display: flex; align-items: center; gap: 18px; }
.cta-band__mascot img { width: 92px; transform: scaleX(-1); }

.site-footer { background: var(--blue-ink); color: #aebfd8; padding: clamp(48px, 6vw, 72px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .brand__main { color: #fff; }
.footer-brand .brand__top { color: var(--yellow); }
.footer-brand p { margin-top: 14px; font-size: .95rem; max-width: 32ch; }
.footer-col h4 { color: #fff; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: #aebfd8; font-weight: 600; }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .2s; }
.footer-social a:hover { background: var(--blue); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.footer-bottom a { color: #aebfd8; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .hamburger { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 520px; }
  body[data-hero="a"] .hero__media { order: 0; }
  .ba-wrap, .areas-grid, .quote-grid { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; gap: 30px; }
  .tier--featured { transform: none; }
  .why-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .topbar .tb-left { display: none; }
  .topbar .wrap { justify-content: center; }
  .svc-grid, .why-grid, .reviews-grid, .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip .divider { display: none; }
  .trust-strip .wrap { justify-content: center; gap: 22px 30px; }
  .hero__badge { left: 50%; transform: translateX(-50%); bottom: -22px; }
  .cta-band .wrap { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}

/* ---- Static images (converted from fillable slots) ---- */
.slot-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba__layer .ba-img { object-fit: cover; }
.gallery-grid .slot-img { height: auto; aspect-ratio: 1/1; border-radius: var(--r); box-shadow: var(--shadow-sm); }

/* ---- Hero badge mascot faces into the content ---- */
.hero-split__badge img { transform: scaleX(-1); }

/* ---- Levels of Service (pricing tiers) ---- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; margin-top: 8px; }
.tier {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 36px 30px 32px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.tier--featured {
  background: var(--blue-ink); color: #dce8f7; border-color: var(--blue-ink);
  box-shadow: var(--shadow-lg); transform: translateY(-12px);
}
.tier__ribbon {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--blue-ink); font-family: var(--font-eyebrow);
  text-transform: uppercase; letter-spacing: .08em; font-weight: 600; font-size: .76rem;
  padding: 8px 18px; border-radius: 999px; white-space: nowrap; box-shadow: var(--shadow-md);
}
.tier__name { font-family: var(--font-eyebrow); text-transform: uppercase; letter-spacing: .1em; font-size: .88rem; color: var(--blue); font-weight: 600; }
.tier--featured .tier__name { color: var(--yellow); }
.tier__title { font-size: 1.5rem; margin: 5px 0 0; }
.tier--featured .tier__title { color: #fff; }
.tier__price { font-family: var(--font-display); font-size: 2.7rem; color: var(--blue-ink); line-height: 1; margin: 16px 0 2px; }
.tier--featured .tier__price { color: #fff; }
.tier__price small { font-size: .9rem; font-family: var(--font-body); color: var(--muted); font-weight: 700; }
.tier--featured .tier__price small { color: #9fc2ee; }
.tier__best { font-size: .96rem; color: var(--muted); margin: 12px 0 22px; }
.tier--featured .tier__best { color: #b8cfea; }
.tier__list { list-style: none; padding: 22px 0 0; margin: 0 0 26px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 13px; flex: 1; }
.tier--featured .tier__list { border-top-color: rgba(255,255,255,.16); }
.tier__list li { display: flex; gap: 11px; font-size: .98rem; line-height: 1.4; }
.tier__list svg { width: 20px; height: 20px; flex: none; color: var(--blue); margin-top: 2px; }
.tier--featured .tier__list svg { color: var(--yellow); }
.tier .btn { width: 100%; }
.tiers-note { text-align: center; color: var(--muted); font-size: .94rem; margin-top: 30px; max-width: 60ch; margin-inline: auto; }

/* ============================================================
   PINK'S-STYLE LAYOUT  (split hero + cream centered header)
   ============================================================ */
:root { --cream: #f5efe1; --cream-line: #e7dcc4; }

/* ---- Header: cream bar, centered logo, split nav ---- */
.site-header--split {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-line);
  backdrop-filter: none;
}
.site-header--split .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 94px;
  gap: 18px;
}
.nav-left { justify-self: end; }
.nav-right { justify-self: start; }
.nav-left, .nav-right { display: flex; align-items: center; gap: 6px; }
.site-header--split .nav a:not(.btn) {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
  font-size: .9rem;
  color: var(--blue-ink);
  padding: 9px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.site-header--split .nav a:not(.btn):hover { color: var(--blue); background: rgba(11,116,240,.07); }

/* nav links (anchors + dropdown toggles share one look) */
.site-header--split .nav .nav-link {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
  font-size: .9rem;
  color: var(--blue-ink);
  padding: 9px 12px;
  border-radius: 999px;
  white-space: nowrap;
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
.site-header--split .nav .nav-link:hover { color: var(--blue); background: rgba(11,116,240,.07); }
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-toggle .chev { width: 12px; height: 12px; transition: transform .2s; }
.nav-item:hover .chev, .nav-item:focus-within .chev, .nav-item.open .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 2px); left: 50%;
  transform: translateX(-50%);
  background: #fff; border: 1px solid var(--cream-line);
  border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 234px;
  flex-direction: column; gap: 2px; z-index: 90;
  display: none;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown, .nav-item.open .dropdown {
  display: flex;
}
.dropdown::before { content: ""; position: absolute; bottom: 100%; left: 0; right: 0; height: 10px; }
.dropdown a {
  display: block; padding: 11px 14px; border-radius: 9px;
  font-family: var(--font-body); text-transform: none; letter-spacing: 0;
  font-weight: 700; font-size: .92rem; color: var(--blue-ink); white-space: nowrap;
}
.dropdown a:hover { background: var(--paper-2); color: var(--blue); }

/* drawer groups + sub-links */
.drawer__group {
  font-family: var(--font-eyebrow); text-transform: uppercase; letter-spacing: .1em;
  font-size: .76rem; color: var(--muted); font-weight: 600;
  padding: 14px 12px 4px;
}
.drawer nav a.drawer__sub {
  padding: 11px 12px 11px 26px; font-size: 1rem; color: var(--blue-ink); font-weight: 600;
}
.drawer nav a.drawer__sub:hover { background: var(--paper-2); }

.brand--center { flex-direction: row-reverse; gap: 13px; }
.brand--center .brand__duck { width: 58px; height: 58px; }
.brand--center .brand__text { align-items: flex-start; line-height: 1; gap: 2px; }
/* Logo lettering mimics the painted-banner mascot logo (outlined cartoon type) */
.brand--center .brand__top {
  font-family: var(--font-display);
  font-weight: 700; font-style: italic;
  text-transform: none; letter-spacing: 0;
  font-size: 1.02rem; line-height: 1.08; white-space: nowrap;
  color: var(--yellow);
  -webkit-text-stroke: 2px var(--blue-ink);
  paint-order: stroke fill;
  text-shadow: 0 2px 0 rgba(10,37,64,.18);
}
.brand--center .brand__main {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.8rem; line-height: 1; white-space: nowrap;
  letter-spacing: -.005em;
  color: #fff;
  -webkit-text-stroke: 2.6px var(--blue-ink);
  paint-order: stroke fill;
  text-shadow: 0 2.5px 0 rgba(10,37,64,.22);
}
.brand--center .brand__text::after {
  content: "Exterior Cleaning | Long Island, NY";
  font-family: var(--font-eyebrow);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .02em; font-size: .6rem;
  color: var(--blue-ink); margin-top: 4px;
}

.btn--quote {
  background: var(--yellow);
  color: var(--blue-ink);
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  font-size: .95rem;
  padding: 12px 22px;
  border-radius: 999px;
  margin-left: 8px;
  box-shadow: 0 8px 20px rgba(242,181,0,.32);
  transition: transform .15s, background .2s;
}
.btn--quote:hover { background: var(--yellow-deep); transform: translateY(-2px); }

/* ---- Split hero ---- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  align-items: stretch;
}
.hero-split__media { position: relative; min-height: 560px; background: var(--paper-3); }
.hero-split__media > image-slot, .hero-split__media > img.slot-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-split__badge {
  position: absolute; left: 22px; bottom: 22px; z-index: 4;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.95); border-radius: 14px; padding: 11px 16px 11px 12px;
  box-shadow: var(--shadow-md);
}
.hero-split__badge img { width: 44px; height: 44px; object-fit: contain; flex: none; }
.hero-split__badge b { font-family: var(--font-display); color: var(--blue-ink); display: block; font-size: 1rem; }
.hero-split__badge span span, .hero-split__badge > span > span { font-size: .8rem; color: var(--muted); }

.hero-split__panel {
  background: var(--blue-ink);
  color: #fff;
  padding: clamp(28px, 3.4vw, 56px) clamp(24px, 3.4vw, 60px);
  display: flex; align-items: center;
}
.hero-split__inner { width: 100%; max-width: 820px; margin-inline: auto; }
.hero-split__title {
  font-family: var(--font-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  letter-spacing: .005em;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}
.hero-split__loc {
  display: block;
  color: var(--yellow);
  font-size: clamp(1.15rem, 1.9vw, 1.6rem);
  letter-spacing: .03em;
  margin-top: 8px;
}

.hero-phone {
  display: flex; width: fit-content; align-items: center; gap: 13px;
  margin: 0 0 26px;
  white-space: nowrap;
  font-family: var(--font-eyebrow); font-weight: 700; letter-spacing: .04em;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem); color: #fff;
}
.hero-phone__ic { width: 46px; height: 46px; border-radius: 50%; background: var(--yellow); color: var(--blue-ink); display: grid; place-items: center; flex: none; }
.hero-phone__ic svg { width: 22px; height: 22px; }

/* ---- Lead form ---- */
.lead-form .lf-grid { display: grid; gap: 12px; margin-bottom: 12px; }
.lf-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lf-grid--2 { grid-template-columns: 1.15fr 1fr; }
.lead-form .field { margin: 0; position: relative; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #fff; border: 2px solid transparent; border-radius: 10px;
  padding: 14px 15px; transition: border-color .15s, box-shadow .15s;
}
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #8a9bb0; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none; border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255,210,10,.18);
}
.lead-form textarea { resize: vertical; min-height: 132px; }
.lead-form .field.invalid input, .lead-form .field.invalid select { border-color: #ff8a8a; box-shadow: 0 0 0 4px rgba(255,80,80,.16); }
.lead-form .err { display: none; color: #ffc7c7; font-size: .76rem; font-weight: 700; margin-top: 4px; }
.lead-form .field.invalid .err { display: block; }
.err--check { display: none; color: #ffc7c7; font-size: .8rem; font-weight: 700; margin: 6px 0 0; }
.lf-checks.invalid + .err--check { display: block; }

.lf-head {
  font-family: var(--font-eyebrow); text-transform: uppercase; color: #fff;
  font-size: 1.15rem; letter-spacing: .05em; margin: 22px 0 13px; font-weight: 700;
}
.lf-head .req, .field .req, .lf-head .req { color: var(--yellow); }
.lf-checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px 18px; }
.lf-check { display: flex; align-items: center; gap: 10px; color: #d7e4f5; font-weight: 600; font-size: .95rem; cursor: pointer; }
.lf-check input { width: 19px; height: 19px; accent-color: var(--yellow); flex: none; cursor: pointer; }

.lf-bottom { margin-top: 18px; align-items: start; }
.lf-selects { display: grid; gap: 12px; align-content: start; }
.lf-slabel { display: block; font-weight: 700; color: #fff; font-size: .9rem; margin-bottom: 6px; }
.lead-form 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='%235b7186' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

.lf-consent { display: flex; gap: 11px; align-items: flex-start; color: #d7e4f5; font-size: .92rem; font-weight: 600; margin: 18px 0 12px; cursor: pointer; }
.lf-consent input { width: 19px; height: 19px; accent-color: var(--yellow); flex: none; margin-top: 1px; }
.lf-fine { color: #90a8c8; font-size: .78rem; font-style: italic; line-height: 1.55; margin-bottom: 18px; }

.lf-submit {
  width: 100%; background: var(--yellow); color: var(--blue-ink);
  font-family: var(--font-eyebrow); text-transform: uppercase; letter-spacing: .08em; font-weight: 700;
  font-size: 1.2rem; border: 0; border-radius: 12px; padding: 18px; cursor: pointer;
  transition: transform .15s, background .2s; box-shadow: 0 12px 28px rgba(242,181,0,.28);
}
.lf-submit:hover { background: var(--yellow-deep); transform: translateY(-2px); }

.lead-form .form-success { color: #fff; }
.lead-form .form-success h2 { color: #fff; font-size: 1.7rem; margin-bottom: 8px; }
.lead-form .form-success p { color: #c6d8ef; }
.lead-form .form-success .check { background: rgba(255,255,255,.12); color: var(--yellow); }

/* ---- Contact band (replaces lower quote form) ---- */
.contact-band { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.contact-info h2 { font-size: clamp(2rem, 4.4vw, 3rem); margin: .3em 0 .4em; }
.contact-info > p { color: #b8cbe4; font-size: 1.1rem; margin-bottom: 28px; }
.contact-cta {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg);
  padding: 30px; text-align: center;
}
.contact-cta img { width: 84px; margin: 0 auto 14px; }
.contact-cta p { color: #cfe0f5; margin-bottom: 20px; }
.contact-cta b { color: #fff; font-family: var(--font-display); }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .site-header--split .wrap { display: flex; justify-content: space-between; min-height: 70px; }
  .nav-left, .nav-right { display: none; }
  .brand--center .brand__duck { width: 42px; height: 42px; }
  .brand--center .brand__main { font-size: 1.5rem; }
  .brand--center .brand__top { font-size: .9rem; }
  .brand--center .brand__text::after { font-size: .54rem; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split__media { min-height: 300px; order: -1; }
  .lf-grid--2 { grid-template-columns: 1fr; }
  .contact-band { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .lf-grid--3 { grid-template-columns: 1fr; }
  .lf-checks { grid-template-columns: 1fr 1fr; }
  .hero-split__panel { padding: 30px 20px 40px; }
}
@media (max-width: 420px) {
  .lf-checks { grid-template-columns: 1fr; }
}

/* ============================================================
   INTERIOR PAGES (services, about, press, gallery)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--blue-ink) 0%, var(--blue-deep) 55%, var(--blue) 120%);
  color: #fff; padding: clamp(46px, 8vw, 92px) 0 clamp(40px, 7vw, 76px);
}
.page-hero::after {
  content: ""; position: absolute; right: -8%; top: -40%; width: 46%; height: 180%;
  background: radial-gradient(closest-side, rgba(255,210,10,.18), transparent 70%); pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--yellow); }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 5.2vw, 3.5rem); max-width: 18ch; }
.page-hero__sub { color: #cfe2fb; margin-top: 16px; max-width: 56ch; font-size: 1.08rem; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .82rem;
  font-family: var(--font-eyebrow); letter-spacing: .06em; text-transform: uppercase; color: #9cc1ec; margin-bottom: 18px; }
.crumbs a { color: #9cc1ec; }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: .55; }

/* two-column feature block */
.feature { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.feature--flip .feature__media { order: 2; }
.feature__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.feature__media image-slot, .feature__media img { width: 100%; height: 100%; }
.feature__body h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 16px; }
.feature__body p { color: var(--muted); margin-bottom: 16px; }
.feature__list { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 12px; }
.feature__list li { display: flex; align-items: flex-start; gap: 11px; font-weight: 700; color: var(--blue-ink); }
.feature__list svg { width: 22px; height: 22px; color: var(--blue); flex: none; margin-top: 1px; }

/* prose column */
.prose { max-width: 64ch; }
.prose p { color: var(--muted); margin-bottom: 18px; font-size: 1.06rem; }
.prose p strong { color: var(--blue-ink); }

/* related services */
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rel-card {
  display: flex; flex-direction: column; gap: 8px; padding: 24px; border: 1px solid var(--line);
  border-radius: var(--r-lg); background: #fff; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s; color: var(--blue-ink);
}
.rel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rel-card h3 { font-size: 1.28rem; }
.rel-card p { color: var(--muted); font-size: .96rem; margin: 0; flex: 1; }
.rel-card__go { font-family: var(--font-eyebrow); text-transform: uppercase; letter-spacing: .06em;
  font-size: .8rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.rel-card__go svg { width: 16px; height: 16px; }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid image-slot { width: 100%; aspect-ratio: 1/1; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery-grid .g-tall { grid-row: span 2; aspect-ratio: 1/2; }

/* editorial / press */
.press { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.press__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; position: relative; }
.press__media image-slot, .press__media img { width: 100%; height: 100%; }
.press__play { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; z-index: 3; }
.press__play span { width: 74px; height: 74px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: grid; place-items: center; box-shadow: var(--shadow-md); }
.press__play svg { width: 30px; height: 30px; color: var(--blue); margin-left: 4px; }
.editor-note {
  border: 1px dashed var(--blue); background: var(--paper-2); border-radius: var(--r); padding: 16px 18px;
  color: var(--blue-deep); font-size: .92rem; display: flex; gap: 10px; align-items: flex-start; margin-top: 22px;
}
.editor-note svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }

@media (max-width: 860px) {
  .feature, .press { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: -1; }
  .rel-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g-tall { grid-row: span 1; aspect-ratio: 1/1; }
}

/* ============================================================
   "5 DANGERS" — danger vs. clean n' go way comparison
   ============================================================ */
.danger-list { display: grid; gap: 22px; max-width: 1000px; margin: 0 auto; }
.danger-row {
  border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.danger-row__head {
  display: flex; align-items: center; gap: 16px; padding: 20px clamp(20px, 3vw, 30px);
  background: var(--blue-ink); color: #fff;
}
.danger-row__num {
  flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--yellow); color: var(--blue-ink); font-family: var(--font-eyebrow);
  font-size: 1.3rem; font-weight: 700;
}
.danger-row__head h3 { color: #fff; font-size: clamp(1.2rem, 2.4vw, 1.55rem); margin: 0; }
.danger-row__cols { display: grid; grid-template-columns: 1fr 1fr; }
.danger-col { padding: clamp(20px, 3vw, 28px); }
.danger-col--bad { background: #fff5f3; border-right: 1px solid var(--line); }
.danger-col--good { background: var(--paper-2); }
.danger-col__label {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-eyebrow);
  text-transform: uppercase; letter-spacing: .06em; font-size: .8rem; font-weight: 600; margin-bottom: 10px;
}
.danger-col--bad .danger-col__label { color: #c0392b; }
.danger-col--good .danger-col__label { color: var(--blue); }
.danger-col__label svg { width: 18px; height: 18px; }
.danger-col p { color: var(--muted); margin: 0; font-size: 1rem; }
.danger-col p strong { color: var(--blue-ink); }
@media (max-width: 680px) { .danger-row__cols { grid-template-columns: 1fr; } .danger-col--bad { border-right: none; border-bottom: 1px solid var(--line); } }

/* ============================================================
   VIDEO CARDS (FAQ Instagram reels)
   ============================================================ */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.video-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s; color: var(--blue-ink);
}
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.video-card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--blue-ink); }
.video-card__media image-slot, .video-card__media img { width: 100%; height: 100%; }
.video-card__play { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; z-index: 3; }
.video-card__play span { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: grid; place-items: center; box-shadow: var(--shadow-md); }
.video-card__play svg { width: 26px; height: 26px; color: var(--blue); margin-left: 3px; }
.video-card__ig { position: absolute; top: 12px; right: 12px; z-index: 3; width: 30px; height: 30px; color: #fff; opacity: .95; }
.video-card__body { padding: 20px 22px 24px; }
.video-card__body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.video-card__body p { color: var(--muted); font-size: .95rem; margin: 0; }
@media (max-width: 760px) { .video-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ============================================================
   AWARD / PRESS ARTICLE (Fairfield StartUp)
   ============================================================ */
.award-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.award-hero__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.award-hero__media img, .award-hero__media image-slot { width: 100%; height: auto; display: block; }
.award-cap { font-size: .85rem; color: var(--muted); padding: 12px 16px; background: var(--paper-2); border-top: 1px solid var(--line); }
.award-badge {
  display: inline-flex; align-items: center; gap: 9px; background: var(--yellow); color: var(--blue-ink);
  font-family: var(--font-eyebrow); text-transform: uppercase; letter-spacing: .05em; font-weight: 600;
  font-size: .85rem; padding: 8px 16px; border-radius: 999px; margin-bottom: 18px;
}
.award-badge svg { width: 18px; height: 18px; }
.award-block { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(24px, 4vw, 48px); align-items: center; margin-top: 8px; }
.award-block--flip .award-block__media { order: 2; }
.award-block__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.award-block__media image-slot, .award-block__media img { width: 100%; height: 100%; }
.award-block__body h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin-bottom: 14px; }
.award-block__body p { color: var(--muted); margin: 0; font-size: 1.04rem; }
@media (max-width: 860px) {
  .award-hero, .award-block { grid-template-columns: 1fr; }
  .award-block--flip .award-block__media { order: -1; }
}

/* ============================================================
   HOMEPAGE VSL (founder video) — replaces the suit photo
   ============================================================ */
.hero-vsl { display: flex; flex-direction: column; justify-content: center; gap: 18px; padding: clamp(26px, 3.2vw, 52px) clamp(22px, 3vw, 48px); background: var(--paper-3); }
.hero-vsl__h1 {
  font-family: var(--font-display); font-weight: 700; color: var(--blue-ink);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem); line-height: 1.04; letter-spacing: -.01em;
}
.hero-vsl__h1 .hl { color: var(--blue); }
.hero-vsl__sub { color: var(--muted); font-size: 1.05rem; max-width: 46ch; margin-top: -4px; }
.hero-vsl__frame {
  position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); background: var(--blue-ink);
}
.hero-vsl__frame iframe, .hero-vsl__frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.hero-vsl__poster {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; gap: 10px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(43,120,212,.30), transparent 60%),
    linear-gradient(160deg, var(--blue-ink), var(--blue-deep));
  color: #fff; padding: 22px;
}
.hero-vsl__poster .play { width: 78px; height: 78px; border-radius: 50%; background: var(--yellow); color: var(--blue-ink); display: grid; place-items: center; box-shadow: var(--shadow-md); margin: 0 auto; }
.hero-vsl__poster .play svg { width: 34px; height: 34px; margin-left: 4px; }
.hero-vsl__poster b { font-family: var(--font-display); font-size: 1.15rem; display: block; margin-top: 4px; }
.hero-vsl__poster small { color: #b8cfea; font-size: .82rem; }
.hero-vsl__token { position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); font-family: var(--font-eyebrow); letter-spacing: .04em; font-size: .64rem; color: #9fc2ee; background: rgba(10,37,64,.5); padding: 3px 10px; border-radius: 999px; }
.hero-vsl__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-vsl__actions .btn { flex: 1 1 auto; justify-content: center; }
.hero-vsl__call {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--blue); color: #fff; font-family: var(--font-display); font-weight: 600;
  border-radius: 999px; padding: 15px 26px; font-size: 1.08rem; box-shadow: var(--shadow-blue);
}
.hero-vsl__call svg { width: 1.15em; height: 1.15em; }
.hero-vsl__call:hover { background: var(--blue-deep); transform: translateY(-2px); }
.hero-vsl__trustline { display: flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 700; font-size: .9rem; }
.hero-vsl__trustline .stars { color: var(--yellow-deep); letter-spacing: 1px; }
@media (max-width: 980px) { .hero-vsl { order: -1; } }

/* ============================================================
   PRESS / AWARD TRUST BADGES (near top)
   ============================================================ */
.proof-strip { background: #fff; border-bottom: 1px solid var(--line); }
.proof-strip .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 26px; padding-block: 18px; }
.proof-badge {
  display: inline-flex; align-items: center; gap: 11px; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px 9px 12px;
  color: var(--blue-ink); font-weight: 700; font-size: .92rem; box-shadow: var(--shadow-sm);
}
.proof-badge svg { width: 22px; height: 22px; color: var(--blue); flex: none; }
a.proof-badge { text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
a.proof-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--blue); }
a.proof-badge.proof-badge--gold:hover { border-color: var(--yellow-deep); }
.proof-badge b { font-family: var(--font-display); }
.proof-badge small { display: block; color: var(--muted); font-weight: 600; font-size: .76rem; }
.proof-badge--gold { background: #fff9df; border-color: var(--yellow); }
.proof-badge--gold svg { color: var(--yellow-deep); }

/* ============================================================
   STICKY MOBILE CLICK-TO-CALL (injected by app.js)
   ============================================================ */
.sticky-call {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); border-top: 1px solid var(--line);
  backdrop-filter: blur(8px); box-shadow: 0 -6px 20px rgba(10,37,64,.12);
}
.sticky-call a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; border-radius: 999px; padding: 14px 16px; min-height: 52px; }
.sticky-call .sc-call { background: var(--blue); color: #fff; }
.sticky-call .sc-quote { background: var(--yellow); color: var(--blue-ink); }
.sticky-call svg { width: 1.1em; height: 1.1em; }
@media (max-width: 768px) {
  .sticky-call { display: flex; }
  body { padding-bottom: 76px; }
}

/* ============================================================
   LOCAL / TOWN LANDING PAGES
   ============================================================ */
.local-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.local-intro__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.local-intro__media img { width: 100%; height: 100%; object-fit: cover; }
.local-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.local-chips li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-weight: 700; color: var(--blue-ink); font-size: .92rem; box-shadow: var(--shadow-sm); }
@media (max-width: 860px) { .local-intro { grid-template-columns: 1fr; } }

.footer-areas { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-areas a { color: #8ea6c6; font-size: .82rem; font-weight: 600; }
.footer-areas a:hover { color: #fff; }


/* ---- seasonal sub-items in Services dropdown ---- */
.site-header--split .nav .dropdown a.dd-sub {
  padding: 8px 14px 8px 32px; font-size: .82rem; font-weight: 600;
  text-transform: none; letter-spacing: .01em; color: var(--muted); position: relative;
}
.site-header--split .nav .dropdown a.dd-sub::before {
  content: "\21B3"; position: absolute; left: 14px; top: 7px;
  color: var(--blue); opacity: .6; font-size: .85rem;
}
.site-header--split .nav .dropdown a.dd-sub:hover { color: var(--blue); background: var(--paper-2); }
.drawer nav a.drawer__sub2 {
  padding-left: 44px; font-size: .92rem; color: var(--muted); position: relative;
}
.drawer nav a.drawer__sub2::before {
  content: "\21B3"; position: absolute; left: 28px; color: var(--blue); opacity: .6;
}

/* ---- reviews: honest 5.0 Google highlight (no fabricated testimonials) ---- */
.reviews-highlight {
  max-width: 640px; margin: 0 auto 4px; text-align: center; background: #fff;
  border: 1px solid var(--cream-line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); padding: 40px 34px;
}
.reviews-highlight .rh-score {
  font-family: var(--font-display); font-size: 4rem; line-height: 1; color: var(--blue);
}
.reviews-highlight .rh-stars {
  color: #f5b301; font-size: 1.55rem; letter-spacing: 4px; margin: 4px 0 14px;
}
.reviews-highlight .rh-text {
  color: var(--muted); font-size: 1.05rem; max-width: 50ch; margin: 0 auto; text-wrap: pretty;
}
