/* =========================================
   DIAMOND IMAGE DETAIL — LP
   Dark cinematic + chrome accent
   ========================================= */

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

:root {
  /* Surfaces */
  --bg: #06070a;
  --bg-2: #0c0d12;
  --bg-3: #131419;
  --card: rgba(255,255,255,0.025);
  --card-hi: rgba(255,255,255,0.05);
  --line: rgba(255,255,255,0.07);
  --line-hi: rgba(255,255,255,0.14);

  /* Type */
  --ink: #f3f4f7;
  --ink-mid: rgba(243,244,247,0.72);
  --ink-low: rgba(243,244,247,0.48);

  /* Accent — chrome / icy diamond */
  --ice-1: #E6F4FF;
  --ice-2: #B8E1FE;
  --ice-3: #67E8F9;
  --ice-4: #06B6D4;
  --shine-grad: linear-gradient(100deg,
      #E6F4FF 0%,
      #B8E1FE 22%,
      #67E8F9 48%,
      #B8E1FE 74%,
      #E6F4FF 100%);

  --display: "Bebas Neue", "Anton", "Impact", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }

/* Subtle film grain — automotive shoot vibe */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  mix-blend-mode: overlay;
}

/* Shine treatment — used sparingly on key words */
.shine {
  background: var(--shine-grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0%; }
  100% { background-position: -100% 0%; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0 var(--pad-x);
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% 10%, rgba(103,232,249,0.06), transparent 70%),
    radial-gradient(900px 700px at 10% 90%, rgba(14,165,233,0.05), transparent 70%),
    var(--bg);
}

.hex-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(60deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(-60deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 96px;
  mask-image: radial-gradient(900px 600px at 70% 25%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 600px at 70% 25%, black 30%, transparent 75%);
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle at center, rgba(103,232,249,0.16), transparent 60%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

/* hero photo as full-bleed cinematic backdrop behind the form */
.hero-image-wrap {
  position: absolute;
  top: 0; right: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.78;
}
.hero-image {
  width: 100%; height: 100%; object-fit: cover; object-position: 72% 50%;
  filter: contrast(1.12) saturate(0.95);
}
.hero-image-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(6,7,10,0.92) 18%, rgba(6,7,10,0.55) 42%, rgba(6,7,10,0.20) 68%, rgba(6,7,10,0.55) 100%),
    linear-gradient(180deg, rgba(6,7,10,0.50) 0%, transparent 35%, rgba(6,7,10,0.78) 100%);
}

/* Topbar */
.topbar {
  position: relative;
  z-index: 5;
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.brand:hover { opacity: 0.92; transform: translateY(-1px); }
.brand-icon {
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.5));
}
.brand-words {
  display: flex;
  flex-direction: column;
  line-height: 1;
  padding-left: 4px;
  border-left: 1px solid var(--line-hi);
  padding-left: 12px;
}
.brand-name {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 0.22em;
  color: var(--ink);
}
.brand-sub {
  font-size: 9px;
  letter-spacing: 0.32em;
  margin-top: 5px;
  color: var(--ink-low);
  text-transform: uppercase;
}
.topbar-call {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--ink);
  transition: all 150ms ease;
}
.topbar-call:hover { border-color: var(--ice-3); color: var(--ice-1); }
.topbar-call svg { color: var(--ice-3); }

/* Hero layout */
.hero-inner {
  position: relative; z-index: 4;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px, 7vh, 90px) 0 clamp(60px, 10vh, 120px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 12px;
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ice-3);
  box-shadow: 0 0 12px var(--ice-3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hero title */
.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 8.2vw, 124px);
  line-height: 0.86;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-title .title-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 700ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-title .line-1 { animation-delay: 80ms; }
.hero-title .line-2 { animation-delay: 200ms; }
.hero-title .line-3 { animation-delay: 320ms; font-family: var(--body); font-weight: 300; font-size: 0.28em; line-height: 1.2; letter-spacing: 0.005em; margin-top: 0.5em; color: var(--ink-mid); }
.hero-title .line-3 em { font-style: italic; font-weight: 300; color: var(--ink); }
.hero-title .line-4 { animation-delay: 440ms; font-family: var(--body); font-weight: 300; font-size: 0.28em; line-height: 1.2; letter-spacing: 0.005em; color: var(--ink-mid); }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 28px;
}

