/* ============================================================
   VIRTECH SYSTEMS v4 — EDITORIAL LIGHT
   Cream base · Open Sans mega-type · teal-deep accent
   Identity: #00C3D8 teal (graphics only) · #009dae accent text
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Open Sans';
  src: url('/assets/fonts/open-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('/assets/fonts/open-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('/assets/fonts/open-sans-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('/assets/fonts/open-sans-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #FAFAF5;
  --bg-alt: #F2F1EA;
  --ink: #1a1d20;
  --ink-2: #2d3035;
  --teal: #00C3D8;        /* graphics, pins, rules ONLY — never text */
  --teal-deep: #009dae;   /* accent text, large sizes only */
  --teal-soft: rgba(0, 195, 216, 0.10);
  --muted: #6B6B6B;
  --border: #E5E3DC;
  --cream-on-dark: #FAFAF5;
  --body: 'Open Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --max-w: 1440px;
  --pad-x: 56px;
  --radius: 14px;
  --transition: 0.25s ease;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }
[id] { scroll-margin-top: 90px; }
::selection { background: rgba(0, 195, 216, 0.35); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--teal-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 999;
  background: var(--ink);
  color: var(--cream-on-dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.skip-link:focus { left: 12px; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* Accent text — ALWAYS teal-deep (contrast gate), large contexts only */
.accent { color: var(--teal-deep); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 245, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(26, 29, 32, 0.06); }
.site-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.header-brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.header-wordmark { height: 26px; width: auto; }

.main-nav ul { display: flex; gap: 4px; list-style: none; }
.main-nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 999px;
  transition: all var(--transition);
}
.main-nav a:hover { background: var(--bg-alt); color: var(--ink); }
.main-nav a.active { font-weight: 700; color: var(--ink); }

.header-actions { display: inline-flex; align-items: center; gap: 16px; }
.phone-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.phone-link svg { width: 14px; height: 14px; }
.btn-cta {
  background: var(--ink);
  color: var(--cream-on-dark);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: background var(--transition);
}
.btn-cta:hover { background: var(--teal-deep); }
.btn-cta.ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-cta.ghost:hover { border-color: var(--teal-deep); color: var(--teal-deep); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 65px 0 0 0;
  z-index: 99;
  background: var(--bg);
  padding: 32px 22px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav > a {
  font-size: 22px;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav > a.active { color: var(--teal-deep); }
.mobile-nav-actions { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.mobile-nav-phone { font-weight: 700; text-align: center; font-size: 16px; }
body.nav-open { overflow: hidden; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--ink);
  color: var(--cream-on-dark);
  padding: 17px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  transition: all var(--transition);
}
.btn-primary:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(0, 157, 174, 0.32);
}
.btn-primary .arrow { transition: transform var(--transition); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  color: var(--ink);
  padding: 17px 8px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 2px solid var(--ink);
  transition: all var(--transition);
}
.btn-ghost:hover { color: var(--teal-deep); border-color: var(--teal-deep); }

/* On dark/teal bands */
.band-teal .btn-primary { background: var(--cream-on-dark); color: var(--ink); }
.band-teal .btn-primary:hover { background: var(--ink); color: var(--cream-on-dark); box-shadow: 0 14px 28px -8px rgba(0,0,0,0.3); }

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section { padding: 110px 0; }
.section.alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  background: var(--teal-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 32px;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
.eyebrow-plain {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 18px;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(0,195,216,0.4); }
  50% { opacity: 0.75; transform: scale(0.92); box-shadow: 0 0 0 6px rgba(0,195,216,0); }
}

.section-head { max-width: 860px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.section-lede {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink-2);
  margin-top: 20px;
  max-width: 620px;
}
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }

/* ============================================================
   HERO (index) — from approved v4-mockups/hero.html
   ============================================================ */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--pad-x) 60px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 70px);
}
.hero-content { max-width: 720px; }
.hero-headline {
  font-weight: 800;
  font-size: clamp(52px, 8vw, 128px);
  line-height: 0.93;
  letter-spacing: -0.04em;
}
.hero-headline .line { display: block; }
.hero-sub {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 36px 0 40px;
  max-width: 520px;
}
.cta-row { display: inline-flex; gap: 20px; align-items: center; flex-wrap: wrap; }

