/* ==========================================================================
   SPARKIO CLEANING SERVICES — Stylesheet
   Palette: navy / leaf green / coral spark / cool paper white
   Display: Fraunces · Body: Plus Jakarta Sans · Utility: Space Mono
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,300..700,0..100&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap");

:root {
  --navy-deep: #081b33;
  --navy: #0e2a4a;
  --navy-soft: #1b3f68;
  --blue: #2f6fb0;
  --green: #4c9a2a;
  --green-deep: #386f1e;
  --coral: #f2a99c;
  --coral-deep: #e8836f;
  --paper: #f6f9fb;
  --paper-dim: #eaf0f4;
  --white: #ffffff;
  --ink: #12222f;
  --ink-soft: #4a5b68;
  --line: rgba(14, 42, 74, 0.12);

  --font-display: "Fraunces", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --font-mono: "Space Mono", monospace;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --shadow-soft: 0 20px 50px -25px rgba(8, 27, 51, 0.35);
  --shadow-tight: 0 8px 20px -12px rgba(8, 27, 51, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

@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;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1em;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--coral-deep);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-tight);
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 249, 251, 0.85);
  backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 52px;
  width: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-text span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--green-deep);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav ul {
  display: flex;
  gap: 30px;
}
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--coral-deep);
  transition: right 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}
.main-nav a.active {
  color: var(--navy);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.phone-chip {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(76, 154, 42, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--navy);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.nav-toggle span {
  top: 19px;
}
.nav-toggle span::before {
  top: -8px;
}
.nav-toggle span::after {
  top: 8px;
}
.nav-toggle.open span {
  background: transparent;
}
.nav-toggle.open span::before {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.open span::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 24px;
  margin-top: 120px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(76, 154, 42, 0.14), transparent 45%),
    radial-gradient(
      circle at 92% 80%,
      rgba(242, 169, 156, 0.1),
      transparent 40%
    );
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand img {
  height: 46px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-brand strong {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  display: block;
}
.footer-brand span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--coral);
  text-transform: uppercase;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14.5px;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-col.contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  position: relative;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
.footer-socials a:hover {
  background: var(--green);
  border-color: var(--green);
}

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: "✦";
  position: absolute;
  font-family: var(--font-display);
  font-size: 220px;
  color: rgba(255, 255, 255, 0.05);
  right: -40px;
  top: -60px;
  pointer-events: none;
}
.page-header .eyebrow {
  color: var(--coral);
}
.page-header .eyebrow::before {
  background: var(--green);
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  max-width: 700px;
}
.page-header p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  font-size: 17px;
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.breadcrumb span {
  color: var(--coral);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* ---------- Section basics ---------- */
section {
  padding: 100px 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
}

/* ---------- Badges row ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 9px 16px 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-tight);
}
.trust-pill .ic {
  color: var(--green);
  font-size: 15px;
}

/* ==========================================================================
   HOME — HERO with squeegee wipe-reveal
   ========================================================================== */
.hero {
  position: relative;
  padding: 70px 0 100px;
  background: var(--paper);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 620px;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(47, 111, 176, 0.1),
      transparent 55%
    ),
    radial-gradient(circle at 85% 0%, rgba(76, 154, 42, 0.1), transparent 45%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--green-deep);
  position: relative;
}
.hero-copy p.lede {
  font-size: 18px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Wipe-reveal card — signature interaction */
.wipe-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 4.1;
  background: var(--navy);
  user-select: none;
  animation: wipe-card-in 1s cubic-bezier(0.19, 1, 0.22, 1) both;
  animation-delay: 0.15s;
}
@keyframes wipe-card-in {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(18px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.wipe-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.wipe-clean {
  background-image: url("../assets/hero-supplies.jpg");
  background-size: cover;
  background-position: center;
  transition: clip-path 0.12s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: clip-path;
}
.wipe-clean::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 27, 51, 0) 40%,
    rgba(8, 27, 51, 0.6) 100%
  );
}
.wipe-clean .wipe-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.wipe-clean .wipe-caption.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.wipe-clean .wipe-caption strong {
  font-family: var(--font-display);
  font-size: 17px;
  display: block;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 4px;
}