.hero-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-mid);
}
.hero-bullets .check {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(103,232,249,0.12);
  color: var(--ice-3);
  font-size: 11px;
  font-weight: 600;
}

.hero-trust {
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.stars {
  font-size: 16px; letter-spacing: 2px;
  color: var(--ice-3);
  text-shadow: 0 0 8px rgba(103,232,249,0.4);
}
.trust-label { font-size: 13px; color: var(--ink-low); }

/* =========================================
   HERO FORM
   ========================================= */
.hero-form-wrap {
  position: relative;
  z-index: 6;
  scroll-margin-top: 16px;
}
.form-shell {
  position: relative;
  padding: 32px 30px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.015) 100%),
    rgba(12,13,18,0.86);
  border: 1px solid var(--line-hi);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(103,232,249,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.form-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 90deg at 50% 50%,
    transparent 0deg,
    rgba(103,232,249,0.18) 60deg,
    transparent 120deg,
    transparent 240deg,
    rgba(103,232,249,0.12) 300deg,
    transparent 360deg);
  animation: rotate 16s linear infinite;
  opacity: 0.4;
  z-index: -1;
  filter: blur(40px);
}
@keyframes rotate { to { transform: rotate(360deg); } }

.form-head { margin-bottom: 22px; }
.form-tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--ice-3);
  padding: 4px 10px;
  border: 1px solid rgba(103,232,249,0.35);
  border-radius: 4px;
  margin-bottom: 14px;
}
.form-title {
  font-family: var(--display);
  font-size: 36px; letter-spacing: 0.005em;
  line-height: 1;
  margin-bottom: 8px;
}
.form-sub {
  font-size: 13px; color: var(--ink-low); line-height: 1.5;
}

.lead-form { display: flex; flex-direction: column; gap: 12px; }
.row { display: grid; gap: 12px; }
.row.two { grid-template-columns: 1fr 1fr; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field .lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-low);
  font-weight: 500;
}
.field input,
.field select {
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  transition: all 150ms ease;
  outline: none;
  appearance: none;
}
.field input::placeholder { color: rgba(243,244,247,0.28); }
.field input:hover,
.field select:hover {
  border-color: var(--line-hi);
  background: rgba(255,255,255,0.035);
}
.field input:focus,
.field select:focus {
  border-color: var(--ice-3);
  background: rgba(103,232,249,0.04);
  box-shadow: 0 0 0 4px rgba(103,232,249,0.08);
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%2367E8F9' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field select option { background: #0c0d12; color: var(--ink); }

/* CTA BUTTON */
.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 22px;
  border: none;
  border-radius: 10px;
  background: var(--shine-grad);
  background-size: 200% 100%;
  color: #06181f;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 200ms ease;
  overflow: hidden;
  margin-top: 6px;
  box-shadow:
    0 8px 28px rgba(103,232,249,0.28),
    0 0 0 1px rgba(255,255,255,0.4) inset;
  animation: shimmer-btn 6s linear infinite;
}
@keyframes shimmer-btn {
  0%   { background-position: 200% 0%; }
  100% { background-position: -100% 0%; }
}
.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 12px 36px rgba(103,232,249,0.42),
    0 0 0 1px rgba(255,255,255,0.6) inset;
}
.cta-btn:active { transform: translateY(0); }
.cta-arrow { transition: transform 200ms ease; font-size: 18px; }
.cta-btn:hover .cta-arrow { transform: translateX(4px); }

.form-fine {
  font-size: 11px;
  color: var(--ink-low);
  text-align: center;
  margin-top: 6px;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; animation: rise 500ms ease forwards; }
.form-success.show + form { display: none; }
.success-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(103,232,249,0.15);
  color: var(--ice-3);
  font-size: 28px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(103,232,249,0.3);
}
.form-success h3 {
  font-family: var(--display);
  font-size: 32px;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 14px;
  color: var(--ink-mid);
  margin-bottom: 18px;
}
.success-call {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--ice-3);
  border-radius: 8px;
  font-size: 13px;
  color: var(--ice-3);
}
.success-call:hover { background: rgba(103,232,249,0.08); }

/* =========================================
   TRUST STRIP
   ========================================= */
