/* Coastal Pressure Pros — Custom Site */

:root {
  --ink: #0a1a26;
  --ink-soft: #1f3a4f;
  --deep: #0e4f6e;
  --aqua: #16a6c9;
  --aqua-bright: #3ec7e3;
  --foam: #e6f6fb;
  --sand: #f6f1e6;
  --paper: #ffffff;
  --line: rgba(14, 79, 110, 0.14);
  --shadow-lg: 0 30px 80px -30px rgba(14, 79, 110, 0.35);
  --shadow-md: 0 14px 40px -16px rgba(14, 79, 110, 0.28);
  --shadow-sm: 0 4px 14px -6px rgba(14, 79, 110, 0.25);
  --radius: 18px;
  --radius-sm: 10px;
  --max: 1240px;
  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--deep); text-decoration: none; }
a:hover { color: var(--aqua); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { margin: 0 0 1em; }
.muted { color: var(--ink-soft); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua);
  font-weight: 600;
  margin-bottom: 14px;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section.tight { padding: clamp(40px, 6vw, 72px) 0; }
.section--sand { background: var(--sand); }
.section--ink { background: var(--ink); color: var(--foam); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 24px -10px rgba(14, 79, 110, 0.55), 0 0 0 1px rgba(14, 79, 110, 0.08);
  overflow: hidden;
  flex-shrink: 0;
}
.brand__mark svg { width: 100%; height: 100%; display: block; }
.brand__wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.brand__wordmark strong {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand__wordmark span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua);
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
}
.nav a.active { color: var(--deep); }
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--aqua);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav .btn { padding: 10px 18px; }
.nav .btn::after { display: none; }

/* Hamburger toggle — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle__bars {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6px; }
.nav-toggle__bars span:nth-child(3) { top: 12px; }
.nav-toggle.is-open .nav-toggle__bars span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bars span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

/* Mobile-drawer nav */
@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 18px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px -10px rgba(14, 79, 110, 0.18);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.2s ease;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a:not(.btn) {
    display: block;
    padding: 14px 14px;
    font-size: 1.02rem;
    border-radius: 10px;
  }
  .nav a:not(.btn):hover { background: var(--foam); }
  .nav a:not(.btn)::after { display: none; }
  .nav a.active { background: var(--foam); color: var(--deep); }
  .nav .btn {
    margin-top: 10px;
    justify-content: center;
    padding: 14px;
  }
  .site-header__inner { position: relative; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--deep);
  color: white;
  box-shadow: 0 10px 24px -10px rgba(14, 79, 110, 0.55);
}
.btn--primary:hover {
  background: var(--ink);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 18px 32px -12px rgba(14, 79, 110, 0.55);
}
.btn--accent {
  background: linear-gradient(135deg, var(--aqua), var(--aqua-bright));
  color: white;
  box-shadow: 0 10px 24px -10px rgba(22, 166, 201, 0.55);
}
.btn--accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -12px rgba(22, 166, 201, 0.7);
  color: white;
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}
.btn--outline {
  background: transparent;
  color: var(--deep);
  border: 1.5px solid var(--deep);
}
.btn--outline:hover {
  background: var(--deep);
  color: white;
}
.btn svg { width: 18px; height: 18px; }

/* Hero — interactive before/after with pressure-wash reveal */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
  min-height: clamp(620px, 92vh, 880px);
  display: flex;
  align-items: stretch;
}
.hero__stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.hero__img--after {
  z-index: 1;
  filter: saturate(1.08) contrast(1.02);
}
.hero__img--before {
  z-index: 2;
  /* Starts fully visible. As the wand sweeps L→R, JS clips the BEFORE from
     the LEFT, exposing the AFTER underneath from the left side first —
     mirroring the physics of a pressure wash. */
  clip-path: inset(0 0 0 0%);
  will-change: clip-path;
}
/* Dark vignette anchored under the hero copy so text reads cleanly without
   tinting the rest of the AFTER image. */
