@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;1,6..96,400&family=Michroma&family=Manrope:wght@400;500;600&display=swap');

:root {
  --black: #050607;
  --panel: #0b0e11;
  --panel2: #10151a;
  --white: #f4f7f9;
  --muted: #8f9aa4;
  --blue: #12a9ef;
  --line: rgba(255, 255, 255, 0.11);
  --font-display: "Bodoni Moda", Georgia, serif;
  --font-body: Manrope, Arial, Helvetica, sans-serif;
  --font-utility: Michroma, "Avenir Next", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  padding: 0 4.5vw;
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.brand { width: 112px; height: 70px; overflow: hidden; display: flex; align-items: center; }
.brand img { width: 112px; height: 70px; object-fit: contain; object-position: left center; }
.nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
  margin-right: 38px;
  font-size: 13px;
  font-family: var(--font-utility);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c7ced3;
}
.nav a { transition: 0.2s; }
.nav a:hover { color: var(--blue); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background: var(--blue);
  color: #00111a;
  font-family: var(--font-utility);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  padding: 18px 24px;
  border: 0;
  cursor: pointer;
  transition: 0.25s;
}
.button:hover { background: #56c8fa; transform: translateY(-2px); }
.button-small { padding: 14px 19px; gap: 14px; }
.menu-button { display: none; }

/* —— Living logo (hero) —— */
.logo-alive {
  position: relative;
  z-index: 2;
  width: min(54vw, 560px);
  justify-self: end;
  transform-style: preserve-3d;
  will-change: transform;
}
.logo-alive-glow {
  position: absolute;
  inset: 10% 6%;
  background: radial-gradient(ellipse at center, rgba(18, 169, 239, 0.26), transparent 68%);
  filter: blur(30px);
  pointer-events: none;
  animation: logo-glow-breathe 4.5s ease-in-out infinite;
}
.logo-mark {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  transform-style: preserve-3d;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}
.logo-mark-img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.logo-shine-sweep {
  position: absolute;
  inset: -10% auto -10% -30%;
  width: 28%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(18, 169, 239, 0.18) 58%,
    transparent 72%
  );
  mix-blend-mode: screen;
  transform: translateX(-120%) skewX(-12deg);
  opacity: 0;
}
.logo-flare-pulse {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 42%;
  height: 8%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(95, 208, 255, 0.55), transparent 70%);
  filter: blur(10px);
  opacity: 0.35;
  mix-blend-mode: screen;
}

@keyframes logo-glow-breathe {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-alive-glow,
  .logo-flare-pulse { animation: none; }
}

/* —— Hero —— */
.hero {
  min-height: 760px;
  height: 100vh;
  max-height: 980px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 140px 4.5vw 72px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1.05fr);
  align-items: center;
  gap: 4vw;
  background:
    radial-gradient(ellipse 55% 45% at 72% 48%, rgba(18, 169, 239, 0.08), transparent 70%),
    radial-gradient(circle at 76% 47%, #111c24 0, #080a0c 35%, #040506 67%);
}
.hero-glow {
  position: absolute;
  width: 50vw;
  height: 10vw;
  background: var(--blue);
  filter: blur(110px);
  opacity: 0.1;
  right: -8%;
  top: 40%;
  transform: rotate(-9deg);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 12px;
}
.hero-display {
  margin: 0;
  line-height: 0.9;
}
.hero-display-word {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(42px, 6.4vw, 78px);
  font-weight: 500;
  font-optical-sizing: auto;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 0 80px rgba(18, 169, 239, 0.12);
}
.hero-tag {
  margin: 28px 0 0;
  max-width: 380px;
  font-size: 15px;
  line-height: 1.65;
  color: #9aa6b0;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.eyebrow, .kicker {
  font-family: var(--font-utility);
  text-transform: uppercase;
  color: var(--blue);
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 800;
}
.eyebrow span {
  width: 30px;
  height: 1px;
  background: var(--blue);
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px;
}
.text-link {
  font-family: var(--font-utility);
  color: #dce3e7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  font-weight: 800;
  border-bottom: 1px solid #606a72;
  padding-bottom: 7px;
}
.text-link span { color: var(--blue); margin-left: 12px; }
.hero-counties {
  position: absolute;
  bottom: 29px;
  left: 4.5vw;
  font-family: var(--font-utility);
  font-size: 9px;
  letter-spacing: 0.17em;
  color: #76818a;
  display: flex;
  align-items: center;
  gap: 13px;
}
.hero-counties i {
  width: 3px;
  height: 3px;
  background: var(--blue);
  border-radius: 50%;
}