.strip {
  position: relative;
  padding: 36px var(--pad-x);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr) ;
  align-items: center;
  gap: 8px;
}
.strip-item { text-align: center; }
.strip-num {
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: 0.02em;
  background: var(--shine-grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 10s linear infinite;
}
.strip-cap {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-low);
  margin-top: 4px;
}
.strip-divider {
  height: 28px;
  width: 1px;
  background: var(--line);
  justify-self: center;
  display: none;
}

/* =========================================
   SECTION HEADS (shared)
   ========================================= */
.section-head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ice-3);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(38px, 5.8vw, 76px);
  line-height: 0.96;
  letter-spacing: 0.005em;
  margin-bottom: 16px;
  color: var(--ink);
}
.section-sub {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.6;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.section-head.left .section-sub { margin-left: 0; }

/* =========================================
   SERVICES
   ========================================= */
.services {
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  max-width: calc(var(--maxw) + 100px);
  margin: 0 auto;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  position: relative;
  padding: 36px 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all 250ms ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice-3), transparent);
  opacity: 0;
  transition: opacity 250ms ease;
}
.card:hover {
  background: var(--card-hi);
  border-color: var(--line-hi);
  transform: translateY(-3px);
}
.card:hover::before { opacity: 0.8; }
.card-feature {
  border-color: rgba(103,232,249,0.18);
  background: linear-gradient(180deg, rgba(103,232,249,0.03), rgba(0,0,0,0)), var(--card);
}
.card-num {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--ice-3);
  margin-bottom: 18px;
}
.card-title {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.card-body {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.card-list { list-style: none; }
.card-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.5;
  margin-bottom: 8px;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--ice-3);
}

/* =========================================
   PROCESS
   ========================================= */
.process {
  padding: clamp(60px, 10vw, 120px) var(--pad-x);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process > .section-head,
.process > .steps,
.process > .section-head.left { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
}
.step {
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 200ms ease;
}
.step:last-child { border-right: none; }
.step:hover { background: var(--card); }
.step-tag {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ice-3);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
}
.step-body h4 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.step-body p {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.6;
}

/* =========================================
   COASTAL
   ========================================= */
.coastal {
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.coastal-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.coastal-copy .section-eyebrow,
.coastal-copy .section-title { text-align: left; }
.coastal-copy .section-title { margin-bottom: 20px; }
.coastal-p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}
.coastal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.cstat-n {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: 0.02em;
  background: var(--shine-grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s linear infinite;
}
.cstat-l {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-low);
  margin-top: 4px;
}
.coastal-visual {
  position: relative;
  padding: 40px;
  background:
    radial-gradient(circle at 50% 50%, rgba(103,232,249,0.08), transparent 70%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
}
.coastal-visual img {
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5));
}

/* =========================================
   GALLERY
   ========================================= */
.gallery {
  padding: clamp(80px, 10vw, 120px) var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  aspect-ratio: 1/1;
  position: relative;
}
.gallery-card.tall { aspect-ratio: 1/1; }
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2,0.7,0.2,1);
}
.gallery-card:hover img { transform: scale(1.04); }

/* =========================================
   FINAL CTA
   ========================================= */
