/* ===================================
   POOL CLEANING LOS ANGELES
   Built on the local-design base system: sharp corners, strong hierarchy, high contrast.
   Buttons use the .pc-btn namespace because the LeadSmart embed injects Bootstrap 2 .btn styles.
   =================================== */

:root {
  --navy: #0F1F3D;
  --navy-2: #172B52;
  --navy-3: #0A1630;
  --orange: #C8471A;
  --orange-dark: #A33912;
  --orange-text: #B23E15;
  --orange-light: #F4A074;
  --aqua: #DFF6F7;
  --aqua-strong: #7FD8DC;
  --sand: #F7F5F0;

  --color-ink: var(--navy);
  --color-body: #2B3445;
  --color-muted: #5A6477;
  --color-line: #DAD6CC;
  --color-bg: #FFFFFF;
  --color-bg-alt: var(--sand);
  --on-navy: #FFFFFF;
  --on-navy-muted: #C9D3E3;

  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --fs-h1: clamp(2.25rem, 5vw, 3.75rem);
  --fs-h2: clamp(1.75rem, 3.5vw, 2.5rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.4rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;

  --container: 1200px;
  --container-narrow: 800px;
  --header-h: 76px;
  --radius: 0;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--color-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
a:hover { text-decoration: none; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.icon { width: 24px; height: 24px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: square; stroke-linejoin: miter; }
.icon--sm { width: 18px; height: 18px; }
.icon--lg { width: 32px; height: 32px; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.12;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.01em; }
h4 { font-size: 1.125rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--orange-text);
  margin-bottom: var(--s-1);
}
.lede { font-size: 1.125rem; color: var(--color-muted); max-width: 62ch; }

/* Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--s-2); }
@media (min-width: 480px) { .container { padding-inline: var(--s-3); } }
.container-narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--s-6); }
@media (min-width: 768px) { .section { padding-block: var(--s-7); } }
.section--alt { background: var(--sand); }
.section--aqua { background: var(--aqua); }
.section--navy { background: var(--navy); color: var(--on-navy-muted); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .eyebrow { color: var(--orange-light); }
.section-head { margin-bottom: var(--s-5); max-width: 760px; }
.section-head h2 { margin-bottom: var(--s-2); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lede { margin-inline: auto; }

/* Buttons */
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 52px;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
.pc-btn--accent { background: var(--orange); color: #fff; }
.pc-btn--accent:hover { background: var(--orange-dark); }
.pc-btn--navy { background: var(--navy); color: #fff; }
.pc-btn--navy:hover { background: var(--orange); }
.pc-btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.pc-btn--outline:hover { background: var(--navy); color: #fff; }
.pc-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.pc-btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }
.pc-btn--lg { min-height: 60px; padding: 1rem 1.75rem; font-size: 1.0625rem; }
.pc-btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-2); align-items: center; }

/* Announcement bar */
.announce {
  background: var(--orange);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem var(--s-2);
  line-height: 1.4;
}
.announce a { color: #fff; font-weight: 800; white-space: nowrap; }
.announce .dot { display: inline-block; width: 8px; height: 8px; background: #fff; margin-right: 0.5rem; vertical-align: 1px; animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) { .announce .dot { animation: none; } html { scroll-behavior: auto; } }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--color-line);
  height: var(--header-h);
}
.site-header > .container { display: flex; align-items: center; justify-content: space-between; gap: var(--s-2); height: 100%; }
.logo { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; flex: none; }
.logo .logo-mark img { width: 52px; height: 52px; }
.logo svg.wordmark { width: 150px; height: auto; }
@media (min-width: 1024px) { .logo .logo-mark img { width: 58px; height: 58px; } .logo svg.wordmark { width: 176px; } }
.primary-nav { display: none; gap: var(--s-3); }
@media (min-width: 1200px) { .primary-nav { gap: var(--s-4); } }
.primary-nav a { text-decoration: none; font-weight: 700; color: var(--navy); font-size: 0.975rem; padding-block: 0.5rem; border-bottom: 2px solid transparent; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { border-bottom-color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: var(--s-1); }
.header-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-height: 44px; padding: 0.5rem 0.875rem;
  background: var(--navy); color: #fff; text-decoration: none; font-weight: 800; font-size: 0.9375rem; white-space: nowrap;
}
.header-call:hover { background: var(--orange); }
.header-quote { display: none; }
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: transparent; border: 2px solid var(--navy); color: var(--navy); cursor: pointer;
}
@media (max-width: 479px) {
  .site-header > .container { gap: 0.5rem; }
  .logo svg.wordmark { width: 118px; } .logo .logo-mark img { width: 44px; height: 44px; } .logo { gap: 0.4rem; }
  .header-actions { gap: 0.375rem; }
  .header-call { padding: 0.5rem 0.625rem; font-size: 0.875rem; }
  .menu-toggle { width: 40px; height: 40px; }
}
@media (max-width: 399px) { .header-call .icon { display: none; } .logo svg.wordmark { width: 104px; } .logo .logo-mark img { width: 40px; height: 40px; } }
@media (min-width: 1024px) {
  .primary-nav { display: flex; }
  .menu-toggle { display: none; }
  .header-quote { display: inline-flex; min-height: 44px; padding: 0.5rem 1rem; font-size: 0.875rem; }
}
.mobile-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 2px solid var(--navy); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 1rem var(--s-3); border-top: 1px solid var(--color-line); font-weight: 700; text-decoration: none; color: var(--navy); }
@media (min-width: 1024px) { .mobile-nav, .mobile-nav.open { display: none; } }

/* Breadcrumbs */
.breadcrumbs { background: var(--navy-3); color: var(--on-navy-muted); font-size: 0.8125rem; padding-block: 0.625rem; }
.breadcrumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.25rem 0.5rem; }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.5rem; opacity: 0.5; }
.breadcrumbs a { color: #fff; }
.breadcrumbs [aria-current] { color: var(--on-navy-muted); }

/* Hero */
.hero {
  position: relative;
  background-color: var(--navy);
  background-image:
    radial-gradient(ellipse 60% 50% at 85% 0%, rgba(127,216,220,0.16), transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='120' viewBox='0 0 240 120'%3E%3Cg fill='none' stroke='%237FD8DC' stroke-opacity='0.09' stroke-width='2'%3E%3Cpath d='M0 30 Q30 12 60 30 T120 30 T180 30 T240 30'/%3E%3Cpath d='M0 90 Q30 72 60 90 T120 90 T180 90 T240 90'/%3E%3C/g%3E%3C/svg%3E");
  color: var(--on-navy-muted);
  padding-block: var(--s-5) var(--s-6);
  overflow: hidden;
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: var(--orange); }
.hero-grid { display: grid; gap: var(--s-4); align-items: start; }
@media (min-width: 1024px) {
  .hero { padding-block: var(--s-6) var(--s-7); }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 560px); gap: var(--s-5); align-items: center; }
}
.hero .eyebrow { color: var(--orange-light); }
.hero h1 { color: #fff; margin-bottom: var(--s-2); }
.hero h1 .accent { display: block; color: var(--orange-light); font-size: 0.6em; letter-spacing: -0.01em; margin-top: 0.3em; }
.hero .subhead { font-size: 1.125rem; margin-bottom: var(--s-3); max-width: 56ch; }
@media (min-width: 768px) { .hero .subhead { font-size: 1.25rem; } }
.hero-checks { list-style: none; padding: 0; display: grid; gap: 0.625rem; margin-bottom: var(--s-4); }
@media (min-width: 640px) { .hero-checks { grid-template-columns: 1fr 1fr; } }
.hero-checks li { display: flex; gap: 0.625rem; align-items: flex-start; color: #fff; font-weight: 600; }
.hero-checks .icon { color: var(--orange-light); margin-top: 1px; }
.hero-note { margin-top: var(--s-2); font-size: 0.9375rem; }
.hero-note a { color: #fff; font-weight: 700; }
.open-status { display: flex; width: fit-content; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: var(--s-2); padding: 0.375rem 0.75rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); }
.open-status .dot { width: 8px; height: 8px; background: #3DDC84; }
.open-status.closed .dot { background: var(--orange-light); }

/* Quote form cards (LeadSmart iframes) */
.quote-card { background: #fff; border-top: 6px solid var(--orange); color: var(--color-body); box-shadow: 0 24px 48px -24px rgba(0,0,0,0.45); }
.quote-card__head { padding: var(--s-2) var(--s-3) 0; display: flex; justify-content: space-between; align-items: baseline; gap: var(--s-2); flex-wrap: wrap; }
.quote-card__head strong { font-family: var(--font-heading); font-weight: 800; color: var(--navy); font-size: 1.125rem; }
.quote-card__head span { font-size: 0.8125rem; color: var(--color-muted); font-weight: 600; }
.quote-card iframe { width: 100%; border: 0; background: #fff; }
.quote-card__foot { padding: 0 var(--s-3) var(--s-2); font-size: 0.875rem; color: var(--color-muted); text-align: center; }
.quote-card__foot a { color: var(--navy); font-weight: 800; }
.ls-600 { height: 650px; }
.ls-244-wrap { width: 100%; max-width: 300px; height: 780px; margin-inline: auto; background: #fff; }
.ls-244-wrap iframe { width: 100%; height: 100%; border: 2px solid var(--navy); border-top: 6px solid var(--orange); }

/* Trust bar */
.trust-bar { background: #fff; border-bottom: 1px solid var(--color-line); padding-block: var(--s-3); }
.trust-bar ul { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3) var(--s-2); }
@media (min-width: 768px) { .trust-bar ul { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .trust-bar ul { grid-template-columns: repeat(5, 1fr); } }
.trust-bar li { display: flex; align-items: center; gap: 0.75rem; font-weight: 800; color: var(--navy); font-size: 0.9375rem; line-height: 1.3; }
.trust-bar li .icon-box { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex: none; background: var(--aqua); color: var(--navy); }
.trust-bar li small { display: block; font-weight: 600; color: var(--color-muted); font-size: 0.8125rem; }

/* Services grid */
.group-title { display: flex; align-items: center; gap: var(--s-2); margin: var(--s-5) 0 var(--s-3); font-size: 1.25rem; }
.group-title:first-of-type { margin-top: 0; }
.group-title::after { content: ""; flex: 1; height: 2px; background: var(--color-line); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-2); }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: var(--s-3);
  background: #fff;
  border: 2px solid var(--color-line);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background-color 0.15s;
}
.service-card:hover { border-color: var(--navy); background: var(--sand); }
.service-card .icon-box { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--navy); color: #fff; margin-bottom: 0.25rem; }
.service-card h3 { font-size: 1.125rem; }
.service-card p { font-size: 0.9375rem; color: var(--color-muted); }
.service-card .more { margin-top: auto; padding-top: 0.5rem; font-weight: 800; color: var(--orange-text); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 0.375rem; }
.section--alt .service-card { background: #fff; }

/* Compact services grid (homepage) */
.services-grid--compact { gap: var(--s-2); }
@media (min-width: 1024px) { .services-grid--compact { grid-template-columns: repeat(4, 1fr); } }
.services-grid--compact .service-card { padding: var(--s-3) var(--s-2) var(--s-2); }
.services-grid--compact .service-card .icon-box { width: 40px; height: 40px; }
.services-grid--compact .service-card h4 { font-size: 1rem; }
.services-grid--compact .service-card p { font-size: 0.875rem; }

/* Topic sections (what we fix / what we offer) */
.topic-grid { display: grid; gap: var(--s-3); }
@media (min-width: 900px) { .topic-grid { grid-template-columns: 1fr 1fr; } }
.topic { background: #fff; border-left: 6px solid var(--orange); padding: var(--s-3); display: flex; flex-direction: column; gap: var(--s-2); }
.section--alt .topic, .section--aqua .topic { background: #fff; }
.topic h3 { display: flex; align-items: center; gap: 0.75rem; }
.topic h3 .icon { color: var(--orange); }
.topic .stat { margin-top: auto; display: flex; gap: var(--s-2); align-items: flex-start; padding-top: var(--s-2); border-top: 1px solid var(--color-line); }
.topic .stat strong { font-family: var(--font-heading); font-weight: 800; font-size: 1.75rem; line-height: 1; color: var(--navy); white-space: nowrap; }
.topic .stat span { font-size: 0.875rem; color: var(--color-muted); line-height: 1.45; }
.src { font-size: 0.8125rem; color: var(--color-muted); }
.src a { color: var(--color-muted); }
.section--navy .src, .section--navy .src a, .pillar .src, .pillar .src a { color: var(--on-navy-muted); }

/* Why choose us */
.pillars { display: grid; gap: var(--s-3); }
@media (min-width: 900px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { background: var(--navy-2); padding: var(--s-4) var(--s-3); border-top: 6px solid var(--orange); }
.pillar .big { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 3.25rem; line-height: 1; color: var(--orange-light); margin-bottom: 0.25rem; }
.pillar .big-label { display: block; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 800; color: var(--aqua-strong); margin-bottom: var(--s-2); }
.pillar h3 { margin-bottom: var(--s-2); }
.pillar p { color: var(--on-navy-muted); }
.section:not(.section--navy) .pillar { background: var(--navy); }

/* Mid-page quote band */
.quote-band { background: var(--orange); color: #fff; }
.quote-band h2 { color: #fff; }
.quote-band .lede { color: #FFE9DE; }
.quote-band .eyebrow { color: #fff; opacity: 0.9; }
.quote-band-grid { display: grid; gap: var(--s-4); align-items: center; }
@media (min-width: 1024px) { .quote-band-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 560px); gap: var(--s-5); } }
.quote-band ul { list-style: none; padding: 0; display: grid; gap: 0.75rem; margin-top: var(--s-3); }
.quote-band li { display: flex; gap: 0.625rem; font-weight: 700; }
.quote-band .quote-card { border-top-color: var(--navy); }

/* Visit report / promise block (social proof substitute until real reviews exist) */
.promise-grid { display: grid; gap: var(--s-5); align-items: start; }
@media (min-width: 1024px) { .promise-grid { grid-template-columns: 1fr 1fr; } }
.check-list { list-style: none; padding: 0; display: grid; gap: 0.75rem; }
.check-list li { position: relative; padding-left: 2rem; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.3em; width: 1.25rem; height: 1.25rem; background: var(--navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='square'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/70% no-repeat; }
.check-list strong { color: var(--navy); }
.report { background: #fff; border: 2px solid var(--navy); max-width: 460px; margin-inline: auto; width: 100%; }
.report__bar { background: var(--navy); color: #fff; padding: 0.75rem 1rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; font-weight: 700; }
.report__bar span { color: var(--aqua-strong); font-weight: 600; }
.report__photo { height: 150px; background: linear-gradient(160deg, #36B6C9 0%, #1B8FB0 55%, #146E93 100%); position: relative; }
.report__photo::before { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cpath d='M0 20 Q15 8 30 20 T60 20 T90 20 T120 20 M0 50 Q15 38 30 50 T60 50 T90 50 T120 50' fill='none' stroke='white' stroke-opacity='0.28' stroke-width='2'/%3E%3C/svg%3E"); }
.report__photo em { position: absolute; left: 0.75rem; bottom: 0.75rem; background: rgba(10,22,48,0.8); color: #fff; font-style: normal; font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.5rem; }
.report table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.report td { padding: 0.625rem 1rem; border-bottom: 1px solid var(--color-line); }
.report td:last-child { text-align: right; font-weight: 800; color: var(--navy); white-space: nowrap; }
.report td .ok { display: inline-block; margin-left: 0.5rem; color: #1D7A45; }
.report__notes { padding: 0.875rem 1rem; font-size: 0.875rem; color: var(--color-muted); }
.report__caption { text-align: center; font-size: 0.8125rem; color: var(--color-muted); margin-top: 0.75rem; }

/* About preview / split */
.split { display: grid; gap: var(--s-4); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.1fr 0.9fr; gap: var(--s-6); } }
.split .prose p + p { margin-top: var(--s-2); }
.fact-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--color-line); border: 2px solid var(--navy); }
.fact-list div { background: #fff; padding: var(--s-3); }
.fact-list strong { display: block; font-family: var(--font-heading); font-weight: 800; font-size: 2rem; color: var(--navy); line-height: 1.1; }
.fact-list span { font-size: 0.875rem; color: var(--color-muted); font-weight: 600; }

/* Service area */
.area-grid { display: grid; gap: var(--s-3); }
@media (min-width: 640px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .area-grid { grid-template-columns: repeat(4, 1fr); } }
.area-group h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; padding-bottom: 0.5rem; border-bottom: 3px solid var(--orange); margin-bottom: 0.75rem; }
.area-group ul { list-style: none; padding: 0; display: grid; gap: 0.375rem; }
.area-group a { text-decoration: none; font-weight: 600; color: var(--navy); }
.area-group a:hover { color: var(--orange-text); text-decoration: underline; }
.area-more { margin-top: var(--s-4); font-size: 0.9375rem; color: var(--color-muted); }

/* FAQ */
.faq-list details { border-bottom: 2px solid var(--color-line); padding-block: var(--s-2); }
.faq-list details:first-child { border-top: 2px solid var(--color-line); }
.faq-list summary {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: -0.2rem; width: 1.75rem; height: 1.75rem; line-height: 1.6rem; text-align: center; font-size: 1.25rem; color: #fff; background: var(--orange); }
.faq-list details[open] summary::after { content: "\2212"; background: var(--navy); }
.faq-list details p { margin-top: var(--s-2); }

/* Final CTA band */
.cta-band { background: var(--navy); color: var(--on-navy-muted); text-align: center; border-top: 6px solid var(--orange); }
.cta-band h2 { color: #fff; margin-bottom: var(--s-2); }
.cta-band p { font-size: 1.125rem; margin-bottom: var(--s-4); }
.cta-band .btn-row { justify-content: center; }

/* Article layout (service + location pages) */
.article-layout { display: grid; gap: var(--s-5); }
@media (min-width: 1024px) { .article-layout { grid-template-columns: minmax(0, 1fr) 300px; gap: var(--s-6); } }
.article-aside { display: none; }
@media (min-width: 1024px) {
  .article-aside { display: grid; gap: var(--s-3); align-content: start; }
}
@media (min-width: 1024px) and (min-height: 900px) {
  .aside-sticky { position: sticky; top: calc(var(--header-h) + 16px); }
}
.aside-box { border: 2px solid var(--navy); padding: var(--s-3); background: #fff; }
.aside-box h2 { font-size: 1.125rem; margin-bottom: var(--s-2); }
.aside-box--navy { background: var(--navy); color: var(--on-navy-muted); border-color: var(--navy); }
.aside-box--navy h2 { color: #fff; }
.aside-box--navy .pc-btn { width: 100%; margin-top: var(--s-2); }
.aside-links { list-style: none; padding: 0; display: grid; gap: 0.5rem; font-size: 0.9375rem; }
.aside-links a { color: var(--navy); font-weight: 600; }

/* Prose */
.prose > * + *, .prose section > * + * { margin-top: var(--s-2); }
.prose section > h2 + * { margin-top: 0; }
.prose > section + section { margin-top: var(--s-5); padding-top: var(--s-5); border-top: 2px solid var(--color-line); }
.prose h2 { margin-bottom: var(--s-3); }
.prose h3 { margin-top: var(--s-4); margin-bottom: var(--s-1); }
.prose p, .prose li { max-width: 72ch; }
.prose ul:not(.check-list), .prose ol:not(.steps) { padding-left: 1.25rem; display: grid; gap: 0.5rem; }
.prose a { color: var(--navy); font-weight: 700; }
.prose .src a { font-weight: 400; color: var(--color-muted); }
.prose .intro { font-size: 1.125rem; color: var(--color-ink); }
.steps { list-style: none; padding: 0; counter-reset: step; display: grid; gap: var(--s-3); }
.steps li { counter-increment: step; position: relative; padding-left: 3.5rem; min-height: 2.5rem; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 2.5rem; height: 2.5rem; background: var(--navy); color: #fff; font-family: var(--font-heading); font-weight: 800; display: flex; align-items: center; justify-content: center; }
.steps strong { display: block; color: var(--navy); font-size: 1.0625rem; margin-bottom: 0.125rem; }
.table-wrap { overflow-x: auto; border: 2px solid var(--navy); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; min-width: 560px; }
.compare-table th { background: var(--navy); color: #fff; text-align: left; padding: 0.75rem 1rem; font-weight: 800; }
.compare-table td { padding: 0.75rem 1rem; border-top: 1px solid var(--color-line); vertical-align: top; }
.compare-table tr:nth-child(even) td { background: var(--sand); }
.callout { background: var(--aqua); border-left: 6px solid var(--navy); padding: var(--s-3); }
.callout strong { color: var(--navy); }
.callout--local { background: var(--sand); border-left-color: var(--orange); }
.stat-callout { display: flex; gap: var(--s-2); align-items: flex-start; background: var(--navy); color: var(--on-navy-muted); padding: var(--s-3); }
.stat-callout strong { font-family: var(--font-heading); font-size: 2rem; line-height: 1; color: var(--orange-light); white-space: nowrap; }
.stat-callout .src a { color: var(--on-navy-muted); }
.inline-cta { display: flex; flex-wrap: wrap; gap: var(--s-2); align-items: center; justify-content: space-between; background: var(--sand); border: 2px solid var(--navy); padding: var(--s-3); }
.inline-cta p { font-weight: 700; color: var(--navy); margin: 0; }

/* Link chips (cities) */
.chip-list, .prose ul.chip-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-list li { max-width: none; }
.chip-list a { display: inline-block; padding: 0.5rem 0.875rem; border: 2px solid var(--color-line); background: #fff; text-decoration: none; font-weight: 700; font-size: 0.9375rem; color: var(--navy); }
.chip-list a:hover { border-color: var(--navy); }

/* Page hero (simple pages) */
.page-hero { background: var(--navy); color: var(--on-navy-muted); padding-block: var(--s-5); border-bottom: 6px solid var(--orange); }
.page-hero h1 { color: #fff; margin-bottom: var(--s-2); }
.page-hero .eyebrow { color: var(--orange-light); }
.page-hero p { font-size: 1.125rem; max-width: 60ch; }

/* Contact */
.contact-grid { display: grid; gap: var(--s-5); }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 0.8fr 1.2fr; } }
.nap-card { border: 2px solid var(--navy); padding: var(--s-4) var(--s-3); display: grid; gap: var(--s-3); align-content: start; }
.nap-card h2 { font-size: 1.5rem; }
.nap-row { display: flex; gap: var(--s-2); align-items: flex-start; }
.nap-row .icon-box { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex: none; background: var(--navy); color: #fff; }
.nap-row strong { display: block; color: var(--navy); }
.nap-row a { font-weight: 800; color: var(--navy); }
.map-embed { border: 2px solid var(--navy); width: 100%; height: 360px; min-height: 100%; }
@media (min-width: 1024px) { .contact-grid .map-embed { height: 100%; min-height: 380px; } }

/* Legal */
.legal h2 { font-size: 1.5rem; margin-top: var(--s-5); }
.legal h3 { font-size: 1.125rem; margin-top: var(--s-3); }

/* Footer */
.site-footer { background: var(--navy-3); color: var(--on-navy-muted); padding-block: var(--s-6) var(--s-3); font-size: 0.9375rem; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand .logo { margin-bottom: var(--s-3); }
.footer-brand .logo .logo-mark img { width: 64px; height: 64px; }
.footer-brand .logo svg.wordmark { width: 180px; }
.footer-brand address { font-style: normal; display: grid; gap: 0.375rem; margin-top: var(--s-3); }
.footer-brand .phone { font-family: var(--font-heading); font-weight: 800; font-size: 1.375rem; color: #fff; }
.site-footer h2 { color: #fff; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--s-2); padding-bottom: 0.5rem; border-bottom: 2px solid var(--orange); display: inline-block; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.footer-bottom { margin-top: var(--s-5); padding-top: var(--s-3); border-top: 1px solid rgba(255,255,255,0.15); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-2); font-size: 0.8125rem; }

/* Sticky mobile CTA */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--navy);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: 56px; padding: 0.75rem; text-decoration: none; font-weight: 800; text-transform: uppercase; font-size: 0.9375rem; font-family: var(--font-heading); color: #fff; }
.mobile-cta .call { background: var(--navy); }
.mobile-cta .quote { background: var(--orange); }
@media (min-width: 768px) { .mobile-cta { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 56px; } }

/* Floating call button (desktop, long pages) */
.fab-call {
  position: fixed; right: 24px; bottom: 24px; z-index: 65;
  width: 64px; height: 64px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  background: var(--orange); color: #fff;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.5);
  opacity: 0; transform: translateY(12px); transition: opacity 0.2s, transform 0.2s;
}
.fab-call.visible { opacity: 1; transform: none; }
.fab-call:hover { background: var(--orange-dark); }
@media (min-width: 768px) { .fab-call { display: flex; } }

/* Utility */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.mb-3 { margin-bottom: var(--s-3); }

/* ---------- Photos and video ---------- */
.hero--photo { background-image: none; isolation: isolate; }
.hero--photo .hero-bg, .hero--photo .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero--photo .hero-bg { z-index: -2; }
.hero--photo .hero-bg img { object-fit: cover; object-position: center 60%; }
.hero--photo::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(10,22,48,0.94) 0%, rgba(15,31,61,0.86) 45%, rgba(15,31,61,0.62) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='120' viewBox='0 0 240 120'%3E%3Cg fill='none' stroke='%237FD8DC' stroke-opacity='0.07' stroke-width='2'%3E%3Cpath d='M0 30 Q30 12 60 30 T120 30 T180 30 T240 30'/%3E%3Cpath d='M0 90 Q30 72 60 90 T120 90 T180 90 T240 90'/%3E%3C/g%3E%3C/svg%3E");
}
@media (max-width: 1023px) { .hero--photo::before { background: linear-gradient(180deg, rgba(10,22,48,0.86), rgba(15,31,61,0.74)); } }

.media-figure { margin: var(--s-4) 0 0; }
.media-figure img, .media-figure video { width: 100%; height: auto; display: block; border: 2px solid var(--navy); }
.media-figure--video video { width: 100%; max-width: 360px; height: auto; aspect-ratio: 9 / 16; object-fit: cover; background: var(--navy); }
.media-figure figcaption { font-size: 0.875rem; color: var(--color-muted); margin-top: 0.5rem; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: var(--navy); border: 2px solid var(--navy); }
.ba-pair > div { position: relative; }
.ba-pair img { border: 0 !important; aspect-ratio: 3 / 4; object-fit: cover; }
.media-figure--pair { max-width: 620px; }
.ba-tag { position: absolute; top: 0.5rem; left: 0.5rem; z-index: 1; background: var(--navy); color: #fff; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.25rem 0.5rem; }
.ba-tag--after { background: var(--orange); }

.work-grid { display: grid; gap: var(--s-2); grid-template-columns: 1fr 1fr; }
@media (min-width: 1024px) { .work-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-3); } }
.work-card { margin: 0; background: var(--navy-2); border-top: 6px solid var(--orange); display: flex; flex-direction: column; }
.work-card > picture img, .work-card > video { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; display: block; background: var(--navy-3); }
.work-card .ba-pair { width: 100%; aspect-ratio: 3 / 4; border: 0; grid-template-rows: 100%; }
.work-card .ba-pair > div, .work-card .ba-pair picture { height: 100%; }
.work-card .ba-pair img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; display: block; }
.work-card figcaption { padding: 0.75rem 1rem; color: #fff; font-weight: 700; font-size: 0.9375rem; line-height: 1.35; }
.work-card figcaption span { display: block; font-weight: 600; font-size: 0.8125rem; color: var(--aqua-strong); margin-top: 0.25rem; }
.work-note { margin-top: var(--s-3); font-size: 0.875rem; color: var(--on-navy-muted); }

.about-photo img { width: 100%; height: auto; border: 2px solid var(--navy); margin-bottom: var(--s-3); }

/* Gallery */
.section--tight-bottom { padding-bottom: 0; }
@media (min-width: 768px) { .section--tight-bottom { padding-bottom: 0; } }
.work-grid--videos { grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) { .work-grid--videos { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .work-grid--videos { grid-template-columns: repeat(3, minmax(0, 340px)); justify-content: center; } }
.work-grid--videos .work-card > video { aspect-ratio: 9 / 16; }
.project + .project { margin-top: var(--s-6); }
.project h3 { margin-bottom: 0.25rem; }
.project > p { color: var(--color-muted); margin-bottom: var(--s-3); }
.photo-grid { display: grid; gap: var(--s-2); grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .photo-grid { grid-template-columns: repeat(4, 1fr); } }
.photo-tile { display: block; border: 2px solid var(--navy); overflow: hidden; }
.photo-tile img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; transition: transform 0.25s; }
.photo-tile:hover img { transform: scale(1.03); }
.lightbox { padding: 0; border: 0; background: transparent; max-width: min(92vw, 900px); max-height: 92vh; overflow: visible; }
.lightbox::backdrop { background: rgba(10, 22, 48, 0.92); }
.lightbox img { max-width: 100%; max-height: 82vh; width: auto; height: auto; margin: 0 auto; border: 3px solid #fff; }
.lightbox__caption { color: #fff; text-align: center; margin-top: 0.75rem; font-weight: 600; }
.lightbox__close { position: absolute; top: -14px; right: -14px; width: 44px; height: 44px; border: 0; background: var(--orange); color: #fff; font-size: 1.75rem; line-height: 1; cursor: pointer; }

/* Consolidated sources list */
.prose > section.sources { font-size: 0.875rem; color: var(--color-muted); }
.sources h2 { font-size: 1.125rem; margin-bottom: var(--s-2); }
.source-list { padding-left: 1.25rem; display: grid; gap: 0.375rem; }
.source-list a { color: var(--color-muted); font-weight: 400; word-break: break-word; }
.photo-tile--video { margin: 0; background: var(--navy); }
.photo-tile--video video { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; display: block; background: var(--navy-3); }
.photo-tile--video figcaption { color: #fff; font-weight: 700; font-size: 0.875rem; padding: 0.5rem 0.75rem; line-height: 1.35; }
.photo-tile--video figcaption span { display: block; font-weight: 600; font-size: 0.75rem; color: var(--aqua-strong); }

/* Gallery v2: full-resolution, uncropped */
.gallery-intro .prose p { max-width: 68ch; }
.section--tight { padding-block: var(--s-5); }
.gvideo-grid { display: grid; gap: var(--s-3); grid-template-columns: 1fr; }
@media (min-width: 640px) { .gvideo-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .gvideo-grid { grid-template-columns: repeat(3, 1fr); } }
.gvideo { margin: 0; background: var(--navy-2); border-top: 6px solid var(--orange); }
.gvideo video, .gtile--video video { width: 100%; height: auto; display: block; background: #000; }
.gvideo figcaption, .gtile--video figcaption { padding: 0.75rem 1rem; color: #fff; font-weight: 700; font-size: 0.9375rem; line-height: 1.35; }
.gvideo figcaption span, .gtile--video figcaption span { display: block; font-weight: 600; font-size: 0.8125rem; color: var(--aqua-strong); margin-top: 0.25rem; }
.mid-cta { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; justify-content: space-between; }
.mid-cta h2 { color: #fff; margin-bottom: 0.25rem; }
.mid-cta p { color: #FFE9DE; max-width: 56ch; }
.gphoto-grid { columns: 1; column-gap: var(--s-2); }
@media (min-width: 640px) { .gphoto-grid { columns: 2; } }
@media (min-width: 1024px) { .gphoto-grid { columns: 3; } .gphoto-grid--few { columns: 2; } }
.gtile { display: block; break-inside: avoid; margin-bottom: var(--s-2); border: 2px solid var(--navy); background: var(--navy); }
.gtile img { width: 100%; height: auto; display: block; }
.gtile--video { margin-top: 0; }

/* Exit-intent pop-up */
.exit-pop { width: min(92vw, 520px); padding: var(--s-5) var(--s-4) var(--s-4); border: 0; border-top: 8px solid var(--orange); background: var(--navy); color: var(--on-navy-muted); text-align: center; overflow: visible; }
.exit-pop::backdrop { background: rgba(10, 22, 48, 0.78); }
.exit-pop[open] { animation: exitPopIn 0.45s cubic-bezier(0.2, 0.9, 0.3, 1.25) both; }
.exit-pop[open]::backdrop { animation: exitFade 0.3s ease both; }
.exit-pop.closing { animation: exitPopOut 0.18s ease-in both; }
@keyframes exitPopIn { from { opacity: 0; transform: translateY(40px) scale(0.92); } to { opacity: 1; transform: none; } }
@keyframes exitPopOut { to { opacity: 0; transform: translateY(20px) scale(0.96); } }
@keyframes exitFade { from { opacity: 0; } to { opacity: 1; } }
.exit-pop__close { position: absolute; top: 10px; right: 10px; width: 40px; height: 40px; border: 0; background: transparent; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; }
.exit-pop__close:hover { color: var(--orange-light); }
.exit-pop__art { width: 72px; height: 72px; margin: -84px auto var(--s-2); display: flex; align-items: center; justify-content: center; background: #3BAA4A; color: #fff; border: 6px solid var(--navy); border-radius: 50%; animation: exitWobble 2.4s ease-in-out 0.5s infinite; }
@keyframes exitWobble { 0%, 100% { transform: rotate(0); } 10% { transform: rotate(-12deg); } 20% { transform: rotate(10deg); } 30% { transform: rotate(0); } }
.exit-pop__eyebrow { text-transform: uppercase; letter-spacing: 0.1em; font-weight: 800; font-size: 0.8125rem; color: var(--orange-light); margin-bottom: 0.5rem; }
.exit-pop h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: var(--s-2); }
.exit-pop__text { font-size: 1.0625rem; margin-bottom: var(--s-4); }
.exit-pop__call {
  position: relative; display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  width: 100%; min-height: 72px; padding: 1rem 1.5rem; background: var(--orange); color: #fff; text-decoration: none;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; letter-spacing: 0.01em;
  animation: callPulse 1.8s ease-out 0.6s infinite;
}
.exit-pop__call .icon { width: 30px; height: 30px; animation: callRing 1.8s ease-in-out 0.6s infinite; }
.exit-pop__call:hover { background: var(--orange-dark); }
@keyframes callPulse { 0% { box-shadow: 0 0 0 0 rgba(244, 160, 116, 0.75); } 70% { box-shadow: 0 0 0 18px rgba(244, 160, 116, 0); } 100% { box-shadow: 0 0 0 0 rgba(244, 160, 116, 0); } }
@keyframes callRing { 0%, 50%, 100% { transform: rotate(0); } 10%, 30% { transform: rotate(-15deg); } 20%, 40% { transform: rotate(15deg); } }
.exit-pop__note { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: var(--s-3); font-size: 0.875rem; font-weight: 700; color: #fff; }
.exit-pop__note .dot { width: 8px; height: 8px; background: #3DDC84; }
.exit-pop__note.closed .dot { background: var(--orange-light); }
@media (prefers-reduced-motion: reduce) {
  .exit-pop[open], .exit-pop.closing, .exit-pop__art, .exit-pop__call, .exit-pop__call .icon { animation: none; }
}

/* dialogs: restore auto-centering removed by the global margin reset */
dialog.exit-pop, dialog.lightbox { margin: auto; }
