/* SurfacePro Pressure Washing — site styles
   Layout modeled on a band-based local-service framework:
   dark header → rating strip → hero w/ quote card → alternating bands. */

:root {
  --ink: #0b1116;          /* near-black, from logo */
  --ink-2: #131c24;
  --ink-3: #1c2832;
  --cyan: #00bbee;         /* exact logo blue */
  --cyan-dark: #0099c4;    /* same hue as logo blue, darker for small text on white */
  --cyan-soft: #e0f7fd;
  --steel: #4a5561;        /* "PRESSURE WASHING+" grey */
  --paper: #f5f7f9;
  --paper-2: #e9eef2;
  --white: #ffffff;
  --text: #1b242c;
  --muted: #5b6772;
  --line: #d9e1e7;
  --star: #f5b301;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(11, 17, 22, .10);
  --shadow-lg: 0 24px 60px rgba(11, 17, 22, .28);
  --wrap: 1200px;
  --head: "Montserrat", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 150px; }
@media (max-width: 1080px) { html { scroll-padding-top: 90px; } }
body { margin: 0; font-family: var(--body); color: var(--text); background: var(--paper); line-height: 1.6; font-size: 17px; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--head); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--cyan); color: var(--ink); padding: 8px 14px; z-index: 999; }
.skip:focus { left: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--head); font-weight: 700; font-size: 1rem; padding: 15px 26px; border-radius: 999px; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--cyan); color: var(--ink); }
.btn-primary:hover { background: #33c9f1; }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-3); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-sm { padding: 10px 18px; font-size: .92rem; }

.eyebrow { font-family: var(--head); font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan-dark); margin: 0 0 .8em; }
.on-dark .eyebrow, .eyebrow.light { color: var(--cyan); }
.stars { color: var(--star); letter-spacing: 2px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); color: var(--ink); box-shadow: 0 3px 0 var(--cyan), 0 6px 20px rgba(11,17,22,.08); }
/* Centered logo: phone left, logo center, quote button right; nav row below on desktop */
.nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; column-gap: 20px; }
.brand { grid-column: 2; grid-row: 1; display: flex; align-items: center; justify-content: center; height: 84px; }
.brand img { height: 48px; width: auto; }
.nav-phone { grid-column: 1; grid-row: 1; justify-self: start; }
.nav > .btn { grid-column: 3; grid-row: 1; justify-self: end; }
.nav-toggle { grid-column: 3; grid-row: 1; justify-self: end; }
.nav > nav { grid-column: 1 / -1; grid-row: 2; border-top: 1px solid var(--line); }
.menu { display: flex; align-items: center; justify-content: center; gap: 8px; list-style: none; margin: 0; padding: 4px 0; }
.menu > li { position: relative; }
.menu a, .menu button { display: flex; align-items: center; gap: 4px; font-family: var(--head); font-weight: 600; font-size: .95rem; color: var(--ink); text-decoration: none; background: none; border: 0; padding: 10px 12px; border-radius: 8px; cursor: pointer; }
.menu a:hover, .menu button:hover, .menu a[aria-current="page"] { color: var(--cyan-dark); }
.menu .caret { width: 10px; height: 10px; opacity: .7; }
.dropdown { position: absolute; top: 100%; left: 0; min-width: 270px; background: var(--white); color: var(--text); border-radius: 12px; box-shadow: var(--shadow-lg); padding: 8px; list-style: none; margin: 0; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .15s ease; }
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown, .has-drop.open .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a { color: var(--text); padding: 10px 12px; font-weight: 500; font-size: .93rem; }
.dropdown a:hover { background: var(--cyan-soft); color: var(--ink); }
.dropdown .all { border-top: 1px solid var(--line); margin-top: 4px; font-weight: 700; color: var(--cyan-dark); }
.nav-phone { display: flex; align-items: center; gap: 8px; color: var(--ink); text-decoration: none; font-family: var(--head); font-weight: 700; font-size: .95rem; }
.nav-phone svg { width: 18px; height: 18px; color: var(--cyan-dark); }
.nav-phone:hover { color: var(--cyan-dark); }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); padding: 8px; cursor: pointer; }
.nav-toggle svg { width: 28px; height: 28px; }