.final {
  position: relative;
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  background:
    radial-gradient(800px 400px at 80% 50%, rgba(103,232,249,0.08), transparent 70%),
    radial-gradient(800px 400px at 20% 50%, rgba(14,165,233,0.05), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(60deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(-60deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 96px;
  mask-image: radial-gradient(900px 500px at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(900px 500px at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.final-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.final-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(420px, 60vw, 720px);
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.4px);
}
.final-title {
  font-family: var(--display);
  font-size: clamp(48px, 7.2vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin-bottom: 22px;
}
.final-sub {
  font-size: 17px;
  color: var(--ink-mid);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.final-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-btn.solid { font-size: 16px; padding: 18px 28px; }
.ghost-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 22px;
  border: 1px solid var(--line-hi);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 200ms ease;
  color: var(--ink);
}
.ghost-btn:hover { border-color: var(--ice-3); color: var(--ice-1); }
.ghost-btn svg { color: var(--ice-3); }

/* =========================================
   FOOTER
   ========================================= */
.foot {
  padding: 32px var(--pad-x);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.foot-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.foot-logo {
  height: 84px;
  width: auto;
  opacity: 0.9;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.45));
}
.foot-brand-meta { display: flex; flex-direction: column; }
.foot-name {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.18em;
}
.foot-tag {
  font-size: 11px;
  color: var(--ink-low);
  margin-top: 3px;
  letter-spacing: 0.05em;
}
.foot-meta {
  font-size: 13px;
  color: var(--ink-mid);
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.foot-meta a:hover { color: var(--ice-3); }
.foot-sep { color: var(--ink-low); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 30px 0 60px;
  }
  .hero-image-wrap {
    width: 100%; right: 0;
    opacity: 0.38;
  }
  .hero-bullets { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .strip-inner .strip-divider { display: none; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .coastal-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-card.tall { aspect-ratio: 1/1; }
}

@media (max-width: 560px) {
  .topbar-call span { display: none; }
  .topbar-call { padding: 9px 11px; }
  .brand-icon { height: 38px; }
  .brand-name { font-size: 15px; letter-spacing: 0.18em; }
  .brand-sub { font-size: 8px; letter-spacing: 0.28em; }
  .foot-logo { height: 60px; }
  .row.two { grid-template-columns: 1fr; }
  .form-shell { padding: 26px 22px 24px; }
  .form-title { font-size: 30px; }
  .strip-inner { grid-template-columns: 1fr 1fr; gap: 24px 12px; }
  .strip-num { font-size: 26px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
  .coastal-stats { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.tall { aspect-ratio: 1/1; }
  .final-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .cta-btn.solid, .ghost-btn { width: 100%; }
  .foot-inner { flex-direction: column; align-items: flex-start; }
}

.under-double {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  background: var(--shine-grad);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 6s linear infinite;
}
.under-double::before,
.under-double::after {
  content: "";
  position: absolute;
  left: 0;
  height: 4px;
  border-radius: 3px;
  background: var(--shine-grad);
  box-shadow: 0 0 18px rgba(103, 232, 249, 0.55);
}
.under-double::before {
  right: 0;
  bottom: 2px;
}
.under-double::after {
  left: 18%;
  right: 18%;
  bottom: -6px;
  height: 2.5px;
  opacity: 0.78;
  box-shadow: 0 0 12px rgba(103, 232, 249, 0.45);
}

@media (max-width: 720px) {
  .under-double { padding-bottom: 12px; }
  .under-double::before { height: 3px; bottom: 2px; }
  .under-double::after { height: 2px; bottom: -4px; }
}

/* ============== REVIEWS ============== */
.reviews {
  position: relative;
  padding: clamp(72px, 9vw, 120px) var(--pad-x) clamp(56px, 7vw, 96px);
  background:
    radial-gradient(900px 540px at 18% 0%, rgba(103, 232, 249, 0.05), transparent 60%),
    radial-gradient(900px 540px at 82% 100%, rgba(6, 182, 212, 0.04), transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reviews .section-head { max-width: var(--maxw); margin: 0 auto 56px; }

.reviews-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 26px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  border: 1px solid var(--line-hi);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 22px 50px rgba(0,0,0,0.35);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(103, 232, 249, 0.22), transparent 35%, transparent 65%, rgba(103, 232, 249, 0.12));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
  opacity: 0.45;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.22);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 28px 58px rgba(0,0,0,0.45);
}

.review-stars {
  font-size: 17px;
  letter-spacing: 3px;
  color: #FFC107;
  text-shadow: 0 0 18px rgba(255, 193, 7, 0.35);
}

.review-body {
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.65;
  flex: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.review-author {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 1.2px;
  color: var(--ink);
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.6px;
  color: var(--ink-low);
  text-transform: uppercase;
}

.reviews-foot {
  max-width: var(--maxw);
  margin: 44px auto 0;
  text-align: center;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--line-hi);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-decoration: none;
  background: rgba(255,255,255,0.025);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.reviews-link:hover {
  border-color: var(--ice-3);
  background: rgba(103, 232, 249, 0.06);
  transform: translateY(-1px);
}

.reviews-link .arrow {
  color: var(--ice-3);
  transition: transform 200ms ease;
}

.reviews-link:hover .arrow { transform: translateX(3px); }

@media (max-width: 1080px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 24px 22px 20px; }
  .review-card:nth-child(n+4) { display: none; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .title-line { opacity: 1 !important; transform: none !important; }
}

/* =========================================
   SITE HEADER / NAV  (multi-page)
   ========================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(6,7,10,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
/* JS sets --header-h to the real header height; fallback keeps content clear if JS is off */
body { padding-top: var(--header-h, 74px); }
html { scroll-padding-top: var(--header-h, 74px); }
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-link {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
  position: relative;
  padding: 4px 0;
  transition: color 160ms ease;
}
.nav-link:hover { color: var(--ink); }
.nav-link.is-active { color: var(--ice-1); }
.nav-link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1.5px; background: var(--ice-3);
  box-shadow: 0 0 10px rgba(103,232,249,0.6);
}
.nav-right { display: inline-flex; align-items: center; gap: 14px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--shine-grad);
  background-size: 200% 100%;
  color: #06181f; font-weight: 700;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  animation: shimmer-btn 6s linear infinite;
  box-shadow: 0 6px 20px rgba(103,232,249,0.25);
  transition: transform 160ms ease;
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line-hi);
  border-radius: 9px;
  background: rgba(255,255,255,0.03);
  color: var(--ink);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(6,7,10,0.97);
    border-bottom: 1px solid var(--line);
    padding: 8px var(--pad-x) 16px;
    max-height: 0; overflow: hidden;
    transition: max-height 260ms ease;
  }
  /* Roomy enough for the Services submenu expanded without clipping Contact. */
  .nav-links.open { max-height: 620px; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-link { display: block; padding: 14px 2px; font-size: 15px; }
  .nav-link.is-active::after { display: none; }
}

/* Sub-page hero (distinct from home hero) */
.page-hero {
  position: relative;
  padding: clamp(56px, 9vw, 120px) var(--pad-x) clamp(48px, 7vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(1100px 560px at 78% 0%, rgba(103,232,249,0.08), transparent 68%),
    radial-gradient(900px 600px at 8% 100%, rgba(14,165,233,0.05), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero .hex-grid { z-index: 0; }
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.page-hero-copy .section-eyebrow { text-align: left; }
.page-hero-title {
  font-family: var(--display);
  font-size: clamp(46px, 7.4vw, 104px);
  line-height: 0.9; letter-spacing: 0.005em;
  margin: 10px 0 20px;
}
.page-hero-sub {
  font-size: 17px; color: var(--ink-mid); line-height: 1.65;
  max-width: 520px; margin-bottom: 26px;
}
.page-hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; }
.page-hero-visual {
  position: relative;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line-hi);
  aspect-ratio: 4/5;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.page-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,7,10,0.5) 100%);
}

/* Assurance band — lifetime warranty + CARFAX (the spear tip) */
.assurance {
  padding: clamp(64px, 9vw, 120px) var(--pad-x);
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(103,232,249,0.07), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.assurance-inner {
  max-width: 980px; margin: 0 auto; text-align: center;
}
.assurance-badges {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 44px;
}
.assure-card {
  padding: 30px 24px;
  background: var(--card);
  border: 1px solid var(--line-hi);
  border-radius: 14px;
  position: relative; overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}
.assure-card:hover { transform: translateY(-3px); border-color: rgba(103,232,249,0.3); }
.assure-icon {
  width: 46px; height: 46px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(103,232,249,0.12);
  color: var(--ice-3);
}
.assure-icon svg { width: 24px; height: 24px; }
.assure-h {
  font-family: var(--display); font-size: 22px;
  letter-spacing: 0.01em; margin-bottom: 8px;
}
.assure-p { font-size: 13.5px; color: var(--ink-mid); line-height: 1.6; }

/* Packages */
.packages { padding: clamp(80px,12vw,140px) var(--pad-x); max-width: var(--maxw); margin: 0 auto; }
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.pkg {
  display: flex; flex-direction: column;
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 220ms ease, border-color 220ms ease;
}
.pkg:hover { transform: translateY(-3px); border-color: var(--line-hi); }
.pkg.featured {
  border-color: rgba(103,232,249,0.32);
  background: linear-gradient(180deg, rgba(103,232,249,0.05), transparent 60%), var(--card);
}
.pkg-flag {
  align-self: flex-start;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ice-3); border: 1px solid rgba(103,232,249,0.35);
  border-radius: 4px; padding: 4px 9px; margin-bottom: 16px;
}
.pkg-name { font-family: var(--display); font-size: 30px; letter-spacing: 0.01em; margin-bottom: 6px; }
.pkg-tier { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-low); margin-bottom: 18px; }
.pkg-list { list-style: none; margin-bottom: 24px; flex: 1; }
.pkg-list li {
  position: relative; padding-left: 24px;
  font-size: 13.5px; color: var(--ink-mid); line-height: 1.5; margin-bottom: 11px;
}
.pkg-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--ice-3); font-size: 12px; font-weight: 700;
}
.pkg .cta-btn, .pkg .ghost-btn { width: 100%; }

@media (max-width: 980px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-visual { aspect-ratio: 16/10; max-height: 420px; }
  .assurance-badges { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
}

/* =========================================
   MOTION / INTERACTION LAYER
   ========================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms cubic-bezier(.2,.7,.2,1), transform 720ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
/* Safety net: reveal-on-scroll elements start hidden and rely on JS.
   If scripting is unavailable, show everything rather than a blank page. */
@media (scripting: none) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* Before / After slider */
.ba {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-hi);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  user-select: none;
  cursor: ew-resize;
  touch-action: pan-y;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-before { filter: saturate(.45) brightness(.7) contrast(.9) blur(.6px); }
.ba-before::after { content: ""; }
.ba-haze {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  width: var(--haze, 100%);
  overflow: hidden;
}
.ba-haze::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-conic-gradient(from 0deg at 30% 40%, rgba(255,255,255,0.05) 0deg, transparent 6deg 14deg),
    repeating-radial-gradient(circle at 70% 60%, rgba(255,255,255,0.04) 0 2px, transparent 2px 7px);
  mix-blend-mode: screen;
  opacity: .9;
}
.ba-after {
  position: absolute; inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid rgba(103,232,249,0.9);
  box-shadow: 6px 0 24px rgba(103,232,249,0.25);
}
.ba-after .ba-clean { filter: none; }
.ba-handle {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  height: 100%; width: 44px;
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  cursor: ew-resize;
  background: none; border: none;
}
.ba-handle .knob {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(6,7,10,0.7);
  border: 2px solid var(--ice-3);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--ice-1);
  box-shadow: 0 0 24px rgba(103,232,249,0.5);
  font-size: 14px; letter-spacing: -2px;
}
.ba-tag {
  position: absolute; bottom: 14px; z-index: 2;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(6,7,10,0.66); border: 1px solid var(--line-hi);
  color: var(--ink-mid); backdrop-filter: blur(6px);
}
.ba-tag.before { left: 14px; }
.ba-tag.after  { right: 14px; color: var(--ice-1); border-color: rgba(103,232,249,0.4); z-index: 4; }
.ba.dragging { cursor: ew-resize; }