.hero__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 1100px 720px at 22% 52%,
    rgba(10, 26, 38, 0.78) 0%,
    rgba(10, 26, 38, 0.52) 28%,
    rgba(10, 26, 38, 0.22) 52%,
    rgba(10, 26, 38, 0) 72%);
  pointer-events: none;
  z-index: 3;
}
@media (max-width: 720px) {
  /* Mobile: the photo is the hero — text sits on a frosted-glass panel
     that's mostly TRANSPARENT, with strong blur doing the readability work. */
  .hero { min-height: clamp(560px, 80vh, 760px); }
  .hero__stage::after {
    background: linear-gradient(180deg,
      rgba(10, 26, 38, 0.18) 0%,
      rgba(10, 26, 38, 0.05) 40%,
      rgba(10, 26, 38, 0.22) 100%);
  }
  .hero__copy {
    background: rgba(10, 26, 38, 0.26);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    padding: 20px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 32px -14px rgba(0, 0, 0, 0.35);
  }
  .hero h1 { font-size: 2.1rem; margin-bottom: 12px; }
  .hero__sub { margin-bottom: 20px; font-size: 0.96rem; max-width: none; }
  .hero__copy .eyebrow { margin-bottom: 14px; font-size: 0.7rem; padding: 6px 12px; }
  .hero__ctas { gap: 10px; margin-bottom: 22px; }
  .hero__ctas .btn { padding: 12px 18px; font-size: 0.92rem; }
  .hero__meta { gap: 12px 20px; font-size: 0.84rem; }
  /* Hide the bottom hint + scroll cue on mobile — the drag affordance is
     obvious from the divider and they crowd the small viewport. */
  .hero__hint, .hero__scroll { display: none; }
}

.hero__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0%;
  width: 4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(190,235,250,0.95));
  transform: translateX(-50%);
  z-index: 6;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 0 24px rgba(62, 199, 227, 0.45);
  will-change: left;
}
.hero__divider::before,
.hero__divider::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 12px rgba(62, 199, 227, 0.8);
}
.hero__divider::before { top: 0; }
.hero__divider::after { bottom: 0; }

.hero__knob {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  z-index: 7;
  pointer-events: none;
  color: var(--deep);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(255, 255, 255, 0.2), 0 0 24px rgba(62, 199, 227, 0.55);
}
.hero__knob svg { width: 26px; height: 26px; }

.hero__chip {
  position: absolute;
  top: 24px;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 5;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-8px);
  animation: chipIn 0.5s 2.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero__chip--after {
  left: 24px;
  background: rgba(22, 166, 201, 0.92);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero__chip--before {
  right: 24px;
  background: rgba(10, 26, 38, 0.72);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
@keyframes chipIn {
  to { opacity: 1; transform: translateY(0); }
}

/* The hero content overlays the slider on the left side */
.hero__copy {
  position: relative;
  z-index: 9;
  max-width: 640px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroCopyIn 0.9s 2.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes heroCopyIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Drag hint badge that nudges into view post-animation */
.hero__hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: hintIn 0.6s 3.1s cubic-bezier(0.4, 0, 0.2, 1) forwards, hintBob 2.2s 3.7s ease-in-out infinite;
}
.hero__hint svg { width: 18px; height: 18px; color: var(--deep); }
@keyframes hintIn {
  to { opacity: 1; }
}
@keyframes hintBob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -4px); }
}
.hero__wand svg { width: 100%; height: 100%; }
.hero__spray {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 10;
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
  pointer-events: none; /* let drag events fall through to the slider stage */
}
.hero__inner a,
.hero__inner button { pointer-events: auto; }
.hero__hint { pointer-events: none; }
.hero__copy .eyebrow {
  color: #ffffff;
  background: rgba(10, 26, 38, 0.78);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  border: 1px solid rgba(62, 199, 227, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.16em;
}
.hero__copy .eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua-bright);
  margin-right: 10px;
  vertical-align: 1px;
  box-shadow: 0 0 0 3px rgba(62, 199, 227, 0.25);
}
.hero h1 {
  color: white;
  margin-bottom: 20px;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 2px 8px rgba(0, 0, 0, 0.75),
    0 6px 28px rgba(0, 0, 0, 0.55);
}
.hero h1 em {
  font-style: normal;
  color: #b8edf8;
  /* drop-shadow works on the painted glyphs themselves so it survives
     against light parts of the photo (sky, stucco). */
  filter:
    drop-shadow(0 1px 2px rgba(10, 26, 38, 0.95))
    drop-shadow(0 2px 10px rgba(10, 26, 38, 0.6));
}
.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 32px;
  max-width: 560px;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.92),
    0 2px 14px rgba(0, 0, 0, 0.55);
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.85), 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__meta svg { width: 18px; height: 18px; color: var(--aqua-bright); }

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  animation: scrollFloat 2s ease-in-out infinite;
}
.hero__scroll svg { width: 14px; height: 14px; margin: 8px auto 0; display: block; }
@keyframes scrollFloat {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* Trust strip */
.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--foam);
  display: grid;
  place-items: center;
  color: var(--deep);
  flex-shrink: 0;
}
.trust-item__icon svg { width: 22px; height: 22px; }
.trust-item__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.1;
  color: var(--ink);
}
.trust-item__label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.2;
}