.rating-strip { background: #05090c; color: #cfd8df; font-size: .9rem; text-align: center; padding: 8px 16px; }
.rating-strip strong { color: var(--white); font-family: var(--head); }
.rating-strip a { color: var(--white); font-weight: 600; text-decoration: none; }
.rating-strip a:hover { color: var(--cyan); }
.rating-strip .dot { opacity: .4; margin: 0 8px; }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .nav-phone span, .nav .btn { display: none; }
  .nav > nav { border-top: 0; grid-row: 1; grid-column: 1; }
  .brand { height: 76px; }
  .brand img { height: 40px; }
  .menu { position: fixed; inset: 79px 0 0 0; background: var(--white); flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 40px; overflow-y: auto; display: none; margin: 0; }
  .menu.open { display: flex; }
  .menu a, .menu button { font-size: 1.1rem; padding: 14px 4px; width: 100%; justify-content: space-between; border-bottom: 1px solid var(--line); border-radius: 0; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; padding: 0 0 0 12px; display: none; min-width: 0; }
  .has-drop.open .dropdown { display: block; }
  .dropdown a { color: var(--muted); font-size: 1rem; }
  .dropdown a:hover { background: none; color: var(--cyan-dark); }
  .menu .menu-cta { display: flex; margin-top: 20px; border: 0; justify-content: center; }
}
@media (min-width: 1081px) { .menu .menu-cta { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; color: var(--white); background: var(--ink); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,13,17,.93) 0%, rgba(8,13,17,.82) 45%, rgba(8,13,17,.55) 100%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 56px; align-items: start; padding: 72px 20px 80px; }
.hero-copy { position: sticky; top: 170px; padding-top: 30px; }
.hero-copy .lead { font-size: 1.14rem; color: #d5dde3; max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.chips li { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 600; padding: 8px 14px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.06); border-radius: 999px; }
.chips svg { width: 14px; height: 14px; color: var(--cyan); }
.hero-rating { display: flex; align-items: center; gap: 12px; margin-top: 26px; font-size: .95rem; color: #cfd8df; }
.hero-rating .stars { font-size: 1.15rem; }
.hero-rating a { color: var(--white); font-weight: 600; }

.quote-card { background: var(--white); color: var(--text); border-radius: 20px; box-shadow: var(--shadow-lg); border-top: 6px solid var(--cyan); overflow: hidden; }
.quote-card-head { padding: 24px 26px 6px; }
.quote-card-head h2 { font-size: 1.55rem; margin-bottom: .3em; }
.quote-card-head p { color: var(--muted); font-size: .95rem; margin: 0; }
.quote-card-alt { display: flex; gap: 10px; padding: 14px 26px 0; }
.quote-card-alt .btn { flex: 1; padding: 11px 12px; font-size: .9rem; }
.hcp-embed { width: 100%; }
.hcp-embed iframe { width: 100%; height: 1040px; border: 0; display: block; }
.quote-card-foot { padding: 0 26px 20px; font-size: .78rem; color: var(--muted); }

/* Sub-page hero */
.page-hero { position: relative; color: var(--white); background: var(--ink); overflow: hidden; }
.page-hero .hero-bg::after { background: linear-gradient(90deg, rgba(8,13,17,.94) 0%, rgba(8,13,17,.78) 60%, rgba(8,13,17,.6) 100%); }
.page-hero-inner { position: relative; padding: 64px 20px 72px; max-width: var(--wrap); margin: 0 auto; }
.page-hero-inner .lead { font-size: 1.12rem; color: #d5dde3; max-width: 720px; }
.crumbs { font-size: .85rem; color: #9fb0bc; margin-bottom: 18px; }
.crumbs a { color: #cfd8df; text-decoration: none; }
.crumbs a:hover { color: var(--cyan); }
.crumbs span { margin: 0 6px; opacity: .6; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding: 48px 20px 56px; }
  .hero-copy { position: static; padding-top: 0; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(8,13,17,.9), rgba(8,13,17,.8)); }
}
@media (max-width: 520px) {
  .hero-actions .btn { width: 100%; }
  .quote-card-head, .quote-card-alt { padding-left: 18px; padding-right: 18px; }
  .hcp-embed iframe { height: 1120px; }
}

/* ---------- Bands ---------- */
.band { padding: 88px 0; }
.band-white { background: var(--white); }
.band-paper { background: var(--paper); }
.band-pale { background: var(--paper-2); }
.band-dark { background: var(--ink); color: var(--white); }
.band-dark p { color: #c3ced6; }
.band-tight { padding: 56px 0; }
.center-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.center-head p { color: var(--muted); font-size: 1.05rem; }
.band-dark .center-head p { color: #aebbc5; }
@media (max-width: 720px) { .band { padding: 64px 0; } }

/* Answer box (summary + side card) */
.answer-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 24px; align-items: stretch; }
.answer-box { background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--cyan); border-radius: var(--radius); padding: 30px 32px; box-shadow: var(--shadow); }
.answer-box p { font-size: 1.06rem; }
.facts { list-style: none; padding: 16px 0 0; margin: 16px 0 0; border-top: 1px solid var(--line); display: grid; gap: 6px; }
.facts li { font-size: .96rem; }
.facts strong { font-family: var(--head); }
.side-card { background: var(--ink); color: var(--white); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.side-card .icon-badge { background: rgba(0,187,238,.15); color: var(--cyan); }
.side-card p { color: #c3ced6; }
.side-card .btn { align-self: flex-start; margin-top: 6px; }
.updated { font-size: .85rem; color: var(--muted); margin-top: 18px; }
@media (max-width: 860px) { .answer-grid { grid-template-columns: 1fr; } }

.icon-badge { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--cyan-soft); color: var(--cyan-dark); margin-bottom: 16px; flex: none; }
.icon-badge svg { width: 24px; height: 24px; }

/* Services grid */
.svc-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.svc-card { position: relative; display: flex; flex-direction: column; background: var(--ink-2); color: var(--white); border-radius: var(--radius); overflow: hidden; text-decoration: none; border: 1px solid rgba(255,255,255,.06); transition: transform .2s ease, box-shadow .2s ease; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-card .thumb { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-3); }
.svc-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.svc-card:hover .thumb img { transform: scale(1.05); }
.svc-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { font-size: 1.12rem; margin-bottom: .4em; }
.svc-card p { color: #b7c3cc; font-size: .93rem; flex: 1; }
.svc-card .more { color: var(--cyan); font-weight: 600; font-size: .9rem; margin-top: 6px; }
.band-white .svc-card, .band-paper .svc-card { background: var(--ink); }
@media (max-width: 1080px) { .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; counter-reset: step; }
.step { background: var(--white); color: var(--text); border-radius: var(--radius); padding: 30px 24px 26px; text-align: center; position: relative; }
.step .num { display: inline-block; background: var(--cyan); color: var(--ink); font-family: var(--head); font-weight: 700; font-size: .78rem; padding: 5px 14px; border-radius: 999px; margin-bottom: 18px; }
.step .icon-badge { margin: 0 auto 16px; }
.step p { color: var(--muted) !important; font-size: .95rem; margin: 0; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.review blockquote { margin: 12px 0 18px; flex: 1; }
.review cite { font-style: normal; font-family: var(--head); font-weight: 700; }
.review small { display: block; color: var(--muted); }
.rating-panel { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 36px 40px; box-shadow: var(--shadow); }
.rating-panel .score { font-family: var(--head); font-weight: 800; font-size: 4rem; line-height: 1; }
.rating-panel .stars { font-size: 1.5rem; }
.rating-panel p { margin: 0; color: var(--muted); }
.rating-panel .actions { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 860px) { .reviews { grid-template-columns: 1fr; } .rating-panel { grid-template-columns: 1fr; text-align: center; padding: 30px 22px; } .rating-panel .actions { align-items: stretch; } }

/* Split feature (image + text) */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: 20px; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; box-shadow: var(--shadow-lg); }
.split-media .tag { position: absolute; left: 20px; bottom: 20px; background: var(--ink); color: var(--white); padding: 12px 16px; border-radius: 12px; font-family: var(--head); font-weight: 700; font-size: .9rem; display: flex; gap: 10px; align-items: center; }
.split-media .tag svg { width: 18px; height: 18px; color: var(--cyan); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } .split.reverse .split-media { order: 0; } .split-media img { aspect-ratio: 4 / 3; } }

/* Why choose */
.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.why { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); }
.why p { color: var(--muted); font-size: .96rem; margin: 0; }
.band-dark .why { background: var(--ink-2); border-color: rgba(255,255,255,.08); }
.band-dark .why p { color: #aebbc5; }
.band-dark .why .icon-badge { background: rgba(0,187,238,.14); color: var(--cyan); }
@media (max-width: 960px) { .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* Checklists */
.checks { list-style: none; padding: 0; margin: 0 0 1.2em; display: grid; gap: 10px; }
.checks li { position: relative; padding-left: 32px; }
.checks li::before { content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--cyan-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230099c4' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 12px no-repeat; }
.checks.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.band-dark .checks li::before { background-color: rgba(0,187,238,.18); }
@media (max-width: 560px) { .checks.two { grid-template-columns: 1fr; } }

/* Areas */
.areas { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.area { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; }
.area h3 { display: flex; align-items: center; gap: 10px; }
.area h3 svg { width: 20px; height: 20px; color: var(--cyan-dark); }
.town-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.town-list li { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: .9rem; font-weight: 500; }
.map-wrap { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); margin-top: 28px; background: var(--paper-2); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }
@media (max-width: 860px) { .areas { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; font-family: var(--head); font-weight: 700; font-size: 1.04rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 22px; top: 50%; width: 22px; height: 22px; margin-top: -11px; border-radius: 50%; background: var(--cyan-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230099c4' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 12px no-repeat; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 24px 22px; color: var(--muted); }
.faq .answer p:last-child { margin: 0; }

/* Prose (service page body) */
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 48px; align-items: start; }
.prose h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.4em; }
.prose p, .prose li { color: #37424c; }
.prose .feature-list { list-style: none; padding: 0; display: grid; gap: 14px; margin: 0 0 1.4em; }
.prose .feature-list li { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; }
.prose .feature-list strong { font-family: var(--head); color: var(--ink); display: block; margin-bottom: 2px; }
.prose figure { margin: 0 0 28px; }
.prose figure img { border-radius: 18px; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center 30%; }
.sticky-side { position: sticky; top: 160px; display: grid; gap: 18px; }
.cta-card { background: var(--ink); color: var(--white); border-radius: 18px; padding: 28px; border-top: 5px solid var(--cyan); }
.cta-card h3 { font-size: 1.35rem; }
.cta-card p { color: #c3ced6; font-size: .95rem; }
.cta-card .btn { width: 100%; margin-top: 10px; }
.mini-list { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px; }
.mini-list h4 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.mini-list ul { list-style: none; padding: 0; margin: 0; }
.mini-list a { display: block; padding: 8px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 500; font-size: .95rem; }
.mini-list li:last-child a { border: 0; }
.mini-list a:hover, .mini-list a[aria-current="page"] { color: var(--cyan-dark); }
@media (max-width: 960px) { .content-grid { grid-template-columns: 1fr; } .sticky-side { position: static; } }

/* Quote band (embedded HCP form on sub pages) */
.quote-band-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: start; }
.quote-band-grid .copy { position: sticky; top: 160px; }
.contact-lines { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 16px; }
.contact-lines li { display: flex; gap: 14px; align-items: flex-start; }
.contact-lines .icon-badge { margin: 0; width: 44px; height: 44px; }
.contact-lines strong { display: block; font-family: var(--head); }
.contact-lines a { text-decoration: none; }
.contact-lines a:hover { color: var(--cyan); }
.band-dark .contact-lines .icon-badge { background: rgba(0,187,238,.14); color: var(--cyan); }
@media (max-width: 960px) { .quote-band-grid { grid-template-columns: 1fr; gap: 32px; } .quote-band-grid .copy { position: static; } }

/* Gallery */
.gallery { columns: 3 280px; column-gap: 16px; }
.gallery figure { margin: 0 0 16px; break-inside: avoid; border-radius: 14px; overflow: hidden; background: var(--paper-2); position: relative; }
.gallery img { width: 100%; cursor: zoom-in; transition: transform .3s ease; }
.gallery figure:hover img { transform: scale(1.03); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 12px; color: var(--white); font-size: .88rem; font-weight: 600; background: linear-gradient(transparent, rgba(0,0,0,.7)); }
.photo-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.photo-strip img { border-radius: 14px; aspect-ratio: 1; object-fit: cover; width: 100%; }
@media (max-width: 760px) { .photo-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.9); display: none; place-items: center; z-index: 100; padding: 24px; }
.lightbox.open { display: grid; }
.lightbox img { max-height: 88vh; max-width: 100%; border-radius: 10px; }
.lightbox button { position: absolute; top: 16px; right: 16px; background: var(--white); border: 0; border-radius: 50%; width: 44px; height: 44px; font-size: 1.4rem; cursor: pointer; }

/* CTA band */
.cta-band { background: var(--cyan); color: var(--ink); padding: 64px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { margin: 0 0 .25em; }
.cta-band p { margin: 0; font-size: 1.08rem; color: #0b3444; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-outline:hover { background: var(--ink); }
@media (max-width: 560px) { .cta-band .actions, .cta-band .btn { width: 100%; } }

/* Trust bar */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-bar ul { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 28px; list-style: none; margin: 0; padding: 22px 20px; max-width: var(--wrap); margin: 0 auto; }
.trust-bar li { display: flex; align-items: center; gap: 10px; font-family: var(--head); font-weight: 700; font-size: .95rem; }
.trust-bar svg { width: 22px; height: 22px; color: var(--cyan-dark); }
@media (max-width: 760px) { .trust-bar ul { justify-content: flex-start; } .trust-bar li { width: calc(50% - 14px); font-size: .86rem; } }

/* Footer */
.site-footer { background: var(--ink); color: #aebbc5; padding: 72px 0 0; font-size: .95rem; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr .8fr .8fr 1fr; gap: 36px; }
.site-footer h4 { color: var(--white); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a { text-decoration: none; color: #cfd8df; }
.site-footer a:hover { color: var(--cyan); }
.foot-brand img { height: 46px; width: auto; margin-bottom: 18px; }
.foot-brand p { max-width: 340px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--ink-3); color: var(--white); }
.socials a:hover { background: var(--cyan); color: var(--ink); }
.socials svg { width: 18px; height: 18px; }
.foot-legal { border-top: 1px solid rgba(255,255,255,.08); margin-top: 56px; padding: 22px 0 28px; font-size: .82rem; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #7f8e99; }
@media (max-width: 960px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } .site-footer { padding-bottom: 72px; } }

/* Mobile sticky call bar */
.mobile-bar { display: none; }
@media (max-width: 560px) {
  .mobile-bar { display: grid; grid-template-columns: 1fr 1fr 1.3fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--ink); border-top: 2px solid var(--cyan); }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 14px 4px; color: var(--white); text-decoration: none; font-family: var(--head); font-weight: 700; font-size: .9rem; }
  .mobile-bar a svg { width: 18px; height: 18px; color: var(--cyan); }
  .mobile-bar a.primary { background: var(--cyan); color: var(--ink); }
  .mobile-bar a.primary svg { color: var(--ink); }
}

.muted { color: var(--muted); }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.stack-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 36px; }
.legal h2 { font-size: 1.3rem; margin-top: 1.8em; }
.legal { max-width: 820px; }

/* ---------- SEO content components ---------- */
.guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.guide-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.guide-card .thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-2); }
.guide-card .thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.guide-card .body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.guide-card h3 { font-size: 1.05rem; margin-bottom: .4em; }
.guide-card p { color: var(--muted); font-size: .92rem; flex: 1; margin-bottom: .8em; }
.guide-card .more { color: var(--cyan-dark); font-weight: 600; font-size: .9rem; }
@media (max-width: 960px) { .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .guide-grid { grid-template-columns: 1fr; } }

.feature-guide { display: grid; gap: 6px; background: var(--ink); color: var(--white); border-radius: var(--radius); padding: 28px 30px; margin-bottom: 28px; text-decoration: none; border-left: 6px solid var(--cyan); }
.feature-guide strong { font-family: var(--head); font-size: clamp(1.25rem, 2.6vw, 1.6rem); line-height: 1.2; }
.feature-guide span:last-child { color: #b7c3cc; }
.feature-guide .eyebrow { margin: 0; color: var(--cyan); }

.compare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.compare-col { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.compare-col p { color: var(--muted); }
.text-link { font-weight: 600; color: var(--cyan-dark); text-decoration: none; }
.text-link:hover { text-decoration: underline; }
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }

.why-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.why-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 1.4em; }
.why-grid.two .why { padding: 20px; }
.why-grid.two h3 { font-size: 1rem; margin: 0 0 .4em; }
.why-link { text-decoration: none; color: inherit; transition: border-color .15s ease, transform .15s ease; }
.why-link:hover { border-color: var(--cyan); transform: translateY(-2px); }
@media (max-width: 1080px) { .why-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .why-grid.four, .why-grid.two { grid-template-columns: 1fr; } }

.county-block { margin-bottom: 36px; }
.county-block h3 { font-size: 1.25rem; margin-bottom: 14px; }
.county-block h3 a, .area h3 a { text-decoration: none; }
.county-block h3 a:hover, .area h3 a:hover { color: var(--cyan-dark); }
.town-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
.town-card { display: flex; flex-direction: column; gap: 2px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; text-decoration: none; transition: border-color .15s ease, box-shadow .15s ease; }
.town-card:hover { border-color: var(--cyan); box-shadow: var(--shadow); }
.town-card strong { font-family: var(--head); }
.town-card span { font-size: .85rem; color: var(--muted); }
.town-list a { text-decoration: none; }
.town-list a:hover { color: var(--cyan-dark); }
.town-list li:has(a):hover { border-color: var(--cyan); }
.prose .map-wrap { margin: 24px 0; }
.prose .map-wrap iframe { height: 320px; }

.byline { font-size: .9rem; color: #9fb0bc; margin-top: 10px; }
.prose ol { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }
.prep-note { font-size: .95rem; color: #c3ced6; }
.prep-note a { color: var(--cyan); }

.price-table { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: var(--white); margin-bottom: 12px; }
.price-table table { width: 100%; border-collapse: collapse; min-width: 520px; }
.price-table th, .price-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: .95rem; }
.price-table thead th { background: var(--paper); font-family: var(--head); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }

.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; }
.sitemap-col h2 { font-size: 1.1rem; margin-bottom: 10px; }
.sitemap-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.sitemap-col a { text-decoration: none; color: var(--text); }
.sitemap-col a:hover { color: var(--cyan-dark); }

@media (max-width: 1080px) and (min-width: 961px) { .foot-grid { grid-template-columns: 1fr 1fr 1fr; } }
.svc-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 960px) { .svc-grid.three { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .svc-grid.three { grid-template-columns: 1fr; } }

/* Problem photo cards (homepage) */
.problem-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.problem-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; transition: transform .2s ease, box-shadow .2s ease; }
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.problem-card .thumb { aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); }
.problem-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.problem-card .body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.problem-card h3 { font-size: 1.05rem; margin-bottom: .4em; }
.problem-card p { color: var(--muted); font-size: .93rem; flex: 1; margin-bottom: .8em; }
.problem-card .more { color: var(--cyan-dark); font-weight: 600; font-size: .9rem; }
@media (max-width: 1080px) { .problem-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .problem-grid { grid-template-columns: 1fr; } }

/* Reviews: masonry columns so long and short reviews don't leave gaps */
.reviews { display: block; columns: 3 300px; column-gap: 20px; }
.reviews .review { break-inside: avoid; margin: 0 0 20px; display: flex; }
.review blockquote { flex: none; }

/* Homepage hero badges: keep on one line, side by side */
.hero-copy .chips { flex-wrap: nowrap; }
.hero-copy .chips li { white-space: nowrap; }

/* Mobile menu quote button keeps its button styling */
.menu .menu-cta .btn-primary { background: var(--cyan); color: var(--ink); justify-content: center; border-bottom: 0; border-radius: 999px; padding: 15px 26px; }
.menu .menu-cta .btn-primary:hover { background: #33c9f1; color: var(--ink); }