/* —— Process —— */
.process-section {
  position: relative;
  z-index: 10;
  display: block;
  background: linear-gradient(145deg, #0e1419 0%, #080a0c 48%, #06080a 100%);
  border-top: 1px solid var(--line);
  min-height: 100vh;
  overflow: hidden;
}
.process-ambiance {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.process-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  transition: opacity 1.2s ease;
}
.process-glow-a {
  width: 42vw;
  height: 42vw;
  background: var(--blue);
  right: -8%;
  top: 18%;
  opacity: 0;
}
.process-glow-b {
  width: 28vw;
  height: 28vw;
  background: #1a6f9a;
  left: 8%;
  bottom: 10%;
  opacity: 0;
}
.process-shear {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 42%, rgba(18, 169, 239, 0.03) 50%, transparent 58%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 72px,
      rgba(255, 255, 255, 0.012) 73px
    );
  opacity: 0;
  transform: translateX(-4%);
  transition: opacity 1s ease, transform 1.4s ease;
}
.process-section.is-awake .process-glow-a { opacity: 0.1; }
.process-section.is-awake .process-glow-b { opacity: 0.07; }
.process-section.is-awake .process-shear {
  opacity: 1;
  transform: translateX(0);
}
.process-section.is-awake.is-live .process-glow-a {
  animation: process-glow-breathe 7s ease-in-out infinite;
}
.process-section.is-awake.is-live .process-glow-b {
  animation: process-glow-breathe 9s ease-in-out infinite reverse;
}

