/* ============ TOKENS ============ */
:root {
  --font-sans: 'Instrument Sans', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  --white: #FFFFFF;
  --neutral: #F1F1F1;
  --ink: #18212B;
  --ink-soft: #4A5561;
  --gray-600: #55616D;
  --gray-650: #5E6670;
  --gray-700: #5E7284;
  --placeholder: #98A2AC;
  --border: #D8DEE3;

  --navy: #35516B;
  --navy-hover: #263D53;
  --navy-deep: #16243A;
  --navy-deep-2: #0F1B2B;
  --navy-deep-3: #1B2C42;

  --orange: #D4552E;

  /* The dialable number, matching the 888 in the wordmark. At 4.09:1 on
     white this clears WCAG AA only as LARGE text (>=24px), which every
     display treatment of the number is. Do not reuse it for the number
     at small sizes — see the 14px link in .form-alert__body. */
  --phone: var(--orange);
  --phone-hover: #B0421F;

  --error-border: #A5372A;
  --error-text: #8E2F23;
  --error-bg: #FBEDE9;
  --error-bg-soft: #FDF6F4;

  --success-bg: #F5F8FA;

  --container: 1240px;
  --gutter: 20px;
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  font-family: var(--font-sans);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-hover); }
button { font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }
input, textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  width: 100%;
  display: block;
}
input::placeholder, textarea::placeholder { color: var(--placeholder); }
.icon { display: block; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.brand-accent { color: var(--orange); }
.phone-bold { font-weight: 700; }

.section-eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}

.text-link {
  display: inline-block;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1.5px solid rgba(53, 81, 107, 0.35);
  padding-bottom: 2px;
}
.text-link:hover { border-bottom-color: var(--navy-hover); }

/* ============ BUTTONS ============ */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 7px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}
.btn--call { background: var(--navy); color: var(--white); }
.btn--call:hover { background: var(--navy-hover); color: var(--white); }
.btn--header {
  min-height: 52px;
  padding: 0 18px;
  font-size: 16.5px;
  gap: 9px;
}
.btn--hero-primary {
  min-height: 62px;
  background: var(--white);
  color: var(--navy-deep);
  font-size: 18px;
  letter-spacing: -0.012em;
}
.btn--hero-primary:hover { background: #EFF2F5; color: var(--navy-deep); }
.btn--hero-secondary {
  min-height: 54px;
  border: 1px solid rgba(255,255,255,0.55);
  background: transparent;
  color: var(--white);
  font-size: 16px;
}
.btn--hero-secondary:hover { color: var(--white); border-color: rgba(255,255,255,0.9); }
.btn--submit {
  min-height: 58px;
  background: var(--navy);
  color: var(--white);
  font-size: 17.5px;
  width: 100%;
}
.btn--submit:hover { background: var(--navy-hover); }
.btn--submit:disabled { opacity: 0.72; cursor: default; }
.btn--ghost {
  display: inline-flex;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  color: var(--white);
  font-size: 16px;
}
.btn--ghost:hover { color: var(--white); border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--closing {
  min-height: 58px;
  font-size: 17.5px;
  width: 100%;
}
/* Inside the dark attribution panel the navy fill would vanish — invert to white.
   Scoped to .closing-card so the same class stays navy on the light success card. */
.closing-card .btn--closing {
  background: var(--white);
  color: var(--navy-deep);
}
.closing-card .btn--closing:hover { background: #EFF2F5; color: var(--navy-deep); }

/* ============ HEADER ============ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px var(--gutter);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.logo { font-size: 29px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
/* 12.5px keeps "A service of The Lampin Law Firm" on one line at 390px. */
.tagline { font-size: 12.5px; line-height: 1.35; color: var(--gray-600); }
.site-header__brand { display: flex; flex-direction: column; gap: 5px; }
.header-actions { display: flex; align-items: center; gap: 24px; }
.site-header__phone { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,27,43,0.97) 0%, rgba(15,27,43,0.98) 52%, rgba(21,36,58,0.99) 100%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: 30px var(--gutter) 34px;
}
.hero-eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 20px; }
.hero-eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex: 0 0 7px; }
.hero-eyebrow span:last-child {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.hero-headline {
  margin: 0 0 16px;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -0.044em;
  font-weight: 600;
  color: var(--white);
  text-wrap: pretty;
}
.hero-subhead {
  margin: 0 0 26px;
  max-width: 21em;
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.84);
  text-wrap: pretty;
}

