/* ═══════════════════════════════════════════════════════════════════════════
   Rouz Law — shared site stylesheet
   Used by:  /index.html   (bio-dominant home)
             /expunctions/ (record-clearing landing)
             /injury/      (motor vehicle accidents landing)
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --ink: #0a0e14;
  --ink-2: #1a1f29;
  --muted: #5e6470;
  --line: #e7e8eb;
  --bg: #ffffff;
  --bg-soft: #f2ece0;
  --bg-soft-2: #ebe4d3;
  --accent: #1f3a5f;
  --accent-2: #2a4f80;
  --gold: #b08a4a;
  --cta: #16a34a;
  --cta-hover: #15803d;
  --cta-glow: 22, 163, 74;
  --radius: 4px;
  --radius-lg: 8px;
  --max: 1140px;
  --pad: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin: 0 0 0.6em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  letter-spacing: -0.015em;
  font-weight: 600;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 600;
}

h3 {
  font-size: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.005em;
}

p {
  margin: 0 0 1.1em;
  color: var(--ink-2);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s;
}

a:hover { color: var(--accent-2); }

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

/* ───── Topbar ───── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(150%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 68px;
  gap: 16px;
  /* Override the .container constraint — topbar spans the full viewport width
     with a comfortable side padding instead of the centered 1140px max-width. */
  max-width: none;
  padding-left: 32px;
  padding-right: 32px;
}

/* Explicit grid columns so the right-side group stays pinned to the right
   edge even when .topbar-nav has display:none at ≤880px (otherwise the
   cta group auto-flows into the middle column and the right 1fr collapses
   into empty space). */
.topbar-inner > .brand          { grid-column: 1; justify-self: start; }
.topbar-inner > .topbar-nav     { grid-column: 2; justify-self: center; }
.topbar-inner > .topbar-cta-wrap { grid-column: 3; justify-self: end; }

@media (max-width: 720px) {
  .topbar-inner {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  line-height: 1;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-mark {
  color: var(--gold);
  font-size: 1.55rem;
  line-height: 1;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.brand-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  line-height: 1;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.05;
  white-space: nowrap;
}

/* Optional nav links between brand and CTA */
.topbar-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.topbar-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.topbar-nav a:hover { color: var(--accent); }

.topbar-cta-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.topbar-availability {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  white-space: nowrap;
  line-height: 1;
}

.topbar-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--cta);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  white-space: nowrap;
  flex: 0 0 auto;
  box-shadow: 0 4px 12px rgba(var(--cta-glow), .25);
}

.topbar-call-btn:hover {
  background: var(--cta-hover);
  color: #fff;
  box-shadow: 0 6px 16px rgba(var(--cta-glow), .35);
}

.topbar-call-btn:active { transform: translateY(1px); }

@media (max-width: 880px) {
  .topbar-nav { display: none; }
  /* "Call or text · 24/7" hides on mobile — the persistent sticky
     bottom CTA bar (.mobile-cta-bar) replaces the topbar Call Now button
     and carries the call-to-action for the whole page. */
  .topbar-availability { display: none; }
  /* Hide the topbar Call Now button on mobile — the always-visible
     sticky bottom CTA bar replaces it. */
  .topbar-cta-wrap .topbar-call-btn { display: none; }

  /* Mobile topbar: simple flex row, brand far left, hamburger far right. */
  .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: none; /* defuse the desktop grid template */
  }
  .topbar-cta-wrap {
    display: inline-flex;
    align-items: center;
  }
}

/* On desktop, keep "Call Now" inline as a single phrase. */
.topbar-call-text > span + span { margin-left: 0.32em; }

@media (max-width: 880px) {
  .topbar-call-text > span + span { margin-left: 0; }
}

@media (max-width: 480px) {
  .topbar-inner {
    height: 60px;
    gap: 8px; /* tighter spacing so brand + Call Now + hamburger fit on small phones */
  }
  .brand-eyebrow { font-size: 0.6rem; letter-spacing: 0.14em; }
  .brand-name { font-size: 1.02rem; }
  .topbar-call-btn { padding: 7px 11px; font-size: 0.82rem; }
}