/* Pointer-reactive glow card */
[data-tilt] {
  position: relative;
  overflow: hidden;
}
[data-tilt]::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(103,232,249,0.12), transparent 60%);
  opacity: 0; transition: opacity 240ms ease;
  pointer-events: none;
}
[data-tilt]:hover::after { opacity: 1; }

/* Problem chips (hover reveal) */
.problem-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px;
  max-width: var(--maxw); margin: 0 auto;
}
.prob {
  padding: 26px 22px; border-radius: 14px;
  background: var(--card); border: 1px solid var(--line);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}
.prob:hover { transform: translateY(-4px); border-color: rgba(103,232,249,0.3); background: var(--card-hi); }
.prob-ic { color: var(--ice-3); margin-bottom: 14px; }
.prob-ic svg { width: 26px; height: 26px; }
.prob h4 { font-family: var(--display); font-size: 20px; letter-spacing: 0.01em; margin-bottom: 8px; }
.prob p { font-size: 13px; color: var(--ink-mid); line-height: 1.55; }

/* Sheen sweep band */
.sweep {
  position: relative; overflow: hidden;
  padding: clamp(70px,10vw,130px) var(--pad-x);
  background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.sweep::before {
  content: ""; position: absolute; top: 0; left: -40%;
  width: 40%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(103,232,249,0.10), transparent);
  animation: sweepmove 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sweepmove { 0% { left: -45%; } 55%,100% { left: 120%; } }
.sweep-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; }

