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

:root {
  --black: #050809;
  --black-2: #071012;
  --black-3: #0c171a;
  --teal: #0e7795;
  --teal-2: #0a5a73;
  --aqua: #77d8ee;
  --aqua-2: #b9f0fb;
  --white: #ffffff;
  --soft: #f3fbfd;
  --mist: #e1f5fa;
  --text: #f7fbfc;
  --text-dark: #071012;
  --muted: #b6c8ce;
  --muted-dark: #52636a;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(5, 8, 9, 0.12);
  --shadow: 0 24px 70px rgba(1, 21, 27, 0.18);
  --radius: 8px;
  --max: 1180px;
  --header-h: 76px;
  --font-display: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px + env(safe-area-inset-top, 0px));
  background: var(--black);
}

body {
  min-width: 320px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, canvas, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; background: transparent; color: inherit; cursor: pointer; }
input, textarea, select { width: 100%; min-width: 0; font-size: 16px; }
textarea { resize: vertical; }

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

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: -999px;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--aqua);
  color: var(--black);
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus { left: 0.75rem; }

.scroll-progress {
  position: fixed;
  top: env(safe-area-inset-top, 0px);
  left: 0;
  z-index: 1100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--aqua), var(--white));
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding-top: env(safe-area-inset-top, 0px);
  background: linear-gradient(180deg, rgba(5, 8, 9, 0.92), rgba(5, 8, 9, 0.72));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 8, 9, 0.96);
  border-bottom-color: var(--line);
}

.header-inner {
  width: 100%;
  max-width: var(--max);
  min-height: var(--header-h);
  margin: 0 auto;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.site-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(14, 119, 149, 0.35);
}

.logo-text {
  display: grid;
  gap: 0.05rem;
  line-height: 1.05;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-loc {
  color: var(--aqua-2);
  font-size: 0.74rem;
  font-weight: 700;
}

.primary-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1070;
  width: min(88vw, 340px);
  padding: calc(5rem + env(safe-area-inset-top, 0px)) 1.5rem 2rem;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--black-2);
  border-left: 1px solid var(--line);
  transform: translateX(104%);
  transition: transform 260ms var(--ease);
}

.primary-nav.is-open {
  display: flex;
  transform: translateX(0);
}

.primary-nav a {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

.primary-nav a:hover { color: var(--aqua); }

.nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1.5rem;
  line-height: 1;
}

.nav-toggle,
.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: var(--radius);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.1;
}

.nav-toggle {
  min-height: 44px;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  color: var(--white);
}

.nav-toggle-bars {
  display: grid;
  gap: 4px;
}

.nav-toggle-bars span {
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
}

.header-call {
  display: none;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(119, 216, 238, 0.5);
  background: rgba(14, 119, 149, 0.18);
  color: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.header-call:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1060;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(2px);
}

.btn {
  min-height: 52px;
  padding: 0.95rem 1.1rem;
  text-align: center;
  transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  border: 1px solid var(--aqua);
  background: linear-gradient(135deg, var(--aqua), var(--teal));
  color: var(--black);
  box-shadow: 0 18px 44px rgba(14, 119, 149, 0.3);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--aqua);
  background: rgba(14, 119, 149, 0.28);
}

.hero {
  position: relative;
  min-height: 82svh;
  padding: calc(5.7rem + env(safe-area-inset-top, 0px)) 1rem 1.5rem;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.02);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 9, 0.92) 0%, rgba(5, 8, 9, 0.68) 44%, rgba(5, 8, 9, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 8, 9, 0.28), rgba(5, 8, 9, 0.92));
}

#water-canvas {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 34%;
  opacity: 0.88;
  mix-blend-mode: screen;
}

.hero-glow {
  position: absolute;
  right: -18rem;
  top: 8rem;
  z-index: -2;
  width: 38rem;
  height: 38rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119, 216, 238, 0.28), rgba(14, 119, 149, 0) 68%);
  pointer-events: none;
}

.hero-shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.hero-copy {
  width: 100%;
  max-width: 680px;
  padding-top: 1.4rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.05rem;
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--white);
}