/* ───── Mobile hamburger menu button (top-right, mobile only) ───── */
.topbar-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: background 0.15s, border-color 0.15s;
}

.topbar-menu-btn:hover {
  background: var(--bg-soft);
  border-color: var(--gold);
}

.topbar-menu-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.hamburger {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 14px;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 6px; }
.hamburger span:nth-child(3) { top: 12px; }

.topbar-menu-btn[aria-expanded="true"] .hamburger span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.topbar-menu-btn[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.topbar-menu-btn[aria-expanded="true"] .hamburger span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

@media (max-width: 880px) {
  .topbar-menu-btn { display: inline-flex; }
}

/* ───── Mobile menu drop-down panel ───── */
.topbar-mobile-menu {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(10, 14, 20, 0.06);
}

.topbar-mobile-menu.open { display: block; }

@media (min-width: 881px) {
  .topbar-mobile-menu { display: none !important; }
}

.topbar-mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 6px 18px 18px;
}

.topbar-mobile-nav a {
  display: block;
  padding: 14px 4px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--line);
}

.topbar-mobile-nav a:hover { color: var(--accent); }

.topbar-mobile-nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

.topbar-mobile-nav .topbar-mobile-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--cta);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border-bottom: 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(var(--cta-glow), .25);
}

.topbar-mobile-nav .topbar-mobile-call:hover {
  background: var(--cta-hover);
  color: #fff;
}

.topbar-mobile-availability {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-align: center;
}

/* ═══════════ HERO (video-backed, used by expunctions + injury) ═══════════ */
.hero {
  background: var(--ink);
  background-image:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(31, 58, 95, .30) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(176, 138, 74, .12) 0%, transparent 60%);
  padding: 118px 28px 72px;
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-top: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
  z-index: 2;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 40%;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  background: #000;
}

.hero-video-mobile { display: none; }

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right,
      rgba(10, 14, 20, 1) 0%,
      rgba(10, 14, 20, 1) 38%,
      rgba(10, 14, 20, 0.6) 48%,
      rgba(10, 14, 20, 0.15) 60%,
      rgba(10, 14, 20, 0) 75%),
    linear-gradient(to bottom,
      rgba(10, 14, 20, 0.35) 0%,
      rgba(10, 14, 20, 0) 30%,
      rgba(10, 14, 20, 0) 70%,
      rgba(10, 14, 20, 0.45) 100%);
}

.hero-inner {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.hero-left { max-width: 560px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(176, 138, 74, .15);
  border: 1px solid rgba(176, 138, 74, .35);
  color: var(--gold);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: heroPulse 2.4s infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 7vw, 68px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 clamp(14px, 2vw, 22px);
  max-width: 760px;
  text-wrap: balance;
}

.hero h1 .accent,
.hero-h2 .accent { color: var(--gold); }

.hero-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(17px, 4.4vw, 38px);
  font-weight: 500;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 clamp(22px, 3vw, 30px);
  max-width: 720px;
  text-wrap: balance;
}

.hero-h2 .line { display: block; }

.hero-h2 .accent {
  font-style: italic;
  font-weight: 600;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14.5px, 2.9vw, 22px);
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 clamp(28px, 3.6vw, 36px);
  max-width: 660px;
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .82);
  font-size: 16.5px;
  line-height: 1.5;
}

.hero-checklist .ck {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(176, 138, 74, .18);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.hero-checklist .ck svg {
  width: 10px;
  height: 10px;
  color: var(--gold);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cta);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 18px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(var(--cta-glow), .35);
  margin: 4px 0 22px;
  min-width: 320px;
  transition: background .15s, transform .08s, box-shadow .15s;
}

.hero-cta:hover {
  background: var(--cta-hover);
  color: #fff;
  box-shadow: 0 12px 32px rgba(var(--cta-glow), .45);
  transform: translateY(-1px);
}

.hero-cta svg { transition: transform .15s; }
.hero-cta:hover svg { transform: translateX(2px); }

/* Secondary outlined CTA — useful when paired next to .hero-cta */
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 17px 28px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: border-color .15s, background .15s;
  margin: 4px 0 22px;
}