/* Sparkle glints — revealed by the clip-path itself, twinkling underneath */
.spark {
  position: absolute;
  font-size: 15px;
  color: var(--white);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.9),
    0 0 2px rgba(255, 255, 255, 0.6);
  z-index: 3;
  animation: twinkle 2.6s ease-in-out infinite;
  pointer-events: none;
}
.spark-a {
  top: 16%;
  left: 12%;
  animation-delay: 0s;
  font-size: 13px;
}
.spark-b {
  top: 34%;
  left: 46%;
  animation-delay: 0.5s;
  font-size: 18px;
  color: var(--coral);
  text-shadow: 0 0 10px rgba(242, 169, 156, 0.9);
}
.spark-c {
  top: 60%;
  left: 24%;
  animation-delay: 1.1s;
  font-size: 12px;
}
.spark-d {
  top: 22%;
  left: 74%;
  animation-delay: 1.7s;
  font-size: 16px;
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.7) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.15) rotate(12deg);
  }
}

.wipe-dirty {
  background: linear-gradient(135deg, #dfe4e8, #c7cfd5 55%, #d3dade);
  overflow: hidden;
}
.wipe-dirty::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.4),
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(255, 255, 255, 0.28),
      transparent 45%
    );
  mix-blend-mode: overlay;
}
.fog-blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0) 70%
  );
  filter: blur(2px);
  opacity: 0.8;
}
.fog-1 {
  width: 180px;
  height: 180px;
  top: -30px;
  left: -20px;
  animation: drift-a 14s ease-in-out infinite;
}
.fog-2 {
  width: 130px;
  height: 130px;
  bottom: 10%;
  right: -10px;
  animation: drift-b 11s ease-in-out infinite;
}
.fog-3 {
  width: 90px;
  height: 90px;
  top: 40%;
  left: 55%;
  animation: drift-a 9s ease-in-out infinite reverse;
}
@keyframes drift-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(18px, -14px) scale(1.08);
  }
}
@keyframes drift-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-16px, 12px) scale(0.95);
  }
}
.wipe-dirty .grime-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: #85909b;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 20px;
  z-index: 2;
}
.grime-text span:first-child {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0;
  color: #75818d;
  text-transform: none;
}

/* Glowing squeegee edge that rides the boundary between dirty & clean */
.wipe-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5px;
  left: 28%;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.95) 15%,
    rgba(255, 255, 255, 0.95) 85%,
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow:
    0 0 18px 3px rgba(255, 255, 255, 0.85),
    0 0 40px 8px rgba(76, 154, 42, 0.25);
  transform: translateX(-50%);
  transition: left 0.12s cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: edge-shimmer 1.6s ease-in-out infinite;
}
@keyframes edge-shimmer {
  0%,
  100% {
    opacity: 0.75;
  }
  50% {
    opacity: 1;
  }
}

.wipe-clean {
  clip-path: inset(0 0 0 0);
}
.wipe-range {
  position: absolute;
  inset: auto 0 0 0;
  bottom: 16px;
  left: 16px;
  right: 16px;
  width: calc(100% - 32px);
  appearance: none;
  height: 44px;
  background: transparent;
  z-index: 6;
  margin: 0;
}
.wipe-range::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}
.wipe-range::-moz-range-track {
  height: 4px;
  background: transparent;
}
.wipe-range::-webkit-slider-thumb {
  appearance: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  cursor: grab;
  margin-top: -25px;
  border: 3px solid var(--navy);
  background-image: linear-gradient(var(--white), var(--white));
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.wipe-range::-moz-range-thumb {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--navy);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  cursor: grab;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.wipe-range.is-grabbing::-webkit-slider-thumb {
  transform: scale(1.12);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.45),
    0 0 0 8px rgba(255, 255, 255, 0.18);
  cursor: grabbing;
}
.wipe-range.is-grabbing::-moz-range-thumb {
  transform: scale(1.12);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.45),
    0 0 0 8px rgba(255, 255, 255, 0.18);
  cursor: grabbing;
}
.wipe-handle-icon {
  position: absolute;
  width: 54px;
  height: 54px;
  left: 16px;
  bottom: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  pointer-events: none;
  z-index: 7;
  transform: translateX(0) rotate(0deg);
  transition:
    left 0.12s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}
.wipe-handle-icon.is-grabbing {
  transform: scale(1.1);
}

.wipe-percent {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 6;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-tight);
  min-width: 78px;
  text-align: center;
}

.wipe-hint {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 6;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.4s ease;
  animation: hint-nudge 2.2s ease-in-out infinite;
}
@keyframes hint-nudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

