/* Jacksonville Washer — main styles */

:root {
  --navy-950: #061528;
  --navy-900: #0A1F3D;
  --navy-800: #123056;
  --navy-700: #1A3F6E;
  --cyan-500: #2BB3E8;
  --cyan-600: #1A9AD0;
  --cyan-400: #4FC3F0;
  --cyan-100: #E6F7FC;
  --slate-50: #F4F7FB;
  --slate-100: #E8EEF5;
  --slate-200: #D3DCE8;
  --slate-500: #5B6B7C;
  --slate-700: #2C3A4A;
  --slate-900: #121A24;
  --white: #ffffff;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-soft: 0 18px 50px rgba(6, 21, 40, 0.14);
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --container: 1180px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-600); text-decoration: none; }
a:hover { color: var(--navy-900); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Top bar */
.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,0.78);
  font-size: 0.875rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 38px;
}
.topbar__text { margin: 0; }
.topbar__actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.topbar a { color: rgba(255,255,255,0.86); }
.topbar a:hover { color: var(--cyan-400); }
.topbar__phone { font-weight: 700; color: var(--white) !important; }

@media (max-width: 720px) {
  .topbar__text { display: none; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(6, 21, 40, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}
.brand img {
  width: auto;
  height: 46px;
}
.brand--footer img {
  height: 42px;
}

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-900);
  border-radius: var(--radius);
}
.nav__link:hover,
.nav__link.is-active { color: var(--cyan-600); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 280px;
  padding: 0.55rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s var(--ease);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.7rem 0.85rem;
  color: var(--slate-700);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius);
}
.dropdown a:hover {
  background: var(--slate-50);
  color: var(--navy-900);
}

.header__cta {
  display: flex;
  gap: 0.55rem;
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--navy-900);
  transition: 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--slate-200);
  background: var(--white);
  padding: 0.75rem 0 1.25rem;
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav__link,
.mobile-nav__group summary {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  border-bottom: 1px solid var(--slate-100);
  cursor: pointer;
}
.mobile-nav__group a {
  display: block;
  padding: 0.55rem 0 0.55rem 0.75rem;
  color: var(--slate-700);
  font-weight: 600;
}
.mobile-nav__cta {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

@media (max-width: 1020px) {
  .nav,
  .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav:not([hidden]) { display: block; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn--sm { padding: 0.62rem 1rem; font-size: 0.875rem; }
.btn--primary {
  background: var(--navy-900);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--navy-800);
  color: var(--white);
}
.btn--accent {
  background: var(--cyan-500);
  color: var(--navy-950);
}
.btn--accent:hover {
  background: var(--cyan-400);
  color: var(--navy-950);
}
.btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--slate-200);
}
.btn--ghost:hover {
  border-color: var(--navy-900);
  color: var(--navy-900);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.btn--light {
  background: var(--white);
  color: var(--navy-900);
}
.btn--light:hover {
  background: var(--cyan-100);
  color: var(--navy-900);
}

/* ========== HERO (full-bleed) ========== */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-950);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) forwards;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 21, 40, 0.92) 0%, rgba(6, 21, 40, 0.72) 42%, rgba(6, 21, 40, 0.35) 70%, rgba(6, 21, 40, 0.45) 100%),
    linear-gradient(to top, rgba(6, 21, 40, 0.75) 0%, transparent 45%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: 5.5rem 0 4.5rem;
  max-width: 40rem;
  margin-left: max(1.25rem, calc((100% - var(--container)) / 2));
}
.hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
  color: var(--cyan-400);
  margin: 0 0 1.1rem;
  animation: riseIn 0.9s var(--ease) both;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin-bottom: 0.85rem;
  animation: riseIn 0.9s 0.08s var(--ease) both;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.6vw, 3.45rem);
  font-weight: 800;
  margin-bottom: 1rem;
  animation: riseIn 0.9s 0.14s var(--ease) both;
}
.hero__lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.86);
  max-width: 36ch;
  margin: 0 0 1.75rem;
  animation: riseIn 0.9s 0.22s var(--ease) both;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: riseIn 0.9s 0.3s var(--ease) both;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.section--muted { background: var(--slate-50); }