.hero-cta-secondary:hover {
  border-color: var(--gold);
  background: rgba(176, 138, 74, .08);
  color: #fff;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 880px) {
  .hero {
    padding: 88px 22px 56px;
    min-height: 460px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-video         { display: none; }
  .hero-video-mobile  { display: block; left: 0; width: 100%; }

  .hero-video-overlay {
    background:
      linear-gradient(to bottom,
        rgba(10, 14, 20, 0.69) 0%,
        rgba(10, 14, 20, 0.49) 55%,
        rgba(10, 14, 20, 0.69) 100%);
  }

  .hero-cta { min-width: 0; width: 100%; }
  .hero-cta-secondary { min-width: 0; width: 100%; }
}

@media (max-width: 640px) {
  .hero h1 { white-space: normal; }
}

/* ───── Section base ───── */
section {
  padding: 88px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--gold);
}

.contact .section-label {
  color: rgba(255, 255, 255, 0.85);
}

.contact .section-label::before {
  background: var(--gold);
}

@media (max-width: 640px) {
  section { padding: 56px 0; }
}

/* ───── About / bio sections ───── */
.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.4fr;
  gap: 64px;
  align-items: start;
}

.about-grid h2 {
  margin-top: 0;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .about-grid h2 {
    white-space: normal;
    font-size: clamp(1.4rem, 6.4vw, 1.7rem);
  }
}

.about-grid p { font-size: 1.05rem; }

.about-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}

.about-photo-frame {
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.about-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 18px 0 0;
  letter-spacing: -0.005em;
}

.about-tags {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-tags li {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--ink-2);
  background: var(--bg-soft);
}

@media (max-width: 880px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-photo-wrap {
    max-width: 320px;
    margin: 0 auto;
  }

  .about-photo-frame {
    inset: -10px -10px 10px 10px;
  }
}

/* ───── Bio-dominant home hero (no video) ───── */
/* Used on /index.html where the headshot + story are the hero. */
.bio-hero {
  background:
    radial-gradient(ellipse 60% 70% at 20% 0%, rgba(176, 138, 74, .08) 0%, transparent 60%),
    linear-gradient(180deg, #fffdf8 0%, #fff 100%);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
}

.bio-hero-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.3fr;
  gap: 64px;
  align-items: center;
}

.bio-hero-left {
  position: relative;
}

.bio-hero-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  max-width: 380px;
}

.bio-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}

.bio-hero-photo-frame {
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.55;
  max-width: 380px;
}

.bio-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}

.bio-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--gold);
}

.bio-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 16px;
  text-wrap: balance;
}

.bio-hero-lede {
  font-size: clamp(1.05rem, 1.7vw, 1.18rem);
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 620px;
}

.bio-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.bio-hero-cta-row .btn-primary,
.bio-hero-cta-row .btn-secondary {
  flex: 0 0 auto;
}

@media (max-width: 880px) {
  .bio-hero { padding: 48px 0 40px; }
  .bio-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bio-hero-photo-wrap { max-width: 280px; margin: 0 auto; }
  .bio-hero-photo-frame { max-width: 280px; }
  .bio-hero-cta-row .btn-primary,
  .bio-hero-cta-row .btn-secondary { width: 100%; }
}

/* ───── Generic CTA buttons (light-bg sections) ───── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cta);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 14px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(var(--cta-glow), .25);
  transition: background .15s, transform .08s, box-shadow .15s;
}

.btn-primary:hover {
  background: var(--cta-hover);
  color: #fff;
  box-shadow: 0 6px 18px rgba(var(--cta-glow), .35);
  transform: translateY(-1px);
}

.btn-primary svg { transition: transform .15s; }
.btn-primary:hover svg { transform: translateX(2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1.5px solid var(--ink);
  text-decoration: none;
  transition: background .15s, color .15s;
}

.btn-secondary:hover {
  background: var(--ink);
  color: #fff;
}

/* ───── Practice picker (big two-card chooser on the home page) ───── */
.picker {
  background: var(--bg-soft);
}

.picker-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.picker-intro h2 {
  margin: 8px 0 14px;
}

.picker-intro p {
  color: var(--muted);
  font-size: 1.04rem;
  margin: 0;
}

.picker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.picker-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10, 14, 20, 0.04);
}

.picker-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}

