/* ============================================================
   SUMMIT PLUMBING CO. — site.css
   Design system: cinematic "deep-blue / chrome" extraction of the
   Axcel (Ferrari.com) template — navy-black void, white tracked
   uppercase type, water-blue #2E7DD1 for interactive states only,
   zero radius, hairlines. Clear (untinted) full-bleed media.
   ============================================================ */

:root {
  /* Colors — deep blue + chrome (water) */
  --water: #2E7DD1;
  --water-bright: #4A9BE6;
  --water-dark: #1f5a9e;
  --white: #ffffff;
  --void: #0a0e1a;
  --void-2: #06090f;
  --night: #121a2b;
  --night-2: #0e1524;
  --silver: #c9d5e4;
  --smoke: #8a99ae;
  --lead: #56657c;
  --line: #26303f;

  /* Type */
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --track-wide: 0.091em;
  --track-label: 0.083em;
  --track-display: 0.02em;

  /* Layout */
  --page-max: 1440px;
  --gutter: clamp(20px, 4vw, 60px);
  --nav-h: 66px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

:root { color-scheme: dark; }

body {
  font-family: var(--font);
  font-size: 13px;
  line-height: 1.78;
  font-weight: 400;
  color: var(--white);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--water); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--water);
  outline-offset: 3px;
}

/* ---------- Anti-dither treatment (house rule) ----------
   Never a perfectly flat dark solid across a full-width section:
   every dark section = imperceptible 2-stop gradient + SVG
   fractal-noise overlay so display-pipeline dithering has no
   flat field to latch onto. */
.noise-overlay {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  position: absolute;
  inset: 0;
  opacity: 0.035;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.sec-void {
  position: relative;
  background: linear-gradient(180deg, #0a0e1a 0%, #070b14 62%, #05080f 100%);
}
.sec-night {
  position: relative;
  background: linear-gradient(180deg, #121a2b 0%, #0e1524 100%);
}
.sec-void > .sec-inner,
.sec-night > .sec-inner { position: relative; z-index: 1; }
/* mix-blend compositing is a hotspot on mobile GPUs; the dither
   artifact this masks is a desktop display-pipeline issue, so
   phones get a cheap plain-opacity noise instead. */
@media (max-width: 768px) {
  .noise-overlay { mix-blend-mode: normal; opacity: 0.02; }
}

/* ---------- Type utilities ---------- */
.label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  line-height: 1.78;
  color: var(--water-bright);
}
.display {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--track-display);
  line-height: 1.22;
  color: var(--white);
}
.display--lg { font-size: clamp(23px, 3.4vw, 42px); }
.display--md { font-size: clamp(17px, 1.8vw, 22px); }
.display--sm { font-size: 16px; letter-spacing: 0.03em; }
.body-copy { font-size: 13px; line-height: 1.78; color: var(--silver); }
.body-muted { color: var(--smoke); }

.hairline { border: 0; border-top: 1px solid var(--line); }

/* ---------- Links / CTAs ---------- */
.arrow-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--white);
  padding: 5px 0;
  transition: color 0.25s ease;
}
.arrow-link .arr { display: inline-block; transition: transform 0.25s ease; margin-left: 6px; }
.arrow-link:hover, .arrow-link:focus-visible { color: var(--water-bright); }
.arrow-link:hover .arr { transform: translateX(4px); }

.ghost-btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  padding: 14px 32px;
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.ghost-btn:hover, .ghost-btn:focus-visible {
  color: var(--white);
  border-color: var(--water);
  background-color: var(--water);
}
/* Solid (primary) variant */
.solid-btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--white);
  background: var(--water);
  border: 1px solid var(--water);
  border-radius: 0;
  padding: 14px 32px;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.solid-btn:hover, .solid-btn:focus-visible {
  background: var(--water-bright);
  border-color: var(--water-bright);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { scroll-margin-top: calc(var(--nav-h) + 8px); }

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 200;
  background: var(--void);
  border: 1px solid var(--line);
  padding: 10px 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s ease, border-color 0.35s ease;
}
.nav--solid {
  background: linear-gradient(180deg, rgba(8,11,20,0.97), rgba(6,9,15,0.97));
  border-bottom-color: var(--line);
  backdrop-filter: blur(6px);
}
.nav-inner {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* Small brand in the fixed bar — hidden while the nav is transparent
   (the big .hero-brand logo owns the top of the page), joins the bar
   once it goes solid past the hero / on menu open. */
.nav-brand {
  flex: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}
.nav--solid .nav-brand {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-brand img { display: block; height: 38px; width: auto; }

/* .wordmark kept for the footer brand line */
.wordmark {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.25s ease;
}
.wordmark span { color: var(--water-bright); font-weight: 500; }
.wordmark:hover, .wordmark:focus-visible { color: var(--water-bright); }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
}
.nav-link {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--white);
  padding: 5px 0;
  transition: color 0.25s ease;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--water-bright); }