.hero-phone-block {
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-phone-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  margin-bottom: 10px;
}
.hero-phone-link {
  display: block;
  font-size: clamp(38px, 11vw, 46px);
  font-weight: 500;
  line-height: 1;
  color: var(--phone);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.hero-phone-link:hover { color: var(--phone); opacity: 0.85; }
.hero-phone-helper {
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.66);
}

.hero-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.hero-rating__score {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.hero-rating__stars { display: flex; gap: 2px; color: #F5B544; }
.hero-rating__count {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.hero-rating__note {
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}

.hero-cta-group { display: flex; flex-direction: column; gap: 10px; padding-top: 26px; }
.hero-card-slot:empty { display: none; }

/* ============ TRUST STRIP ============ */
.stats {
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.14);
}
.stats__grid {
  display: grid;
  /* minmax(0,1fr) — plain 1fr floors at min-content, and the nowrap
     "20,000+" would then push the whole document wider than the viewport. */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--container);
  margin: 0 auto;
}
.stat { display: flex; flex-direction: column; gap: 7px; padding: 26px 12px 28px var(--gutter); }
.stat--divided {
  padding-left: 14px;
  padding-right: 14px;
  border-left: 1px solid rgba(255,255,255,0.22);
  border-right: 1px solid rgba(255,255,255,0.22);
}
.stat:last-child { padding-right: var(--gutter); padding-left: 14px; }
.stat__number {
  font-size: clamp(22px, 7vw, 33px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.stat__plus { font-size: 0.6em; vertical-align: 0.30em; margin-left: 0.03em; letter-spacing: 0; }
.stat__label { font-size: 12.5px; line-height: 1.35; color: rgba(255,255,255,0.78); }

/* Below ~400px the three columns get tight enough that the longest label
   ("legal experience") spills past its cell — buy the space back. */
@media (max-width: 400px) {
  .stat { padding-left: 14px; padding-right: 8px; }
  .stat--divided { padding-left: 10px; padding-right: 10px; }
  .stat:last-child { padding-left: 10px; padding-right: 14px; }
  .stat__label { font-size: 11.5px; }
}

/* ============ CASE REVIEW / FORM ============ */
.case-review {
  padding: 52px var(--gutter);
  background: var(--neutral);
  scroll-margin-top: 12px;
}
.case-review__heading h2 {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.038em;
  font-weight: 600;
  margin: 0 0 12px;
  text-wrap: pretty;
}
.case-review__heading p {
  margin: 0 0 28px;
  max-width: 24em;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.case-review-card {
  padding: 24px 20px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
}
.case-review-card__heading-desktop { display: none; }

#case-review-form { display: flex; flex-direction: column; gap: 18px; }

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.field { display: flex; flex-direction: column; gap: 7px; }
.field > label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field input[type="text"],
.field input[type="tel"],
.field textarea {
  height: 54px;
  padding: 0 15px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
}
.field textarea { height: auto; padding: 13px 15px; line-height: 1.45; resize: none; }
.field input[type="text"]:focus,
.field input[type="tel"]:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(53, 81, 107, 0.22);
}
.field__error { display: none; font-size: 13.5px; line-height: 1.45; color: var(--error-text); }
.field.has-error input, .field.has-error textarea { border: 2px solid var(--error-border); }
.field.has-error input:focus, .field.has-error textarea:focus {
  border-color: var(--error-border);
  box-shadow: 0 0 0 3px rgba(165, 55, 42, 0.18);
}
.field.has-error .field__error { display: block; }

.field--consent { border-radius: 6px; }
.field--consent.has-error {
  padding: 12px 14px;
  border: 2px solid var(--error-border);
  background: var(--error-bg-soft);
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 44px;
  padding: 4px 0;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: var(--navy);
}
.consent-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-600);
  text-wrap: pretty;
}

.disclaimer {
  margin: 0;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-650);
}