.section--navy {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(43, 179, 232, 0.18), transparent 45%),
    linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: rgba(255,255,255,0.88);
}
.section--navy h2,
.section--navy h3,
.section--navy .section__title { color: var(--white); }
.section--navy .section__eyebrow { color: var(--cyan-400); }
.section--navy .prose,
.section--navy .prose p { color: rgba(255,255,255,0.82); }
.section--navy .prose a { color: var(--cyan-400); }

.section__eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-600);
  margin-bottom: 0.65rem;
}
.section__title {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  max-width: 22ch;
}
.section__lead {
  max-width: 62ch;
  margin: 0 0 2rem;
  color: var(--slate-500);
  font-size: 1.0625rem;
}
.section--navy .section__lead { color: rgba(255,255,255,0.72); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .split,
  .split--reverse { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
  background: var(--slate-100);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(6,21,40,0.35), transparent);
  pointer-events: none;
}

/* Method strip */
.methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--slate-200);
}
.method {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--slate-200);
  background: transparent;
}
.method__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  color: var(--cyan-600);
  background: var(--cyan-100);
  border-radius: 8px;
}
.method h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
}
.method p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--slate-500);
}
@media (min-width: 640px) {
  .methods {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: none;
  }
  .method {
    padding: 1.35rem 1.25rem;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
  }
  .method:nth-child(odd) {
    padding-left: 0;
    padding-right: 1.5rem;
    border-right: 1px solid var(--slate-200);
  }
  .method:nth-child(even) {
    padding-left: 1.5rem;
    padding-right: 0;
  }
}
@media (min-width: 980px) {
  .methods {
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--slate-200);
  }
  .method,
  .method:nth-child(odd),
  .method:nth-child(even) {
    padding: 1.5rem 1.5rem;
    border-top: none;
    border-bottom: none;
    border-right: 1px solid var(--slate-200);
  }
  .method:first-child {
    padding-left: 0;
  }
  .method:last-child {
    border-right: none;
    padding-right: 0;
  }
}

/* Service links */
.service-links {
  display: grid;
  gap: 0.55rem;
}
.service-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.05rem;
  border-bottom: 1px solid var(--slate-200);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  transition: 0.2s var(--ease);
}
.service-links a span {
  color: var(--cyan-600);
  transition: transform 0.2s var(--ease);
}
.service-links a:hover {
  color: var(--cyan-600);
  padding-left: 1.25rem;
}
.service-links a:hover span { transform: translateX(4px); }

/* Clean list */
.clean-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.25rem;
}
@media (max-width: 700px) {
  .clean-grid { grid-template-columns: 1fr; }
}
.clean-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 500;
}
.clean-item svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--cyan-400);
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
@media (max-width: 980px) {
  .process { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; }
}
.process__step {
  position: relative;
  padding-top: 0.25rem;
}
.process__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--cyan-500);
  margin-bottom: 0.55rem;
}
.process__step p {
  margin: 0;
  color: var(--slate-500);
  font-size: 0.98rem;
}

/* FAQ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  border: 1px solid var(--slate-200);
  margin-bottom: 0.65rem;
  background: var(--white);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--cyan-600);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { border-bottom: 1px solid var(--slate-100); }
.faq__body {
  padding: 0 1.25rem 1.15rem;
  color: var(--slate-500);
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:
    linear-gradient(135deg, rgba(43,179,232,0.16), transparent 40%),
    var(--navy-900);
  color: var(--white);
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  max-width: 18ch;
  margin-inline: auto;
}
.cta-band p {
  max-width: 46ch;
  margin: 0 auto 1.75rem;
  color: rgba(255,255,255,0.78);
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.cta-band__email {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
}
.cta-band__email a { color: var(--cyan-400); }

/* Neighborhood chips */
.area-note {
  font-size: 1.02rem;
  color: var(--slate-500);
  margin: 0 0 1.25rem;
}
.area-note a { font-weight: 700; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.68);
  padding: 3.5rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand p { margin: 0.85rem 0; max-width: 34ch; }