.nav-phone { color: var(--white); }
.nav-cta {
  border: 1px solid var(--water);
  background: var(--water);
  padding: 9px 18px;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.nav-cta:hover, .nav-cta:focus-visible { background: var(--water-bright); border-color: var(--water-bright); color: var(--white); }

.menu-btn {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.menu-btn .bar {
  position: absolute;
  left: 9px; right: 9px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.25s ease;
}
.menu-btn .bar:nth-child(1) { top: 14px; }
.menu-btn .bar:nth-child(2) { top: 20px; }
.menu-btn .bar:nth-child(3) { top: 26px; }
.menu-btn:hover .bar { background: var(--water-bright); }
.menu-btn[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: linear-gradient(180deg, #0a0e1a, #06090f);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--white);
  transition: color 0.25s ease;
}
.mobile-menu a:hover, .mobile-menu a:focus-visible { color: var(--water-bright); }
.mobile-menu .mm-cta { color: var(--water-bright); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--void);
}
.hero-media {
  position: absolute;
  inset: 0;
  background: var(--void-2);
}
/* Two stacked layers, crossfaded. Each layer holds a cinematic poster
   image (shown instantly) and an optional <video> that fades in over
   the poster once it can play — drop MP4s at the SLIDES paths and the
   hero becomes live video with zero code changes. */
.hero-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-layer.active { opacity: 1; }
.hero-layer img,
.hero-layer video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Landscape hero clip (high-pressure water jet across the frame): fills
     desktop fully; on phones the sides crop to the centre, where the jet
     + backlit spray are densest — so the action fills the screen the
     instant the page opens, no scroll needed. */
  object-position: center center;
}
.hero-layer video {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-layer video.ready { opacity: 1; }
/* CLEAR media (house rule for this client): only a soft left wash so
   the left-column copy stays legible — the right ~half of the frame
   is left fully clear. No blanket tint. */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,9,15,0.55) 0%, rgba(6,9,15,0.20) 34%, rgba(6,9,15,0) 58%),
    linear-gradient(180deg, rgba(6,9,15,0.28) 0%, rgba(6,9,15,0) 22%, rgba(6,9,15,0) 72%, rgba(6,9,15,0.34) 100%);
  pointer-events: none;
}
/* Big page-top logo — JK-style: parked over the hero and scrolls away
   with the page (it does not ride the fixed nav). Aligned to the same
   gutter / max-width grid as .nav-inner. */
.hero-brand {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: calc(max((100% - var(--page-max)) / 2, 0px) + var(--gutter));
}
.hero-brand img { display: block; height: 92px; width: auto; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
  max-width: var(--page-max);
  margin-inline: auto;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 52px) var(--gutter) 96px;
}
.hero-text { text-shadow: 0 2px 22px rgba(0,0,0,0.55); }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: var(--water-bright);
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(44px, 6.2vw, 84px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.012em;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.94);
  max-width: 44ch;
  margin-bottom: 30px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 2.4vw, 26px);
  flex-wrap: wrap;
}

