:root {
  --white:        #FFFFFF;
  --paper:        #FAFAF7;
  --ink:          #0A0A0A;
  --ink-2:        #1F2937;
  --ink-3:        #4B5563;
  --ink-4:        #9CA3AF;
  --hairline:     #E5E7EB;
  --hairline-2:   #F3F4F6;
  --blue:         #2563EB;
  --blue-deep:    #0F2A52;
  --blue-soft:    #DBEAFE;
  --yellow-glove: #F5C842;
  --shadow-soft:  0 1px 3px rgba(10,10,10,0.06), 0 8px 24px rgba(10,10,10,0.08);
  --shadow-lift:  0 2px 8px rgba(10,10,10,0.08), 0 30px 80px rgba(10,10,10,0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

.serif {
  font-family: 'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400; font-style: normal;
}
.italic {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic; font-weight: 400;
}

.container      { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.container-m    { max-width: 1080px; margin: 0 auto; padding: 0 40px; }
.container-s    { max-width: 840px;  margin: 0 auto; padding: 0 40px; }

/* TYPOGRAPHY */
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink-3);
  display: inline-block;
}
.eyebrow.light { color: rgba(255,255,255,0.85); }
.eyebrow.blue  { color: var(--blue); }

.display-xxl {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.display-xl {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.018em;
}
.display-l {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.014em;
}
.display-m {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.lead { font-size: clamp(17px, 1.3vw, 21px); color: var(--ink-2); line-height: 1.6; font-weight: 400; }
.body { font-size: 16px; color: var(--ink-2); line-height: 1.7; }
.small { font-size: 14px; color: var(--ink-3); line-height: 1.6; }
.tiny { font-size: 12px; color: var(--ink-4); letter-spacing: 0.02em; }

/* NAV */
nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 320ms ease, backdrop-filter 320ms ease, padding 320ms ease, border-color 320ms ease;
  border-bottom: 1px solid transparent;
}
nav.top.over-image .nav-links a,
nav.top.over-image .logo,
nav.top.over-image .logo .logo-mark,
nav.top.over-image .nav-cta { color: var(--white); }
nav.top.over-image .nav-cta { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.32); }
nav.top.over-image .nav-cta:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
nav.top.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  padding: 16px 40px;
  border-bottom-color: var(--hairline);
}
nav.top.scrolled .nav-links a,
nav.top.scrolled .logo,
nav.top.scrolled .nav-cta { color: var(--ink); }
nav.top.scrolled .nav-cta { background: var(--ink); color: var(--white); border-color: var(--ink); }
nav.top.scrolled .nav-cta:hover { background: var(--blue); border-color: var(--blue); }

.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  transition: color 220ms ease;
  text-decoration: none;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}
nav.top.scrolled .logo { filter: none; }
.logo .logo-mark {
  width: 36px; height: 28px;
  flex-shrink: 0;
}
.logo .logo-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: inherit;
  line-height: 1;
  white-space: nowrap;
}
.logo .ln-prime { color: inherit; }
.logo .ln-touch { color: #3B82F6; }
.footer-brand .logo {
  margin-bottom: 14px;
  color: var(--white);
}

.nav-links {
  display: flex; gap: 36px; align-items: center;
  font-size: 14px; font-weight: 500;
  color: var(--white);
  transition: color 220ms ease;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 220ms ease, opacity 220ms ease;
  opacity: 0.92;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: var(--blue);
  transition: right 320ms cubic-bezier(.22,.61,.36,1);
}
.nav-links a:hover::after { right: 0; }

.nav-right {
  display: flex; align-items: center; gap: 28px;
}
.nav-phone {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  display: flex; align-items: center; gap: 8px;
  transition: color 220ms ease;
}
.nav-phone svg { width: 16px; height: 16px; }
nav.top.scrolled .nav-phone { color: var(--ink); }

.nav-cta {
  padding: 12px 24px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  transition: all 240ms ease;
  box-shadow: 0 4px 14px rgba(37,99,235,0.32);
}
.nav-cta:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(37,99,235,0.44);
}
nav.top.over-image .nav-cta {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.nav-toggle { display: none; }

/* HERO FULL-BLEED */
.hero-bleed {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  color: var(--white);
  background: #0A0A0A;
}
.hero-bleed .hero-img {
  position: absolute; inset: 0;
  z-index: 1;
  background: #0A0A0A;
}
.hero-bleed .hero-img img,
.hero-bleed .hero-img video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bleed.in-view .hero-img img,
.hero-bleed.in-view .hero-img video { transform: scale(1); }
.hero-bleed::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.10) 28%, rgba(0,0,0,0.18) 60%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
}
.hero-bleed .hero-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%;
  padding: 120px 40px 80px;
  text-align: center;
}
.hero-bleed .eyebrow {
  margin-bottom: 28px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.32em;
  font-size: 11px;
}
.hero-bleed h1 {
  margin-bottom: 28px;
  color: var(--white);
  max-width: 14ch;
  letter-spacing: -0.02em;
}
.hero-bleed h1 em { font-style: italic; }
.hero-bleed .lead {
  margin-bottom: 56px;
  color: rgba(255,255,255,0.9);
  max-width: 540px;
  font-size: clamp(16px, 1.2vw, 19px);
}