@media (max-width: 980px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .ba { aspect-ratio: 4/3; }
}
@media (max-width: 560px) {
  .problem-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .sweep::before { animation: none; display: none; }
}

/* ============================================================
   MOBILE DETAILING — page-specific motion
   ============================================================ */

/* Coverage / service-area radar */
.coverage { position: relative; overflow: hidden; padding: clamp(70px,9vw,120px) var(--pad-x); }
.coverage-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px,5vw,72px);
  align-items: center; max-width: var(--maxw); margin: 0 auto;
}
.coverage-copy .section-title { text-align: left; }
.coverage-p { font-size: 16px; color: var(--ink-mid); line-height: 1.7; max-width: 46ch; margin: 14px 0 26px; }
.coverage-towns { display: flex; flex-wrap: wrap; gap: 10px; }
.town {
  font-size: 12.5px; letter-spacing: 0.04em; color: var(--ink-mid);
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--card);
  transition: transform 200ms ease, border-color 200ms ease, color 200ms ease;
}
.town:hover { transform: translateY(-3px); border-color: rgba(103,232,249,0.4); color: var(--ink); }

.radar {
  position: relative; aspect-ratio: 1/1; width: 100%; max-width: 460px;
  margin: 0 auto; display: grid; place-items: center;
}
.radar-rings { position: absolute; inset: 0; display: grid; place-items: center; }
.radar-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(103,232,249,0.22);
  width: 100%; height: 100%;
}
.radar-ring.r2 { width: 66%; height: 66%; }
.radar-ring.r3 { width: 33%; height: 33%; }
.radar-pulse {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(103,232,249,0.5);
  width: 22%; height: 22%;
  animation: radarPulse 3.4s ease-out infinite;
}
.radar-pulse.p2 { animation-delay: 1.13s; }
.radar-pulse.p3 { animation-delay: 2.26s; }
@keyframes radarPulse {
  0%   { width: 18%; height: 18%; opacity: 0.85; }
  100% { width: 112%; height: 112%; opacity: 0; }
}
.radar-sweep {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(103,232,249,0.16) 40deg, transparent 90deg);
  animation: radarSpin 6s linear infinite;
}
@keyframes radarSpin { to { transform: rotate(360deg); } }
.radar-pin {
  position: relative; z-index: 2; width: 46px; height: 46px;
  display: grid; place-items: center; color: var(--bg);
  background: var(--ice-1); border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 28px rgba(103,232,249,0.5);
}
.radar-pin svg { width: 22px; height: 22px; transform: rotate(45deg); }
.radar-label {
  position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%);
  font-family: var(--display); font-size: 18px; letter-spacing: 0.06em;
  color: var(--ink); white-space: nowrap;
}