.form-alert {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 6px;
  background: var(--error-bg);
  border: 1px solid rgba(192, 68, 32, 0.22);
}
.form-alert__icon { flex: 0 0 20px; margin-top: 1px; color: var(--error-border); }
.form-alert__title { font-size: 15px; font-weight: 600; color: var(--error-text); margin-bottom: 4px; }
.form-alert__body { font-size: 14px; line-height: 1.5; color: var(--error-text); }
.form-alert__body a { color: var(--error-text); font-weight: 600; white-space: nowrap; }

/* ---- success state ---- */
.success-card {
  padding: 26px 20px 24px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  background: var(--success-bg);
}
.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  margin-bottom: 18px;
}
.success-heading { font-size: 25px; line-height: 1.15; letter-spacing: -0.032em; font-weight: 600; margin-bottom: 10px; text-wrap: pretty; }
.success-body { margin: 0 0 18px; font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); text-wrap: pretty; }
.success-body strong { font-weight: 600; color: var(--ink); white-space: nowrap; }
.success-ref {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.success-ref__label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-650); }
.success-ref__value { font-size: 17px; font-weight: 600; font-variant-numeric: tabular-nums; }
.success-wait { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.success-phone {
  display: block;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
  color: var(--phone);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
}
.success-phone:hover { color: var(--phone-hover); }
.success-disclaimer { margin: 16px 0 0; font-size: 12.5px; line-height: 1.5; color: var(--gray-650); }

/* ============ TEAM + CAMPAIGN PHOTOGRAPH ============ */
.team { padding: 56px 0 60px; background: var(--white); }
.team__inner { max-width: var(--container); margin: 0 auto; }

.team__figure { margin: 0 0 32px; }
.team__figure img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center 32%;
  background: var(--navy-deep-2);
}
.team__figure figcaption {
  padding: 12px var(--gutter) 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gray-650);
}
.team__content { padding: 0 var(--gutter); }

.team__heading {
  font-family: var(--font-serif);
  font-size: clamp(38px, 11vw, 48px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin-bottom: 22px;
  text-wrap: pretty;
}
.team__intro {
  margin: 0 0 30px;
  max-width: 30em;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 26px;
}
.team__name { font-size: 17.5px; font-weight: 600; letter-spacing: -0.026em; line-height: 1.2; margin-bottom: 4px; }
.team__role { font-size: 13.5px; line-height: 1.45; color: var(--gray-600); }

/* ============ WHAT WE HANDLE ============ */
.handle { padding: 56px 0 60px; background: var(--neutral); }
.handle__inner { max-width: var(--container); margin: 0 auto; }
.handle__title {
  margin: 0 var(--gutter) 30px;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.038em;
  font-weight: 600;
}
.handle__item { padding: 26px var(--gutter); border-top: 1px solid var(--border); }
.handle__item:first-child { padding-top: 0; border-top: none; }
.handle__item:last-child { padding-bottom: 0; }
.handle__row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 9px; }
.handle__num { font-size: 14px; font-weight: 600; color: var(--navy); font-variant-numeric: tabular-nums; }
.handle__dash { font-size: 14px; color: var(--placeholder); }
.handle__row h3 { font-size: 26px; line-height: 1.12; letter-spacing: -0.034em; font-weight: 600; }
.handle__item p {
  margin: 0 0 0 49px;
  max-width: 34em;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
}

/* ============ ATTRIBUTION + CLOSING CTA ============ */
.attribution {
  padding: 56px var(--gutter) 60px;
  background: linear-gradient(180deg, var(--navy-deep-2) 0%, var(--navy-deep-3) 100%);
  color: var(--white);
}
.attribution__inner { max-width: var(--container); margin: 0 auto; }
.attribution__eyebrow {
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: rgba(255,255,255,0.62);
  margin-bottom: 18px;
}
.attribution__headline {
  font-size: 31px;
  line-height: 1.14;
  letter-spacing: -0.036em;
  font-weight: 600;
  margin-bottom: 16px;
  text-wrap: pretty;
}
.attribution__body {
  margin: 0 0 26px;
  max-width: 30em;
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  text-wrap: pretty;
}