/* Quote bar Compass-style */
.hero-cta-pill {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--blue);
  color: var(--white);
  padding: 22px 44px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 220ms ease, transform 220ms ease, box-shadow 320ms ease;
  box-shadow: 0 12px 36px rgba(37,99,235,0.5), 0 0 0 0 rgba(37,99,235,0.4);
  animation: cta-pulse 2.6s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 12px 36px rgba(37,99,235,0.5), 0 0 0 0 rgba(37,99,235,0.45); }
  50%      { box-shadow: 0 12px 36px rgba(37,99,235,0.55), 0 0 0 14px rgba(37,99,235,0); }
}
.hero-cta-pill:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}
.hero-cta-pill .arrow { display: inline-block; transition: transform 280ms cubic-bezier(.22,.61,.36,1); }
.hero-cta-pill:hover .arrow { transform: translateX(4px); }

/* Address autocomplete dropdown */
.address-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 0; right: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lift);
  list-style: none;
  padding: 8px;
  margin: 0;
  z-index: 1000;
  max-height: 380px;
  overflow-y: auto;
  text-align: left;
}
.address-suggestions[hidden] { display: none; }
.address-suggestions li {
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: background 160ms ease;
}
.address-suggestions li:hover,
.address-suggestions li[aria-selected="true"] {
  background: var(--paper);
}
.address-suggestions li .pin {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.address-suggestions li .addr-main {
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}
.address-suggestions li .addr-sub {
  font-size: 12.5px;
  color: var(--ink-3);
}
.address-suggestions li.empty {
  cursor: default;
  color: var(--ink-3);
  font-size: 13px;
  text-align: center;
  padding: 14px;
}
.address-suggestions li.empty:hover { background: transparent; }
.hero-bleed .quote-bar input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 8px;
  font-size: 15px;
  color: var(--ink);
  font-family: inherit;
  outline: none;
}
.hero-bleed .quote-bar input::placeholder { color: var(--ink-4); }
.hero-bleed .quote-bar button {
  background: var(--blue);
  color: var(--white);
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 220ms ease, transform 220ms ease;
  white-space: nowrap;
}
.hero-bleed .quote-bar button:hover { background: var(--blue-deep); transform: translateY(-1px); }

.hero-bleed .scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.hero-bleed .scroll-cue .line {
  display: inline-block;
  width: 36px; height: 1px;
  background: rgba(255,255,255,0.36);
  position: relative; overflow: hidden;
}
.hero-bleed .scroll-cue .line::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 50%; background: var(--white);
  animation: slide 2.6s cubic-bezier(.7,0,.3,1) infinite;
}
@keyframes slide {
  0%   { left: -50%; }
  100% { left: 100%; }
}