.hero-title span { display: block; }

.hero-title .accent {
  color: var(--aqua);
  text-shadow: 0 18px 58px rgba(119, 216, 238, 0.22);
}

.hero-lead {
  margin-top: 1.2rem;
  width: 100%;
  max-width: 640px;
  color: #dcecef;
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-proof {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 540px;
}

.proof-pill {
  min-height: 82px;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 8, 9, 0.48);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 0.15rem;
}

.proof-number {
  color: var(--aqua);
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 900;
}

.proof-label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-service-panel {
  display: none;
  align-self: end;
  width: min(100%, 420px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 8, 9, 0.76);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-panel-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-panel-body {
  padding: 1.1rem;
}

.service-panel-body h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.15;
}

.service-panel-body ul {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.55rem;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-panel-body li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 0.55rem;
  align-items: start;
}

.service-panel-body li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--aqua);
}

.section {
  position: relative;
  padding: 4rem 1rem;
}

.section-light {
  background: linear-gradient(180deg, var(--white), var(--soft));
  color: var(--text-dark);
}

.section-dark {
  background: var(--black);
  color: var(--text);
}

.section-aqua {
  background:
    radial-gradient(circle at top left, rgba(119, 216, 238, 0.28), transparent 34rem),
    linear-gradient(180deg, #eefcff, #ffffff);
  color: var(--text-dark);
}

.section-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  max-width: 760px;
}

.section-heading.center { margin-inline: auto; text-align: center; }

.section-heading h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p {
  color: var(--muted-dark);
  font-size: 1.02rem;
}

.section-dark .section-heading p { color: var(--muted); }

.split {
  display: grid;
  gap: 2rem;
}

.maintenance-list {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.7rem;
}

.maintenance-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.row-index {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--aqua);
  font-weight: 900;
}

.maintenance-row h3 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text-dark);
}

.maintenance-row p {
  margin-top: 0.18rem;
  color: var(--muted-dark);
}

.image-stack {
  display: grid;
  gap: 0.8rem;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-2);
  box-shadow: var(--shadow);
}

.image-frame.primary { aspect-ratio: 4 / 5; }
.image-frame.secondary { aspect-ratio: 16 / 10; }

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: rgba(5, 8, 9, 0.76);
  color: var(--text);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.services-grid {
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
}

.service-card {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  min-height: 230px;
}

.service-card strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(119, 216, 238, 0.14);
  color: var(--aqua);
  font-weight: 900;
}

.service-card h3 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.15;
}

.service-card p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.review-grid {
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
}

.review-card {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.review-score {
  color: var(--aqua);
  font-weight: 900;
}

.review-card blockquote {
  margin-top: 0.65rem;
  color: var(--text);
  font-size: 1.05rem;
}

.review-card cite {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.trust-band {
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
}

.trust-item {
  padding: 1.1rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-dark);
}

.trust-item h3 {
  font-size: 1.05rem;
  font-weight: 900;
}

.trust-item p {
  margin-top: 0.45rem;
  color: var(--muted-dark);
}

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  gap: 0.8rem;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-3);
}

.gallery-item.wide { aspect-ratio: 16 / 10; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.gallery-item:hover img { transform: scale(1.04); }

.areas-layout {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.area-tags span {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: var(--white);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.88rem;
}

.map-frame {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--black-2);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.contact-layout {
  display: grid;
  gap: 1.4rem;
}

.contact-panel {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.contact-panel h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.05;
}

.contact-panel p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.contact-lines {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 750;
}

.quote-form {
  padding: 1.1rem;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  min-height: 48px;
  padding: 0.78rem 0.85rem;
  border: 1px solid rgba(5, 8, 9, 0.18);
  border-radius: var(--radius);
  background: #f8fcfd;
  color: var(--text-dark);
}

.field textarea { min-height: 122px; }

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--teal);
  outline: none;
}

.field .is-invalid,
.field input.is-invalid,
.field textarea.is-invalid,
.field select.is-invalid {
  border-color: #b42318;
}