.process-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 640px);
  gap: 5vw;
  align-items: center;
  justify-content: center;
}
.process-layout-solo .process-content {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.process-content { min-width: 0; position: relative; }
.process-intro { margin-bottom: 32px; }
.process-intro .kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker-line {
  width: 0;
  height: 1px;
  background: var(--blue);
  display: inline-block;
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-section.is-awake .kicker-line { width: 30px; }
.process-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin: 18px 0 0;
}
.process-title-line {
  display: block;
  overflow: hidden;
}
.process-title-line > span {
  display: block;
}
.process-lede {
  max-width: 480px;
  color: var(--muted);
  line-height: 1.7;
  margin: 22px 0 0;
}
.process-sms-cta {
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
  gap: 18px;
}
.process-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 30px 0 24px;
  max-width: 520px;
}
.process-divider::before,
.process-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-divider::before { transform-origin: right center; }
.process-divider::after { transform-origin: left center; }
.process-section.is-awake .process-divider.is-drawn::before,
.process-section.is-awake .process-divider.is-drawn::after {
  transform: scaleX(1);
}
.process-divider span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
  color: #68747c;
  white-space: nowrap;
}
.process-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}
.process-form .field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.field-label {
  font-family: var(--font-utility);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
  color: #7f8a92;
  transition: color 0.25s ease, letter-spacing 0.35s ease, transform 0.35s ease;
}
.field-label em {
  font-style: normal;
  color: #59636b;
  letter-spacing: 0.08em;
  text-transform: none;
  margin-left: 4px;
}
.field-shell {
  position: relative;
  display: block;
}
.process-form input,
.process-form textarea {
  width: 100%;
  background: rgba(13, 17, 20, 0.85);
  border: 1px solid #20282e;
  color: #f4f7f9;
  padding: 17px 18px;
  outline: none;
  border-radius: 0;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-form input:hover,
.process-form textarea:hover {
  border-color: #2c3842;
}
.process-form .field.is-filled input,
.process-form .field.is-filled textarea {
  border-color: #2a4554;
  background: rgba(16, 24, 30, 0.92);
}
.process-form .field.is-focused input,
.process-form .field.is-focused textarea,
.process-form input:focus,
.process-form textarea:focus {
  border-color: var(--blue);
  background: #10161a;
  box-shadow:
    0 0 0 1px rgba(18, 169, 239, 0.28),
    0 14px 44px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}
.field-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #56c8fa);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.process-form .field.is-focused .field-underline,
.process-form .field.is-filled .field-underline {
  transform: scaleX(1);
}
.process-form .field.is-filled:not(.is-focused) .field-underline {
  opacity: 0.45;
  background: #3d8fb8;
}
.process-form .field.is-focused .field-label {
  color: var(--blue);
  letter-spacing: 0.18em;
  transform: translateY(-1px);
}
.process-form .field.is-valid .field-label::after {
  content: " ✓";
  color: var(--blue);
  font-size: 10px;
}
.process-form textarea { resize: vertical; min-height: 96px; }
.process-form .form-button {
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  gap: 18px;
  margin-top: 6px;
}
.mag-btn {
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}
.mag-btn.is-pressed,
.process-form .form-button.is-pressed {
  transform: scale(0.98) !important;
  box-shadow: 0 4px 18px rgba(18, 169, 239, 0.25);
}
.process-glow {
  transition: opacity 1.2s ease, transform 0.45s ease;
}
.process-sms-cta::after,
.process-form .form-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 48%, transparent 62%);
  transform: translateX(-120%);
  pointer-events: none;
}
.process-sms-cta:hover::after,
.process-form .form-button:hover::after {
  transition: transform 0.7s ease;
  transform: translateX(120%);
}
.process-sms-cta .btn-arrow,
.process-form .btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.process-sms-cta:hover .btn-arrow,
.process-form .form-button:hover .btn-arrow {
  transform: translateX(4px);
}

/* Pointer spotlight follows cursor across the content column */
.process-spotlight {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(18, 169, 239, 0.12), transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  mix-blend-mode: screen;
}
.process-section.is-awake .process-content:hover .process-spotlight {
  opacity: 1;
}
.process-intro,
.process-sms-cta,
.process-divider,
.process-form {
  position: relative;
  z-index: 1;
}

/* Entrance defaults — GSAP takes over when awake */
body.has-scroll-anim .process-reveal {
  opacity: 0;
  transform: translateY(28px);
}
body.has-scroll-anim .process-title-line.process-reveal {
  opacity: 1;
  transform: none;
}
body.has-scroll-anim .process-title-line.process-reveal > span {
  opacity: 0;
  transform: translateY(110%);
}

@keyframes process-glow-breathe {
  0%, 100% { opacity: 0.08; transform: scale(1); }
  50% { opacity: 0.14; transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  body.has-scroll-anim .process-reveal,
  body.has-scroll-anim .process-title-line.process-reveal > span {
    opacity: 1 !important;
    transform: none !important;
  }
  .process-section.is-live .process-glow-a,
  .process-section.is-live .process-glow-b {
    animation: none !important;
  }
  .process-divider::before,
  .process-divider::after { transform: scaleX(1); }
  .kicker-line { width: 30px; }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080a0c;
  padding: 0 4.5vw;
  position: relative;
  z-index: 5;
}
.trust-strip div {
  height: 100px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line);
  padding: 0 2.2vw;
  font-family: var(--font-utility);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 10px;
  color: #bac2c8;
}
.trust-strip div:first-child { border-left: 1px solid var(--line); }
.trust-strip strong { color: var(--blue); font-size: 10px; }

.section { padding: 120px 6vw; }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 65px;
}
.section-heading > p {
  max-width: 400px;
  color: var(--muted);
  line-height: 1.7;
}
.section h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin: 15px 0 0;
}