/* SECTION baseline */
section.block { padding: clamp(80px, 9vw, 140px) 0; position: relative; }
section.block.alt { background: var(--paper); }
section.block.dark { background: var(--ink); color: var(--white); }
section.block.dark .lead { color: rgba(255,255,255,0.92); }
section.block.dark .eyebrow { color: rgba(255,255,255,0.78); }
.standard-section .section-head .section-intro { color: rgba(255,255,255,0.92); }

.section-head { margin-bottom: 80px; max-width: 760px; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head h2 { margin-bottom: 18px; }
.section-head .section-intro { color: var(--ink-3); }
.section-head.dark .section-intro { color: rgba(255,255,255,0.75); }
.section-head.center { margin: 0 auto 80px; text-align: center; }

/* INTRO MANIFESTO */
.manifesto {
  padding: clamp(120px, 14vw, 200px) 0 clamp(80px, 9vw, 140px);
  text-align: center;
}
.manifesto .eyebrow { margin-bottom: 40px; }
.manifesto h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.28;
  letter-spacing: -0.012em;
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto 36px;
}
.manifesto h2 em { font-style: italic; color: var(--blue); }
.manifesto p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.7;
}

/* TWO PATHS — editorial cards */
.paths-bleed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper);
}
.path-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--white);
  overflow: hidden;
  transition: transform 480ms cubic-bezier(.22,.61,.36,1);
}
.path-card .path-img {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
  background: var(--paper);
}
.path-card .path-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1200ms cubic-bezier(.22,.61,.36,1);
}
.path-card:hover .path-img img { transform: scale(1.04); }
.path-card .path-body {
  padding: 56px 56px 64px;
  display: flex; flex-direction: column;
  gap: 20px;
}
.path-card .path-body .eyebrow { color: var(--blue); }
.path-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.014em;
  color: var(--ink);
}
.path-card h3 em { font-style: italic; }
.path-card p {
  color: var(--ink-3); line-height: 1.7;
  font-size: 16px; max-width: 44ch;
}
.path-card ul {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
  margin-top: 4px;
}
.path-card ul li {
  font-size: 14px;
  color: var(--ink-2);
  padding: 6px 0;
}
.path-card .path-link {
  margin-top: 12px;
  display: inline-flex; align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease, gap 220ms ease;
  align-self: flex-start;
}
.path-card .path-link:hover {
  border-bottom-color: var(--blue);
  gap: 14px;
}

/* VERTICALS strip */
.verticals-strip {
  padding: clamp(80px, 9vw, 130px) 0;
  background: var(--white);
}
.verticals-strip .v-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-top: 56px;
}
.v-card {
  background: var(--white);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background 320ms ease;
}
.v-card:hover { background: var(--paper); }
.v-card .v-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--blue);
  font-weight: 400;
}
.v-card h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.v-card p {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.65;
}
.verticals-strip .v-anchor {
  margin-top: 64px;
  text-align: center;
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 26px);
  color: var(--ink-2);
  letter-spacing: -0.005em;
}

/* THE STANDARD - manifesto dark */
.standard-section {
  background: var(--ink);
  color: var(--white);
  padding: clamp(120px, 14vw, 180px) 0;
}
.standard-section h2 {
  font-family: 'DM Serif Display', serif;
  color: var(--white);
}
.standard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 60px;
}
.std-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 24px;
  align-items: baseline;
}
.std-item .std-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--blue-soft);
  font-weight: 400;
}
.std-item .std-label {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.std-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
}

/* COVERAGE - editorial typographic */
.coverage-block {
  text-align: center;
  padding: clamp(120px, 14vw, 180px) 0;
}
.coverage-block .eyebrow { margin-bottom: 32px; }
.coverage-block h2 {
  font-family: 'DM Serif Display', serif;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 14ch;
  margin-left: auto; margin-right: auto;
}
.coverage-block .lead { max-width: 600px; margin: 0 auto 64px; color: var(--ink-3); }