/* ---------- Google badge (Simple Cut style) ---------- */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  margin-top: 30px;
  text-shadow: none;
}
.google-badge .g-logo { width: 34px; height: 34px; flex: none; }
.google-badge .g-divider { width: 1px; height: 38px; background: rgba(10,14,26,0.12); flex: none; }
.google-badge .g-meta { display: flex; flex-direction: column; gap: 3px; }
.google-badge .g-row { display: flex; align-items: center; gap: 8px; }
.google-badge .g-stars { display: inline-flex; gap: 2px; }
.google-badge .g-stars svg { width: 17px; height: 17px; }
.google-badge .g-rating { font-size: 17px; font-weight: 800; color: #0a0e1a; line-height: 1; }
.google-badge .g-sub { font-size: 12px; font-weight: 600; color: #56657c; letter-spacing: 0.01em; }

/* ---------- Hero quote panel ---------- */
.quote-panel {
  background: rgba(8, 11, 20, 0.74);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-top: 2px solid var(--water);
  padding: clamp(24px, 2.4vw, 34px);
}
.quote-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}
.quote-sub {
  font-size: 13px;
  line-height: 1.6;
  color: var(--smoke);
  margin-bottom: 8px;
}
.q-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: var(--smoke);
  margin-top: 18px;
  margin-bottom: 2px;
}
.q-input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #3a475c;
  border-radius: 0;
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;      /* >=16px prevents iOS focus zoom */
  line-height: 1.4;
  padding: 8px 2px;
  transition: border-color 0.25s ease;
}
.q-input:focus {
  outline: none;
  border-bottom-color: var(--water);
}
.q-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M0 0l5 6 5-6z' fill='%23ffffff'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
  cursor: pointer;
}
.q-submit {
  width: 100%;
  margin-top: 26px;
  text-align: center;
}
.q-note {
  font-size: 11px;
  line-height: 1.6;
  color: var(--lead);
  margin-top: 14px;
  text-align: center;
}
.hero-dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  z-index: 3;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 0;               /* geometric, zero radius */
  background: rgba(255,255,255,0.5);
  padding: 0;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.hero-dot:hover { background: var(--white); }
.hero-dot[aria-current="true"] { background: var(--water); transform: scale(1.3); }
.hero.no-motion .hero-dots { display: none; }

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 18px;
  border-left: 1px solid var(--line);
}
.trust-item:first-child { border-left: 0; }
.trust-item svg { width: 24px; height: 24px; flex: none; color: var(--water-bright); }
.trust-item span {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--silver);
}

/* ---------- Section head ---------- */
.sec-head { text-align: center; margin-bottom: clamp(44px, 6vw, 72px); }
.sec-head .label { margin-bottom: 14px; }

/* ---------- Services ---------- */
.services { padding: clamp(72px, 9vw, 128px) 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;                        /* hairline gutters via bg */
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: linear-gradient(180deg, #141d2e, #10192a);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card .noise-overlay { z-index: 0; }
.service-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.service-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.service-card:hover .service-media img { transform: scale(1.045); }
.service-body {
  position: relative;
  z-index: 1;
  padding: 28px clamp(20px, 2.4vw, 34px) 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.service-body .num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--track-wide);
  color: var(--water-bright);
  text-transform: uppercase;
}
.service-body h3 { margin-bottom: 2px; }
.service-body p { color: var(--smoke); }
.service-body .arrow-link { margin-top: auto; }

/* ---------- About (scenic full-bleed panel) ---------- */
.about {
  position: relative;
  min-height: min(90vh, 800px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--void);
}
.about-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* CLEAR media: bottom-anchored fade only, so the scenic image stays
   visible across the top ~half; text sits in the darkened base. */
.about-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,9,15,0) 40%, rgba(6,9,15,0.55) 78%, rgba(6,9,15,0.82) 100%);
  pointer-events: none;
}
.about-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(56px, 8vw, 110px) var(--gutter);
  max-width: var(--page-max);
  margin-inline: auto;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.about-content .label { margin-bottom: 14px; }
.about-content h2 { margin-bottom: 16px; max-width: 16ch; }
.about-copy { max-width: 540px; color: var(--silver); margin-bottom: 24px; }
.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin-bottom: 28px;
}
.about-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--white);
}
.about-points svg { width: 17px; height: 17px; color: var(--water-bright); flex: none; }

/* ---------- Stats ---------- */
.stats { padding: clamp(60px, 8vw, 104px) 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 10px 18px;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; }
.stat-value {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.stat-value span { color: var(--water-bright); }
.stat-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: var(--smoke);
}

/* ---------- Gallery / Our Work ---------- */
.gallery { padding: clamp(72px, 9vw, 120px) 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
}
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.gallery-tile:hover img { transform: scale(1.05); }
.gallery-tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 18px 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--white);
  background: linear-gradient(180deg, rgba(6,9,15,0) 0%, rgba(6,9,15,0.72) 100%);
}