/* —— Packages fan-out —— */
.packages-section {
  background: #080a0c;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  isolation: isolate;
}
.package-card {
  position: relative;
  min-height: 610px;
  background: #0d1013;
  border: 1px solid var(--line);
  padding: 34px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.package-card:hover { border-color: rgba(18, 169, 239, 0.55); }
.package-card.featured {
  background: linear-gradient(150deg, #101922, #0d1013 55%);
  border-color: var(--blue);
  z-index: 3;
}
.package-card[data-card="left"],
.package-card[data-card="right"] {
  z-index: 1;
}
/* Stacked start state only when scroll animation is active (set by JS) */
body.has-scroll-anim .package-grid:not(.is-revealed) .package-card[data-card="left"] {
  transform: translateX(calc(100% + 14px)) scale(0.94);
}
body.has-scroll-anim .package-grid:not(.is-revealed) .package-card[data-card="right"] {
  transform: translateX(calc(-100% - 14px)) scale(0.94);
}
.popular {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--blue);
  color: #001019;
  padding: 10px 15px;
  font-family: var(--font-utility);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 900;
}
.package-number {
  font-family: var(--font-utility);
  font-size: 10px;
  color: #59636b;
  letter-spacing: 0.2em;
  margin-bottom: 48px;
}
.package-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 25px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.package-card > p {
  color: var(--muted);
  line-height: 1.6;
  min-height: 52px;
}
.price {
  display: flex;
  flex-direction: column;
  margin: 26px 0;
}
.price small {
  font-family: var(--font-utility);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
  color: #73808a;
}
.price strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 55px;
  letter-spacing: -0.05em;
}
.package-card ul {
  list-style: none;
  padding: 22px 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.package-card li {
  padding: 9px 0;
  color: #b9c2c9;
  font-size: 13px;
}
.package-card li span {
  color: var(--blue);
  margin-right: 12px;
}
.card-footer {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-utility);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #79838a;
}
.card-footer a { color: var(--blue); font-weight: 800; }
.pricing-note {
  font-family: var(--font-utility);
  text-align: center;
  color: #69747c;
  font-size: 10px;
  margin-top: 24px;
}

.area-section {
  display: grid;
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
  gap: 9vw;
  background: #e7ecef;
  color: #080a0c;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.area-map {
  position: absolute;
  inset: -8% -5% -12% 18%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.area-map.is-live {
  animation: map-survey 28s ease-in-out infinite;
}
.area-map-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-land {
  fill: #0e8ec8;
  opacity: 0.35;
}
.map-coast {
  fill: none;
  stroke: #0a6fa0;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 14 18;
  opacity: 0.75;
}
.area-map.is-live .map-coast {
  animation: coast-drift 18s linear infinite;
}
.map-county {
  fill: #12a9ef;
  stroke: #0a6fa0;
  stroke-width: 2;
  opacity: 0.4;
  transform-origin: center;
  transform-box: fill-box;
  transition: opacity 0.55s ease, fill 0.55s ease;
}
.map-county.is-active {
  opacity: 0.85;
  fill: #0e8ec8;
  animation: region-settle 1.1s ease-out;
}
.map-route {
  fill: none;
  stroke: #0a6fa0;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  opacity: 0.55;
}
.map-route.is-drawn {
  animation: route-draw 2.4s ease-in-out forwards;
}
.map-dot {
  fill: #050607;
  opacity: 0.7;
}
.map-ping {
  fill: none;
  stroke: #0a6fa0;
  stroke-width: 1.5;
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
}
.map-pin.is-active .map-ping {
  animation: pin-ping 3.2s ease-out infinite;
}
.map-pin.is-active .map-ping-delay {
  animation-delay: 1.6s;
}
.map-pin.is-active .map-dot {
  fill: #0e8ec8;
  opacity: 1;
}
.map-grid {
  fill: none;
  stroke: #0a6fa0;
  stroke-width: 1;
  opacity: 0.18;
}

@keyframes map-survey {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-1.6%, 1.1%, 0) scale(1.03); }
}
@keyframes coast-drift {
  to { stroke-dashoffset: -160; }
}
@keyframes route-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes pin-ping {
  0% { transform: scale(0.35); opacity: 0.55; }
  70% { opacity: 0.12; }
  100% { transform: scale(1.35); opacity: 0; }
}
@keyframes region-settle {
  0% { filter: brightness(1.35); }
  100% { filter: brightness(1); }
}

