﻿
:root {
  --navy: #0a2540;
  --navy-dark: #061525;
  --accent: #d41b2c;
  --accent-hover: #b01524;
  --text: #1a1a1a;
  --muted: #5c6570;
  --border: rgba(10, 37, 64, 0.12);
  --white: #ffffff;
  --cream: #f4f6f8;
  --max: 1180px;
  --font-head: "Montserrat", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --header-height: 76px;
  --utility-height: 36px;
  --brand-width: 210px;
  --top-black: #000000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  overflow-x: hidden;
  max-width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  font-weight: 700;
}

.skip-link:focus {
  left: 12px;
}

/* Utility bar */
.utility-bar {
  background: var(--top-black);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
  padding: 8px 0;
  padding-top: max(8px, env(safe-area-inset-top));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.utility-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
}

.utility-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

/* Facebook icon — same size as Quote / Text / Call buttons */
.header-facebook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex-shrink: 0;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.header-facebook svg {
  width: 18px;
  height: 18px;
  display: block;
}

.header-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

@media (max-width: 900px) {
  .utility-bar {
    display: block;
    min-height: 28px;
    padding: 6px 0;
    padding-top: max(6px, env(safe-area-inset-top));
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-phone {
    font-size: 0.75rem;
  }

  .header-facebook {
    min-height: 34px;
    padding: 6px 10px;
    border-width: 1.5px;
  }

  .header-facebook svg {
    width: 16px;
    height: 16px;
  }
}

.utility-phone {
  color: inherit;
  text-decoration: none;
}

.utility-phone:hover {
  color: var(--white);
}

/* Header — solid black bar, white text */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--top-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

body.has-fixed-header .hero-content {
  padding-top: calc(var(--utility-height) + var(--header-height) + 32px);
}

body.page-quote main {
  padding-top: calc(var(--utility-height) + var(--header-height) + 16px);
}

body.has-fixed-header main > section:not(.hero) {
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-height);
  padding: 10px 0;
}

.brand {
  text-decoration: none;
  flex: 0 0 var(--brand-width);
  width: var(--brand-width);
  height: var(--header-height);
  display: flex;
  align-items: stretch;
  border-radius: 8px;
  transition: opacity 0.2s;
}

.brand:hover {
  opacity: 0.9;
}

.brand:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.brand-badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  min-height: var(--header-height);
  padding: 6px 10px 6px 0;
  background: var(--top-black);
  border: none;
  box-shadow: none;
}

.brand-badge img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: none;
}

.footer-logo {
  display: block;
  width: 100%;
  max-width: 260px;
  margin-bottom: 14px;
  text-decoration: none;
  line-height: 0;
}

.footer-logo img {
  width: 100%;
  height: auto;
  max-height: 88px;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
}

.main-nav a:hover {
  color: #7dd3fc;
}

.site-header .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.site-header .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.site-header .nav-toggle span {
  background: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 24px;
  background: var(--navy);
  border-radius: 2px;
}