/* ---------- Reviews ---------- */
.reviews { padding: clamp(72px, 9vw, 128px) 0; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.review {
  padding: 8px clamp(20px, 2.6vw, 40px);
  border-left: 1px solid var(--line);
  text-align: left;
}
.review:first-child { border-left: 0; }
.review blockquote {
  color: var(--silver);
  margin-bottom: 18px;
}
.review .who {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: var(--smoke);
}
.review .stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 14px;
}
.review .stars svg { width: 15px; height: 15px; color: var(--water-bright); }

/* ---------- FAQ ---------- */
.faq { padding: clamp(72px, 9vw, 120px) 0; }
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 24px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  transition: color 0.25s ease;
}
.faq-q:hover { color: var(--water-bright); }
.faq-q .plus {
  position: relative;
  width: 16px; height: 16px;
  flex: none;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--water-bright);
  transition: transform 0.3s ease;
}
.faq-q .plus::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-q .plus::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-q[aria-expanded="true"] .plus::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding: 0 4px 26px;
  color: var(--smoke);
  font-size: 14px;
  max-width: 68ch;
}

/* ---------- CTA band (background video) ---------- */
.cta-band {
  position: relative;
  min-height: min(74vh, 660px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--void);
}
.cta-band video, .cta-band .cta-poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* CLEAR media: localized radial darkening behind the copy only —
   the bright water arcs at the edges stay fully visible. */
.cta-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 62% at 50% 50%, rgba(6,9,15,0.62) 0%, rgba(6,9,15,0.32) 46%, rgba(6,9,15,0) 78%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  padding: 90px var(--gutter);
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.cta-content .label { margin-bottom: 16px; }
.cta-content h2 { margin-bottom: 14px; }
.cta-content .cta-sub { color: var(--silver); max-width: 46ch; margin: 0 auto 30px; }
.cta-content .hero-ctas { justify-content: center; }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  background: linear-gradient(180deg, #121a2b 0%, #0d1420 100%);
  border-top: 1px solid var(--line);
}
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  margin-inline: auto;
  padding: clamp(56px, 7vw, 90px) var(--gutter) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}
.footer-brand img { height: 66px; width: auto; margin-bottom: 16px; }
.footer h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--track-label);
  color: var(--white);
  margin-bottom: 18px;
}
.footer-brand p { color: var(--smoke); max-width: 320px; }
.footer li { margin-bottom: 10px; }
.footer li a, .footer li span {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: var(--smoke);
  transition: color 0.25s ease;
}
.footer li a:hover, .footer li a:focus-visible { color: var(--water-bright); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--track-wide);
  color: var(--lead);
}

/* ---------- Mobile sticky CTAs — two floating buttons, NO panel ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  display: none;                    /* enabled on mobile via media query */
  gap: 10px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
  background: none;                 /* NO bar/panel behind the buttons */
  pointer-events: none;             /* container is click-through */
  transform: translateY(140%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta a {
  pointer-events: auto;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 10px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}
.mobile-cta a svg { width: 17px; height: 17px; flex: none; }
.mobile-cta .mc-call {
  background: rgba(12,17,28,0.92);
  backdrop-filter: blur(6px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
}
.mobile-cta .mc-book {
  background: var(--water);
  color: var(--white);
  border: 1px solid var(--water);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-brand img { height: 62px; }
}
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    align-content: center;
    padding-top: 150px;
    padding-bottom: 84px;
  }
  .quote-panel { max-width: 460px; }
  .hero-brand { top: calc(var(--nav-h) - 4px); }
  .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; gap: 34px; }
  .review { border-left: 0; padding-inline: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .stat:nth-child(3) { border-left: 0; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .hero-brand { top: 12px; }
  .hero-brand img { height: 54px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 0; }

  /* Mobile readability: step body copy and labels up one notch */
  .body-copy, .service-body p, .review blockquote,
  .faq-a p, .footer-brand p, .quote-sub, .about-copy { font-size: 14px; }
  .label, .stat-label, .service-body .num { font-size: 12px; }
  .arrow-link, .nav-link { font-size: 13px; }
  .footer li a, .footer li span { font-size: 12px; }
  .hero-eyebrow { font-size: 12px; }
  .hero-title { font-size: clamp(40px, 11.5vw, 54px); }
  .hero-sub { font-size: 15px; }
  .q-note { font-size: 12px; }
  /* Keep the hero action visible immediately: bias the crop toward the
     centered action and let the copy sit lower over it. */
  .hero-inner { align-content: end; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas .ghost-btn, .hero-ctas .solid-btn { width: 100%; text-align: center; }
}