.footer__contact a {
  color: rgba(255,255,255,0.86);
  font-weight: 600;
}
.footer__contact a:hover { color: var(--cyan-400); }
.footer__heading {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__links {
  display: grid;
  gap: 0.55rem;
}
.footer__links a {
  color: rgba(255,255,255,0.68);
  font-size: 0.95rem;
}
.footer__links a:hover { color: var(--white); }
.footer__cta-text { margin: 0 0 1rem; }
.footer__sitemap { margin-top: 1.25rem; }
.footer__sitemap a { color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.15rem 0 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.48);
}
.footer__legal {
  display: flex;
  gap: 1.15rem;
}
.footer__legal a { color: rgba(255,255,255,0.48); }
.footer__legal a:hover { color: var(--white); }

/* Floating call */
.floating-call {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(6, 21, 40, 0.35);
  transition: 0.25s var(--ease);
}
.floating-call:hover {
  background: var(--cyan-500);
  color: var(--navy-950);
}

/* Intro after hero — copy + before/after */
.intro-band {
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}
.intro-band__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.intro-band__copy .section__title {
  max-width: 16ch;
}
.intro-band__copy p {
  margin: 0 0 1rem;
  max-width: 52ch;
  font-size: 1.0625rem;
  color: var(--slate-700);
}
.intro-band__copy .btn {
  margin-top: 0.5rem;
}

.ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.ba__item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--slate-100);
  aspect-ratio: 4 / 3;
}
.ba__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba__item figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(6, 21, 40, 0.78);
  border-radius: var(--radius);
}

@media (min-width: 880px) {
  .intro-band__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
  }
  .ba { gap: 1rem; }
}

/* ---------- Inner pages ---------- */
.breadcrumbs {
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
  padding: 0.75rem 0;
  font-size: 0.875rem;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
  color: var(--slate-500);
}
.breadcrumbs__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumbs__list li:not(:last-child)::after {
  content: "/";
  color: var(--slate-200);
}
.breadcrumbs a { color: var(--slate-500); font-weight: 600; }
.breadcrumbs a:hover { color: var(--cyan-600); }
.breadcrumbs [aria-current="page"] { color: var(--navy-900); font-weight: 700; }

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-950);
}
.page-hero__media,
.page-hero__scrim { position: absolute; inset: 0; }
.page-hero__media { z-index: 0; }
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__scrim {
  z-index: 1;
  background: linear-gradient(105deg, rgba(6,21,40,0.92) 0%, rgba(6,21,40,0.7) 45%, rgba(6,21,40,0.4) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: 3.5rem 0 3rem;
  max-width: 42rem;
  margin-left: max(1.25rem, calc((100% - var(--container)) / 2));
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-bottom: 0.85rem;
}
.page-hero__lead {
  margin: 0 0 1.5rem;
  max-width: 48ch;
  color: rgba(255,255,255,0.86);
  font-size: 1.0625rem;
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.page-hero__actions .btn { width: 100%; }
@media (min-width: 520px) {
  .page-hero__actions .btn { width: auto; }
}

.prose {
  max-width: 72ch;
}
.prose p {
  margin: 0 0 1.15rem;
  font-size: 1.0625rem;
  color: var(--slate-700);
}
.prose h2 {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  margin: 2.25rem 0 0.85rem;
}
.prose h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.65rem;
}
.prose a { font-weight: 700; }

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--slate-700);
  font-weight: 500;
}
.check-list li span { color: inherit; }
.check-list svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--cyan-600);
}

/* Dark sections: force readable checklist text */
.section--navy .check-list li,
.section--navy .check-list li span,
.band-split--navy .check-list li,
.band-split--navy .check-list li span {
  color: #ffffff;
}
.section--navy .check-list svg,
.band-split--navy .check-list svg {
  color: var(--cyan-400);
}

.page-split {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .page-split {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }
  .page-hero { min-height: 480px; align-items: center; }
  .page-hero__content { padding: 4.5rem 0; }
}