.mobile-drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 20px 20px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer a {
  font-family: var(--font-head);
  font-weight: 700;
  text-decoration: none;
  padding: 14px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.mobile-drawer[hidden] {
  display: none !important;
}

.show-mobile-only {
  display: none;
}

@media (max-width: 900px) {
  .show-mobile-only {
    display: inline-flex;
  }

  .section-reviews {
    display: none !important;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-drawer:not([hidden]) {
    display: flex;
  }

  :root {
    --header-height: 52px;
    --brand-width: 128px;
    --utility-height: 36px;
  }

  .utility-tagline {
    display: none;
  }

  .utility-phone {
    white-space: nowrap;
  }

  .header-inner {
    padding: 4px 0;
    gap: 8px;
    min-height: var(--header-height);
  }

  .header-actions {
    gap: 6px;
    flex-shrink: 0;
  }

  .btn-header-compact {
    padding: 6px 10px;
    min-height: 34px;
    font-size: 0.625rem;
    letter-spacing: 0.05em;
    border-width: 1.5px;
  }

  .site-header .btn-outline.btn-header-compact {
    padding: 6px 9px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    gap: 5px;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
  }

  .brand-badge {
    padding: 2px 4px 2px 0;
    min-height: 44px;
  }

  body.has-fixed-header .hero-content {
    padding-top: calc(var(--utility-height) + var(--header-height) + 20px);
  }

  .hero {
    min-height: min(88vh, 680px);
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .hero-lead {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .hero-ctas .btn-lg {
    padding: 12px 18px;
    font-size: 0.75rem;
  }

  .container {
    width: min(var(--max), calc(100% - 24px));
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 46px;
    --brand-width: 96px;
    --utility-height: 38px;
  }

  .utility-bar {
    min-height: 38px;
    padding: 8px 0;
  }

  .btn-header-compact {
    padding: 5px 7px;
    min-height: 32px;
    font-size: 0.5625rem;
    letter-spacing: 0.04em;
  }

  .header-actions {
    gap: 4px;
  }

  .header-facebook {
    min-height: 32px;
    padding: 5px 7px;
  }

  .btn-header-compact.btn-accent {
    padding: 5px 10px;
  }

  body.has-fixed-header .hero-content {
    padding-top: calc(var(--header-height) + 12px);
  }

  body.page-quote main {
    padding-top: calc(var(--header-height) + 8px);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 12px 20px;
  min-height: 44px;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 0.875rem;
}

/* Hero - real paver/pool photography + water-style motion */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0c4a6e;
}

.hero-photo {
  position: absolute;
  inset: -8%;
  z-index: 0;
  background-image: url("/assets/photos/hero-powerwash.png"), url("assets/photos/hero-powerwash.png");
  background-position: center center, center center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  transform: translateZ(0);
  animation: hero-ken 32s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes hero-ken {
  0% {
    transform: scale(1.02) translate(0%, 0%);
  }
  100% {
    transform: scale(1.14) translate(-2.5%, 1.2%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo {
    animation: none;
    inset: 0;
    transform: none;
  }

  .hero-surface {
    animation: none;
  }

  .hero-water-left {
    animation: none;
  }

  .hero-spray::before,
  .hero-spray::after {
    animation: none;
  }

  .hero-bubbles span {
    animation: none;
    opacity: 0;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 60% at 72% 85%, rgba(56, 189, 248, 0.2), transparent 58%),
    radial-gradient(ellipse 70% 50% at 15% 25%, rgba(14, 165, 233, 0.12), transparent 45%),
    linear-gradient(
      105deg,
      rgba(6, 21, 37, 0.82) 0%,
      rgba(6, 21, 37, 0.58) 38%,
      rgba(8, 47, 73, 0.35) 65%,
      rgba(3, 105, 161, 0.15) 100%
    );
}

.hero-surface {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 55% at 50% 100%, rgba(255, 255, 255, 0.14), transparent 52%),
    repeating-linear-gradient(
      -8deg,
      transparent 0 42px,
      rgba(255, 255, 255, 0.028) 42px,
      transparent 44px
    );
  mix-blend-mode: soft-light;
  opacity: 0.9;
  animation: hero-shimmer 20s ease-in-out infinite alternate, caustic-drift 16s ease-in-out infinite alternate;
}

@keyframes caustic-drift {
  from {
    transform: translateX(-1.5%) skewX(-0.5deg);
  }
  to {
    transform: translateX(1.5%) skewX(0.5deg);
  }
}

@keyframes hero-shimmer {
  from {
    opacity: 0.72;
  }
  to {
    opacity: 0.98;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(6, 21, 37, 0.15) 0%,
      transparent 35%,
      transparent 65%,
      rgba(6, 21, 37, 0.35) 100%
    ),
    linear-gradient(
      105deg,
      rgba(6, 21, 37, 0.5) 0%,
      rgba(6, 21, 37, 0.12) 45%,
      transparent 72%
    );
}

.hero-water-left {
  position: absolute;
  left: -1%;
  bottom: -2%;
  width: min(45vw, 520px);
  height: min(32vh, 300px);
  z-index: 4;
  pointer-events: none;
  border-radius: 55% 45% 50% 40%;
  background:
    radial-gradient(circle at 30% 64%, rgba(191, 232, 255, 0.8), rgba(59, 130, 246, 0.22) 38%, rgba(2, 132, 199, 0.08) 62%, transparent 74%),
    radial-gradient(circle at 42% 56%, rgba(255, 255, 255, 0.6), transparent 36%);
  filter: blur(1.1px);
  opacity: 0.82;
  transform-origin: left bottom;
  animation: left-water-drift 9s ease-in-out infinite alternate;
}

@keyframes left-water-drift {
  0% {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 0.86;
  }
  100% {
    transform: translateX(-14%) translateY(3%) scale(0.94);
    opacity: 0.35;
  }
}

.hero-spray {
  position: absolute;
  right: 17%;
  top: 56%;
  width: min(26vw, 410px);
  height: 3px;
  z-index: 4;
  pointer-events: none;
  transform: rotate(-16deg);
  transform-origin: right center;
}

.hero-spray::before {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(216, 240, 255, 0.9) 30%, rgba(255, 255, 255, 1) 65%, rgba(255, 255, 255, 0));
  filter: blur(0.3px);
  animation: spray-shoot 0.65s linear infinite;
}

.hero-spray::after {
  content: "";
  position: absolute;
  left: 0;
  top: -26px;
  width: 76px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 52%, rgba(255, 255, 255, 0.95), rgba(186, 230, 253, 0.45) 35%, rgba(125, 211, 252, 0) 72%),
    radial-gradient(circle at 65% 50%, rgba(255, 255, 255, 0.5), transparent 55%);
  filter: blur(0.2px);
  animation: spray-hit 0.9s ease-in-out infinite;
}

@keyframes spray-shoot {
  0% {
    opacity: 0.55;
    transform: scaleX(0.88);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.02);
  }
  100% {
    opacity: 0.58;
    transform: scaleX(0.9);
  }
}

@keyframes spray-hit {
  0% {
    opacity: 0.45;
    transform: scale(0.78);
  }
  55% {
    opacity: 0.95;
    transform: scale(1.02);
  }
  100% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}

.hero-bubbles span {
  position: absolute;
  bottom: -80px;
  left: var(--b-left);
  width: var(--b-size);
  height: var(--b-size);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.45), rgba(186, 230, 253, 0.15) 42%, transparent 72%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 20px rgba(125, 211, 252, 0.08);
  animation: bubble-rise var(--b-dur) ease-in infinite;
  animation-delay: var(--b-delay);
  opacity: 0.45;
}

@keyframes bubble-rise {
  0% {
    transform: translateY(0) scale(0.88);
    opacity: 0;
  }
  14% {
    opacity: 0.55;
  }
  100% {
    transform: translateY(-110vh) scale(1.02);
    opacity: 0.04;
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 72px 0 88px;
  max-width: 720px;
}

.hero-kicker {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
}

.hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-line {
  display: block;
}

.hero-accent {
  display: block;
  background: linear-gradient(90deg, #fff 0%, #7dd3fc 50%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(125, 211, 252, 0.35);
}

.hero-lead {
  margin: 0 0 28px;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.hero-stars {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.hero-stars:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}

.hero-stars-icons {
  color: #fbbc04;
  font-size: 1.5rem;
  letter-spacing: 4px;
  line-height: 1;
}

/* Trust strip */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item strong {
  font-family: var(--font-head);
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.trust-item span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-compact {
  padding: 36px 0;
}

.section-head--compact {
  margin-bottom: 20px;
}

.section-head--compact h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 0;
}

.section-head--compact + .section-sub,
.section-compact .section-sub {
  display: none;
}

.section-alt {
  background: var(--cream);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin: 0 0 12px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.0625rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

@media (max-width: 720px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 26px;
  box-shadow: 0 8px 30px rgba(10, 37, 64, 0.06);
}

.service-cards--compact {
  gap: 14px;
}

.service-cards--compact .service-card {
  padding: 16px 18px;
}

.service-cards--compact .service-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.service-cards--compact .service-card p {
  font-size: 0.9375rem;
  line-height: 1.45;
}

.service-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.125rem;
  margin: 0 0 10px;
  color: var(--navy);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* Split */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-copy h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  margin: 0 0 16px;
  color: var(--navy);
}

.split-copy p {
  margin: 0 0 20px;
  color: var(--muted);
}

.split-copy .btn {
  margin-top: 8px;
}

.split-media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.15);
}

.split-media img {
  width: 100%;
  height: auto;
}

.check-list {
  margin: 0 0 24px;
  padding-left: 22px;
  color: var(--text);
}

.check-list li {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .split-block {
    grid-template-columns: 1fr;
  }
}

/* Quote */
.quote-band {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 72px 0;
}

.quote-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(300px, 1.1fr);
  gap: 40px 48px;
  align-items: start;
}

.quote-intro h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  margin: 0 0 12px;
}

.quote-intro p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
}