.picker-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(10, 14, 20, 0.10);
}

.picker-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: var(--radius);
  margin-bottom: 22px;
  color: var(--accent);
}

.picker-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
}

.picker-card p {
  margin: 0 0 22px;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.55;
}

.picker-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.picker-card-cta svg { transition: transform .15s; }
.picker-card:hover .picker-card-cta svg { transform: translateX(3px); }

@media (max-width: 720px) {
  .picker-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .picker-card { padding: 28px 24px 24px; }
}

/* ───── Trusted Partners marquee ───── */
.partners-section {
  background: var(--bg-soft);
  text-align: center;
  padding: 72px 0;
  overflow: hidden;
}

.partners-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 12px;
}

.partners-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
}

.partners-track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: partners-scroll 40s linear infinite;
  will-change: transform;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partners-track li {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
}

.partners-track img,
.partners-track svg {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.2s;
  display: block;
}

.partners-track img:hover,
.partners-track svg:hover {
  filter: grayscale(0%) opacity(1);
}

.partners-track img[src*="metlife"] {
  height: 96px;
  max-width: 400px;
  filter: grayscale(100%) opacity(0.95);
}

@keyframes partners-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-33.3333%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
    transform: none;
  }
}

@media (max-width: 720px) {
  .partners-section { padding: 56px 0; }
  .partners-track li { padding: 0 28px; }
  .partners-track img,
  .partners-track svg {
    height: 36px;
    max-width: 140px;
  }
  .partners-track img[src*="metlife"] {
    height: 72px;
    max-width: 280px;
  }
  .partners-track { animation-duration: 30s; }
}

/* ───── Practice areas (4-card grid on /expunctions and /injury) ───── */
.practice {
  background: #fff;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.practice-card {
  position: relative;
  background: #fff;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(10, 14, 20, 0.04);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0.85;
}

.practice-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 14, 20, 0.08);
}

.practice-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: var(--radius);
  margin-bottom: 20px;
  color: var(--accent);
}

.practice-card h3 { margin-bottom: 12px; }

.practice-card p {
  margin: 0;
  font-size: 0.97rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .practice-grid { grid-template-columns: 1fr; }
}

/* ───── Commitments grid (used on home + injury) ───── */
.commitments {
  background: #fff;
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.commitment {
  padding: 22px 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
}

.commitment-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(176, 138, 74, .15);
  border-radius: var(--radius);
  color: var(--gold);
  margin-bottom: 14px;
}

.commitment h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.commitment p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

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

@media (max-width: 480px) {
  .commitments-grid { grid-template-columns: 1fr; }
}

/* ───── Pricing ───── */
.pricing { background: var(--bg-soft); }

.pricing-header {
  text-align: center;
  margin-bottom: 36px;
}

.pricing-header h2 { margin: 8px 0 0; }

.pricing-grid {
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.pricing-grid .pricing-card {
  width: 100%;
  max-width: 640px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
}

.pricing-card h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.pricing-fees {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-fees li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.pricing-fees li > .pricing-fee-amount {
  flex-shrink: 0;
  line-height: 1.05;
  padding-top: 2px;
}

.pricing-fees li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pricing-fee-label {
  color: var(--ink-2);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-fee-desc {
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.45;
  margin-top: 2px;
  max-width: 280px;
}

.pricing-fee-sub {
  font-size: 0.78rem;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.75;
  margin-top: 2px;
}

.pricing-plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 14px;
  padding: 14px 18px;
  background: var(--cta);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(var(--cta-glow), .25);
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}

.pricing-plan-cta:hover {
  background: var(--cta-hover);
  color: #fff;
  box-shadow: 0 6px 18px rgba(var(--cta-glow), .35);
  transform: translateY(-1px);
}

.pricing-plan-cta:active { transform: translateY(0); }

.pricing-plan-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.pricing-plan-cta svg { flex-shrink: 0; }
.pricing-plan-cta-arrow { transition: transform 0.15s; }
.pricing-plan-cta:hover .pricing-plan-cta-arrow { transform: translateX(3px); }

.pricing-fee-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

@media (max-width: 880px) {
  .pricing-card { padding: 28px 24px; }
}

/* ───── "We don't get paid" feature card (injury) ───── */
.fee-promise {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  margin-top: 36px;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--gold);
}

.fee-promise::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(176, 138, 74, .15) 0%, transparent 70%);
  pointer-events: none;
}