.trust-strip {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-strip .stars { color: #b8860b; font-size: 16px; letter-spacing: 2px; }
.trust-strip .rating { font-size: 14px; color: var(--ink-2); font-weight: 500; }
.trust-strip .rating strong { color: var(--ink); font-weight: 700; }
.trust-strip .divider { width: 1px; height: 18px; background: var(--border); }
.trust-strip .partner-note { font-size: 13px; color: var(--muted); font-weight: 500; letter-spacing: 0.3px; }

/* --- Florida map --- */
.hero-map { position: relative; width: 100%; max-width: 560px; margin-left: auto; }
.map-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.map-label strong {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.map-svg-wrap { position: relative; aspect-ratio: 600 / 480; width: 100%; }
.florida-svg { width: 100%; height: 100%; display: block; }
.fl-outline {
  fill: none;
  stroke: var(--ink);
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.pin { fill: var(--teal-deep); }
.pin-pulse {
  fill: var(--teal);
  opacity: 0.5;
  transform-origin: center;
  transform-box: fill-box;
  animation: pinPulse 2.6s ease-out infinite;
}
.pin-pulse.delay-1 { animation-delay: 0.4s; }
.pin-pulse.delay-2 { animation-delay: 0.8s; }
.pin-pulse.delay-3 { animation-delay: 1.2s; }
.pin-pulse.delay-4 { animation-delay: 1.6s; }
.pin-pulse.delay-5 { animation-delay: 2.0s; }
@keyframes pinPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3.2); opacity: 0; }
}
.home-pin .pin { fill: var(--ink); }
.home-label { font-family: var(--body); font-size: 14px; font-weight: 800; letter-spacing: 0.3px; fill: var(--ink); }

.city-strip {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.city-strip .city { color: var(--ink-2); }
.city-strip .city.home { color: var(--teal-deep); font-weight: 700; }
.city-strip .sep { color: var(--border); }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px var(--pad-x) 72px;
}
.page-hero h1 {
  font-weight: 800;
  font-size: clamp(40px, 6vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 1000px;
}
.page-hero .hero-sub { margin-bottom: 0; }

/* ============================================================
   PULL QUOTE (homepage section 2)
   ============================================================ */
.pull-quote {
  border-left: 4px solid var(--teal);
  padding-left: clamp(24px, 4vw, 56px);
  max-width: 980px;
}
.pull-quote blockquote {
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.pull-quote figcaption {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-2);
}
.pull-quote figcaption strong { color: var(--ink); }
.pull-quote .google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

/* ============================================================
   TEAL BAND — full-bleed outcomes (homepage section 3)
   ============================================================ */
.band-teal {
  background: var(--teal-deep);
  color: var(--cream-on-dark);
  padding: 110px 0;
}
.band-teal .eyebrow-plain { color: var(--cream-on-dark); opacity: 0.85; }
.band-teal .section-head h2 { color: #fff; }
.band-teal .section-lede { color: rgba(250, 250, 245, 0.85); }

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(250, 250, 245, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}
.outcome-pair {
  background: var(--teal-deep);
  padding: 40px 44px;
}
.outcome-pair .before {
  font-size: 14px;
  font-weight: 600;
  color: rgba(250, 250, 245, 0.68);
  text-decoration: line-through;
  text-decoration-color: rgba(250, 250, 245, 0.4);
  margin-bottom: 10px;
}
.outcome-pair .after {
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.01em;
}
.outcome-pair .detail {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(250, 250, 245, 0.85);
}

/* ============================================================
   STEP SEQUENCE (How it works)
   ============================================================ */
.step-seq { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding: 44px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--border); }
.step-num {
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--teal-deep);
}
.step h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.step p { color: var(--ink-2); max-width: 640px; }

/* ============================================================
   QUOTE CARDS (testimonials)
   ============================================================ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.quote-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 28px;
  border-top: 3px solid var(--teal);
}
.quote-card blockquote {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  flex: 1;
}
.quote-card .who { font-size: 14px; }
.quote-card .who strong { display: block; color: var(--ink); font-weight: 700; }
.quote-card .who span { color: var(--muted); }
.quote-card p { font-size: 16px; line-height: 1.65; color: var(--ink-2); }
.quote-card h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }

/* Two-up variant (e.g. leadership pair) */
.quote-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 1080px; }