.field-error {
  color: #b42318;
  font-size: 0.82rem;
  font-weight: 750;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  margin-top: 0.9rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: #fff3f0;
  color: #8a1f11;
  font-weight: 800;
}

.form-message.is-success {
  background: #e7fbf2;
  color: #075637;
}

.form-note {
  margin-top: 0.85rem;
  color: var(--muted-dark);
  font-size: 0.86rem;
}

.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 58px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-dark);
  font-weight: 900;
  text-align: left;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--teal);
}

.faq-item.is-open .faq-question::after { content: "-"; }

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  color: var(--muted-dark);
}

.faq-item.is-open .faq-answer { display: block; }

.site-footer {
  padding: 2.5rem 1rem calc(6rem + env(safe-area-inset-bottom, 0px));
  background: #030506;
  color: var(--muted);
}

.footer-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-weight: 900;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text);
  font-weight: 800;
}

.floating-cta {
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px));
  z-index: 1040;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 8, 9, 0.92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  transition: transform 220ms var(--ease), opacity 220ms ease;
}

.floating-cta.is-hidden {
  opacity: 0;
  transform: translateY(115%);
  pointer-events: none;
}

.floating-cta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 900;
}

.floating-cta .call {
  background: var(--white);
  color: var(--black);
}

.floating-cta .quote {
  background: var(--teal);
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#weekly-service .reveal {
  opacity: 1;
  transform: none;
}

.error-body {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.error-page {
  width: min(100%, 560px);
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.error-page img {
  border-radius: 50%;
  background: var(--white);
}

.error-page h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1.05;
}

.error-page p {
  color: var(--muted);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
  .hero-proof { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero-title { font-size: 4.4rem; }
  .section-heading h2 { font-size: 3rem; }
  .services-grid,
  .review-grid,
  .trust-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 639px) {
  .hero-shell,
  .section-inner,
  .footer-inner {
    width: min(calc(100vw - 2rem), 358px);
    max-width: 358px;
    margin-left: 0;
    margin-right: auto;
  }
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    width: min(calc(100vw - 2rem), 358px);
    max-width: 358px;
    margin-left: 0;
    margin-right: auto;
  }
  .logo-link { min-width: 0; }
  .logo-text { min-width: 0; }
  .logo-name,
  .logo-loc {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav-toggle {
    width: 44px;
    min-width: 44px;
    padding: 0;
  }
  .nav-toggle-label { display: none; }
  .hero-copy { max-width: calc(100vw - 2rem); }
  .hero-title {
    max-width: 100%;
    font-size: 2.28rem;
    overflow-wrap: break-word;
  }
  .hero-title span { max-width: 100%; }
  .hero-lead { font-size: 1rem; }
  .hero-proof {
    width: 100%;
    max-width: 100%;
  }
  .proof-pill {
    min-width: 0;
    padding: 0.85rem;
  }
}

@media (min-width: 920px) {
  .header-call { display: inline-flex; }
  .nav-toggle,
  .nav-close,
  .nav-backdrop { display: none; }
  .primary-nav {
    display: flex;
    position: static;
    width: auto;
    padding: 0;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    background: transparent;
    border-left: 0;
  }
  .primary-nav a {
    padding: 0;
    border-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
  }
  .hero {
    min-height: 78svh;
    padding-top: calc(7.2rem + env(safe-area-inset-top, 0px));
  }
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: end;
  }
  .hero-service-panel { display: block; }
  .hero-title { font-size: 5.6rem; }
  .hero-lead { font-size: 1.16rem; }
  .section { padding: 5.6rem 1.25rem; }
  .split,
  .areas-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    align-items: center;
  }
  .services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-band { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
  .gallery-item.wide { grid-row: span 2; aspect-ratio: auto; }
  .floating-cta { display: none; }
  .site-footer { padding-bottom: 2.5rem; }
}

@media (min-width: 1160px) {
  .hero-title { font-size: 6.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  #water-canvas { display: none; }
  .reveal { opacity: 1; transform: none; }
}