.closing-card {
  margin-top: 40px;
  padding: 26px 22px 24px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
}
.closing-card__lead {
  font-size: 18.5px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.closing-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 8px;
}
.closing-card__phone {
  display: block;
  font-size: clamp(34px, 10vw, 40px);
  font-weight: 500;
  line-height: 1;
  color: var(--phone);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  margin-bottom: 18px;
}
.closing-card__phone:hover { color: var(--phone); opacity: 0.85; }
.closing-card__note { margin-top: 12px; font-size: 12.5px; line-height: 1.45; color: rgba(255,255,255,0.58); }

/* ============ FOOTER ============ */
.footer-level--1 { padding: 40px var(--gutter); background: var(--white); }
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-phone {
  display: block;
  font-size: 28px;
  font-weight: 500;
  color: var(--phone);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  margin-top: 12px;
}
.footer-phone:hover { color: var(--phone-hover); }
.footer-nav { display: none; }

.footer-level--2 {
  padding: 24px var(--gutter) 20px;
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.footer-legal-block { flex: 1 1 280px; min-width: 0; }
.footer-eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gray-650);
  margin-bottom: 10px;
}
.footer-legal-block p {
  max-width: 40em;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--gray-650);
  margin: 0 0 8px;
}
.footer-legal-block p:last-child { margin-bottom: 0; }

.footer-level--3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  padding: 16px var(--gutter) 140px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.footer-level--3 a, .footer-level--3 .footer-copyright { font-size: 13px; font-weight: 500; color: var(--gray-650); }
.footer-copyright { font-weight: 400 !important; }

/* ============ STICKY CALL BAR ============ */
.sticky-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  opacity: 0;
  transform: translateY(102%);
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms ease;
  display: flex;
  justify-content: center;
  padding: 12px 14px 14px;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 26px rgba(24,33,43,0.10);
}
.sticky-call-bar.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-call-bar__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  max-width: 402px;
  min-height: 62px;
  padding: 0 12px 0 16px;
  border-radius: 7px;
  background: var(--white);
  border: 1.5px solid var(--navy);
  color: var(--ink);
}
.sticky-call-bar__link:hover { color: var(--ink); }
.sticky-call-bar__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sticky-call-bar__label { font-size: 12px; font-weight: 600; color: var(--navy); }
.sticky-call-bar__number { font-size: 25px; font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; color: var(--phone); }
.sticky-call-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  flex: 0 0 46px;
}

/* ============ TABLET ============ */
@media (min-width: 700px) {
  :root { --gutter: 40px; }
  .team__figure img { aspect-ratio: 21 / 9; }
  .team__grid { grid-template-columns: repeat(4, 1fr); }
  .handle__item p { margin-left: 49px; }
}

/* Tablet: still one column, but stop rules and buttons from stretching
   the full width of the viewport. */
@media (min-width: 700px) and (max-width: 1023px) {
  .hero-text { max-width: 580px; }
  .case-review-card { max-width: 580px; }
  .closing-card { max-width: 580px; }
}