.side-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  padding: 1.5rem;
}
.side-card h2 {
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
}
.side-card p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: var(--slate-500);
}
.side-card .service-links a {
  font-size: 0.92rem;
  min-height: 44px;
}
.footer__address {
  display: inline-block;
  margin-top: 0.55rem;
  color: rgba(255,255,255,0.68);
  font-weight: 500;
  font-style: normal;
  line-height: 1.45;
}

.faq-wrap { max-width: 820px; }

/* ========== Page variety system (inner pages only) ========== */
.hero-split {
  display: grid;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
}
.hero-split__copy {
  padding: 2.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-split__copy h1 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin-bottom: 0.85rem;
}
.hero-split__media {
  min-height: 260px;
  background: var(--navy-900);
}
.hero-split__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr 1.05fr;
    min-height: 460px;
  }
  .hero-split__copy {
    padding: 3.5rem 2rem 3.5rem max(1.25rem, calc((100% - var(--container)) / 2));
    max-width: none;
  }
  .hero-split__media img { min-height: 460px; }
}

.icon-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
@media (min-width: 640px) {
  .icon-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .icon-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .icon-grid--4 { grid-template-columns: repeat(4, 1fr); }
}
.icon-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.2rem;
  border: 1px solid var(--slate-200);
  background: var(--white);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.icon-card:hover {
  border-color: var(--cyan-500);
  transform: translateY(-2px);
}
.icon-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  color: var(--cyan-600);
  background: var(--cyan-100);
  border-radius: 10px;
}
.icon-card h3 {
  font-size: 1.02rem;
  margin: 0 0 0.4rem;
}
.icon-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--slate-500);
  flex: 1;
}
.icon-card__link {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}
.icon-grid--dark .icon-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
}
.icon-grid--dark .icon-card h3 { color: var(--white); }
.icon-grid--dark .icon-card p { color: rgba(255,255,255,0.68); }
.icon-grid--dark .icon-card__icon {
  background: rgba(43,179,232,0.18);
  color: var(--cyan-400);
}
.icon-grid--soft .icon-card {
  background: var(--slate-50);
  border: none;
  border-top: 3px solid var(--cyan-500);
}

.info-steps {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.info-steps--row {
  counter-reset: none;
}
@media (min-width: 800px) {
  .info-steps--row { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.25rem; }
}
.info-steps--timeline {
  border-left: 2px solid var(--slate-200);
  margin-left: 0.6rem;
  padding-left: 1.25rem;
  gap: 0;
}
.info-steps--timeline .info-steps__item {
  position: relative;
  padding: 0 0 1.5rem;
  border: none;
  background: transparent;
}
.info-steps--timeline .info-steps__item::before {
  content: "";
  position: absolute;
  left: calc(-1.25rem - 5px);
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 3px var(--white);
}
.info-steps__item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.15rem 1rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
}
.info-steps__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--cyan-600);
  margin-bottom: 0.4rem;
}
.info-steps__item h3 {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}
.info-steps__item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--slate-500);
  flex: 1;
}
.info-steps--timeline .info-steps__item {
  height: auto;
}

.compare {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0 2.75rem;
  align-items: stretch;
}
@media (min-width: 760px) {
  .compare {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
  }
}
.compare__col {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-height: 100%;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--slate-200);
  background: var(--white);
  border-radius: var(--radius);
  box-sizing: border-box;
}
.compare__col--accent {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #ffffff;
}
.compare__col--accent h3,
.compare__col--accent li { color: #ffffff; }
.compare__col h3 {
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
}
.compare__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  flex: 1 1 auto;
  align-content: start;
}
.compare__col li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
}
.compare__col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-500);
}
.compare__vs {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-600);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 0.25rem;
  align-self: center;
}
@media (max-width: 759px) {
  .compare__col {
    min-height: 0;
  }
}