/* Long-form editorial prose */
.prose { max-width: 68ch; }
.prose p { color: var(--ink-2); margin-bottom: 18px; font-size: 17px; line-height: 1.75; }
.prose p:last-child { margin-bottom: 0; }

/* ============================================================
   INDUSTRY ROW (plain type treatment)
   ============================================================ */
.industry-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}
.industry-row .sep { color: var(--border); font-weight: 400; }

/* ============================================================
   LOGO BAR
   ============================================================ */
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(24px, 3vw, 48px);
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-bar img {
  height: 28px;
  width: auto;
  opacity: 0.62;
  filter: grayscale(1);
  transition: all var(--transition);
}
.logo-bar img:hover { opacity: 1; filter: grayscale(0); }

/* ============================================================
   STAT ROW
   ============================================================ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-cell { background: var(--bg); padding: 36px 28px; }
.section.alt .stat-cell { background: var(--bg-alt); }
.stat-cell .num {
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.stat-cell .label {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   SERVICE LIST (ruled rows, editorial)
   ============================================================ */
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(32px, 5vw, 88px); }
.svc-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.svc-item .idx {
  font-size: 14px;
  font-weight: 800;
  color: var(--teal-deep);
  padding-top: 3px;
  letter-spacing: 0.5px;
}
.svc-item h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.01em; }
.svc-item p { font-size: 15px; color: var(--ink-2); }

/* ============================================================
   TIMELINE (about)
   ============================================================ */
.timeline { position: relative; padding-left: 36px; max-width: 760px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; padding: 0 0 48px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--bg);
}
.timeline-item .when {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.timeline-item h3 { font-size: 21px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.timeline-item p { color: var(--ink-2); max-width: 600px; }

/* ============================================================
   PLAN CARDS (pricing)
   ============================================================ */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  align-items: stretch;
}
.plan-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.plan-card.featured { border-top: 5px solid var(--teal); box-shadow: 0 18px 44px -18px rgba(26,29,32,0.14); }
.plan-card .plan-name { font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal-deep); }
.plan-card .plan-price { font-size: clamp(28px, 2.6vw, 38px); font-weight: 800; letter-spacing: -0.02em; margin: 14px 0 6px; }
.plan-card .plan-sub { font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.plan-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 30px; }
.plan-card li { padding-left: 26px; position: relative; font-size: 15px; color: var(--ink-2); }
.plan-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 2.5px solid var(--teal-deep);
  border-bottom: 2.5px solid var(--teal-deep);
  transform: rotate(-45deg);
}