.fee-promise h3 {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.fee-promise p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.04rem;
  margin: 0;
  max-width: 640px;
}

/* ───── Process ───── */
.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
  margin-top: 48px;
}

.process-step { position: relative; }

.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 12px;
}

.process-step h3 { margin-bottom: 8px; }

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

.process-step.process-step-guarantee {
  grid-column: span 1;
  padding: 22px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
}

.process-step.process-step-guarantee .process-num {
  margin-bottom: 8px;
}

@media (max-width: 1000px) {
  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}

@media (max-width: 640px) {
  .process-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ───── FAQ accordion ───── */
.faq { background: var(--bg-soft); }

.faq-intro { max-width: 600px; }

.faq-wrap {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
  border-color: rgba(176, 138, 74, 0.35);
}

.faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(10, 14, 20, 0.04);
}

.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.15s;
  letter-spacing: -0.005em;
}

.faq-btn:hover { color: var(--accent); }

.faq-arrow {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s;
}

.faq-item.open .faq-arrow { transform: rotate(90deg); }

.faq-answer {
  display: none;
  padding: 4px 22px 20px;
  font-size: 0.97rem;
  color: var(--ink-2);
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.faq-answer p { margin: 0 0 0.9em; }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer strong {
  color: var(--ink);
  font-weight: 600;
}

.faq-item.open .faq-answer { display: block; }

/* ───── Contact form ───── */
.contact {
  background: var(--ink);
  color: #fff;
  border-top: 0;
}

.contact h2 { color: #fff; }
.contact p { color: rgba(255, 255, 255, 0.78); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info { max-width: 380px; }

.contact-channels {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-channels li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-channels svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-channels a {
  color: #fff;
  font-weight: 500;
}

.contact-channels a:hover { color: var(--gold); }

.contact-channels small {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.97rem;
  transition: border-color 0.15s, background 0.15s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: 0;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.form-select option {
  background: var(--ink);
  color: #fff;
}

.form-textarea {
  min-height: 96px;
  resize: vertical;
}

.form-error {
  display: none;
  color: #f87171;
  font-size: 0.82rem;
  margin-top: 4px;
}

.form-error.show { display: block; }

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px 22px;
  background: var(--cta);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(var(--cta-glow), .25);
}

.form-submit:hover {
  background: var(--cta-hover);
  box-shadow: 0 6px 18px rgba(var(--cta-glow), .35);
}

.form-submit:active { transform: translateY(1px); }

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 16px 0 0;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-card { padding: 24px; }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ───── Footer ───── */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  padding: 36px 0;
  font-size: 0.86rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.footer-nav {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.footer-nav a:hover { color: var(--gold); }

.footer-disclaimer {
  max-width: 720px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
  line-height: 1.55;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

/* ───── Table of contents (injury page) ───── */
.toc {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.toc .container { text-align: center; }

.toc .section-label { margin-bottom: 14px; }

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.toc-list li {
  display: inline-flex;
}

.toc-list a {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.toc-list a:hover {
  border-color: var(--gold);
  color: var(--accent);
  background: #fff;
}

@media (max-width: 880px) {
  /* On mobile, stack the TOC into a clean 2-column grid instead of an
     uneven wrap-flex layout where pills of different widths look ragged. */
  .toc-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    justify-content: stretch;
  }
  .toc-list li { display: block; }
  .toc-list a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 8px 10px;
  }
}

@media (max-width: 640px) {
  .toc { padding: 22px 0; }
  .toc-list { gap: 6px 8px; }
  .toc-list a { padding: 7px 8px; font-size: 0.86rem; }
}

/* ───── Inline CTAs between sections ───── */
.inline-cta-wrap {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.inline-cta {
  margin: 0;
  text-align: center;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.7;
}

.inline-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px 6px;
  padding: 10px 20px;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(var(--cta-glow), .28);
  transition: background .15s, box-shadow .15s, transform .08s;
}

.inline-cta a:hover {
  background: var(--cta-hover);
  color: #fff;
  box-shadow: 0 6px 16px rgba(var(--cta-glow), .38);
  transform: translateY(-1px);
}

.inline-cta a:active { transform: translateY(0); }

@media (max-width: 640px) {
  .inline-cta-wrap { padding: 20px 0; }
  .inline-cta { font-size: 0.95rem; }
  .inline-cta a {
    display: inline-flex;
    margin: 8px 0 4px;
    padding: 10px 18px;
    font-size: 0.92rem;
  }
}

/* ───── Long-form content sections (case-worth, injuries, after-wreck, tx-law, cities) ───── */
.case-worth,
.injuries,
.after-wreck,
.tx-law,
.cities {
  background: #fff;
}

/* Alternating tint to give visual rhythm */
.injuries,
.tx-law {
  background: var(--bg-soft);
}

.case-worth h3,
.injuries h3,
.tx-law h3,
.cities h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 28px 0 8px;
}

.case-worth p,
.injuries p,
.after-wreck p,
.tx-law p,
.cities p {
  font-size: 1.02rem;
  line-height: 1.65;
}

/* ───── Step list (after-wreck) ───── */
.step-list {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 24px 0 0;
}

.step-list li {
  position: relative;
  padding: 16px 18px 16px 56px;
  margin: 0 0 12px;
  background: var(--bg-soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  counter-increment: step;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-2);
}

.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: 50%;
  line-height: 1;
}

.step-list strong {
  color: var(--ink);
  font-weight: 600;
}

/* ───── City list (cities section) ───── */
.city-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.city-list li {
  padding: 12px 16px;
  background: var(--bg-soft);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.98rem;
  color: var(--ink-2);
  line-height: 1.55;
}

.city-list strong { color: var(--ink); font-weight: 600; }

/* ───── Sticky mobile bottom CTA bar ───── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 14, 20, 0.96);
  backdrop-filter: saturate(150%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 8px;
}

.mobile-cta-bar a {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-cta-call {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 4px 12px rgba(var(--cta-glow), .35);
}

.mobile-cta-call:hover,
.mobile-cta-call:active {
  background: var(--cta-hover);
  color: #fff;
}

.mobile-cta-form {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--gold);
}

.mobile-cta-form:hover,
.mobile-cta-form:active {
  background: rgba(176, 138, 74, 0.12);
  color: #fff;
}

@media (max-width: 880px) {
  .mobile-cta-bar { display: flex; }
  /* Add bottom padding to footer so sticky bar doesn't cover the last line of disclaimer */
  footer { padding-bottom: 96px; }
}

/* ═══════════ Audit additions (May 2026) ═══════════
   Supports: home bio-hero facts/tagline, partners explainer line, author
   attribution line, the extra long-form sections (eligibility / compare /
   wreck-types) and the data/comparison tables. */

/* Bio-hero supporting text (home) */
.bio-hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.bio-hero-facts {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 620px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

/* Partners explainer line (all three pages) */
.partners-note {
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Author / attribution line */
.author-note {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--muted);
  text-align: center;
}

/* Extra long-form sections — match the existing case-worth / tx-law treatment */
.eligibility,
.wreck-types { background: var(--bg-soft); }
.compare { background: #fff; }

.eligibility h3,
.compare h3,
.wreck-types h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 28px 0 8px;
}

.eligibility p,
.compare p,
.wreck-types p {
  font-size: 1.02rem;
  line-height: 1.65;
}

/* Eligibility checklist */
.elig-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.elig-list li {
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.98rem;
  color: var(--ink-2);
  line-height: 1.55;
}

.elig-list strong { color: var(--ink); font-weight: 600; }

/* Data / comparison tables */
.data-table-wrap {
  margin: 24px 0 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.97rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}

.data-table thead th {
  background: var(--ink);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.data-table tbody th {
  width: 26%;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-soft);
}

.data-table tbody td { color: var(--ink-2); }

.data-table tbody tr:last-child th,
.data-table tbody tr:last-child td { border-bottom: 0; }

@media (max-width: 640px) {
  .data-table { font-size: 0.9rem; }
  .data-table th,
  .data-table td { padding: 10px 12px; }
  .data-table tbody th { width: 34%; }
}