/* Draw-on-scroll route */
.route-wrap { max-width: var(--maxw); margin: 0 auto; }
.route-svg { width: 100%; height: auto; display: block; overflow: visible; }
.route-path {
  fill: none; stroke: rgba(103,232,249,0.5); stroke-width: 2.5;
  stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.6s ease;
}
[data-reveal].is-in .route-path { stroke-dashoffset: 0; }
.route-stops { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 26px; }
.rstop { text-align: center; }
.rstop-dot {
  width: 14px; height: 14px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--ice-1); box-shadow: 0 0 16px rgba(103,232,249,0.6);
}
.rstop h4 { font-family: var(--display); font-size: 20px; letter-spacing: 0.01em; margin-bottom: 6px; }
.rstop p { font-size: 13px; color: var(--ink-mid); line-height: 1.55; }

/* "What we bring" self-contained cards */
.bring-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  max-width: var(--maxw); margin: 0 auto;
}
.bring {
  position: relative; overflow: hidden;
  padding: 30px 26px; border-radius: 16px;
  background: var(--card); border: 1px solid var(--line);
  transition: transform 260ms ease, border-color 260ms ease;
}
.bring:hover { transform: translateY(-5px); border-color: rgba(103,232,249,0.34); }
.bring-ic {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 18px;
  display: grid; place-items: center; color: var(--ice-2);
  background: rgba(103,232,249,0.08); border: 1px solid rgba(103,232,249,0.18);
}
.bring-ic svg { width: 24px; height: 24px; }
.bring h4 { font-family: var(--display); font-size: 22px; letter-spacing: 0.01em; margin-bottom: 8px; }
.bring p { font-size: 13.5px; color: var(--ink-mid); line-height: 1.6; }