.coverage-states {
  display: flex; justify-content: center;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--hairline);
  padding-top: 56px;
  flex-wrap: wrap;
}
.coverage-states .state {
  padding: 0 36px;
  border-right: 1px solid var(--hairline);
  text-align: center;
  min-width: 140px;
}
.coverage-states .state:last-child { border-right: none; }
.coverage-states .state .state-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.coverage-states .state .state-name.active { color: var(--blue); }
.coverage-states .state .state-status {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-weight: 500;
}
.coverage-states .state .state-status.now { color: var(--blue); }

.coverage-cities {
  margin-top: 56px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto; margin-right: auto;
}

/* TESTIMONIALS — Google review style */
.testimonials-strip {
  padding: clamp(120px, 14vw, 180px) 0;
  background: var(--paper);
}

/* Google bar (header above reviews) */
.google-bar {
  display: flex; justify-content: center;
  margin: 56px auto 36px;
  text-align: center;
}
.google-bar-left {
  display: inline-flex;
  align-items: center; gap: 14px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 14px;
  color: var(--ink-2);
}
.google-bar .g-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  display: inline-flex;
  margin-right: 4px;
}
.g-blue   { color: #4285F4; }
.g-red    { color: #EA4335; }
.g-yellow { color: #FBBC04; }
.g-green  { color: #34A853; }
.g-bar-rating { color: #1F2937; font-weight: 500; display: inline-flex; gap: 6px; align-items: center; }
.g-bar-rating strong { font-weight: 700; color: var(--ink); font-size: 16px; }
.g-bar-rating { color: #FBBC04; }
.g-bar-rating strong { color: var(--ink); }
.g-bar-count { color: var(--ink-3); font-size: 13px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.review-card {
  background: var(--white);
  padding: 32px 36px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  position: relative;
  transition: transform 480ms cubic-bezier(.22,.61,.36,1), box-shadow 480ms ease;
  display: flex; flex-direction: column;
  gap: 18px;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.review-head {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.review-avatar.tone-2 { background: #1F4E89; }
.review-avatar.tone-3 { background: #6B7AAA; }
.review-avatar.tone-4 { background: #16365E; }
.review-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.2;
}
.review-meta {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 3px;
  line-height: 1.3;
}
.review-google {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.02em;
}
.review-google .g-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--hairline);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #4285F4;
}
.review-stars {
  display: flex; gap: 3px;
  color: #FBBC04;
  font-size: 16px;
}
.review-stars + .review-date {
  font-size: 12px;
  color: var(--ink-3);
  margin-left: 6px;
}
.review-stars-row {
  display: flex; align-items: center; gap: 8px;
}
.review-body {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* FAQ */
.faq-block { padding: clamp(120px, 14vw, 180px) 0; }
.faq-list { border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px;
  padding: 32px 0;
  cursor: pointer;
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: color 220ms ease;
}
.faq-q:hover { color: var(--blue); }
.faq-toggle {
  width: 22px; height: 22px;
  position: relative; flex-shrink: 0;
}
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: var(--blue); transform: translate(-50%, -50%);
}
.faq-toggle::before { width: 14px; height: 1.5px; }
.faq-toggle::after  { width: 1.5px; height: 14px; transition: transform 280ms cubic-bezier(.7,0,.3,1); }
.faq-item.open .faq-toggle::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 380ms cubic-bezier(.22,.61,.36,1); }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding-bottom: 32px; padding-right: 56px;
  color: var(--ink-3); line-height: 1.7;
  font-size: 16px; max-width: 760px;
}

/* FINAL CTA */
.final-cta {
  background: var(--ink);
  color: var(--white);
  padding: clamp(120px, 14vw, 180px) 0;
  text-align: center;
}
.final-cta h2 {
  font-family: 'DM Serif Display', serif;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 18ch;
  margin-left: auto; margin-right: auto;
}
.final-cta h2 em { font-style: italic; }
.final-cta p {
  max-width: 540px; margin: 0 auto 56px;
  color: rgba(255,255,255,0.72);
  font-size: 17px; line-height: 1.65;
}
.final-cta .contact-form {
  max-width: 640px; margin: 64px auto 0;
  background: var(--white);
  color: var(--ink);
  border-radius: 16px;
  padding: 56px 56px 48px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.36), 0 0 0 1px rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 22px;
  text-align: left;
}
.final-cta .cf-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.final-cta label {
  display: flex; flex-direction: column; gap: 8px;
}
.final-cta label > span {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3);
  font-family: 'Inter', sans-serif;
}
.final-cta input,
.final-cta select,
.final-cta textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--hairline);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.final-cta input::placeholder,
.final-cta textarea::placeholder { color: var(--ink-4); }
.final-cta input:focus,
.final-cta select:focus,
.final-cta textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.final-cta select { cursor: pointer; }
.final-cta textarea { resize: vertical; min-height: 96px; }

.final-cta .cf-actions {
  margin-top: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
}
.final-cta .cf-submit {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--blue); color: var(--white);
  padding: 18px 44px;
  border-radius: 999px;
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.02em;
  border: none; cursor: pointer;
  transition: background 220ms ease, transform 220ms ease, box-shadow 320ms ease;
  box-shadow: 0 8px 22px rgba(37,99,235,0.32);
}
.final-cta .cf-submit:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(37,99,235,0.42); }
.final-cta .cf-submit:disabled { background: #6B7280; cursor: default; transform: none; box-shadow: none; }
.final-cta .cf-submit .arrow { display: inline-block; transition: transform 280ms ease; }
.final-cta .cf-submit:hover .arrow { transform: translateX(4px); }
.final-cta .cf-consent {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 460px;
  text-align: center;
  margin: 0;
}
@media (max-width: 680px) {
  .final-cta .contact-form { padding: 36px 24px 32px; }
}
.final-cta .micro {
  margin-top: 36px;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-style: italic;
  font-family: 'DM Serif Display', serif;
}
@media (max-width: 680px) {
  .final-cta .cf-row { grid-template-columns: 1fr; gap: 14px; }
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 26px;
}
.footer-brand .logo em { color: rgba(255,255,255,0.5); }
.footer-brand .tag {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; font-size: 14px; }
.footer-col li a { color: rgba(255,255,255,0.7); transition: color 220ms ease; }
.footer-col li a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.36);
}
.footer-bottom a { color: inherit; transition: color 220ms ease; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom-right { display: flex; gap: 24px; }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 900ms cubic-bezier(.22,.61,.36,1), transform 900ms cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1080px) {
  .container, .container-m { padding: 0 28px; }
  nav.top, nav.top.scrolled { padding: 18px 28px; }
  .nav-right { gap: 18px; }
  .paths-bleed { grid-template-columns: 1fr; }
  .verticals-strip .v-grid { grid-template-columns: repeat(2, 1fr); }
  .standard-grid { grid-template-columns: 1fr; gap: 0; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .coverage-states .state { min-width: auto; padding: 0 24px; }
}

@media (max-width: 680px) {
  .container, .container-m, .container-s { padding: 0 22px; }
  nav.top, nav.top.scrolled { padding: 16px 22px; }
  .nav-links { display: none; }
  .nav-phone span { display: none; }
  .nav-toggle {
    display: flex;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
  }
  .nav-toggle::before {
    content: ""; width: 18px; height: 1px;
    background: currentColor;
    box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
  }
  .hero-bleed { min-height: 600px; height: 92vh; }
  .hero-bleed h1 { font-size: clamp(44px, 12vw, 64px); max-width: 12ch; }
  .hero-bleed .quote-bar { flex-direction: column; gap: 8px; padding: 8px; border-radius: 16px; }
  .hero-bleed .quote-bar input { width: 100%; padding: 14px 12px; }
  .hero-bleed .quote-bar button { width: 100%; border-radius: 999px; }
  .path-card .path-body { padding: 40px 28px 48px; }
  .path-card ul { grid-template-columns: 1fr; }
  .verticals-strip .v-grid { grid-template-columns: 1fr; }
  section.block { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .coverage-states .state { border-right: none; border-bottom: 1px solid var(--hairline); padding: 18px 0; min-width: 100%; }
  .coverage-states .state:last-child { border-bottom: none; }
}