/* Section heading */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* Services grid (icon-only cards) */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 79, 110, 0.04), rgba(22, 166, 201, 0.06));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(22, 166, 201, 0.35);
}
.service:hover::before { opacity: 1; }
.service__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--deep), var(--aqua));
  color: white;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 22px -10px rgba(22, 166, 201, 0.55);
}
.service__icon svg { width: 28px; height: 28px; }
.service h3 { margin-bottom: 10px; position: relative; z-index: 1; }
.service p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.service__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--deep);
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.service__link:hover { color: var(--aqua); }
.service__link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.service__link:hover svg { transform: translateX(4px); }

/* Iconic service-detail block (used on services.html when there's no photo) */
.service-detail__img--iconic {
  background: linear-gradient(135deg, var(--deep) 0%, var(--aqua) 100%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: white;
}
.service-detail__img--iconic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.18), transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.08), transparent 45%);
  pointer-events: none;
}
.service-detail__img--iconic svg {
  width: 120px;
  height: 120px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.25));
  stroke-width: 1.4;
}
.service-detail__img--iconic .service-detail__tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

/* Featured-work grid on home: 3 photos + 1 CTA tile */
.featured-work {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.featured-work__tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink);
  cursor: pointer;
}
.featured-work__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-work__tile:hover img { transform: scale(1.04); }
.featured-work__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 26, 38, 0.85) 100%);
}
.featured-work__caption {
  position: absolute;
  bottom: 22px;
  left: 24px;
  right: 24px;
  z-index: 2;
  color: white;
}
.featured-work__caption h3 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 2px;
}
.featured-work__caption p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.featured-work__cta {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--deep) 0%, var(--ink) 100%);
  color: white;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.featured-work__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(62, 199, 227, 0.25), transparent 45%),
    radial-gradient(circle at 80% 100%, rgba(22, 166, 201, 0.2), transparent 45%);
  pointer-events: none;
}
.featured-work__cta > * { position: relative; z-index: 1; }
.featured-work__cta h3 { color: white; margin-bottom: 8px; }
.featured-work__cta p { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; margin-bottom: 22px; }
@media (max-width: 860px) {
  .featured-work { grid-template-columns: 1fr; }
}