@media (prefers-reduced-motion: reduce) {
  .area-map.is-live,
  .area-map.is-live .map-coast,
  .map-county.is-active,
  .map-route.is-drawn,
  .map-pin.is-active .map-ping {
    animation: none !important;
  }
  .map-route { stroke-dashoffset: 0; }
}
.area-copy,
.county-list {
  position: relative;
  z-index: 1;
}
.area-copy > p:not(.kicker) {
  color: #55616a;
  line-height: 1.7;
  max-width: 380px;
  margin: 25px 0;
}
.area-copy .text-link { color: #172129; border-color: #7e888f; }
.county-list { border-top: 1px solid #b9c2c8; }
.county-item {
  display: grid;
  grid-template-columns: 55px 1fr 30px;
  align-items: center;
  padding: 28px 6px;
  border-bottom: 1px solid #b9c2c8;
}
.county-item span { font-size: 10px; color: #65717a; }
.county-item strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(21px, 2.6vw, 36px);
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
.county-item i { color: #0e8ec8; font-style: normal; }
body.has-scroll-anim .county-item {
  opacity: 0;
  transform: translateX(64px);
}

.reviews-section { background: #080a0c; position: relative; z-index: 5; }
.placeholder-copy { border-left: 2px solid var(--blue); padding-left: 20px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review-grid blockquote {
  margin: 0;
  background: #0d1013;
  border: 1px solid var(--line);
  padding: 34px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.stars {
  font-family: var(--font-utility);
  color: var(--blue);
  letter-spacing: 0.22em;
  font-size: 11px;
}
.review-grid blockquote > p {
  font-size: 18px;
  line-height: 1.6;
  color: #d5dce0;
}
.review-grid footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--font-utility);
  text-transform: uppercase;
}
.review-grid footer strong {
  font-size: 10px;
  letter-spacing: 0.12em;
}
.review-grid footer span {
  font-size: 9px;
  color: #68737b;
  letter-spacing: 0.1em;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 36fr) minmax(0, 64fr);
  gap: 8vw;
  background: #0b0e11;
  position: relative;
  z-index: 5;
}
.faqs { border-top: 1px solid var(--line); }
.faqs details {
  border-bottom: 1px solid var(--line);
  padding: 25px 4px;
}
.faqs summary {
  font-family: var(--font-display);
  font-weight: 500;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary span { color: var(--blue); font-size: 22px; }
.faqs details[open] summary span { transform: rotate(45deg); }
.faqs p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 650px;
  margin: 18px 0 2px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
  gap: 9vw;
  background: #080a0c;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 5;
}
.contact-copy > p:not(.kicker) {
  color: var(--muted);
  line-height: 1.7;
  max-width: 410px;
}
.direct-contact {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.direct-contact span {
  font-family: var(--font-utility);
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #68747c;
}
.direct-contact a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--blue);
  font-weight: 800;
}
.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-section label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-section label > span {
  font-family: var(--font-utility);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9px;
  color: #7f8a92;
}
.contact-section input,
.contact-section select,
.contact-section textarea {
  background: #0d1114;
  border: 1px solid #20282e;
  color: #f4f7f9;
  padding: 17px 18px;
  outline: none;
  border-radius: 0;
}
.contact-section input:focus,
.contact-section select:focus,
.contact-section textarea:focus { border-color: var(--blue); }
.contact-section textarea { resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-button {
  align-self: flex-start;
  min-width: 270px;
}

.footer {
  padding: 85px 4.5vw 30px;
  background: #030405;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 5;
}
.footer-top {
  display: grid;
  grid-template-columns: 34% 66%;
  align-items: center;
  padding-bottom: 70px;
}
.footer-top img {
  width: 230px;
  height: 150px;
  object-fit: contain;
  object-position: left center;
}
.footer-top > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 64px);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.045em;
}
.footer-bottom {
  font-family: var(--font-utility);
  border-top: 1px solid var(--line);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  color: #657079;
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: 0.13em;
}
.footer-bottom a { color: #b7c1c7; }
.floating-text { display: none; }

/* —— Mobile foundation —— */
@media (max-width: 900px) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .site-header {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    padding-top: env(safe-area-inset-top);
    height: calc(72px + env(safe-area-inset-top));
  }

  .nav {
    top: calc(72px + env(safe-area-inset-top));
    padding: 24px max(28px, env(safe-area-inset-right)) 32px max(28px, env(safe-area-inset-left));
    gap: 0;
  }

  .nav a {
    display: block;
    padding: 16px 0;
    font-size: 12px;
    letter-spacing: 0.12em;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child { border-bottom: 0; }

  .menu-button {
    width: 48px;
    height: 48px;
    margin-right: -8px;
  }

  .button,
  .text-link {
    min-height: 48px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .process-form input:focus,
  .process-form textarea:focus,
  .contact-section input:focus,
  .contact-section select:focus,
  .contact-section textarea:focus {
    transform: none;
  }
}

/* Reduced motion: skip stacked cards / sticky hero complexity */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero { position: relative; }
  .package-grid:not(.is-revealed) .package-card[data-card="left"],
  .package-grid:not(.is-revealed) .package-card[data-card="right"],
  body.has-scroll-anim .package-grid:not(.is-revealed) .package-card[data-card="left"],
  body.has-scroll-anim .package-grid:not(.is-revealed) .package-card[data-card="right"] {
    transform: none;
    opacity: 1;
  }
  body.has-scroll-anim .county-item {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .header-cta { display: none; }
  .brand { width: 96px; height: 58px; }
  .brand img { width: 96px; height: 58px; }
  .menu-button {
    display: flex;
    margin-left: auto;
    background: transparent;
    border: 0;
    flex-direction: column;
    gap: 7px;
    justify-content: center;
    align-items: center;
  }
  .menu-button span {
    display: block;
    height: 1px;
    background: white;
    width: 23px;
  }
  .nav {
    display: none;
    position: absolute;
    top: calc(72px + env(safe-area-inset-top));
    left: 0;
    right: 0;
    margin: 0;
    background: #080a0c;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
    z-index: 39;
  }
  .nav.open { display: flex; }

  .hero {
    height: auto;
    max-height: none;
    min-height: auto;
    position: relative;
    overflow: hidden;
    padding:
      calc(92px + env(safe-area-inset-top))
      max(20px, env(safe-area-inset-right))
      calc(36px + env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left));
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: start;
    gap: 12px;
  }

  .hero-copy {
    max-width: none;
    align-items: flex-start;
    text-align: left;
    padding-top: 0;
    order: 2;
  }

  .hero-display {
    line-height: 0.92;
  }

  .hero-display-word {
    font-size: clamp(34px, 9.5vw, 52px);
    letter-spacing: -0.035em;
  }

  .hero-tag {
    max-width: none;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.55;
  }

  .logo-alive {
    order: 1;
    width: min(92vw, 380px);
    justify-self: center;
    margin: 4px auto 8px;
    will-change: auto;
    transform-style: flat;
  }

  .logo-alive-glow {
    inset: 14% 10%;
    filter: blur(18px);
    opacity: 0.7;
    animation: logo-glow-breathe 5.5s ease-in-out infinite;
  }

  .logo-mark {
    overflow: visible;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.4));
    transform-style: flat;
  }

  .logo-shine-sweep {
    width: 34%;
  }

  .logo-flare-pulse {
    width: 48%;
    height: 10%;
    filter: blur(8px);
  }

  .hero-counties { display: none; }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: space-between;
    padding: 16px 20px;
  }

  .hero-actions .text-link {
    align-self: flex-start;
    padding-bottom: 8px;
  }

  .process-section {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-content { width: 100%; }

  .process-title {
    font-size: clamp(34px, 9vw, 52px);
    line-height: 0.95;
  }

  .process-lede {
    max-width: none;
    font-size: 15px;
  }

  .process-sms-cta,
  .process-form .form-button {
    width: 100%;
    max-width: none;
    justify-content: space-between;
  }

  .process-divider {
    max-width: none;
    margin: 26px 0 22px;
  }

  .process-form { max-width: none; }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }

  .trust-strip div {
    height: auto;
    min-height: 72px;
    padding: 18px 16px;
    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .section {
    padding:
      72px
      max(22px, env(safe-area-inset-right))
      72px
      max(22px, env(safe-area-inset-left));
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
  }

  .section h2 {
    font-size: clamp(34px, 9vw, 52px);
    line-height: 0.95;
  }

  .section-heading > p {
    max-width: none;
    font-size: 15px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.has-scroll-anim .package-grid:not(.is-revealed) .package-card[data-card="left"],
  body.has-scroll-anim .package-grid:not(.is-revealed) .package-card[data-card="right"] {
    transform: translateY(28px) scale(0.98);
    opacity: 0.4;
  }

  .package-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .package-card.featured { order: -1; }

  .package-card h3 { font-size: 22px; }
  .package-card > p { min-height: 0; }
  .price strong { font-size: 48px; }
  .package-number { margin-bottom: 28px; }

  .area-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .county-item {
    grid-template-columns: 40px 1fr 24px;
    padding: 22px 4px;
  }

  .county-item strong {
    font-size: clamp(18px, 5.5vw, 28px);
    line-height: 1.05;
  }

  .area-map {
    inset: auto 0 0 0;
    height: 50%;
    opacity: 0.08;
  }

  .review-grid { grid-template-columns: 1fr; }
  .review-grid blockquote {
    min-height: auto;
    padding: 28px 24px;
  }

  .review-grid blockquote > p { font-size: 16px; }

  .faq-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faqs summary {
    font-size: 15px;
    gap: 16px;
    line-height: 1.35;
  }

  .contact-section .form-button,
  .form-button {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
  }

  .direct-contact a { font-size: 22px; }

  .footer {
    padding:
      64px
      max(22px, env(safe-area-inset-right))
      calc(88px + env(safe-area-inset-bottom))
      max(22px, env(safe-area-inset-left));
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 48px;
  }

  .footer-top > div {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }

  .footer-top img { width: 140px; height: auto; }
  .footer h2 { font-size: clamp(30px, 8vw, 44px); }
  .footer-top .button { width: 100%; justify-content: space-between; }

  .footer-bottom {
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-text {
    display: flex;
    position: fixed;
    bottom: calc(16px + env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
    z-index: 50;
    background: var(--blue);
    color: #001019;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    padding: 15px 18px;
    min-height: 48px;
    align-items: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  }

  .floating-text span { margin-right: 8px; }
  .form-row { grid-template-columns: 1fr; }

  .process-spotlight { display: none; }
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 520px) {
  .hero {
    padding-top: calc(88px + env(safe-area-inset-top));
    gap: 10px;
  }

  .hero-display-word {
    font-size: clamp(30px, 10vw, 40px);
  }

  .logo-alive {
    width: min(94vw, 340px);
    margin: 0 auto 4px;
  }

  .hero-tag { font-size: 14px; }

  .trust-strip div {
    padding: 16px 12px;
    gap: 8px;
    font-size: 8px;
  }

  .section { padding-top: 64px; padding-bottom: 64px; }
  .section h2,
  .process-title { font-size: clamp(30px, 10vw, 40px); }

  .package-card { padding: 24px 20px; }
  .price strong { font-size: 42px; }
  .card-footer { flex-direction: column; align-items: flex-start; }

  .county-item { grid-template-columns: 32px 1fr 20px; }
  .county-item strong { font-size: clamp(16px, 6vw, 24px); }
}