.mosaic {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
@media (min-width: 700px) {
  .mosaic {
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 420px;
  }
  .mosaic__item--lg {
    grid-row: 1 / span 2;
  }
}
.mosaic__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--slate-100);
  min-height: 180px;
}
.mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
}
.mosaic__item figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  background: rgba(6,21,40,0.78);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.band-split {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}
.band-split--fog { background: var(--slate-50); }
.band-split--navy {
  background: var(--navy-900);
  color: rgba(255,255,255,0.86);
}
.band-split--navy .section__title,
.band-split--navy h2 { color: var(--white); }
.band-split--navy .section__eyebrow { color: var(--cyan-400); }
.band-split--navy .prose p { color: rgba(255,255,255,0.78); }
.band-split__grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 900px) {
  .band-split__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .band-split--flip .band-split__media { order: 2; }
}
.band-split__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 240px;
}
.band-split__media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.stat-strip {
  background: var(--navy-950);
  color: rgba(255,255,255,0.86);
  padding: 1.25rem 0;
}
.stat-strip__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .stat-strip__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.stat-strip__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.stat-strip__icon {
  flex-shrink: 0;
  color: var(--cyan-400);
}
.stat-strip__item p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.callout {
  padding: 1.25rem 1.35rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--cyan-500);
  background: var(--cyan-100);
  max-width: 52rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout--warn {
  border-left-color: #d97706;
  background: #fff7ed;
}
.callout--navy {
  border-left-color: var(--cyan-400);
  background: rgba(10, 31, 61, 0.06);
}
.callout h3 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}
.callout p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--slate-700);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.5rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
}
.chip svg { color: var(--cyan-600); }

.faq-groups {
  display: grid;
  gap: 2rem;
  max-width: 820px; /* match .faq column so group titles share the accordion left edge */
}
.faq-group__title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.15rem;
  line-height: 1.25;
  margin: 0 0 0.85rem;
}
.faq-group__title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--cyan-100);
  color: var(--cyan-600);
  border-radius: 8px;
}
.faq-group__title span svg {
  display: block;
}

.page-intro {
  padding: 2rem 0 0.5rem;
}
.page-intro .prose { max-width: 68ch; }

.content-figure {
  margin: 1.75rem 0 2rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--slate-100);
}
.content-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.content-figure figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  color: var(--slate-500);
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
}
.content-figures {
  display: grid;
  gap: 0.85rem;
  margin: 1.75rem 0 2rem;
}
.content-figures .content-figure { margin: 0; }
@media (min-width: 700px) {
  .content-figures { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

.area-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
@media (min-width: 700px) {
  .area-grid { grid-template-columns: 1fr 1fr; }
}
.area-card {
  padding: 1.25rem 1.15rem;
  border: 1px solid var(--slate-200);
  background: var(--white);
}
.area-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.55rem;
}
.area-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--slate-500);
}

.contact-panel {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  padding: 1.5rem;
}
.contact-panel h2 {
  font-size: 1.15rem;
  margin: 0 0 1rem;
}
.contact-panel dl {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.contact-panel dt {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-600);
  margin: 0;
}
.contact-panel dd {
  margin: 0.2rem 0 0;
  color: var(--navy-900);
  font-weight: 600;
}
.contact-form {
  display: grid;
  gap: 0.9rem;
}
.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-900);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  font: inherit;
  color: var(--slate-700);
  background: var(--white);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .form-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--slate-500);
  font-weight: 500;
}