.quote-phone {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
}

.quote-phone:hover {
  color: #7dd3fc;
}

.quote-form {
  position: relative;
  background: var(--white);
  color: var(--text);
  padding: 32px 28px 28px;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field span {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fafbfc;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 0;
  background: var(--white);
}

.form-foot {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .quote-inner {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }
}

/* Badges */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.badge {
  padding: 22px 20px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.badge strong {
  font-family: var(--font-head);
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.badge span {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .badge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .badge-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA band */
.section-dark {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 24px;
  text-align: center;
}

@media (min-width: 720px) {
  .cta-inner {
    justify-content: space-between;
    text-align: left;
  }
}

.cta-inner h2 {
  font-family: var(--font-head);
  font-weight: 900;
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
}

.cta-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

/* Gallery */
.section-gallery {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.section-gallery.section-compact {
  padding: 32px 0 40px;
}

.section-gallery .section-head {
  margin-bottom: 28px;
}

.section-gallery.section-compact .section-head {
  margin-bottom: 16px;
}

.gallery-strip-outer {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 12px 0 24px;
  mask-image: linear-gradient(90deg, transparent, #000 20px, #000 calc(100% - 20px), transparent);
}

.gallery-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  width: max-content;
  min-width: min(100%, max-content);
  padding-inline: max(20px, calc((100vw - min(var(--max), 100vw - 40px)) / 2));
  margin-inline: auto;
  align-items: stretch;
}

.section-gallery.section-compact .gallery-tile {
  flex: 0 0 min(72vw, 220px);
  width: min(72vw, 220px);
  height: min(48vw, 170px);
}

.gallery-tile {
  flex: 0 0 min(85vw, 300px);
  width: min(85vw, 300px);
  height: min(58vw, 240px);
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 16px 40px rgba(10, 37, 64, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  background: #0c4a6e;
  scroll-snap-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-tile:hover,
.gallery-tile:focus-within {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 22px 50px rgba(10, 37, 64, 0.28);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 720px) {
  .gallery-tile {
    flex: 0 0 280px;
    width: 280px;
    height: 220px;
  }

  .section-gallery.section-compact .gallery-tile {
    flex: 0 0 200px;
    width: 200px;
    height: 160px;
  }
}

@media (min-width: 1200px) {
  .gallery-strip-outer {
    mask-image: none;
  }

  .gallery-tile {
    flex: 0 0 320px;
    width: 320px;
    height: 260px;
  }

  .section-gallery.section-compact .gallery-tile {
    flex: 0 0 220px;
    width: 220px;
    height: 176px;
  }
}

/* Google reviews */
.section-reviews {
  background: var(--white);
  padding-top: 56px;
  padding-bottom: 56px;
}

.section-reviews.section-compact {
  padding: 28px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.reviews-compact-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}

.reviews-compact-bar h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin: 0;
  color: var(--navy);
}

.reviews-compact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.reviews-compact-link:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(10, 37, 64, 0.08);
  color: var(--navy);
}

.reviews-compact-link .reviews-stars {
  font-size: 1.1rem;
}

.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.reviews-head-text {
  margin: 0;
  text-align: left;
}

.reviews-head-text .section-sub {
  text-align: left;
}

.reviews-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--navy);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.reviews-google-badge:hover {
  border-color: var(--navy);
  box-shadow: 0 6px 20px rgba(10, 37, 64, 0.1);
  color: var(--navy);
}

.reviews-stars {
  color: #fbbc04;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  margin: 0;
  padding: 22px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(10, 37, 64, 0.06);
}

.review-card .review-stars {
  color: #fbbc04;
  margin-bottom: 10px;
  font-size: 1rem;
}

.review-card blockquote {
  margin: 0 0 14px;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.55;
}

.review-card cite {
  font-style: normal;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--muted);
}

.review-card cite span {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.reviews-cta {
  margin-top: 28px;
  text-align: center;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  margin: 0;
  max-width: 280px;
  font-size: 0.9375rem;
}

.site-footer h3 {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

button.btn {
  font-family: var(--font-head);
}

.surface-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.surface-tags li {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
}

.page-quote .quote-page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 40px 0 36px;
  text-align: center;
}

.page-quote .quote-page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-quote .quote-page-hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 12px;
}

.page-quote .quote-page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  text-align: center;
}

.page-quote .quote-band {
  padding: 48px 0 88px;
}

.page-quote .quote-intro {
  padding: 12px 0;
}

.page-quote .quote-intro h2 {
  color: var(--white);
}

@media (max-width: 900px) {
  .page-quote .quote-inner {
    gap: 28px;
  }

  .page-quote .quote-intro {
    text-align: center;
  }

  .page-quote .quote-phone {
    display: inline-block;
  }
}

.quote-cta-inline {
  text-align: center;
  padding: 48px 0;
  background: var(--cream);
}

.hp-trap {
  display: none !important;
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  pointer-events: none;
}

.hp-trap label,
.hp-trap input {
  display: none !important;
}

.form-alert {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
}

.form-alert--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-alert--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.bot-confirm-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  grid-column: 1 / -1;
  margin: 6px 0 4px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #fff9f0 0%, #fff5f5 100%);
  border: 2px solid rgba(212, 27, 44, 0.45);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(212, 27, 44, 0.08);
}

.bot-confirm-box:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(212, 27, 44, 0.12);
}

.bot-confirm-box:has(input:checked) {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border-color: #059669;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.12);
}

.bot-confirm-box input {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.bot-confirm-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.bot-confirm-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--navy);
  line-height: 1.3;
}

.bot-confirm-sub {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}

.form-submit-row {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.form-submit-row .btn {
  width: 100%;
  padding: 18px 24px;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 24px rgba(212, 27, 44, 0.35);
}

.form-submit-row .btn:hover {
  box-shadow: 0 10px 28px rgba(212, 27, 44, 0.45);
}

.quote-form .form-foot {
  text-align: center;
  color: var(--muted);
}

.reviews-google-badge a {
  color: var(--navy);
  text-decoration: none;
}

.reviews-google-badge a:hover {
  color: var(--accent);
}

.review-card a.review-google-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-decoration: none;
}

.review-card a.review-google-link:hover {
  color: var(--accent);
}