/* ---------- Service cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.service-card .sc-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--green-deep);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.service-card:hover .sc-icon {
  background: var(--navy);
  color: var(--white);
  transform: rotate(-6deg) scale(1.05);
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14.5px;
  margin-bottom: 0;
}
.service-card::after {
  content: "✦";
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--coral);
  font-size: 14px;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transform: scale(0.4) rotate(-30deg);
}
.service-card:hover::after {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.services-more {
  text-align: center;
  margin-top: 46px;
}

/* ---------- Why us ---------- */
.why-section {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.why-section .wrap {
  padding: 90px 32px;
}
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(76, 154, 42, 0.18),
      transparent 40%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(242, 169, 156, 0.12),
      transparent 40%
    );
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  margin-top: 40px;
}
.why-item .why-mark {
  font-family: var(--font-mono);
  color: var(--coral);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}
.why-item h3 {
  color: var(--white);
  font-size: 20px;
}
.why-item p {
  color: rgba(255, 255, 255, 0.68);
}
.why-section .section-head h2 {
  color: var(--white);
}
.why-section .eyebrow {
  color: var(--coral);
}
.why-section .eyebrow::before {
  background: var(--green);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 60px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "✦ ✦ ✦";
  position: absolute;
  right: 40px;
  top: 20px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 18px;
  letter-spacing: 10px;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--navy);
}
.cta-banner .btn-primary:hover {
  background: var(--coral-deep);
  color: var(--white);
}

/* ---------- Testimonials ---------- */
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.t-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--line);
  position: relative;
}
.t-card .stars {
  color: var(--coral-deep);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 14px;
}
.t-card p {
  font-size: 15px;
  color: var(--ink);
  font-style: italic;
}
.t-card .who {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--green-deep);
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- About page ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.stat-row .stat strong {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--navy);
  display: block;
}
.stat-row .stat span {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-align: left;
}
.value-card .v-num {
  font-family: var(--font-mono);
  color: var(--coral-deep);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.value-card h3 {
  font-size: 17px;
  margin: 10px 0 8px;
}
.value-card p {
  font-size: 14px;
  margin: 0;
}

.timeline {
  border-left: 2px solid var(--line);
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-top: 10px;
}
.timeline .t-item {
  position: relative;
}
.timeline .t-item::before {
  content: "";
  position: absolute;
  left: -36.5px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow:
    0 0 0 5px var(--paper),
    0 0 0 6px var(--line);
}
.timeline .t-item h4 {
  font-size: 17px;
  margin-bottom: 4px;
}
.timeline .t-item .t-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--green-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Services page ---------- */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
.service-row:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}
.service-row .sr-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--green-deep);
}
.service-row h3 {
  font-size: 17.5px;
  margin-bottom: 4px;
}
.service-row p {
  font-size: 14px;
  margin: 0;
}
.service-row .sr-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--white);
  background: var(--navy);
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  padding: 28px 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
}
.process-step .p-index {
  font-family: var(--font-mono);
  font-size: 34px;
  color: var(--paper-dim);
  font-weight: 700;
  position: absolute;
  top: 10px;
  right: 16px;
}
.process-step h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
  position: relative;
}
.process-step p {
  font-size: 13.5px;
  position: relative;
  margin: 0;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: flex-start;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card .cc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--paper-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--green-deep);
}
.contact-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  margin-bottom: 6px;
  font-weight: 700;
}
.contact-card p,
.contact-card a {
  font-size: 15.5px;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}
.contact-card .sub {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 400;
  margin-top: 2px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 6px;
  font-size: 14px;
}
.hours-table td {
  padding: 6px 0;
  color: var(--ink-soft);
}
.hours-table td:last-child {
  text-align: right;
  font-family: var(--font-mono);
  color: var(--navy);
  font-weight: 700;
}
.hours-table tr.closed td:last-child {
  color: var(--coral-deep);
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(14, 42, 74, 0.14);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
}
.form-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 14px;
  text-align: center;
}
.form-status {
  font-size: 14px;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: none;
}
.form-status.show {
  display: block;
}
.form-status.ok {
  background: rgba(76, 154, 42, 0.12);
  color: var(--green-deep);
}
.form-status.err {
  background: rgba(232, 131, 111, 0.14);
  color: var(--coral-deep);
}

.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--line);
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .wipe-card {
    order: -1;
    aspect-ratio: 16/10;
  }
  .about-split {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-full-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-track {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .wrap {
    padding: 0 20px;
  }
  section {
    padding: 70px 0;
  }
  .main-nav {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 9999;
    height: 250px;
    overflow-y: auto;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }
  .main-nav ul li a {
    display: block;
    padding: 16px 4px;
    font-size: 18px;
    border-bottom: 1px solid var(--line);
  }
  .main-nav .header-cta {
    margin-top: 24px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-toggle {
    display: block;
  }
  .header-cta > .phone-chip {
    display: none;
  }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .process-strip {
    grid-template-columns: 1fr;
  }
}