@media (max-width: 960px) {
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-copy .section-title, .coverage-p { text-align: center; margin-left: auto; margin-right: auto; }
  .coverage-towns { justify-content: center; }
  .bring-grid { grid-template-columns: 1fr; }
  .route-stops { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .radar-pulse, .radar-sweep { animation: none; }
  .route-path { transition: none; stroke-dashoffset: 0; }
}

/* ============================================================
   CONTACT — page-specific
   ============================================================ */

/* Contact method cards */
.contact-methods {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px;
  max-width: var(--maxw); margin: 0 auto;
}
.cmethod {
  display: flex; flex-direction: column; gap: 6px;
  padding: 26px 22px; border-radius: 14px;
  background: var(--card); border: 1px solid var(--line);
  text-decoration: none; color: inherit;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.cmethod:hover { transform: translateY(-4px); border-color: rgba(103,232,249,0.34); background: var(--card-hi); }
.cmethod-ic {
  width: 42px; height: 42px; border-radius: 11px; margin-bottom: 8px;
  display: grid; place-items: center; color: var(--ice-2);
  background: rgba(103,232,249,0.08); border: 1px solid rgba(103,232,249,0.18);
}
.cmethod-ic svg { width: 21px; height: 21px; }
.cmethod-k { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-low); }
.cmethod-v { font-family: var(--display); font-size: 22px; letter-spacing: 0.01em; color: var(--ink); }
.cmethod-s { font-size: 13px; color: var(--ink-mid); line-height: 1.5; }

/* FAQ accordion */
.faq-wrap { max-width: 840px; margin: 0 auto; }
.faq {
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--card); margin-bottom: 12px; overflow: hidden;
  transition: border-color 220ms ease;
}
.faq[open] { border-color: rgba(103,232,249,0.3); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 24px;
  font-family: var(--display); font-size: 21px; letter-spacing: 0.01em; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq-chev {
  flex: none; width: 22px; height: 22px; color: var(--ice-2);
  transition: transform 260ms ease;
}
.faq[open] .faq-chev { transform: rotate(180deg); }
.faq-body {
  padding: 0 24px 22px; font-size: 14.5px; color: var(--ink-mid); line-height: 1.65;
  max-width: 64ch;
}

@media (max-width: 960px) {
  .contact-methods { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .contact-methods { grid-template-columns: 1fr; }
  .faq summary { font-size: 18px; padding: 18px 18px; }
  .faq-body { padding: 0 18px 18px; }
}

/* ============================================================
   SERVICES DROPDOWN NAV  (shared — all pages)
   ============================================================ */
.nav-item { position: relative; }
.nav-item > .nav-link { display: inline-flex; align-items: center; gap: 6px; }
.nav-caret {
  width: 10px; height: 10px; flex: 0 0 auto;
  transition: transform .25s ease;
}
.nav-item.is-open > .nav-link .nav-caret { transform: rotate(180deg); }

.nav-drop {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 268px; padding: 8px;
  background: rgba(12,13,18,.94);
  border: 1px solid var(--line-hi);
  border-radius: 16px;
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 60; list-style: none;
}
.nav-drop::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.nav-item:hover > .nav-drop,
.nav-item.is-open > .nav-drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-drop-link {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 12px; border-radius: 11px;
  color: var(--ink-mid); text-decoration: none;
  font-size: 14px; line-height: 1.25; letter-spacing: .01em;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nav-drop-link:hover { background: var(--card-hi); color: var(--ink); transform: translateX(3px); }
.nav-drop-link.is-active { color: var(--ice-1); background: var(--card); }
.nav-drop-ic {
  width: 30px; height: 30px; flex: 0 0 auto;
  display: grid; place-items: center; border-radius: 9px;
  background: rgba(103,232,249,.09);
  border: 1px solid rgba(103,232,249,.18);
}
.nav-drop-ic svg { width: 15px; height: 15px; stroke: var(--ice-3); }
.nav-drop-t { display: block; font-weight: 600; color: inherit; }
.nav-drop-d { display: block; font-size: 11.5px; color: var(--ink-low); margin-top: 2px; }

@media (max-width: 900px) {
  .nav-drop {
    position: static; transform: none; min-width: 0;
    opacity: 1; visibility: visible; pointer-events: auto;
    background: transparent; border: none; box-shadow: none;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    padding: 0 0 6px 10px;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-item.is-open > .nav-drop { max-height: 420px; }
  .nav-drop-link { padding: 10px 4px; }
  .nav-drop-link:hover { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-drop, .nav-caret, .nav-drop-link { transition: none; }
}
