/* =========================================================
   All Pro Exterior Cleaning — Global Stylesheet
   Plain CSS. No frameworks.
   Palette: white, navy, blue, light gray, green accents.
   Edit the :root variables below to re-theme the whole site.
   ========================================================= */

:root {
  /* Brand colors */
  --navy:       #0F2A47;   /* headings, footer, dark text */
  --navy-2:     #143A63;
  --blue:       #1E6FD9;   /* primary buttons / links */
  --blue-dark:  #155CB8;
  --blue-soft:  #EAF2FD;   /* light blue tint backgrounds */
  --green:      #2FBF71;   /* accent / call buttons */
  --green-dark: #239B59;
  --light-gray: #F4F7FB;   /* section backgrounds */
  --gray:       #E3E9F1;   /* borders */
  --text:       #2A3645;   /* body text */
  --muted:      #5C6B7C;   /* secondary text */
  --white:      #FFFFFF;
  --star:       #FFB400;

  --radius:     16px;
  --radius-lg:  22px;
  --shadow-sm:  0 4px 14px rgba(15,42,71,0.07);
  --shadow:     0 10px 30px rgba(15,42,71,0.10);
  --shadow-lg:  0 20px 50px rgba(15,42,71,0.16);
  --maxw:       1180px;
  --ease:       cubic-bezier(.22,.61,.36,1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.18; font-weight: 800; }
.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.section { padding: 76px 0; }
.section.tint { background: var(--light-gray); }
.section.blue-tint { background: var(--blue-soft); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 1rem; padding: 13px 26px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-call { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(47,191,113,0.32); }
.btn-call:hover { background: var(--green-dark); box-shadow: 0 12px 26px rgba(47,191,113,0.40); }
.btn-quote { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(30,111,217,0.30); }
.btn-quote:hover { background: var(--blue-dark); box-shadow: 0 12px 26px rgba(30,111,217,0.40); }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--gray); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--blue-soft); }
.btn-ghost-light { background: rgba(255,255,255,0.12); color:#fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); }

/* Blueworks booking buttons — electric blue / cyan (logo style) */
.btn-book {
  background: linear-gradient(135deg, #009DFF 0%, #00CFFF 100%);
  color: #04121f; font-weight: 800; border: 0;
  box-shadow: 0 8px 22px rgba(0,157,255,0.40);
}
.btn-book:hover {
  background: linear-gradient(135deg, #00CFFF 0%, #36d8ff 100%);
  color: #04121f; transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,207,255,0.60);
}
.btn-book:focus-visible { outline: 3px solid #9be7ff; outline-offset: 2px; }

/* small helper text under booking buttons */
.btn-note { display: block; margin-top: 10px; font-size: 0.82rem; color: var(--muted); }
.hero .btn-note, .cta-band .btn-note, .booking-band .btn-note,
.contact-hero-card .btn-note { color: #cfe0f2; }
.contact-hero-card .btn-note { color: #5C6B7C; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 10px; }

/* "Ready for a Cleaner Exterior?" booking band — dark navy/black */
.booking-band {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, #05080D 0%, #071A2F 55%, #0a2a4a 100%);
}
.booking-band::after {
  content: ""; position: absolute; width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,157,255,0.30), transparent 70%);
  top: -150px; right: -120px; pointer-events: none;
}
.booking-band::before {
  content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,207,255,0.18), transparent 70%);
  bottom: -160px; left: -120px; pointer-events: none;
}
.booking-band .container { position: relative; z-index: 2; }
.booking-band .section-head h2 { color: #fff; }
.booking-band .section-head p { color: #cfe0f2; }
.kicker.light { color: #19c8ff; }
.booking-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Top announcement bar (site-wide discount) ---------- */
.announce-bar {
  background: linear-gradient(135deg, #009DFF 0%, #00CFFF 100%);
  color: #04121f; font-size: .93rem;
}
.announce-inner {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 9px 0; flex-wrap: wrap; text-align: center;
}
.announce-bar svg { width: 18px; height: 18px; stroke: #04121f; fill: none; stroke-width: 2; flex: none; }
.announce-bar strong { font-weight: 800; }
.announce-cta { color: #04121f; font-weight: 800; text-decoration: underline; white-space: nowrap; }
.announce-cta:hover { color: #063a66; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--gray);
  transition: box-shadow .25s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: 52px; object-fit: cover; border-radius: 50%;
  box-shadow: 0 2px 8px rgba(15,42,71,0.18); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-weight: 900; font-size: 1.16rem; letter-spacing: .5px; color: var(--navy); }
.brand-sub { font-size: .62rem; letter-spacing: 2.5px; color: var(--blue); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 22px; }
.nav-links { display: flex; align-items: center; gap: 20px; list-style: none; }
.nav-links a {
  color: var(--navy); font-weight: 600; font-size: .96rem; position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2.5px; width: 0;
  background: var(--blue); border-radius: 2px; transition: width .22s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone { font-weight: 800; color: var(--navy); white-space: nowrap; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 3px; border-radius: 3px; background: var(--navy); transition: .3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* dropdown for services in nav */
.has-sub { position: relative; }
.submenu {
  position: absolute; top: 130%; left: 0; min-width: 240px; background: #fff;
  border: 1px solid var(--gray); border-radius: 14px; box-shadow: var(--shadow);
  padding: 8px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: .2s var(--ease);
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; padding: 9px 12px; border-radius: 9px; font-size: .92rem; }
.submenu a::after { display: none; }
.submenu a:hover { background: var(--blue-soft); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, var(--blue-dark) 120%);
  padding: 92px 0 84px;
}
.hero::after {
  content:""; position:absolute; right:-120px; top:-120px; width:480px; height:480px; border-radius:50%;
  background: radial-gradient(circle, rgba(30,111,217,0.45), transparent 70%); pointer-events:none;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.5rem); letter-spacing: -.5px; max-width: 900px; }
.hero .sub { color: #D6E2F1; font-size: clamp(1.02rem, 1.7vw, 1.22rem); max-width: 720px; margin: 18px 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero.page-hero { padding: 66px 0 60px; }
.eyebrow {
  display:inline-block; font-size:.78rem; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  color:#9FD0FF; background: rgba(255,255,255,0.08); padding:6px 14px; border-radius:999px; margin-bottom:18px;
}
.breadcrumb { color:#AFC4DC; font-size:.86rem; margin-top:14px; }
.breadcrumb a { color:#CFE0F2; }

/* ---------- Trust badges ---------- */
.trust-bar { background: #fff; border-bottom: 1px solid var(--gray); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 12px; justify-content: center; }
.trust-item .ic { width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--blue-soft); }
.trust-item .ic svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 2; }
.trust-item b { color: var(--navy); font-size: .96rem; }
.trust-item span { display: block; color: var(--muted); font-size: .8rem; }

/* ---------- Section headings ---------- */
.section-head { max-width: 720px; margin: 0 auto 46px; text-align: center; }
.kicker { color: var(--blue); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; font-size: .8rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 8px 0 12px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--gray); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #cfe0f5; }
.card .ic-tile {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--blue-soft), #fff); border: 1px solid var(--gray);
}
.card .ic-tile svg { width: 30px; height: 30px; stroke: var(--blue); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .97rem; margin-bottom: 14px; }
.card .card-link { font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.card .card-link:hover { gap: 10px; }
.card ul { list-style: none; margin: 10px 0 16px; }
.card ul li { position: relative; padding-left: 26px; margin-bottom: 7px; color: var(--text); font-size: .95rem; }
.card ul li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 900;
  width: 18px; height: 18px;
}

/* ---------- Why choose us ---------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .ic {
  width: 52px; height: 52px; flex: none; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-soft);
}
.feature .ic svg { width: 26px; height: 26px; stroke: var(--blue); fill:none; stroke-width:2; }
.feature h3 { font-size: 1.1rem; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: .95rem; }

/* ---------- Reviews ---------- */
.review-card { background:#fff; border:1px solid var(--gray); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.stars { color: var(--star); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-card p.quote { color: var(--text); font-size: 1rem; margin-bottom: 18px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer .avatar {
  width: 44px; height: 44px; border-radius: 50%; display:grid; place-items:center; color:#fff; font-weight:800;
  background: linear-gradient(135deg, var(--blue), var(--navy));
}
.reviewer b { color: var(--navy); display: block; font-size: .96rem; }
.reviewer span { color: var(--muted); font-size: .84rem; }

/* ---------- Service detail page ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.prose h2 { font-size: 1.7rem; margin: 0 0 14px; }
.prose h3 { font-size: 1.25rem; margin: 26px 0 10px; }
.prose p { color: var(--text); margin-bottom: 14px; }
.checklist { list-style: none; margin: 8px 0 8px; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 10px; color: var(--text); }
.checklist li::before { content:"✓"; position:absolute; left:0; top:0; color:#fff; background:var(--green); width:20px; height:20px; border-radius:50%; font-size:.72rem; display:grid; place-items:center; font-weight:900; }
.media-card { background: var(--blue-soft); border:1px solid var(--gray); border-radius: var(--radius-lg); padding: 0; overflow: hidden; box-shadow: var(--shadow-sm); }
.img-placeholder {
  width: 100%; aspect-ratio: 4/3; display: grid; place-items: center; text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(30,111,217,0.06) 0 14px, rgba(30,111,217,0.12) 14px 28px),
    linear-gradient(135deg, var(--blue-soft), #fff);
  color: var(--navy);
}
.img-placeholder .ph-inner { padding: 18px; }
.img-placeholder svg { width: 46px; height: 46px; stroke: var(--blue); fill:none; stroke-width:1.6; margin-bottom: 8px; }
.img-placeholder b { display:block; color: var(--navy); }
.img-placeholder small { color: var(--muted); }

/* ---------- Gallery ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 30px; }
.filter-btn {
  border: 1px solid var(--gray); background:#fff; color: var(--navy); font-weight: 700; font-size: .92rem;
  padding: 9px 18px; border-radius: 999px; cursor: pointer; transition: .2s var(--ease);
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--blue); color:#fff; border-color: var(--blue); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border:1px solid var(--gray); background:#fff; }
.gallery-item .cap { padding: 12px 14px; display:flex; justify-content: space-between; align-items:center; }
.gallery-item .cap b { font-size: .92rem; color: var(--navy); }
.gallery-item .cap small { display:block; color: var(--muted); font-size: .76rem; }
.gallery-item .cap span { font-size: .72rem; font-weight:700; color: #fff; background: var(--blue); padding: 4px 11px; border-radius: 999px; white-space:nowrap; align-self:center; }

/* Before/After gallery */
.ba-grid { grid-template-columns: repeat(2, 1fr); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.ba-img { position: relative; margin: 0; overflow: hidden; }
.ba-img img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform .35s var(--ease); }
.ba-card:hover .ba-img img { transform: scale(1.05); }
.ba-img figcaption {
  position: absolute; left: 8px; top: 8px; background: rgba(15,42,71,.88); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.ba-img figcaption.after { background: var(--green); left: auto; right: 8px; }

/* Real photos that replaced the old placeholder graphics */
.media-card .media-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.ba-single { position: relative; overflow: hidden; }
.ba-single img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; transition: transform .35s var(--ease); }
.sample-card:hover .ba-single img { transform: scale(1.05); }
.ba-flag {
  position: absolute; top: 8px; left: 8px; background: var(--green); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border:1px solid var(--gray); border-radius: 14px; margin-bottom: 14px; overflow: hidden; background:#fff; }
.faq-q {
  width:100%; text-align:left; background:#fff; border:0; cursor:pointer;
  padding: 20px 22px; font-size: 1.05rem; font-weight: 700; color: var(--navy);
  display:flex; justify-content: space-between; gap: 16px; align-items:center;
}
.faq-q .chev { transition: transform .25s var(--ease); color: var(--blue); font-size: 1.3rem; flex:none; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a .faq-a-inner { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Service area / towns ---------- */
.town-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.town {
  background:#fff; border:1px solid var(--gray); border-radius: 12px; padding: 16px; text-align:center;
  font-weight: 700; color: var(--navy); display:flex; align-items:center; justify-content:center; gap:8px;
  transition: .2s var(--ease);
}
.town:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.town svg { width:16px; height:16px; stroke: var(--green); fill:none; stroke-width:2; }

/* NJ map */
.map-wrap { background:#fff; border:1px solid var(--gray); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.nj-map { width: 100%; height: auto; }
.nj-base { fill: #E7EDF5; stroke:#C9D6E6; stroke-width:2; }
.county-hl { stroke:#fff; stroke-width:2.5; transition: .2s var(--ease); cursor: default; }
.county-monmouth { fill: var(--blue); }
.county-ocean { fill: var(--green); }
.county-hl:hover { filter: brightness(1.08); }
.map-label { font-size: 15px; font-weight: 800; fill:#fff; }
.map-legend { display:flex; gap:22px; flex-wrap:wrap; margin-top:18px; }
.map-legend span { display:flex; align-items:center; gap:8px; font-weight:700; color: var(--navy); font-size:.92rem; }
.legend-dot { width:16px; height:16px; border-radius:4px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--navy), var(--blue-dark)); color:#fff; text-align:center; }
.cta-band h2 { color:#fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.cta-band p { color:#D6E2F1; font-size: 1.08rem; max-width: 640px; margin: 12px auto 26px; }
.cta-phone { display:inline-flex; align-items:center; gap:10px; font-size:1.5rem; font-weight:900; color:#fff; margin-bottom: 22px; }
.cta-buttons { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------- Stat / strip ---------- */
.strip { display:grid; grid-template-columns: repeat(3,1fr); gap:24px; text-align:center; }
.strip .num { font-size:2.2rem; font-weight:900; color:var(--blue); }
.strip .lbl { color: var(--muted); font-weight:600; }

/* ---------- Contact ---------- */
.contact-hero-card {
  background:#fff; border:1px solid var(--gray); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow);
  text-align:center;
}
.contact-hero-card .big-phone { font-size: clamp(2rem,5vw,2.8rem); font-weight: 900; color: var(--navy); display:block; margin: 10px 0 22px; }
.info-row { display:flex; gap:14px; align-items:flex-start; padding: 16px 0; border-bottom:1px solid var(--gray); }
.info-row:last-child { border-bottom:0; }
.info-row .ic { width:44px;height:44px;flex:none;border-radius:12px;background:var(--blue-soft);display:grid;place-items:center; }
.info-row .ic svg { width:22px;height:22px;stroke:var(--blue);fill:none;stroke-width:2; }
.info-row b { color: var(--navy); }
.info-row p { color: var(--muted); font-size:.95rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #C7D5E6; padding-top: 60px; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; }
.footer-brand img { height: 64px; width:64px; object-fit: cover; border-radius:50%; margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.footer-brand p { color:#9FB3C9; font-size:.94rem; max-width: 300px; }
.footer-col h4 { color:#fff; font-size:.95rem; letter-spacing:1px; margin-bottom: 14px; }
.footer-col a, .footer-col p { display:block; color:#AFC1D6; font-size:.93rem; padding:5px 0; transition: color .2s var(--ease); }
.footer-col a:hover { color:#fff; }
.footer-phone-big { color:#fff !important; font-weight:900; font-size:1.25rem; }
.footer-social { display:inline-flex !important; align-items:center; gap:8px; font-weight:700; }
.footer-social svg { width:18px; height:18px; stroke:#AFC1D6; fill:none; stroke-width:2; transition: stroke .2s var(--ease); }
.footer-social:hover svg { stroke:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.12); padding: 20px 0; }
.footer-bottom .container { display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; font-size:.85rem; color:#8FA3BA; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .town-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 860px) {
  .nav-links, .header-phone { display: none; }
  .hamburger { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: fixed; left: 0; right: 0; top: 78px; background:#fff;
    border-bottom:1px solid var(--gray); padding: 16px 20px 24px; box-shadow: var(--shadow);
  }
  .nav.open .nav-links a { padding: 13px 4px; border-bottom:1px solid var(--light-gray); }
  .nav.open .nav-links a::after { display:none; }
  .nav.open .submenu { position: static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:0; padding:0 0 0 12px; }
  .has-sub .submenu { display:none; }
  .nav.open .has-sub .submenu { display:block; }
}
@media (max-width: 680px) {
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr; gap: 14px; }
  .town-grid { grid-template-columns: repeat(2,1fr); }
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
  .btn-lg { width: 100%; }
  .hero-cta .btn, .cta-buttons .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) { * { transition:none !important; scroll-behavior:auto !important; } }

/* ============================================================
   MEDIA REVAMP — video + professional photography components
   ============================================================ */

/* Photo-background hero */
.hero.photo-hero { background: #0b1a2c; }
.hero.photo-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero.photo-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero.photo-hero::after { display: none; }
.hero.photo-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,18,31,.68) 0%, rgba(8,18,31,.80) 60%, rgba(8,18,31,.92) 100%);
}
.hero.photo-hero .container { position: relative; z-index: 2; }

/* Section: dark video band */
.video-band { background: linear-gradient(135deg, #071A2F 0%, #05080D 100%); color: #fff; position: relative; overflow: hidden; }
.video-band .section-head h2 { color: #fff; }
.video-band .section-head p { color: #cfe0f2; }
.video-band .kicker { color: #19c8ff; }

/* Horizontal video player */
.video-wrap {
  max-width: 920px; margin: 0 auto; border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.10); background: #000;
}
.video-wrap video { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; background:#000; }

/* Testimonial video layout */
.testi-video { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; max-width: 1040px; margin: 0 auto; }
.testi-quote .stars { color: var(--star); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 14px; }
.testi-quote blockquote { font-size: 1.35rem; line-height: 1.5; font-weight: 700; color: #fff; margin: 0 0 18px; }
.testi-quote .who b { color: #fff; font-size: 1.05rem; display: block; }
.testi-quote .who span { color: #9fd0ff; font-size: .92rem; }

/* Vertical video (phone-style) */
.vvideo-row { display: flex; gap: 40px; align-items: center; justify-content: center; flex-wrap: wrap; }
.vvideo { width: 300px; flex: none; border-radius: 26px; overflow: hidden; background: #000;
  box-shadow: 0 24px 60px rgba(15,42,71,.28); border: 4px solid #0d1e33; }
.vvideo video { width: 100%; display: block; aspect-ratio: 9/16; object-fit: cover; }
.vvideo-copy { max-width: 440px; }

/* "See us in action" showcase grid */
.showcase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; grid-auto-flow: dense; }
.showcase-grid .sh { position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 1/1; }
.showcase-grid .sh img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.showcase-grid .sh:hover img { transform: scale(1.07); }
.showcase-grid .sh.wide { grid-column: span 2; aspect-ratio: 2/1; }

/* Meet the team */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: 620px; margin: 0 auto; }
.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }
.team-card b { display: block; margin-top: 14px; color: var(--navy); font-size: 1.15rem; }
.team-card span { color: var(--muted); font-size: .92rem; }

/* Photo header on service preview cards */
.card.has-photo { padding: 0; overflow: hidden; }
.card .card-photo { aspect-ratio: 16/10; overflow: hidden; }
.card .card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.card.has-photo:hover .card-photo img { transform: scale(1.06); }
.card .card-body { padding: 24px 24px 26px; }
.card .card-body .ic-tile { margin-top: -52px; position: relative; background: #fff; }

/* Media photo (replaces striped placeholder) */
.media-card .media-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .testi-video { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid .sh.wide, .showcase-grid .sh.tall { grid-column: auto; grid-row: auto; aspect-ratio: 1/1; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .vvideo { width: 260px; }
}

/* Google reviews card (real 5.0 / 32 reviews) */
.google-card {
  background: #fff; border: 1px solid var(--gray); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); max-width: 520px; margin: 0 auto;
  padding: 34px 30px; text-align: center;
}
.google-card svg { margin: 0 auto 10px; display: block; }
.google-card .g-rating { font-size: 3rem; font-weight: 900; color: var(--navy); line-height: 1; }
.google-card .stars { color: var(--star); font-size: 1.5rem; letter-spacing: 3px; margin: 6px 0; }
.google-card .g-sub { color: var(--muted); margin: 8px 0 20px; }