/* Before/After slider (Mike's-style two-image stack) */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  box-shadow: var(--shadow-md);
  background: var(--ink);
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider__before { clip-path: inset(0 50% 0 0); will-change: clip-path; }
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(190,235,250,0.95));
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 0 20px rgba(62, 199, 227, 0.4);
}
.ba-slider__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%230e4f6e' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M8 7l-5 5 5 5M16 7l5 5-5 5'/></svg>") center/22px no-repeat;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 0 5px rgba(255, 255, 255, 0.18);
}
.ba-slider__label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: blur(8px);
}
.ba-slider__label--before {
  left: 16px;
  background: rgba(10, 26, 38, 0.72);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.ba-slider__label--after {
  right: 16px;
  background: rgba(22, 166, 201, 0.92);
  color: white;
}

.ba-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ba-feature__caption h2 { margin-bottom: 12px; }
.ba-feature__caption p { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 18px; }
.ba-feature__caption ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.ba-feature__caption ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
}
.ba-feature__caption ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--foam) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2316a6c9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
}
@media (max-width: 860px) {
  .ba-feature { grid-template-columns: 1fr; gap: 28px; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 28, 0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.2s ease;
  cursor: zoom-out;
  backdrop-filter: blur(10px);
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox__img {
  max-width: min(1200px, 96vw);
  max-height: 92vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.3); }
.lightbox__close svg { width: 20px; height: 20px; }
.gallery__item[data-zoom] { cursor: zoom-in; }
.gallery__item[data-zoom]::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 26, 38, 0.55);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><path d='m21 21-4.3-4.3M11 8v6M8 11h6'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.2s ease;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.gallery__item[data-zoom]:hover::after { opacity: 1; }

/* Gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink);
  position: relative;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; aspect-ratio: 4 / 5.7; }

/* Process steps */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step {
  position: relative;
  padding-top: 12px;
}
.step__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--aqua), var(--deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

/* Areas */
.areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.area {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.area:hover { border-color: var(--aqua); transform: translateY(-2px); }
.area svg { width: 18px; height: 18px; color: var(--aqua); flex-shrink: 0; }
.area span { font-weight: 600; font-size: 0.96rem; color: var(--ink); }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
}
.quote__stars {
  color: #f5b942;
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.quote__text {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 18px;
}
.quote__author {
  font-weight: 600;
  font-size: 0.92rem;
}
.quote__loc {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--deep) 0%, var(--ink) 100%);
  color: white;
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(62, 199, 227, 0.25), transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(22, 166, 201, 0.2), transparent 40%);
  pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 2; }
.cta-band h2 { color: white; }
.cta-band p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 32px;
}
.cta-band__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Contact form */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 6px; font-size: 1.5rem; }
.contact-info p { color: var(--ink-soft); margin-bottom: 28px; }
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--foam);
  color: var(--deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; }
.contact-info__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-info__val {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

form.contact-form {
  background: var(--paper);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.contact-form .field { margin-bottom: 18px; }
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(22, 166, 201, 0.15);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button { width: 100%; justify-content: center; padding: 16px; }
.hp { position: absolute; left: -9999px; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.faq details[open] { border-color: var(--aqua); }
.faq summary {
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--aqua);
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 60px 0 30px;
}
.footer a { color: rgba(255, 255, 255, 0.78); }
.footer a:hover { color: var(--aqua-bright); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.footer__brand .brand__mark { background: linear-gradient(135deg, var(--aqua), var(--aqua-bright)); }
.footer p { font-size: 0.94rem; color: rgba(255, 255, 255, 0.65); line-height: 1.55; }
.footer h4 {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: white;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; font-size: 0.94rem; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom a { color: rgba(255, 255, 255, 0.65); }

/* Responsive */
@media (max-width: 960px) {
  /* Note: nav drawer + hamburger styles handled in their own block above */
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: auto; aspect-ratio: 4 / 3; }
  .process { grid-template-columns: 1fr 1fr; gap: 22px; }
  .testimonials { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero__wand { width: 160px; }
}
@media (max-width: 560px) {
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .process { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .hero { min-height: 580px; }
}