/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
.accordion { max-width: 860px; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  letter-spacing: -0.01em;
}
.faq-q .chev {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--teal-deep);
  border-bottom: 2.5px solid var(--teal-deep);
  transform: rotate(45deg);
  transition: transform var(--transition);
  margin-top: -4px;
}
.faq-item.open .faq-q .chev { transform: rotate(225deg); margin-top: 4px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner { padding: 0 4px 28px; color: var(--ink-2); max-width: 720px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 700; letter-spacing: 0.4px; }
.form-field label .req { color: var(--teal-deep); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal-deep);
  box-shadow: 0 0 0 3px var(--teal-soft);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field .error-msg { font-size: 13px; font-weight: 600; color: #b3261e; display: none; }
.form-field.invalid input, .form-field.invalid textarea { border-color: #b3261e; }
.form-field.invalid .error-msg { display: block; }
.form-status { margin-top: 20px; font-size: 15px; font-weight: 600; display: none; }
.form-status.success { display: block; color: var(--teal-deep); }
.form-status.error { display: block; color: #b3261e; }

/* ============================================================
   CONTACT RAIL
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-rail {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 36px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.contact-rail h3 { font-size: 14px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.contact-rail .big-phone { font-size: clamp(24px, 2.2vw, 32px); font-weight: 800; letter-spacing: -0.02em; }
.contact-rail address { font-style: normal; color: var(--ink-2); line-height: 1.7; }
.contact-rail address strong { color: var(--ink); }

/* ============================================================
   BOOKING SHELL
   ============================================================ */
.booking-section { padding: 110px 0; background: var(--bg-alt); }
.booking-shell {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px -24px rgba(26, 29, 32, 0.18);
}
.booking-shell iframe { width: 100%; min-height: 620px; border: none; display: block; }
.booking-fallback { padding: 52px 44px; text-align: center; }
.booking-fallback h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 10px; }
.booking-fallback p { color: var(--ink-2); margin-bottom: 28px; }
.booking-fallback .btn-primary { width: 100%; }
.booking-alt { margin-top: 18px !important; margin-bottom: 0 !important; font-size: 14px; color: var(--muted) !important; }
.booking-alt a { color: var(--teal-deep); font-weight: 700; }

.response-note {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pulse-dot {
  width: 9px; height: 9px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}

/* ============================================================
   LEGAL PROSE
   ============================================================ */
.legal { max-width: 68ch; padding-bottom: 110px; }
.legal .effective { font-size: 14px; color: var(--muted); margin-bottom: 44px; }
.legal h2 { font-size: 24px; font-weight: 800; letter-spacing: -0.01em; margin: 48px 0 16px; }
.legal h3 { font-size: 18px; font-weight: 700; margin: 32px 0 12px; }
.legal p, .legal li { color: var(--ink-2); margin-bottom: 14px; }
.legal ul, .legal ol { padding-left: 24px; margin-bottom: 18px; }
.legal a { color: var(--teal-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FOOTER — ink dark bookend
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(250, 250, 245, 0.75);
  margin-top: 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 88px var(--pad-x) 64px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: clamp(32px, 4vw, 72px);
}
.footer-wordmark { height: 30px; width: auto; margin-bottom: 24px; }
.footer-brand p { font-size: 14.5px; line-height: 1.7; max-width: 340px; }
.footer-portal-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--cream-on-dark);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
}
.footer-col h2 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 250, 245, 0.5);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; }
.footer-col address strong { color: var(--cream-on-dark); }
.footer-phone { font-size: 20px; font-weight: 800; color: var(--cream-on-dark); letter-spacing: -0.01em; }
.footer-response { margin-top: 10px; font-size: 13px; }

.footer-bottom {
  border-top: 1px solid rgba(250, 250, 245, 0.12);
}
.footer-bottom, .footer-bottom-links { display: flex; align-items: center; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 26px var(--pad-x);
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(250, 250, 245, 0.55);
}
.footer-bottom-links { gap: 24px; }
.footer-bottom-links a:hover { color: #fff; }

/* ============================================================
   SCROLL TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: var(--cream-on-dark);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.scroll-top:hover { background: var(--teal-deep); }

/* ============================================================
   MOTION
   ============================================================ */
.anim-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-right { opacity: 0; transform: translateX(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.in-view { opacity: 1; transform: none; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim-up, .anim-left, .anim-right { opacity: 1; transform: none; transition: none; }
  .pin-pulse, .eyebrow .dot, .pulse-dot { animation: none; }
  .pin-pulse { opacity: 0; }
  * { transition-duration: 0.01ms !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --pad-x: 36px; }
  .hero { grid-template-columns: 1fr; gap: 72px; padding-top: 56px; min-height: 0; }
  .hero-map { margin: 0 auto; max-width: 480px; }
  .quote-grid, .quote-grid.two { grid-template-columns: 1fr; gap: 36px; }
  .plan-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .contact-split { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .outcome-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  :root { --pad-x: 22px; }
  .main-nav { display: none; }
  .header-actions .btn-cta { display: none; }
  .header-actions .phone-link .full { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .band-teal, .booking-section { padding: 72px 0; }
  .hero { padding: 44px var(--pad-x) 40px; gap: 48px; }
  .hero-headline { font-size: clamp(44px, 12vw, 88px); }
  .page-hero { padding: 56px var(--pad-x) 44px; }
  .page-hero h1 { font-size: clamp(36px, 10vw, 64px); }
  .trust-strip { gap: 14px; }
  .trust-strip .divider { display: none; }
  .map-label strong { font-size: 28px; }
  .svc-list { grid-template-columns: 1fr; }
  .step { grid-template-columns: 72px 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 60px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .logo-bar { justify-content: center; }
}