/* ============ DESKTOP ============ */
@media (min-width: 1024px) {
  :root { --gutter: 48px; }

  /* --- header: larger, more presence --- */
  .site-header { padding: 22px var(--gutter); }
  .site-header__brand { gap: 6px; }
  .logo { font-size: 38px; }
  .tagline { font-size: 14.5px; }
  .header-actions { gap: 28px; }
  .site-header__phone {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
    white-space: nowrap;
  }
  .site-header__phone-label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-600);
  }
  .site-header__phone-link {
    display: block;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--phone);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
  }
  .site-header__phone-link:hover { color: var(--phone-hover); }
  .btn--header { min-height: 60px; padding: 0 28px; font-size: 17.5px; gap: 10px; }

  /* --- hero: split, form card floats right --- */
  .hero-bg { background: linear-gradient(90deg, rgba(15,27,43,0.98) 0%, rgba(15,27,43,0.96) 46%, rgba(21,36,58,0.94) 100%); }
  .hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 64px var(--gutter) 72px;
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
  .hero-text { flex: 1 1 auto; min-width: 0; }
  .hero-mobile-only { display: none; }
  .hero-headline {
    font-size: clamp(50px, 4.6vw, 66px);
    line-height: 0.99;
    letter-spacing: -0.048em;
    max-width: 10em;
    margin-bottom: 20px;
  }
  .hero-subhead { font-size: 17.5px; max-width: 26em; margin-bottom: 30px; }
  .hero-phone-block { padding-top: 24px; }
  .hero-phone-label { font-size: 12.5px; margin-bottom: 12px; }
  .hero-phone-link { font-size: clamp(48px, 4.2vw, 60px); }
  .hero-phone-helper { font-size: 14px; margin-top: 12px; }
  .hero-rating { margin-top: 22px; padding-top: 22px; gap: 10px 12px; }
  .hero-rating__score { font-size: 20px; }
  .hero-rating__count { font-size: 14.5px; }

  .hero-card-slot { flex: 0 0 452px; width: 452px; }
  .hero-card-slot .case-review-card {
    box-shadow: 0 24px 56px rgba(0,0,0,0.36);
    padding: 30px 28px 32px;
    border-color: transparent;
  }
  .hero-card-slot .success-card { border-color: var(--navy); }

  /* --- trust strip --- */
  .stat { padding: 30px 20px 32px var(--gutter); }
  .stat--divided { padding-left: 32px; padding-right: 32px; }
  .stat:last-child { padding-left: 32px; padding-right: var(--gutter); }
  .stat__number { font-size: 40px; }
  .stat__label { font-size: 13.5px; }

  /* --- form section collapses on desktop (card lives in hero) --- */
  .case-review { padding: 0; background: transparent; }
  .case-review__heading { display: none; }
  .case-review-card__heading-desktop {
    display: block;
    font-size: 25px;
    line-height: 1.16;
    letter-spacing: -0.03em;
    font-weight: 600;
    margin-bottom: 18px;
  }

  /* --- team: photo + copy, two columns --- */
  .team { padding: 76px 0 80px; }
  .team__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    align-items: center;
    gap: 56px;
    padding: 0 var(--gutter);
  }
  .team__figure { margin: 0; }
  .team__figure img {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    object-position: center 30%;
  }
  .team__figure figcaption { padding: 14px 0 0; }
  .team__content { padding: 0; }
  .team__heading { font-size: clamp(44px, 3.5vw, 54px); margin-bottom: 24px; }
  .team__intro { font-size: 17px; margin-bottom: 32px; }
  .team__grid { grid-template-columns: 1fr 1fr; gap: 24px 28px; padding: 28px 0; margin-bottom: 28px; }
  .team__name { font-size: 18px; }

  /* --- what we handle: two-column editorial list --- */
  .handle { padding: 76px 0 80px; }
  .handle__title { margin: 0 var(--gutter) 40px; font-size: 40px; }
  .handle__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    padding: 0 var(--gutter);
  }
  .handle__item { padding: 28px 0; border-top: 1px solid var(--border); }
  .handle__item:nth-child(2) { padding-top: 28px; border-top: 1px solid var(--border); }
  .handle__item:first-child, .handle__item:nth-child(2) { padding-top: 0; border-top: none; }
  .handle__item:last-child, .handle__item:nth-last-child(2) { padding-bottom: 0; }
  .handle__row h3 { font-size: 28px; }
  .handle__item p { font-size: 16px; max-width: 30em; }

  /* --- attribution + closing CTA side by side --- */
  .attribution { padding: 76px var(--gutter) 80px; }
  .attribution__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 64px;
  }
  .attribution__eyebrow { font-size: 34px; margin-bottom: 22px; }
  .attribution__headline { font-size: 40px; margin-bottom: 20px; }
  .attribution__body { font-size: 17px; margin-bottom: 30px; }
  .closing-card { margin-top: 0; padding: 32px 30px 30px; }
  .closing-card__lead { font-size: 21px; margin-bottom: 24px; }
  .closing-card__phone { font-size: 46px; }

  /* --- footer --- */
  .footer-level--1 {
    padding: 44px var(--gutter);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 64px;
    max-width: var(--container);
    margin: 0 auto;
  }
  .footer-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 16px; }
  .footer-nav a, .footer-nav .footer-copyright { font-size: 13.5px; font-weight: 500; color: var(--gray-650); }
  .footer-phone { display: none; }
  .footer-level--2 { padding: 0 var(--gutter) 48px; border-top: none; }
  .footer-level--3 { display: none; }

  .sticky-call-bar { display: none; }
}