/* ——— Conversion: ratings, trust, testimonials, before/after, photo CTA ——— */
.rating-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin: 0.85rem 0 1rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
}
.rating-bar__stars { letter-spacing: 0.08em; line-height: 1; }
.rating-bar__star { color: rgba(255,255,255,0.28); }
.rating-bar__star.is-on { color: #f5c542; }
.rating-bar__label { color: var(--white); font-weight: 700; }
.rating-bar__detail {
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  font-size: 0.85rem;
}
.rating-bar--section .rating-bar__label { color: var(--navy-900); }
.rating-bar--section .rating-bar__detail { color: var(--slate-500); }
.rating-bar--section .rating-bar__star { color: var(--slate-200); }
.rating-bar--section .rating-bar__star.is-on { color: #d4a017; }
.rating-bar--hero { margin-top: 0.35rem; }

.trust-badges {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.trust-badges__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.25;
}
.trust-badges__icon {
  display: inline-flex;
  color: var(--cyan-400);
  flex-shrink: 0;
}
.trust-badges--hero { margin-top: 1rem; max-width: 42rem; }
.trust-badges--row .trust-badges__item,
.trust-badges--compact .trust-badges__item {
  background: var(--white);
  border-color: var(--slate-200);
  color: var(--navy-900);
  box-shadow: 0 1px 0 rgba(10,31,61,0.04);
}
.trust-badges--row .trust-badges__icon,
.trust-badges--compact .trust-badges__icon { color: var(--cyan-600); }
.trust-badges--on-dark .trust-badges__item {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.9);
}
.trust-badges--compact { gap: 0.4rem; }
.trust-badges--compact .trust-badges__item { font-size: 0.75rem; padding: 0.35rem 0.6rem; }

.testimonial-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 800px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  margin: 0;
  padding: 1.35rem 1.25rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.testimonial-card__stars {
  color: #d4a017;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}
.testimonial-card__quote {
  margin: 0;
  color: var(--slate-700);
  font-size: 0.98rem;
  line-height: 1.55;
  flex: 1;
}
.testimonial-card footer {
  display: grid;
  gap: 0.15rem;
}
.testimonial-card__name {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 750;
  color: var(--navy-900);
}
.testimonial-card__meta {
  font-size: 0.82rem;
  color: var(--slate-500);
}
.testimonial-note {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--slate-500);
  max-width: 62ch;
}

.section__lead {
  max-width: 54ch;
  color: var(--slate-500);
  margin: -0.35rem 0 1.5rem;
  font-size: 1.05rem;
}

.ba-gallery {
  display: grid;
  gap: 1.5rem;
}
.ba-pair { margin: 0; }
.ba-pair__grid {
  display: grid;
  gap: 0.65rem;
  align-items: stretch;
}
@media (min-width: 700px) {
  .ba-pair__grid { grid-template-columns: 1fr 1fr; }
}
.ba-pair__side {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--slate-100);
  min-height: 220px;
  height: 100%;
}
.ba-pair__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  display: block;
  aspect-ratio: 4 / 3;
}
.ba-pair__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(6,21,40,0.82);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ba-pair__tag--after { background: rgba(14,116,144,0.92); }
.ba-pair figcaption {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  color: var(--slate-500);
  font-weight: 600;
}

.mid-cta {
  margin: 0.5rem 0 0;
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
  background:
    linear-gradient(120deg, rgba(43,179,232,0.1), transparent 45%),
    var(--slate-100);
  border-block: 1px solid var(--slate-200);
}
.mid-cta__inner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 860px) {
  .mid-cta__inner { grid-template-columns: 1.4fr 1fr; }
}
.mid-cta__copy h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  max-width: 22ch;
}
.mid-cta__copy p {
  margin: 0 0 0.85rem;
  color: var(--slate-500);
  max-width: 48ch;
}
.mid-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.mid-cta__actions .btn { width: 100%; }
@media (min-width: 560px) {
  .mid-cta__actions .btn { width: auto; }
}

.cta-band--photo { text-align: left; }
.cta-band--photo__grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 860px) {
  .cta-band--photo__grid { grid-template-columns: 1.2fr 1fr; }
}
.cta-band--photo h2 {
  max-width: 18ch;
  margin-inline: 0;
}
.cta-band--photo > .container > .cta-band--photo__copy > p,
.cta-band--photo__copy p {
  margin-inline: 0;
  max-width: 46ch;
}
.photo-quote-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  color: rgba(255,255,255,0.88);
}
.photo-quote-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(43,179,232,0.18);
  color: var(--cyan-400);
  margin-bottom: 0.85rem;
}
.photo-quote-card h3 {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-size: 1.15rem;
}
.photo-quote-card p { margin: 0 0 1rem; color: rgba(255,255,255,0.75); }
.photo-quote-card__alt {
  margin-top: 0.85rem !important;
  font-size: 0.88rem;
}
.photo-quote-card__alt a { color: var(--cyan-400); font-weight: 650; }

.file-upload {
  display: grid;
  gap: 0.4rem;
}
.file-upload input[type="file"] {
  padding: 0.65rem;
  border: 1px dashed var(--slate-300);
  border-radius: var(--radius);
  background: var(--slate-50);
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
