:root {
  --black: #080808;
  --ink: #111111;
  --charcoal: #1d1d1d;
  --concrete: #d5d5d2;
  --white: #ffffff;
  --yellow: #ffd400;
  --yellow-hot: #ffe034;
  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--white);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, "Arial Narrow", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

.site-header {
  align-items: center;
  background: rgb(8 8 8 / 92%);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: var(--header-h);
  inset: 0 0 auto;
  padding: 0 clamp(22px, 4vw, 64px);
  position: fixed;
  z-index: 50;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-weight: 950;
  line-height: 1;
  width: fit-content;
}

.brand-name {
  align-items: baseline;
  display: flex;
  letter-spacing: -0.055em;
  line-height: 0.8;
}

.brand-number {
  color: var(--yellow);
  font-size: clamp(28px, 2.6vw, 40px);
}

.brand-word {
  color: var(--white);
  font-size: clamp(28px, 2.6vw, 40px);
}

.brand-firm {
  color: #aaa;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 7px;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  gap: 34px;
}

.site-header nav a {
  color: #bcbcbc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  position: relative;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-header nav a::after {
  background: var(--yellow);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--white);
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.call-button {
  align-items: center;
  background: var(--yellow);
  color: var(--black);
  display: inline-flex;
  font-size: clamp(17px, 1.5vw, 23px);
  font-weight: 950;
  gap: 14px;
  justify-content: center;
  letter-spacing: -0.02em;
  min-height: 66px;
  padding: 0 24px;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
  width: fit-content;
}

.call-button > svg:first-child {
  height: 22px;
  width: 22px;
}

.call-button > svg:last-child {
  height: 22px;
  margin-left: 10px;
  width: 22px;
}

.call-button:hover,
.call-button:focus-visible {
  background: var(--yellow-hot);
  box-shadow: 0 14px 38px rgb(255 212 0 / 22%);
  transform: translateY(-2px);
}

.call-button:focus-visible,
.site-header a:focus-visible,
.scroll-cue:focus-visible,
.mobile-call-bar:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.header-call {
  justify-self: end;
  min-height: 48px;
  min-width: 190px;
  padding-inline: 18px;
}

.header-call > svg:last-child {
  display: none;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-self: end;
}

.header-evaluation {
  align-items: center;
  border: 1px solid var(--yellow);
  box-sizing: border-box;
  color: var(--yellow);
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 48px;
  min-width: 190px;
  padding: 0 18px;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.header-evaluation:hover,
.header-evaluation:focus-visible {
  background: var(--yellow);
  color: var(--black);
}

.snap-shell {
  height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scroll-snap-type: y mandatory;
}

.snap-section {
  min-height: 100svh;
  overflow: hidden;
  padding-top: var(--header-h);
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-section {
  align-items: center;
  background: var(--black);
  display: flex;
}

.hero-photo,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-photo {
  background:
    url("/732injured-hero.webp") center / cover no-repeat,
    #171717;
  background-position: center;
  background-size: cover;
  filter: grayscale(1);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, #050505 0%, #050505 42%, rgb(5 5 5 / 78%) 62%, rgb(5 5 5 / 24%) 100%),
    linear-gradient(0deg, rgb(5 5 5 / 92%) 0%, transparent 31%);
}

.hero-content {
  margin-left: clamp(24px, 7vw, 112px);
  max-width: 800px;
  padding: 60px 0 120px;
  position: relative;
  width: calc(100% - 48px);
  z-index: 2;
}

.hero-actions {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.evaluation-button {
  align-items: center;
  border: 1px solid rgb(255 255 255 / 55%);
  display: inline-flex;
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 900;
  gap: 20px;
  justify-content: center;
  min-height: 66px;
  padding: 0 24px;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.evaluation-button svg {
  height: 20px;
  width: 20px;
}

.evaluation-button:hover,
.evaluation-button:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.eyebrow {
  align-items: center;
  color: #d0d0d0;
  display: flex;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 850;
  gap: 12px;
  letter-spacing: 0.18em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--yellow);
  content: "";
  height: 4px;
  width: 34px;
}

.eyebrow.yellow {
  color: var(--yellow);
}

.hero-content h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(76px, 10.8vw, 166px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.78;
  margin: 0;
  text-transform: uppercase;
}

.hero-content h1 span {
  display: block;
}

.hero-content h1 .hero-location {
  color: var(--white);
}

.hero-content h1 .hero-action {
  color: var(--yellow);
}

.hero-promise {
  color: #efefef;
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 750;
  letter-spacing: -0.025em;
  margin: 30px 0;
}

.hero-call {
  min-width: min(430px, 100%);
}

.hero-proof {
  border-top: 1px solid rgb(255 255 255 / 24%);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  max-width: 770px;
  padding-top: 24px;
}

.hero-proof > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 28px;
}

.hero-proof > div + div {
  border-left: 1px solid rgb(255 255 255 / 18%);
  padding-left: 28px;
}

.hero-proof strong {
  color: var(--white);
  font-size: clamp(19px, 1.6vw, 26px);
  font-weight: 950;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero-proof span {
  color: #aaa;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.scroll-cue {
  align-items: center;
  bottom: 26px;
  color: #9e9e9e;
  display: flex;
  font-size: 10px;
  font-weight: 750;
  gap: 12px;
  letter-spacing: 0.16em;
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  text-transform: uppercase;
  z-index: 3;
}

.scroll-cue span:last-child {
  color: var(--yellow);
  font-size: 21px;
}

.proof-section {
  align-items: center;
  background:
    linear-gradient(135deg, transparent 65%, rgb(255 212 0 / 6%) 65%),
    #101010;
  display: flex;
}

.proof-section::before {
  background: var(--yellow);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 10px;
}

.section-count {
  color: rgb(255 255 255 / 4%);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: min(44vw, 620px);
  line-height: 0.7;
  position: absolute;
  right: -45px;
  top: 18%;
}

.section-inner {
  margin: 0 auto;
  max-width: 1350px;
  padding: 70px clamp(28px, 6vw, 94px);
  position: relative;
  width: 100%;
  z-index: 2;
}

.proof-grid {
  align-items: center;
  display: grid;
  gap: clamp(60px, 9vw, 150px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
}

.proof-lead h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(64px, 7.4vw, 116px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  margin: 0;
  max-width: 770px;
  text-transform: uppercase;
}

.proof-lead h2 span {
  color: var(--yellow);
}

.proof-copy {
  max-width: 530px;
}

.proof-copy p {
  color: #bcbcbc;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.6;
}

.proof-copy .lead-copy {
  color: var(--white);
  font-size: clamp(20px, 1.6vw, 27px);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.settle-mark {
  align-items: baseline;
  border-block: 1px solid rgb(255 255 255 / 16%);
  display: flex;
  gap: 11px;
  margin: 30px 0;
  padding: 18px 0;
  text-transform: uppercase;
}

.settle-mark span {
  color: #cfcfcf;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.settle-mark strong {
  color: var(--yellow);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 43px;
  letter-spacing: -0.025em;
}

.result-disclaimer {
  bottom: 20px;
  color: #6f6f6f;
  font-size: 10px;
  left: clamp(28px, 6vw, 94px);
  line-height: 1.45;
  margin: 0;
  max-width: 760px;
  position: absolute;
  z-index: 3;
}

.testimonials-section {
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgb(255 212 0 / 12%), transparent 30%),
    #f2f1ec;
  color: var(--black);
  display: flex;
}

.testimonials-section::before {
  background: var(--yellow);
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: var(--header-h);
  width: 100%;
}

.testimonials-section .section-count {
  color: rgb(0 0 0 / 4%);
}

.testimonials-inner {
  align-items: center;
  display: grid;
  gap: clamp(45px, 8vw, 120px);
  grid-template-columns: minmax(300px, 0.68fr) minmax(520px, 1.32fr);
}

.testimonials-heading h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(58px, 6vw, 96px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  margin: 0;
  text-transform: uppercase;
}

.testimonials-heading > p:not(.eyebrow) {
  color: #555;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  margin: 24px 0 28px;
  max-width: 480px;
}

.testimonials-heading .call-button {
  width: min(100%, 390px);
}

.testimonials-content {
  min-width: 0;
}

.testimonial-carousel {
  background: #101010;
  box-shadow: 18px 18px 0 var(--yellow);
  color: var(--white);
  padding: clamp(30px, 4vw, 58px);
  touch-action: pan-y;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: clamp(390px, 51vh, 510px);
  position: relative;
}

.testimonial-quote-mark {
  color: rgb(255 212 0 / 22%);
  font-family: Georgia, serif;
  font-size: clamp(120px, 12vw, 200px);
  left: -10px;
  line-height: 0.65;
  position: absolute;
  top: 10px;
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 0.18em;
  position: relative;
  z-index: 1;
}

.testimonial-card blockquote {
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.52;
  margin: clamp(26px, 4vh, 42px) 0 30px;
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.testimonial-card footer {
  align-items: baseline;
  border-top: 1px solid rgb(255 255 255 / 18%);
  display: flex;
  gap: 13px;
  margin-top: auto;
  padding-top: 20px;
}

.testimonial-card footer strong {
  font-size: 20px;
}

.testimonial-card footer span {
  color: #8e8e8e;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-controls {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: auto auto 1fr;
  margin-top: 25px;
}

.testimonial-buttons {
  display: flex;
  gap: 8px;
}

.testimonial-buttons button {
  align-items: center;
  background: transparent;
  border: 1px solid rgb(255 255 255 / 32%);
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 21px;
  height: 45px;
  justify-content: center;
  width: 45px;
}

.testimonial-buttons button:hover,
.testimonial-buttons button:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.testimonial-progress {
  align-items: baseline;
  display: flex;
  gap: 5px;
}

.testimonial-progress strong {
  color: var(--yellow);
  font-size: 23px;
}

.testimonial-progress span {
  color: #757575;
  font-size: 12px;
}

.testimonial-dots {
  display: flex;
  gap: 7px;
  justify-content: flex-end;
}

.testimonial-dots button {
  background: #555;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 7px;
  padding: 0;
  transition: background 160ms ease, width 160ms ease;
  width: 7px;
}

.testimonial-dots button.active {
  background: var(--yellow);
  width: 25px;
}

.testimonial-disclaimer {
  color: #666;
  font-size: 10px;
  line-height: 1.5;
  margin: 32px 0 0;
  max-width: 750px;
}

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

.section-heading {
  align-items: end;
  display: grid;
  gap: clamp(40px, 8vw, 120px);
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: clamp(28px, 4vh, 48px);
}

.section-heading h2,
.process-inner > h2,
.faq-heading h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(54px, 5.8vw, 92px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.section-heading > p {
  color: #4f4f4f;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
  margin: 0;
  max-width: 500px;
}

.cases-section {
  align-items: center;
  background: #eaeae6;
  color: var(--black);
  display: flex;
}

.cases-section .section-count {
  color: rgb(0 0 0 / 4%);
}

.cases-inner {
  padding-block: clamp(26px, 4vh, 48px);
}

.case-grid {
  border-left: 1px solid rgb(0 0 0 / 18%);
  border-top: 1px solid rgb(0 0 0 / 18%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.case-card {
  border-bottom: 1px solid rgb(0 0 0 / 18%);
  border-right: 1px solid rgb(0 0 0 / 18%);
  min-height: clamp(112px, 14vh, 150px);
  padding: clamp(15px, 1.55vw, 24px);
  position: relative;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.case-card:hover,
.case-card:focus-visible {
  background: var(--yellow);
}

.case-card > span {
  color: #858585;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.case-card h3 {
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 950;
  letter-spacing: -0.035em;
  margin: clamp(25px, 3.2vh, 38px) 48px 0 0;
  text-transform: uppercase;
}

.case-icon {
  color: #b49a13;
  height: clamp(36px, 3.6vw, 50px);
  position: absolute;
  right: clamp(14px, 1.5vw, 23px);
  top: clamp(15px, 1.5vw, 23px);
  transition:
    color 180ms ease,
    transform 180ms ease;
  width: clamp(36px, 3.6vw, 50px);
}

.case-card:hover .case-icon,
.case-card:focus-visible .case-icon {
  color: var(--black);
  transform: translateY(-2px) scale(1.06);
}

.case-card strong {
  bottom: 11px;
  color: #676767;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.09em;
  position: absolute;
  text-transform: uppercase;
}

.case-card:hover strong,
.case-card:focus-visible strong {
  color: var(--black);
}

.case-card:focus-visible,
.practice-related-grid a:focus-visible,
.practice-index-grid a:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: -4px;
}

.section-cta-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: clamp(16px, 2vh, 24px);
}

.claim-details-section {
  align-items: center;
  background:
    linear-gradient(145deg, transparent 60%, rgb(255 212 0 / 7%) 60%),
    #101010;
  display: flex;
}

.claim-details-section::before {
  background: var(--yellow);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: var(--header-h);
  width: 100%;
}

.claim-details-inner {
  padding-block: clamp(34px, 5vh, 64px);
}

.claim-details-heading {
  align-items: end;
  display: grid;
  gap: clamp(40px, 8vw, 120px);
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: clamp(28px, 4vh, 46px);
}

.claim-details-heading h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  margin: 0;
  text-transform: uppercase;
}

.claim-details-heading > p {
  color: #adadad;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}

.claim-detail-grid {
  border-block: 1px solid rgb(255 255 255 / 20%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.claim-detail-card {
  padding: clamp(25px, 3vw, 46px);
}

.claim-detail-card + .claim-detail-card {
  border-left: 1px solid rgb(255 255 255 / 20%);
}

.claim-detail-card h3 {
  color: var(--yellow);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 950;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.claim-detail-card ul {
  display: grid;
  gap: clamp(10px, 1.4vh, 16px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.claim-detail-card li {
  align-items: baseline;
  color: #e3e3e3;
  display: grid;
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 750;
  gap: 12px;
  grid-template-columns: 8px 1fr;
  line-height: 1.3;
}

.claim-detail-card li::before {
  background: var(--yellow);
  content: "";
  height: 8px;
  width: 8px;
}

.claim-details-cta {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-top: clamp(24px, 3vh, 38px);
}

.claim-details-cta > p {
  color: #b9b9b9;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.5;
  margin: 0;
  max-width: 690px;
}

.section-cta-row > p {
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 850;
  margin: 0;
}

.lawyer-section {
  align-items: center;
  background:
    linear-gradient(125deg, #111 0 57%, #171717 57% 100%);
  display: flex;
}

.lawyer-grid {
  align-items: center;
  display: grid;
  gap: clamp(50px, 9vw, 150px);
  grid-template-columns: minmax(290px, 0.75fr) minmax(0, 1.25fr);
}

.lawyer-headshot {
  aspect-ratio: 0.84;
  box-shadow: 18px 18px 0 var(--yellow);
  margin: 0;
  max-height: 570px;
  max-width: 480px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.lawyer-headshot::after {
  background: linear-gradient(transparent 58%, rgb(0 0 0 / 88%));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.lawyer-headshot img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 28%;
  position: absolute;
  width: 100%;
}

.lawyer-headshot figcaption {
  bottom: 24px;
  display: flex;
  flex-direction: column;
  left: 26px;
  position: absolute;
  right: 24px;
  z-index: 2;
}

.lawyer-headshot figcaption strong {
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.025em;
}

.lawyer-headshot figcaption span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-top: 5px;
  text-transform: uppercase;
}

.lawyer-copy {
  max-width: 770px;
}

.lawyer-copy h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(58px, 6vw, 100px);
  letter-spacing: -0.04em;
  line-height: 0.88;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.lawyer-copy h2 span {
  color: var(--yellow);
  display: block;
}

.lawyer-copy > p {
  color: #aaa;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.55;
  max-width: 700px;
}

.lawyer-copy .lead-copy {
  color: var(--white);
  font-size: clamp(19px, 1.5vw, 25px);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.38;
}

.lawyer-stats {
  border-block: 1px solid rgb(255 255 255 / 16%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0;
  padding: 22px 0;
}

.lawyer-stats div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: 18px;
}

.lawyer-stats div + div {
  border-left: 1px solid rgb(255 255 255 / 16%);
  padding-left: 18px;
}

.lawyer-stats strong {
  color: var(--yellow);
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 950;
  letter-spacing: -0.05em;
}

.lawyer-stats span {
  color: #8c8c8c;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.process-section {
  align-items: center;
  background: #090909;
  display: flex;
}

.process-section::after {
  background: linear-gradient(90deg, transparent, var(--yellow));
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: var(--header-h);
  width: 100%;
}

.process-inner > h2 {
  font-size: clamp(56px, 6.2vw, 100px);
  max-width: 950px;
}

.process-steps {
  border-top: 1px solid rgb(255 255 255 / 20%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(30px, 5vh, 54px);
}

.process-steps article {
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr;
  min-height: clamp(210px, 27vh, 280px);
  padding: clamp(28px, 3.2vw, 52px) clamp(22px, 2.5vw, 40px);
  transition: background 180ms ease;
}

.process-steps article + article {
  border-left: 1px solid rgb(255 255 255 / 20%);
}

.process-steps article:hover {
  background: #151515;
}

.process-steps article > span {
  color: var(--yellow);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 38px;
  line-height: 1;
}

.process-steps h3 {
  font-size: clamp(20px, 1.8vw, 29px);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.process-steps p {
  color: #9f9f9f;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.55;
  margin: 0;
}

.process-bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: clamp(22px, 3vh, 36px);
}

.process-bottom > div {
  align-items: baseline;
  display: flex;
  gap: 12px;
  text-transform: uppercase;
}

.process-bottom span {
  color: #b7b7b7;
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.process-bottom strong {
  color: var(--yellow);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(38px, 3.6vw, 60px);
}

.areas-section {
  align-items: center;
  background: var(--yellow);
  color: var(--black);
  display: flex;
}

.areas-section::after {
  background:
    linear-gradient(rgb(0 0 0 / 7%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(0 0 0 / 7%) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 35%, black 100%);
  opacity: 0.55;
  pointer-events: none;
  position: absolute;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 35%, black 100%);
}

.areas-grid {
  align-items: center;
  display: grid;
  gap: clamp(55px, 8vw, 130px);
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
}

.areas-copy {
  isolation: isolate;
  position: relative;
}

.areas-copy-content {
  position: relative;
  z-index: 2;
}

.areas-section .eyebrow {
  color: #242424;
}

.areas-section .eyebrow::before {
  background: var(--black);
}

.areas-grid h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(66px, 6.5vw, 106px);
  letter-spacing: -0.045em;
  line-height: 0.82;
  margin: 0 0 30px;
  text-transform: uppercase;
}

.areas-grid h2 span {
  color: var(--white);
  display: block;
  text-shadow: 3px 3px 0 var(--black);
}

.areas-grid p {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
  max-width: 690px;
}

.areas-grid .lead-copy {
  font-size: clamp(20px, 1.5vw, 25px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.areas-grid .call-button {
  background: var(--black);
  color: var(--white);
  margin-top: 20px;
}

.areas-grid .call-button:hover,
.areas-grid .call-button:focus-visible {
  background: #242424;
}

.areas-map-mark {
  bottom: -9%;
  opacity: 0.24;
  pointer-events: none;
  position: absolute;
  right: -2%;
  top: -14%;
  width: min(28vw, 380px);
  z-index: 1;
}

.areas-map-mark img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.location-list {
  border-top: 2px solid var(--black);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 2;
}

.location-list a {
  align-items: center;
  border-bottom: 1px solid rgb(0 0 0 / 40%);
  display: grid;
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 900;
  gap: 10px;
  grid-template-columns: 24px minmax(0, 1fr);
  min-height: 56px;
  padding-block: 6px;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.location-list a:hover,
.location-list a:focus-visible {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.location-list a:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: -3px;
}

.location-list a:nth-child(odd) {
  border-right: 1px solid rgb(0 0 0 / 40%);
  padding-inline: 8px 12px;
}

.location-list a:nth-child(even) {
  padding-inline: 12px 8px;
}

.location-number {
  color: rgb(0 0 0 / 46%);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.location-name {
  font-size: clamp(12px, 0.95vw, 16px);
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.location-list a:hover .location-number,
.location-list a:focus-visible .location-number {
  color: var(--yellow);
}

.faq-section {
  align-items: center;
  background: #efefeb;
  color: var(--black);
  display: flex;
}

.faq-inner {
  align-items: start;
  display: grid;
  gap: clamp(55px, 8vw, 130px);
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-h) + 40px);
}

.faq-heading h2 {
  font-size: clamp(60px, 6.4vw, 104px);
}

.faq-heading > p {
  color: #555;
  font-size: 15px;
  line-height: 1.55;
  margin: 24px 0 30px;
  max-width: 470px;
}

.faq-list {
  border-top: 2px solid var(--black);
}

.faq-list article {
  border-bottom: 1px solid rgb(0 0 0 / 25%);
  display: grid;
  gap: 20px;
  grid-template-columns: 42px 1fr;
  padding: clamp(18px, 2.2vh, 28px) 0;
}

.faq-list article > span {
  color: #777;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.faq-list h3 {
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 950;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}

.faq-list p {
  color: #555;
  font-size: clamp(12px, 0.93vw, 15px);
  line-height: 1.5;
  margin: 0;
}

.final-section {
  align-items: stretch;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
}

.final-rings {
  border: 1px solid rgb(255 212 0 / 25%);
  border-radius: 50%;
  height: min(75vw, 940px);
  position: absolute;
  right: -18%;
  top: -20%;
  width: min(75vw, 940px);
}

.final-rings::before,
.final-rings::after {
  border: 1px solid rgb(255 212 0 / 17%);
  border-radius: 50%;
  content: "";
  position: absolute;
}

.final-rings::before {
  inset: 11%;
}

.final-rings::after {
  inset: 23%;
}

.final-content {
  align-items: center;
  display: grid;
  gap: clamp(44px, 6vw, 95px);
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 0.75fr);
  margin: 0 auto;
  max-width: 1450px;
  padding: clamp(55px, 7vh, 95px) clamp(24px, 5vw, 78px) 45px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.final-message {
  max-width: 690px;
}

.final-message h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(76px, 7.5vw, 124px);
  letter-spacing: -0.045em;
  line-height: 0.78;
  margin: 0;
  text-transform: uppercase;
}

.final-message h2 span {
  color: var(--yellow);
  display: block;
}

.final-message > p:not(.eyebrow) {
  color: #bbb;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.45;
  margin: 28px 0;
  max-width: 680px;
}

.final-call {
  min-width: min(440px, 100%);
}

.email-link {
  color: #aaa;
  display: block;
  font-size: 13px;
  font-weight: 750;
  margin-top: 20px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.final-section footer {
  align-items: end;
  border-top: 1px solid rgb(255 255 255 / 17%);
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr auto minmax(320px, 0.9fr);
  margin-top: auto;
  padding: 25px clamp(24px, 4vw, 64px);
  position: relative;
  width: 100%;
  z-index: 2;
}

.footer-contact,
.footer-legal {
  color: #777;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  gap: 4px;
  line-height: 1.35;
}

.footer-contact strong,
.footer-legal strong {
  color: #bcbcbc;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact a:hover {
  color: var(--yellow);
}

.footer-legal {
  max-width: 520px;
}

.footer-legal p {
  margin: 0;
}

.section-dots {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
}

.section-dots a {
  background: rgb(255 255 255 / 30%);
  border: 1px solid rgb(0 0 0 / 22%);
  border-radius: 50%;
  height: 7px;
  transition:
    background 160ms ease,
    transform 160ms ease;
  width: 7px;
}

.section-dots a:hover,
.section-dots a:focus-visible {
  background: var(--yellow);
  transform: scale(1.6);
}

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

.mobile-intake-bar {
  display: none;
}

.final-form-card,
.intake-page-card {
  background: #f4f4f1;
  color: var(--black);
  padding: clamp(24px, 3vw, 42px);
}

.final-form-card > .eyebrow,
.intake-page-card > .eyebrow {
  color: #675900;
}

.final-form-card > h3,
.intake-page-card > h2 {
  font-size: clamp(30px, 3vw, 45px);
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.intake-form {
  display: grid;
  gap: 17px 14px;
  grid-template-columns: 1fr 1fr;
}

.intake-field {
  min-width: 0;
}

.intake-field-wide,
.intake-submit {
  grid-column: 1 / -1;
}

.intake-field label {
  align-items: baseline;
  display: flex;
  font-size: 11px;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.intake-field label > span {
  color: #8a270f;
}

.intake-field label small {
  color: #686868;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.intake-field input,
.intake-field textarea {
  appearance: none;
  background: var(--white);
  border: 1px solid #aaa;
  border-radius: 0;
  color: var(--black);
  font: inherit;
  font-size: 16px;
  line-height: 1.35;
  outline: none;
  padding: 12px 13px;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
  width: 100%;
}

.intake-field input {
  min-height: 48px;
}

.intake-field textarea {
  min-height: 108px;
  resize: vertical;
}

.intake-field input:focus,
.intake-field textarea:focus {
  border-color: #665500;
  box-shadow: 0 0 0 3px rgb(255 212 0 / 40%);
}

.intake-field input[aria-invalid="true"],
.intake-field textarea[aria-invalid="true"] {
  border-color: #a33318;
}

.intake-help,
.intake-error,
.intake-form-error,
.intake-disclaimer {
  font-size: 10px;
  line-height: 1.4;
  margin: 6px 0 0;
}

.intake-help {
  color: #666;
}

.intake-error,
.intake-form-error {
  color: #8d250e;
  font-weight: 750;
}

.intake-form-error {
  margin: 0 0 9px;
}

.intake-submit button {
  background: var(--yellow);
  border: 0;
  color: var(--black);
  cursor: pointer;
  font: inherit;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 950;
  min-height: 58px;
  padding: 14px 18px;
  text-transform: uppercase;
  transition:
    background 150ms ease,
    transform 150ms ease;
  width: 100%;
}

.intake-submit button:hover,
.intake-submit button:focus-visible {
  background: var(--yellow-hot);
  transform: translateY(-1px);
}

.intake-submit button:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 3px;
}

.intake-submit button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.intake-disclaimer {
  color: #555;
}

.intake-honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.intake-success {
  border-left: 6px solid var(--yellow);
  padding: 12px 8px 12px 22px;
}

.intake-success > span {
  align-items: center;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  font-size: 24px;
  font-weight: 950;
  height: 48px;
  justify-content: center;
  margin-bottom: 22px;
  width: 48px;
}

.intake-success h3 {
  font-size: clamp(31px, 3vw, 48px);
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.intake-success > p:last-child {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.intake-success a {
  font-weight: 900;
  text-decoration: underline;
}

.intake-page-shell {
  background:
    radial-gradient(circle at 82% 8%, rgb(255 212 0 / 12%), transparent 30%),
    var(--black);
  height: 100svh;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: var(--header-h);
}

.intake-page-intro {
  align-items: center;
  display: grid;
  gap: clamp(48px, 7vw, 110px);
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 0.72fr);
  margin: 0 auto;
  max-width: 1450px;
  min-height: calc(100svh - var(--header-h));
  padding: clamp(50px, 7vh, 90px) clamp(24px, 6vw, 90px);
}

.intake-page-intro h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(76px, 8vw, 132px);
  letter-spacing: -0.045em;
  line-height: 0.8;
  margin: 0;
  text-transform: uppercase;
}

.intake-page-intro h1 span {
  color: var(--yellow);
  display: block;
}

.intake-page-intro > div:first-child > p:not(.eyebrow) {
  color: #b9b9b9;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.55;
  margin: 28px 0;
  max-width: 650px;
}

.intake-page-trust {
  border-top: 1px solid rgb(255 255 255 / 18%);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 22px;
}

.intake-page-trust strong {
  color: #bdbdbd;
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.intake-page-trust strong::before {
  color: var(--yellow);
  content: "✓";
  margin-right: 7px;
}

.intake-page-footer {
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 16%);
  color: #777;
  display: grid;
  font-size: 9px;
  gap: 28px;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  line-height: 1.4;
  padding: 24px clamp(24px, 5vw, 72px);
}

.intake-page-footer > p {
  margin: 0 auto;
  max-width: 650px;
}

/* Practice area pages */

.practice-header > .call-button {
  justify-self: end;
  min-height: 48px;
  min-width: 190px;
  padding-inline: 18px;
}

.practice-header > .call-button > svg:last-child {
  display: none;
}

.practice-page-shell {
  background: var(--black);
  height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
}

.practice-hero {
  align-items: center;
  background:
    linear-gradient(120deg, #050505 0 63%, rgb(255 212 0 / 8%) 63%),
    #080808;
  display: flex;
  min-height: 100svh;
  padding: calc(var(--header-h) + 70px) clamp(28px, 7vw, 112px) 80px;
  position: relative;
}

.practice-hero::after {
  border: 1px solid rgb(255 212 0 / 18%);
  border-radius: 50%;
  content: "";
  height: min(48vw, 690px);
  position: absolute;
  right: -16%;
  top: 12%;
  width: min(48vw, 690px);
}

.practice-hero-grid {
  align-items: end;
  display: grid;
  gap: clamp(70px, 10vw, 170px);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  margin: 0 auto;
  max-width: 1360px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.breadcrumbs {
  align-items: center;
  color: #777;
  display: flex;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.08em;
  margin-bottom: 38px;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--yellow);
}

.breadcrumbs ol {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs li {
  align-items: center;
  display: flex;
  gap: 8px;
}

.breadcrumbs li + li::before {
  color: currentColor;
  content: "/";
}

.answer-context-links {
  background: rgb(255 212 0 / 9%);
  border-left: 3px solid var(--yellow);
  margin: 46px 0;
  padding: clamp(22px, 3vw, 34px);
}

.answer-context-links h2 {
  margin-top: 0;
}

.answer-context-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 0;
}

.answer-context-links a,
.location-legal-links a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.location-legal-section {
  background: #111;
  padding: clamp(70px, 9vw, 128px) clamp(24px, 7vw, 112px);
}

.location-legal-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 48px auto 0;
  max-width: 1360px;
}

.location-legal-grid article {
  background: #181818;
  min-height: 310px;
  padding: clamp(28px, 4vw, 48px);
}

.location-legal-grid article > span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.location-legal-grid h3 {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.05;
}

.location-legal-grid p,
.location-legal-links {
  color: #bbb;
  line-height: 1.7;
}

.location-legal-links {
  margin: 28px auto 0;
  max-width: 1360px;
}

@media (max-width: 760px) {
  .location-legal-grid {
    grid-template-columns: 1fr;
  }

  .location-legal-grid article {
    min-height: 0;
  }

  .answer-context-links ul {
    display: block;
  }
}

.practice-hero h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(68px, 8vw, 128px);
  letter-spacing: -0.04em;
  line-height: 0.84;
  margin: 0;
  max-width: 980px;
  text-transform: uppercase;
}

.practice-hero-intro {
  color: #c7c7c7;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.5;
  margin: 30px 0;
  max-width: 830px;
}

.practice-fee-line {
  color: #8f8f8f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 16px 0 0;
  text-transform: uppercase;
}

.practice-hero-proof {
  border-top: 4px solid var(--yellow);
  position: relative;
  z-index: 2;
}

.practice-hero-proof > div {
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 23px 0;
}

.practice-hero-proof strong {
  color: var(--yellow);
  font-size: clamp(27px, 2.6vw, 42px);
  font-weight: 950;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.practice-hero-proof span {
  color: #979797;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.practice-overview,
.practice-detail-section,
.practice-faq-section,
.practice-related-section {
  padding: clamp(78px, 10vw, 150px) clamp(28px, 7vw, 112px);
}

.practice-overview {
  background: #ecece8;
  color: var(--black);
}

.practice-content-grid {
  display: grid;
  gap: clamp(55px, 10vw, 160px);
  grid-template-columns: minmax(0, 0.85fr) minmax(350px, 1.15fr);
  margin: 0 auto;
  max-width: 1360px;
}

.practice-content-grid h2,
.practice-section-heading h2,
.practice-focus-section h2,
.practice-index-hero h1,
.practice-index-cta h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(54px, 6vw, 96px);
  letter-spacing: -0.035em;
  line-height: 0.88;
  margin: 0;
  text-transform: uppercase;
}

.practice-prose p {
  color: #4d4d4d;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.65;
  margin: 0;
}

.practice-prose p + p {
  margin-top: 24px;
}

.practice-detail-section {
  background: #111;
}

.practice-section-heading {
  margin: 0 auto clamp(38px, 5vw, 68px);
  max-width: 1360px;
}

.practice-section-heading h2 {
  max-width: 950px;
}

.practice-list-grid {
  border-left: 1px solid rgb(255 255 255 / 18%);
  border-top: 1px solid rgb(255 255 255 / 18%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1360px;
}

.practice-list-grid article {
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  border-right: 1px solid rgb(255 255 255 / 18%);
  padding: clamp(28px, 3.4vw, 52px);
}

.practice-list-grid article > span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.practice-list-grid h3 {
  font-size: clamp(21px, 1.8vw, 29px);
  font-weight: 950;
  letter-spacing: -0.03em;
  margin: 18px 0 26px;
  text-transform: uppercase;
}

.practice-list-grid ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.practice-list-grid li {
  color: #b7b7b7;
  display: grid;
  font-size: clamp(13px, 1vw, 16px);
  gap: 11px;
  grid-template-columns: 7px 1fr;
  line-height: 1.4;
}

.practice-list-grid li::before {
  background: var(--yellow);
  content: "";
  height: 7px;
  margin-top: 0.42em;
  width: 7px;
}

.practice-focus-section {
  background: var(--yellow);
  color: var(--black);
  display: grid;
  gap: clamp(60px, 10vw, 150px);
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  padding: clamp(78px, 10vw, 150px) clamp(28px, 7vw, 112px);
}

.practice-focus-section > div,
.practice-focus-section > ol {
  margin-block: 0;
}

.practice-focus-section .eyebrow {
  color: #282828;
}

.practice-focus-section .eyebrow::before {
  background: var(--black);
}

.practice-focus-section ol {
  border-top: 2px solid var(--black);
  list-style: none;
  padding: 0;
}

.practice-focus-section li {
  align-items: center;
  border-bottom: 1px solid rgb(0 0 0 / 35%);
  display: grid;
  gap: 20px;
  grid-template-columns: 38px 1fr;
  padding: 22px 0;
}

.practice-focus-section li span {
  color: rgb(0 0 0 / 48%);
  font-size: 10px;
  font-weight: 950;
}

.practice-focus-section li strong {
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.25;
}

.practice-faq-section {
  background: #ecece8;
  color: var(--black);
}

.practice-faq-list {
  border-top: 2px solid var(--black);
  margin: 0 auto;
  max-width: 1360px;
}

.practice-faq-list article {
  border-bottom: 1px solid rgb(0 0 0 / 24%);
  display: grid;
  gap: 25px;
  grid-template-columns: 50px 1fr;
  padding: clamp(24px, 3vw, 42px) 0;
}

.practice-faq-list article > span {
  color: #777;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.practice-faq-list h3 {
  font-size: clamp(20px, 1.6vw, 27px);
  font-weight: 950;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}

.practice-faq-list p {
  color: #555;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.6;
  margin: 0;
  max-width: 980px;
}

.practice-related-section {
  background: #0d0d0d;
}

.practice-related-grid {
  border-left: 1px solid rgb(255 255 255 / 18%);
  border-top: 1px solid rgb(255 255 255 / 18%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1360px;
}

.practice-related-grid a {
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  border-right: 1px solid rgb(255 255 255 / 18%);
  min-height: 250px;
  padding: clamp(25px, 3vw, 45px);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.practice-related-grid a:hover {
  background: var(--yellow);
  color: var(--black);
}

.practice-related-grid h3 {
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 950;
  letter-spacing: -0.035em;
  margin: 0 0 15px;
  text-transform: uppercase;
}

.practice-related-grid p {
  color: #979797;
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 30px;
}

.practice-related-grid a:hover p {
  color: #333;
}

.practice-related-grid strong {
  color: var(--yellow);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.practice-related-grid a:hover strong {
  color: var(--black);
}

.practice-final-cta {
  align-items: center;
  background: #060606;
  display: flex;
  flex-direction: column;
  min-height: 92svh;
  padding: clamp(90px, 12vw, 170px) 25px 0;
  text-align: center;
}

.practice-final-cta .eyebrow {
  justify-content: center;
}

.practice-final-cta h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(84px, 10vw, 160px);
  letter-spacing: -0.045em;
  line-height: 0.78;
  margin: 0;
  text-transform: uppercase;
}

.practice-final-cta h2 span {
  color: var(--yellow);
  display: block;
}

.practice-final-cta > p:not(.eyebrow) {
  color: #aaa;
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1.5;
  margin: 30px auto;
  max-width: 650px;
}

.practice-final-cta footer {
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 16%);
  display: grid;
  gap: 45px;
  grid-template-columns: 1fr minmax(320px, 1.2fr) auto;
  margin-top: auto;
  padding: 28px clamp(25px, 5vw, 75px);
  text-align: left;
  width: 100%;
}

.practice-final-cta footer p {
  color: #777;
  font-size: 9px;
  line-height: 1.4;
  margin: 0;
}

.standalone-copyright {
  background: #060606;
  border-top: 1px solid rgb(255 255 255 / 16%);
  padding: 26px clamp(25px, 5vw, 75px);
  text-align: center;
}

.standalone-copyright .copyright-line {
  color: #777;
  font-size: 10px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0;
}

.practice-index-hero {
  background:
    linear-gradient(135deg, transparent 58%, rgb(255 212 0 / 8%) 58%),
    #080808;
  padding: calc(var(--header-h) + 100px) clamp(28px, 8vw, 130px) 100px;
}

.practice-index-hero h1 {
  font-size: clamp(78px, 10vw, 155px);
  max-width: 1000px;
}

.practice-index-hero > p:not(.eyebrow) {
  color: #aaa;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;
  margin: 28px 0;
  max-width: 760px;
}

.practice-index-grid {
  background: #ecece8;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: clamp(70px, 8vw, 120px) clamp(28px, 7vw, 112px);
}

.practice-index-grid a {
  border: 1px solid rgb(0 0 0 / 18%);
  color: var(--black);
  min-height: 285px;
  padding: clamp(24px, 3vw, 44px);
  transition: background 180ms ease;
}

.practice-index-grid a:hover {
  background: var(--yellow);
}

.practice-index-grid a > span {
  color: #777;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.practice-index-grid h2 {
  font-size: clamp(21px, 2vw, 32px);
  font-weight: 950;
  letter-spacing: -0.035em;
  margin: 24px 0 12px;
  text-transform: uppercase;
}

.practice-index-grid p {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.practice-index-grid strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-top: 30px;
  text-transform: uppercase;
}

.practice-index-cta {
  align-items: center;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  flex-direction: column;
  padding: clamp(80px, 10vw, 145px) 25px;
  text-align: center;
}

.practice-index-cta > p {
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.5;
  margin: 24px auto 30px;
  max-width: 680px;
}

.practice-index-cta .call-button {
  background: var(--black);
  color: var(--white);
}

/* Local injury pages */

.location-hero {
  align-items: flex-end;
  background: #050505;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-h) + 60px) clamp(28px, 7vw, 112px) 75px;
  position: relative;
}

.location-photo,
.location-hero-shade {
  inset: 0;
  position: absolute;
}

.location-photo {
  background-image: var(--location-image);
  background-position: center;
  background-size: cover;
  filter: grayscale(0.58) contrast(1.05);
  transform: scale(1.015);
}

.location-hero-shade {
  background:
    linear-gradient(90deg, #050505 0%, rgb(5 5 5 / 91%) 38%, rgb(5 5 5 / 43%) 72%, rgb(5 5 5 / 12%) 100%),
    linear-gradient(0deg, #050505 0%, transparent 45%);
}

.location-hero-content {
  max-width: 950px;
  position: relative;
  z-index: 2;
}

.location-hero h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(76px, 9vw, 145px);
  letter-spacing: -0.045em;
  line-height: 0.82;
  margin: 0;
  max-width: 980px;
  text-transform: uppercase;
}

.location-hero-content > p:not(.eyebrow) {
  color: #d0d0d0;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.5;
  margin: 28px 0;
  max-width: 830px;
}

.location-hero-facts {
  border-top: 1px solid rgb(255 255 255 / 24%);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin-top: 34px;
  padding-top: 20px;
}

.location-hero-facts span {
  color: #c7c7c7;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.location-hero-facts span::before {
  color: var(--yellow);
  content: "✓";
  margin-right: 7px;
}

.photo-credit {
  bottom: 16px;
  color: rgb(255 255 255 / 58%);
  font-size: 8px;
  line-height: 1.4;
  margin: 0;
  position: absolute;
  right: 20px;
  text-align: right;
  z-index: 3;
}

.photo-credit a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.location-story-section {
  background: #ecece8;
  color: var(--black);
  display: grid;
  gap: clamp(55px, 10vw, 160px);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  padding: clamp(80px, 10vw, 150px) clamp(28px, 7vw, 112px);
}

.location-story-heading h2,
.location-details-section h2,
.location-why-section h2,
.location-index-hero h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(56px, 6.2vw, 100px);
  letter-spacing: -0.04em;
  line-height: 0.87;
  margin: 0;
  text-transform: uppercase;
}

.location-story-copy p {
  color: #4a4a4a;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.65;
  margin: 0;
}

.location-story-copy p + p {
  margin-top: 24px;
}

.location-landmarks-section,
.location-practices-section,
.location-related-section {
  padding: clamp(78px, 9vw, 135px) clamp(28px, 7vw, 112px);
}

.location-landmarks-section {
  background: #101010;
}

.location-landmark-grid,
.location-related-grid {
  border-left: 1px solid rgb(255 255 255 / 19%);
  border-top: 1px solid rgb(255 255 255 / 19%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1360px;
}

.location-landmark-grid article,
.location-related-grid a {
  border-bottom: 1px solid rgb(255 255 255 / 19%);
  border-right: 1px solid rgb(255 255 255 / 19%);
  min-height: 245px;
  padding: clamp(28px, 3.2vw, 48px);
}

.location-landmark-grid article > span,
.location-related-grid a > span {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-landmark-grid h3,
.location-related-grid h3 {
  font-size: clamp(23px, 2vw, 33px);
  font-weight: 950;
  letter-spacing: -0.035em;
  margin: 24px 0 14px;
  text-transform: uppercase;
}

.location-landmark-grid p {
  color: #a1a1a1;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.55;
  margin: 0;
}

.location-practices-section {
  background: #ecece8;
  color: var(--black);
}

.location-practice-grid {
  border-left: 1px solid rgb(0 0 0 / 20%);
  border-top: 1px solid rgb(0 0 0 / 20%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1360px;
}

.location-practice-grid a {
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  border-right: 1px solid rgb(0 0 0 / 20%);
  min-height: 210px;
  padding: clamp(25px, 3vw, 43px);
  transition: background 180ms ease;
}

.location-practice-grid a:hover,
.location-practice-grid a:focus-visible {
  background: var(--yellow);
}

.location-practice-grid a:focus-visible {
  outline: 4px solid var(--black);
  outline-offset: -4px;
}

.location-practice-grid h3 {
  font-size: clamp(21px, 1.8vw, 29px);
  font-weight: 950;
  letter-spacing: -0.035em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.location-practice-grid p {
  color: #555;
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 25px;
}

.location-practice-grid strong,
.text-link,
.location-related-grid strong {
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link {
  display: block;
  margin: 34px auto 0;
  max-width: 1360px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.location-details-section {
  background: var(--yellow);
  color: var(--black);
  display: grid;
  gap: clamp(55px, 10vw, 160px);
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  padding: clamp(80px, 10vw, 150px) clamp(28px, 7vw, 112px);
}

.location-details-section .eyebrow {
  color: #222;
}

.location-details-section .eyebrow::before {
  background: var(--black);
}

.location-road-list {
  border-left: 1px solid rgb(0 0 0 / 40%);
  border-top: 1px solid rgb(0 0 0 / 40%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 38px;
}

.location-road-list span {
  border-bottom: 1px solid rgb(0 0 0 / 40%);
  border-right: 1px solid rgb(0 0 0 / 40%);
  font-size: clamp(14px, 1.2vw, 19px);
  font-weight: 900;
  padding: 17px;
  text-transform: uppercase;
}

.location-details-section aside {
  border-top: 2px solid var(--black);
}

.location-details-section aside > div {
  border-bottom: 1px solid rgb(0 0 0 / 40%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 0;
}

.location-details-section aside span {
  color: rgb(0 0 0 / 58%);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-details-section aside strong {
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1.35;
}

.location-details-section aside p {
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.55;
  margin: 0;
}

.location-why-section {
  background:
    linear-gradient(135deg, transparent 62%, rgb(255 212 0 / 8%) 62%),
    #090909;
  display: grid;
  gap: clamp(60px, 10vw, 155px);
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.65fr);
  padding: clamp(85px, 10vw, 150px) clamp(28px, 7vw, 112px);
  position: relative;
}

.location-why-section > div:first-child {
  max-width: 780px;
}

.location-why-section > div:first-child > p:not(.eyebrow) {
  color: #aaa;
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.6;
}

.location-why-section > div:first-child .call-button {
  margin-top: 20px;
}

.location-why-stats {
  border-top: 4px solid var(--yellow);
}

.location-why-stats > div {
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 24px 0;
}

.location-why-stats strong {
  color: var(--yellow);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 950;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.location-why-stats span {
  color: #858585;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.location-result-disclaimer {
  bottom: 18px;
  color: #606060;
  font-size: 8px;
  left: clamp(28px, 7vw, 112px);
  line-height: 1.4;
  margin: 0;
  max-width: 720px;
  position: absolute;
}

.location-faq-section {
  padding-block: clamp(78px, 9vw, 130px);
}

.location-related-section {
  background: #111;
}

.location-related-grid a {
  transition:
    background 180ms ease,
    color 180ms ease;
}

.location-related-grid a:hover,
.location-related-grid a:focus-visible {
  background: var(--yellow);
  color: var(--black);
}

.location-related-grid a:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: -4px;
}

.location-related-grid a:hover > span,
.location-related-grid a:focus-visible > span {
  color: var(--black);
}

.location-index-hero {
  background:
    linear-gradient(120deg, #050505 0 62%, rgb(255 212 0 / 8%) 62%),
    #080808;
  padding: calc(var(--header-h) + 100px) clamp(28px, 8vw, 130px) 100px;
}

.location-index-hero h1 {
  font-size: clamp(80px, 10vw, 155px);
  max-width: 1000px;
}

.location-index-hero > p:not(.eyebrow) {
  color: #aaa;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;
  margin: 28px 0;
  max-width: 760px;
}

.location-index-grid {
  background: #e8e8e4;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  padding: clamp(70px, 8vw, 120px) clamp(28px, 7vw, 112px);
}

.location-index-grid > a {
  background: #111;
  min-height: 410px;
  overflow: hidden;
  position: relative;
  transition: transform 180ms ease;
}

.location-index-grid > a:hover,
.location-index-grid > a:focus-visible {
  transform: translateY(-6px);
  z-index: 2;
}

.location-index-grid > a:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: -4px;
}

.location-index-photo {
  background-image:
    linear-gradient(0deg, #111 0%, transparent 65%),
    var(--location-card-image);
  background-position: center;
  background-size: cover;
  filter: grayscale(0.5);
  height: 185px;
  transition:
    filter 180ms ease,
    transform 240ms ease;
}

.location-index-grid > a:hover .location-index-photo {
  filter: grayscale(0);
  transform: scale(1.035);
}

.location-index-grid > a > div:last-child {
  padding: 25px;
}

.location-index-grid span {
  color: var(--yellow);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-index-grid h2 {
  font-size: clamp(25px, 2.2vw, 36px);
  letter-spacing: -0.04em;
  margin: 12px 0 9px;
  text-transform: uppercase;
}

.location-index-grid p {
  color: #969696;
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 20px;
}

.location-index-grid strong {
  color: var(--yellow);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Mike Explains homepage, hub, and article pages */

.answers-section {
  align-items: center;
  background:
    linear-gradient(135deg, transparent 64%, rgb(255 212 0 / 7%) 64%),
    #0d0d0d;
  display: flex;
}

.answers-section::before {
  background: var(--yellow);
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: var(--header-h);
  width: 100%;
}

.answers-home-inner {
  padding-block: clamp(34px, 4vh, 54px);
}

.answers-home-heading {
  align-items: end;
  display: grid;
  gap: clamp(45px, 8vw, 120px);
  grid-template-columns: 1.15fr 0.85fr;
  margin-bottom: clamp(25px, 3.5vh, 42px);
}

.answers-home-heading h2,
.answers-index-hero h1,
.answers-index-intro h2,
.answer-article-hero h1,
.answer-related-section h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.86;
  margin: 0;
  text-transform: uppercase;
}

.answers-home-heading h2 {
  font-size: clamp(68px, 7.4vw, 116px);
}

.answers-home-heading > div:last-child > p {
  color: #aaa;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 540px;
}

.answers-all-link {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.answers-home-grid {
  border-left: 1px solid rgb(255 255 255 / 19%);
  border-top: 1px solid rgb(255 255 255 / 19%);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  grid-template-rows: repeat(2, minmax(160px, 1fr));
}

.answer-home-card {
  border-bottom: 1px solid rgb(255 255 255 / 19%);
  border-right: 1px solid rgb(255 255 255 / 19%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: clamp(20px, 2.2vw, 34px);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.answer-home-card.featured {
  grid-row: 1 / 3;
  justify-content: flex-end;
  padding: clamp(28px, 3.4vw, 52px);
}

.answer-home-card:hover,
.answer-home-card:focus-visible {
  background: var(--yellow);
  color: var(--black);
}

.answer-home-card:focus-visible,
.answers-index-grid a:focus-visible,
.answer-related-grid a:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: -4px;
}

.answer-home-card > div {
  align-items: center;
  color: #777;
  display: flex;
  font-size: 8px;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.answer-home-card > div span:first-child {
  color: var(--yellow);
}

.answer-home-card:hover > div,
.answer-home-card:focus-visible > div,
.answer-home-card:hover > div span:first-child,
.answer-home-card:focus-visible > div span:first-child {
  color: rgb(0 0 0 / 60%);
}

.answer-home-card h3 {
  font-size: clamp(19px, 1.7vw, 28px);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.03;
  margin: 13px 0 9px;
  text-transform: uppercase;
}

.answer-home-card.featured h3 {
  font-size: clamp(31px, 3.2vw, 52px);
  max-width: 780px;
}

.answer-home-card p {
  color: #999;
  font-size: clamp(11px, 0.82vw, 14px);
  line-height: 1.5;
  margin: 0 0 16px;
  max-width: 760px;
}

.answer-home-card:hover p,
.answer-home-card:focus-visible p {
  color: #333;
}

.answer-home-card strong {
  color: var(--yellow);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.answer-home-card:hover strong,
.answer-home-card:focus-visible strong {
  color: var(--black);
}

.answers-home-bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: clamp(18px, 2.5vh, 30px);
}

.answers-home-bottom p {
  color: #aaa;
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 750;
  margin: 0;
}

.answers-home-bottom .call-button {
  min-height: 56px;
}

.answers-index-hero {
  background:
    linear-gradient(125deg, #050505 0 62%, rgb(255 212 0 / 10%) 62%),
    #080808;
  min-height: 82svh;
  padding: calc(var(--header-h) + 105px) clamp(28px, 8vw, 130px) 100px;
}

.answers-index-hero h1 {
  color: var(--yellow);
  font-size: clamp(92px, 12vw, 190px);
}

.answers-index-hero > p:not(.eyebrow) {
  color: #bcbcbc;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.5;
  margin: 30px 0;
  max-width: 780px;
}

.answers-index-intro {
  align-items: start;
  background: var(--yellow);
  color: var(--black);
  display: grid;
  gap: clamp(60px, 10vw, 160px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  padding: clamp(75px, 9vw, 135px) clamp(28px, 7vw, 112px);
}

.answers-index-intro .eyebrow {
  color: #242424;
}

.answers-index-intro .eyebrow::before {
  background: var(--black);
}

.answers-index-intro h2 {
  font-size: clamp(55px, 6vw, 96px);
  max-width: 820px;
}

.answers-index-intro > p {
  font-size: clamp(17px, 1.3vw, 22px);
  font-weight: 700;
  line-height: 1.55;
  margin: 0;
}

.answers-index-grid {
  background: #ecece8;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  padding: clamp(70px, 8vw, 120px) clamp(28px, 7vw, 112px);
}

.answers-index-grid > a {
  background: #111;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: clamp(28px, 3.2vw, 50px);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.answers-index-grid > a:hover,
.answers-index-grid > a:focus-visible {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-6px);
}

.answer-card-meta,
.answer-card-bottom {
  align-items: center;
  color: #7e7e7e;
  display: flex;
  font-size: 9px;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.answer-card-meta span:last-child {
  color: var(--yellow);
}

.answers-index-grid h2 {
  font-size: clamp(25px, 2.2vw, 37px);
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin: 35px 0 18px;
  text-transform: uppercase;
}

.answers-index-grid p {
  color: #9b9b9b;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.answer-card-bottom {
  margin-top: auto;
  padding-top: 35px;
}

.answer-card-bottom strong {
  color: var(--yellow);
}

.answers-index-grid > a:hover p,
.answers-index-grid > a:focus-visible p,
.answers-index-grid > a:hover .answer-card-meta,
.answers-index-grid > a:focus-visible .answer-card-meta,
.answers-index-grid > a:hover .answer-card-meta span:last-child,
.answers-index-grid > a:focus-visible .answer-card-meta span:last-child,
.answers-index-grid > a:hover .answer-card-bottom,
.answers-index-grid > a:focus-visible .answer-card-bottom,
.answers-index-grid > a:hover .answer-card-bottom strong,
.answers-index-grid > a:focus-visible .answer-card-bottom strong {
  color: #2f2f2f;
}

.answer-article {
  background: #ecece8;
  color: var(--black);
}

.answer-article-hero {
  align-items: flex-end;
  background:
    linear-gradient(125deg, #050505 0 68%, rgb(255 212 0 / 10%) 68%),
    #080808;
  color: var(--white);
  display: flex;
  min-height: 88svh;
  padding: calc(var(--header-h) + 75px) clamp(28px, 7vw, 112px) 80px;
}

.answer-article-hero-inner {
  margin: 0 auto;
  max-width: 1360px;
  width: 100%;
}

.answer-article-hero h1 {
  font-size: clamp(62px, 7vw, 112px);
  max-width: 1240px;
}

.answer-state-label {
  background: var(--yellow);
  color: var(--black);
  display: inline-block;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin: 0 0 22px;
  padding: 9px 12px;
  text-transform: uppercase;
}

.answer-deck {
  color: #bdbdbd;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.52;
  margin: 30px 0;
  max-width: 900px;
}

.answer-byline {
  align-items: center;
  border-top: 1px solid rgb(255 255 255 / 20%);
  display: flex;
  gap: 15px;
  max-width: 900px;
  padding-top: 20px;
}

.answer-author-mark {
  align-items: center;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 22px;
  height: 48px;
  justify-content: center;
  letter-spacing: -0.04em;
  width: 48px;
}

.answer-byline > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.answer-byline strong {
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.answer-byline span {
  color: #888;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.answer-article-layout {
  align-items: start;
  display: grid;
  gap: clamp(55px, 8vw, 125px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  margin: 0 auto;
  max-width: 1360px;
  padding: clamp(70px, 9vw, 135px) clamp(28px, 7vw, 112px);
}

.answer-article-main {
  min-width: 0;
}

.answer-quick {
  background: var(--yellow);
  border-left: 8px solid var(--black);
  margin-bottom: clamp(55px, 7vw, 95px);
  padding: clamp(28px, 4vw, 55px);
}

.answer-quick .eyebrow {
  color: #252525;
}

.answer-quick .eyebrow::before {
  background: var(--black);
}

.answer-quick > p:last-child {
  font-size: clamp(20px, 1.55vw, 27px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin: 0;
}

.answer-professional-note {
  background: #fff;
  border: 1px solid rgb(0 0 0 / 18%);
  border-top: 5px solid var(--yellow);
  margin: calc(clamp(55px, 7vw, 95px) * -0.45) 0
    clamp(55px, 7vw, 95px);
  padding: clamp(24px, 3vw, 38px);
}

.answer-professional-note strong {
  display: block;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.answer-professional-note p {
  color: #525252;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.answer-copy-section {
  border-top: 1px solid rgb(0 0 0 / 22%);
  padding: clamp(40px, 5vw, 70px) 0;
}

.answer-copy-section h2,
.answer-practice-link h2,
.answer-faqs > h2,
.answer-sources h2,
.answer-sidebar-card h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(38px, 3.5vw, 58px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0 0 25px;
  text-transform: uppercase;
}

.answer-copy-section p {
  color: #444;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.72;
  margin: 0;
}

.answer-copy-section p + p {
  margin-top: 22px;
}

.answer-copy-section ul {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.answer-copy-section li {
  color: #3e3e3e;
  display: grid;
  font-size: clamp(16px, 1.1vw, 19px);
  gap: 14px;
  grid-template-columns: 9px 1fr;
  line-height: 1.6;
}

.answer-copy-section li::before {
  background: var(--yellow);
  content: "";
  height: 9px;
  margin-top: 0.55em;
  width: 9px;
}

.answer-practice-link {
  background: #111;
  color: var(--white);
  margin: 45px 0 75px;
  padding: clamp(30px, 4vw, 58px);
}

.answer-practice-link .eyebrow {
  color: var(--yellow);
}

.answer-practice-link h2 {
  max-width: 780px;
}

.answer-practice-link > a {
  color: var(--yellow);
  display: inline-block;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  margin-top: 10px;
  text-transform: uppercase;
}

.answer-faqs {
  border-top: 5px solid var(--yellow);
  padding-top: 48px;
}

.answer-faqs > article {
  border-top: 1px solid rgb(0 0 0 / 24%);
  display: grid;
  gap: 20px;
  grid-template-columns: 42px 1fr;
  padding: 28px 0;
}

.answer-faqs > article > span {
  color: #777;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.answer-faqs h3 {
  font-size: clamp(19px, 1.45vw, 24px);
  letter-spacing: -0.02em;
  margin: 0 0 9px;
}

.answer-faqs article p {
  color: #555;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.6;
  margin: 0;
}

.answer-reader-cta {
  background:
    linear-gradient(130deg, rgb(255 212 0 / 8%) 0 35%, transparent 35%),
    #111;
  color: var(--white);
  margin-top: 70px;
  padding: clamp(34px, 5vw, 62px);
}

.answer-reader-cta .eyebrow {
  color: var(--yellow);
}

.answer-reader-cta h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(40px, 4vw, 64px);
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.answer-reader-cta > p:not(.eyebrow) {
  color: #b5b5b5;
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 660px;
}

.answer-reader-cta .call-button {
  min-height: 58px;
}

.answer-sources {
  border-top: 1px solid rgb(0 0 0 / 24%);
  margin-top: 45px;
  padding-top: 40px;
}

.answer-sources h2 {
  font-size: 27px;
}

.answer-sources ul {
  display: grid;
  gap: 10px;
  margin: 0 0 30px;
  padding-left: 20px;
}

.answer-sources a {
  color: #313131;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.answer-sources > p {
  color: #777;
  font-size: 10px;
  line-height: 1.55;
}

.answer-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 35px);
}

.answer-sidebar-card {
  background: #111;
  border-top: 6px solid var(--yellow);
  color: var(--white);
  padding: clamp(28px, 3vw, 45px);
}

.answer-sidebar-card h2 {
  font-size: clamp(35px, 3vw, 48px);
}

.answer-sidebar-card > p:not(.eyebrow) {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 27px;
}

.answer-sidebar-card .call-button {
  font-size: 17px;
  min-height: 58px;
  width: 100%;
}

.answer-sidebar-note {
  align-items: flex-start;
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 24px;
}

.answer-sidebar-note strong {
  font-size: 20px;
  font-weight: 950;
  text-transform: uppercase;
}

.answer-sidebar-note span {
  color: rgb(0 0 0 / 64%);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.answer-related-section {
  background: #0d0d0d;
  padding: clamp(75px, 9vw, 135px) clamp(28px, 7vw, 112px);
}

.answer-related-section > div:first-child,
.answer-related-grid {
  margin-inline: auto;
  max-width: 1360px;
}

.answer-related-section h2 {
  font-size: clamp(55px, 6vw, 95px);
  margin-bottom: 50px;
}

.answer-related-grid {
  border-left: 1px solid rgb(255 255 255 / 18%);
  border-top: 1px solid rgb(255 255 255 / 18%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.answer-related-grid a {
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  border-right: 1px solid rgb(255 255 255 / 18%);
  min-height: 235px;
  padding: clamp(28px, 3.2vw, 48px);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.answer-related-grid a:hover,
.answer-related-grid a:focus-visible {
  background: var(--yellow);
  color: var(--black);
}

.answer-related-grid a > span,
.answer-related-grid strong {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.answer-related-grid h3 {
  font-size: clamp(23px, 2vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 25px 0 35px;
  text-transform: uppercase;
}

.answer-related-grid a:hover > span,
.answer-related-grid a:focus-visible > span,
.answer-related-grid a:hover strong,
.answer-related-grid a:focus-visible strong {
  color: var(--black);
}

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .proof-grid {
    gap: 50px;
  }

  .testimonials-inner {
    gap: 45px;
    grid-template-columns: minmax(270px, 0.7fr) minmax(440px, 1.3fr);
  }

  .lawyer-grid {
    gap: 55px;
  }

  .process-steps article {
    grid-template-columns: 1fr;
  }

  .areas-grid,
  .faq-inner {
    gap: 55px;
  }

  .areas-grid {
    gap: 48px;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  }

  .location-list a {
    gap: 7px;
    grid-template-columns: 22px minmax(0, 1fr);
    min-height: 54px;
  }

  .practice-hero-grid {
    gap: 50px;
    grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  }

  .practice-list-grid,
  .practice-related-grid,
  .practice-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-practice-grid,
  .location-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .answers-home-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  }

  .answers-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .answer-article-layout {
    gap: 50px;
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 70px;
  }

  body {
    padding-bottom: 70px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand-number,
  .brand-word {
    font-size: 27px;
  }

  .header-call,
  .practice-header > .call-button,
  .header-actions {
    display: none;
  }

  .snap-shell {
    height: calc(100svh - 70px);
    scroll-padding-top: 0;
  }

  .snap-section {
    min-height: calc(100svh - 70px);
    padding-top: var(--header-h);
  }

  .hero-section {
    align-items: flex-end;
  }

  .hero-photo {
    background-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, #050505 12%, rgb(5 5 5 / 84%) 60%, rgb(5 5 5 / 28%) 100%),
      linear-gradient(90deg, rgb(5 5 5 / 82%), transparent);
  }

  .hero-content {
    margin-left: 0;
    padding: 40px 20px 34px;
    width: 100%;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.13em;
    margin-bottom: 15px;
  }

  .hero-content h1 {
    font-size: clamp(56px, 16.5vw, 76px);
    line-height: 0.82;
  }

  .hero-promise {
    font-size: 17px;
    margin: 20px 0;
  }

  .call-button {
    font-size: 17px;
    min-height: 58px;
    width: 100%;
  }

  .hero-actions {
    display: grid;
    gap: 9px;
    grid-template-columns: 1fr 1fr;
  }

  .evaluation-button {
    font-size: 13px;
    gap: 10px;
    min-height: 58px;
    padding: 0 12px;
  }

  .evaluation-button svg {
    display: none;
  }

  .hero-proof {
    gap: 10px;
    margin-top: 24px;
    padding-top: 16px;
  }

  .hero-proof > div {
    padding-right: 8px;
  }

  .hero-proof > div + div {
    padding-left: 10px;
  }

  .hero-proof strong {
    font-size: 15px;
  }

  .hero-proof span {
    font-size: 9px;
  }

  .scroll-cue {
    display: none;
  }

  .proof-section {
    align-items: flex-start;
    overflow-y: auto;
  }

  .proof-section::before {
    height: 8px;
    width: 100%;
  }

  .section-inner {
    padding: 44px 22px 100px;
  }

  .proof-grid {
    display: block;
  }

  .proof-lead h2 {
    font-size: clamp(55px, 17vw, 78px);
    margin-bottom: 28px;
  }

  .proof-copy .lead-copy {
    font-size: 20px;
  }

  .proof-copy p {
    font-size: 15px;
  }

  .settle-mark {
    margin: 20px 0;
  }

  .settle-mark span {
    font-size: 12px;
  }

  .settle-mark strong {
    font-size: 35px;
  }

  .result-disclaimer {
    bottom: 20px;
    font-size: 8px;
    left: 22px;
    max-width: calc(100% - 44px);
  }

  .section-count,
  .section-dots {
    display: none;
  }

  .section-heading {
    display: block;
    margin-bottom: 24px;
  }

  .section-heading h2,
  .process-inner > h2,
  .faq-heading h2 {
    font-size: clamp(48px, 14vw, 66px);
    margin-bottom: 18px;
  }

  .section-heading > p {
    font-size: 14px;
  }

  .cases-section,
  .testimonials-section,
  .claim-details-section,
  .lawyer-section,
  .process-section,
  .areas-section,
  .answers-section,
  .faq-section {
    align-items: flex-start;
    overflow-y: auto;
  }

  .testimonials-inner {
    display: block;
    padding: 42px 20px 105px;
  }

  .testimonials-heading h2 {
    font-size: clamp(52px, 15vw, 70px);
  }

  .testimonials-heading > p:not(.eyebrow) {
    font-size: 14px;
    margin: 18px 0 22px;
  }

  .testimonials-heading .call-button {
    display: none;
  }

  .testimonials-content {
    margin-top: 28px;
  }

  .testimonial-carousel {
    box-shadow: 9px 9px 0 var(--yellow);
    padding: 25px 22px;
  }

  .testimonial-card {
    min-height: 0;
  }

  .testimonial-quote-mark {
    font-size: 105px;
  }

  .testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.48;
    margin: 24px 0;
  }

  .testimonial-card footer {
    padding-top: 16px;
  }

  .testimonial-controls {
    gap: 15px;
    grid-template-columns: auto auto;
    margin-top: 22px;
  }

  .testimonial-dots {
    display: none;
  }

  .testimonial-disclaimer {
    font-size: 9px;
    margin-top: 22px;
  }

  .cases-inner {
    padding: 40px 18px 96px;
  }

  .claim-details-inner {
    padding: 40px 20px 100px;
  }

  .claim-details-heading {
    display: block;
    margin-bottom: 24px;
  }

  .claim-details-heading h2 {
    font-size: clamp(48px, 14vw, 66px);
    margin-bottom: 18px;
  }

  .claim-details-heading > p {
    font-size: 14px;
  }

  .claim-detail-grid {
    display: block;
  }

  .claim-detail-card {
    padding: 24px 0;
  }

  .claim-detail-card + .claim-detail-card {
    border-left: 0;
    border-top: 1px solid rgb(255 255 255 / 20%);
  }

  .claim-detail-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .claim-detail-card ul {
    gap: 11px;
  }

  .claim-detail-card li {
    font-size: 14px;
  }

  .claim-details-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
  }

  .claim-details-cta > p {
    font-size: 13px;
  }

  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-card {
    min-height: 148px;
    padding: 16px;
  }

  .case-card h3 {
    font-size: 18px;
    margin: 42px 38px 0 0;
  }

  .case-icon {
    height: 38px;
    right: 14px;
    top: 16px;
    width: 38px;
  }

  .section-cta-row {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .section-cta-row > p {
    font-size: 14px;
  }

  .lawyer-section {
    background: #111;
  }

  .lawyer-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 38px 20px 100px;
  }

  .lawyer-headshot {
    aspect-ratio: 1;
    box-shadow: 9px 9px 0 var(--yellow);
    max-height: none;
    max-width: none;
    order: 2;
  }

  .lawyer-headshot figcaption {
    bottom: 18px;
    left: 18px;
  }

  .lawyer-copy h2 {
    font-size: clamp(48px, 14vw, 66px);
    margin-bottom: 20px;
  }

  .lawyer-copy .lead-copy {
    font-size: 18px;
  }

  .lawyer-copy > p {
    font-size: 13px;
  }

  .lawyer-stats {
    margin: 20px 0;
    padding: 14px 0;
  }

  .lawyer-stats strong {
    font-size: 22px;
  }

  .lawyer-stats span {
    font-size: 8px;
  }

  .process-inner {
    padding: 40px 20px 100px;
  }

  .process-steps {
    display: block;
    margin-top: 20px;
  }

  .process-steps article {
    gap: 14px;
    grid-template-columns: 44px 1fr;
    min-height: 0;
    padding: 18px 0;
  }

  .process-steps article + article {
    border-left: 0;
    border-top: 1px solid rgb(255 255 255 / 18%);
  }

  .process-steps article > span {
    font-size: 28px;
  }

  .process-steps h3 {
    font-size: 18px;
    margin-bottom: 7px;
  }

  .process-steps p {
    font-size: 12px;
  }

  .process-bottom {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .process-bottom span {
    font-size: 11px;
  }

  .process-bottom strong {
    font-size: 34px;
  }

  .areas-grid {
    display: block;
    padding: 40px 20px 100px;
  }

  .areas-section::after {
    mask-image: linear-gradient(180deg, transparent 0%, black 28%, black 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 28%, black 100%);
  }

  .areas-grid h2 {
    font-size: clamp(62px, 18vw, 82px);
    margin-bottom: 22px;
  }

  .areas-grid .lead-copy {
    font-size: 18px;
  }

  .areas-grid p {
    font-size: 13px;
  }

  .areas-grid .call-button {
    margin: 14px 0 28px;
  }

  .areas-map-mark {
    bottom: auto;
    height: 350px;
    opacity: 0.16;
    right: -58px;
    top: 32px;
    width: 235px;
  }

  .location-list a {
    gap: 7px;
    grid-template-columns: 20px minmax(0, 1fr);
    min-height: 45px;
  }

  .location-list a:nth-child(odd) {
    padding-inline: 6px 8px;
  }

  .location-list a:nth-child(even) {
    padding-inline: 8px 6px;
  }

  .location-name {
    font-size: 11px;
  }

  .location-number {
    font-size: 8px;
  }

  .answers-home-inner {
    padding: 42px 18px 100px;
  }

  .answers-home-heading {
    display: block;
    margin-bottom: 24px;
  }

  .answers-home-heading h2 {
    font-size: clamp(58px, 18vw, 82px);
    margin-bottom: 18px;
  }

  .answers-home-heading > div:last-child > p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .answers-home-grid {
    display: block;
  }

  .answer-home-card,
  .answer-home-card.featured {
    min-height: 0;
    padding: 23px 19px;
  }

  .answer-home-card.featured h3,
  .answer-home-card h3 {
    font-size: 22px;
  }

  .answer-home-card p {
    font-size: 11px;
  }

  .answers-home-bottom {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .answers-home-bottom p {
    font-size: 13px;
  }

  .faq-inner {
    display: block;
    padding: 40px 20px 100px;
  }

  .faq-heading {
    position: static;
  }

  .faq-heading > p {
    font-size: 13px;
    margin: 15px 0 20px;
  }

  .faq-heading .call-button {
    margin-bottom: 28px;
  }

  .faq-list article {
    gap: 9px;
    grid-template-columns: 26px 1fr;
    padding: 15px 0;
  }

  .faq-list h3 {
    font-size: 16px;
  }

  .faq-list p {
    font-size: 11px;
  }

  .final-section {
    justify-content: flex-start;
    overflow-y: auto;
  }

  .final-content {
    display: block;
    padding: 48px 18px 34px;
  }

  .final-message {
    margin-bottom: 38px;
  }

  .final-message h2 {
    font-size: clamp(70px, 22vw, 96px);
  }

  .final-message > p:not(.eyebrow) {
    font-size: 16px;
    margin: 22px 0;
  }

  .final-form-card,
  .intake-page-card {
    padding: 24px 18px;
  }

  .final-form-card > h3,
  .intake-page-card > h2 {
    font-size: 33px;
  }

  .final-section footer {
    align-items: start;
    bottom: auto;
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr 1fr;
    padding: 25px 20px 105px;
    position: relative;
  }

  .final-section footer .brand {
    grid-column: 1 / -1;
  }

  .footer-legal {
    font-size: 8px;
  }

  .mobile-call-bar {
    align-items: center;
    background: var(--yellow);
    bottom: 0;
    color: var(--black);
    display: flex;
    gap: 12px;
    height: 70px;
    inset-inline: 0;
    justify-content: center;
    position: fixed;
    z-index: 60;
  }

  .mobile-intake-bar {
    background: var(--yellow);
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 70px;
    inset-inline: 0;
    position: fixed;
    z-index: 65;
  }

  .mobile-intake-bar > a {
    align-items: center;
    color: var(--black);
    display: flex;
    font-size: 12px;
    font-weight: 950;
    justify-content: center;
    padding: 8px 12px;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-intake-bar > a + a {
    background: var(--black);
    color: var(--yellow);
  }

  .mobile-intake-bar svg {
    height: 22px;
    margin-right: 8px;
    width: 22px;
  }

  .mobile-intake-bar span {
    display: flex;
    flex-direction: column;
    font-size: 8px;
    letter-spacing: 0.08em;
    line-height: 1.05;
  }

  .mobile-intake-bar strong {
    font-size: 14px;
    letter-spacing: -0.02em;
  }

  .mobile-call-bar svg {
    height: 27px;
    width: 27px;
  }

  .mobile-call-bar span {
    display: flex;
    flex-direction: column;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .mobile-call-bar strong {
    font-size: 20px;
    letter-spacing: -0.02em;
  }

  .practice-page-shell {
    height: calc(100svh - 70px);
  }

  .intake-form {
    display: block;
  }

  .intake-field,
  .intake-submit {
    margin-bottom: 17px;
  }

  .intake-page-shell {
    height: calc(100svh - 70px);
    min-height: calc(100svh - 70px);
  }

  .intake-page-intro {
    display: block;
    min-height: auto;
    padding: 42px 18px 44px;
  }

  .intake-page-intro h1 {
    font-size: clamp(65px, 20vw, 88px);
  }

  .intake-page-intro > div:first-child > p:not(.eyebrow) {
    font-size: 15px;
    margin: 22px 0;
  }

  .intake-page-trust {
    margin-bottom: 36px;
  }

  .intake-page-footer {
    align-items: start;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px 105px;
  }

  .practice-hero {
    align-items: flex-start;
    min-height: auto;
    padding: 110px 20px 65px;
  }

  .practice-hero::after {
    display: none;
  }

  .practice-hero-grid {
    display: block;
  }

  .breadcrumbs {
    font-size: 8px;
    margin-bottom: 28px;
  }

  .practice-hero h1 {
    font-size: clamp(55px, 16vw, 76px);
  }

  .practice-hero-intro {
    font-size: 16px;
    margin: 22px 0;
  }

  .practice-fee-line {
    font-size: 9px;
  }

  .practice-hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 36px;
  }

  .practice-hero-proof > div {
    padding: 16px 8px 0;
  }

  .practice-hero-proof > div + div {
    border-left: 1px solid rgb(255 255 255 / 18%);
  }

  .practice-hero-proof strong {
    font-size: 19px;
  }

  .practice-hero-proof span {
    font-size: 8px;
  }

  .practice-overview,
  .practice-detail-section,
  .practice-faq-section,
  .practice-related-section {
    padding: 62px 20px;
  }

  .practice-content-grid {
    display: block;
  }

  .practice-content-grid h2,
  .practice-section-heading h2,
  .practice-focus-section h2,
  .practice-index-hero h1,
  .practice-index-cta h2 {
    font-size: clamp(48px, 14vw, 66px);
    margin-bottom: 28px;
  }

  .practice-prose p {
    font-size: 16px;
  }

  .practice-list-grid,
  .practice-related-grid,
  .practice-index-grid {
    display: block;
  }

  .practice-list-grid article {
    padding: 28px 22px;
  }

  .practice-list-grid h3 {
    font-size: 21px;
  }

  .practice-list-grid li {
    font-size: 13px;
  }

  .practice-focus-section {
    display: block;
    padding: 62px 20px;
  }

  .practice-focus-section h2 {
    margin-bottom: 35px;
  }

  .practice-focus-section li {
    padding: 18px 0;
  }

  .practice-focus-section li strong {
    font-size: 15px;
  }

  .practice-faq-list article {
    gap: 10px;
    grid-template-columns: 28px 1fr;
  }

  .practice-faq-list h3 {
    font-size: 18px;
  }

  .practice-faq-list p {
    font-size: 13px;
  }

  .practice-related-grid a {
    display: block;
    min-height: 0;
    padding: 28px 22px;
  }

  .practice-related-grid h3 {
    font-size: 22px;
  }

  .practice-final-cta {
    min-height: 0;
    padding: 80px 20px 0;
  }

  .practice-final-cta h2 {
    font-size: clamp(75px, 23vw, 102px);
  }

  .practice-final-cta footer {
    display: block;
    margin-top: 70px;
    padding: 30px 0 100px;
  }

  .practice-final-cta footer p {
    margin-top: 15px;
  }

  .practice-index-hero {
    padding: 125px 20px 70px;
  }

  .practice-index-hero > p:not(.eyebrow) {
    font-size: 16px;
  }

  .practice-index-grid {
    padding: 48px 18px;
  }

  .practice-index-grid a {
    display: block;
    min-height: 0;
    padding: 27px 22px;
  }

  .practice-index-grid h2 {
    font-size: 22px;
    margin: 16px 0 9px;
  }

  .practice-index-grid strong {
    margin-top: 20px;
  }

  .practice-index-cta {
    padding: 70px 20px 100px;
  }

  .location-hero {
    align-items: flex-end;
    min-height: calc(100svh - 70px);
    padding: 125px 20px 62px;
  }

  .location-photo {
    background-position: center;
  }

  .location-hero-shade {
    background:
      linear-gradient(0deg, #050505 5%, rgb(5 5 5 / 88%) 56%, rgb(5 5 5 / 28%) 100%),
      linear-gradient(90deg, rgb(5 5 5 / 70%), transparent);
  }

  .location-hero h1 {
    font-size: clamp(57px, 16vw, 78px);
  }

  .location-hero-content > p:not(.eyebrow) {
    font-size: 15px;
    margin: 20px 0;
  }

  .location-hero-facts {
    gap: 8px;
    margin-top: 22px;
  }

  .location-hero-facts span {
    font-size: 8px;
    width: 100%;
  }

  .photo-credit {
    bottom: 8px;
    font-size: 6px;
    left: 20px;
    right: 20px;
    text-align: left;
  }

  .location-story-section,
  .location-details-section,
  .location-why-section {
    display: block;
    padding: 62px 20px;
  }

  .location-story-heading h2,
  .location-details-section h2,
  .location-why-section h2,
  .location-index-hero h1 {
    font-size: clamp(49px, 14vw, 67px);
    margin-bottom: 28px;
  }

  .location-story-copy p {
    font-size: 15px;
  }

  .location-landmarks-section,
  .location-practices-section,
  .location-related-section {
    padding: 62px 20px;
  }

  .location-landmark-grid,
  .location-practice-grid,
  .location-related-grid,
  .location-index-grid {
    display: block;
  }

  .location-landmark-grid article,
  .location-practice-grid a,
  .location-related-grid a {
    display: block;
    min-height: 0;
    padding: 27px 22px;
  }

  .location-landmark-grid h3,
  .location-related-grid h3 {
    font-size: 22px;
    margin: 15px 0 10px;
  }

  .location-practice-grid h3 {
    font-size: 20px;
  }

  .location-road-list {
    margin-bottom: 35px;
  }

  .location-road-list span {
    font-size: 12px;
    padding: 13px;
  }

  .location-details-section aside strong,
  .location-details-section aside p {
    font-size: 14px;
  }

  .location-why-stats {
    margin-top: 40px;
  }

  .location-result-disclaimer {
    bottom: 10px;
    font-size: 6px;
    left: 20px;
    max-width: calc(100% - 40px);
  }

  .location-index-hero {
    padding: 125px 20px 70px;
  }

  .location-index-hero > p:not(.eyebrow) {
    font-size: 16px;
  }

  .location-index-grid {
    padding: 42px 18px;
  }

  .location-index-grid > a {
    display: block;
    min-height: 0;
  }

  .location-index-photo {
    height: 190px;
  }

  .answers-index-hero {
    min-height: auto;
    padding: 125px 20px 70px;
  }

  .answers-index-hero h1 {
    font-size: clamp(78px, 25vw, 108px);
  }

  .answers-index-hero > p:not(.eyebrow) {
    font-size: 16px;
  }

  .answers-index-intro {
    display: block;
    padding: 62px 20px;
  }

  .answers-index-intro h2 {
    font-size: clamp(48px, 14vw, 66px);
    margin-bottom: 28px;
  }

  .answers-index-intro > p {
    font-size: 16px;
  }

  .answers-index-grid {
    display: block;
    padding: 48px 18px;
  }

  .answers-index-grid > a {
    min-height: 0;
    padding: 28px 22px;
  }

  .answers-index-grid h2 {
    font-size: 24px;
    margin: 24px 0 14px;
  }

  .answers-index-grid p {
    font-size: 13px;
  }

  .answer-card-bottom {
    margin-top: 28px;
    padding-top: 0;
  }

  .answer-article-hero {
    align-items: flex-start;
    min-height: auto;
    padding: 115px 20px 60px;
  }

  .answer-article-hero h1 {
    font-size: clamp(50px, 14.5vw, 70px);
  }

  .answer-deck {
    font-size: 15px;
    margin: 22px 0;
  }

  .answer-byline {
    align-items: flex-start;
  }

  .answer-author-mark {
    flex: 0 0 42px;
    font-size: 19px;
    height: 42px;
    width: 42px;
  }

  .answer-byline strong {
    font-size: 11px;
  }

  .answer-byline span {
    font-size: 8px;
    line-height: 1.45;
  }

  .answer-article-layout {
    display: block;
    padding: 52px 20px 70px;
  }

  .answer-quick {
    border-left-width: 5px;
    margin-bottom: 52px;
    padding: 25px 22px;
  }

  .answer-quick > p:last-child {
    font-size: 18px;
  }

  .answer-copy-section {
    padding: 38px 0;
  }

  .answer-copy-section h2,
  .answer-practice-link h2,
  .answer-faqs > h2,
  .answer-sidebar-card h2 {
    font-size: 38px;
  }

  .answer-copy-section p,
  .answer-copy-section li {
    font-size: 15px;
  }

  .answer-practice-link {
    margin: 35px 0 58px;
    padding: 28px 23px;
  }

  .answer-faqs > article {
    gap: 10px;
    grid-template-columns: 28px 1fr;
    padding: 22px 0;
  }

  .answer-faqs h3 {
    font-size: 18px;
  }

  .answer-faqs article p {
    font-size: 13px;
  }

  .answer-sidebar {
    margin-top: 55px;
    position: static;
  }

  .answer-sidebar-card {
    padding: 30px 24px;
  }

  .answer-related-section {
    padding: 62px 20px;
  }

  .answer-related-section h2 {
    font-size: clamp(48px, 14vw, 66px);
    margin-bottom: 32px;
  }

  .answer-related-grid {
    display: block;
  }

  .answer-related-grid a {
    display: block;
    min-height: 0;
    padding: 27px 22px;
  }

  .answer-related-grid h3 {
    font-size: 22px;
    margin: 18px 0 25px;
  }
}

@media (max-height: 720px) and (min-width: 721px) {
  .hero-content {
    padding-bottom: 50px;
    padding-top: 35px;
  }

  .hero-content h1 {
    font-size: min(18vh, 128px);
  }

  .hero-proof {
    margin-top: 24px;
  }

  .section-inner {
    padding-block: 38px;
  }

  .proof-lead h2 {
    font-size: min(13vh, 92px);
  }

  .testimonials-heading h2 {
    font-size: min(10vh, 75px);
  }

  .testimonial-card {
    min-height: min(48vh, 410px);
  }

  .testimonial-card blockquote {
    font-size: min(2.4vh, 20px);
    margin-block: 22px;
  }

  .case-card {
    min-height: min(13vh, 112px);
  }

  .claim-details-heading {
    margin-bottom: 20px;
  }

  .claim-details-heading h2 {
    font-size: min(10vh, 76px);
  }

  .claim-detail-card {
    padding-block: 22px;
  }

  .claim-detail-card ul {
    gap: 8px;
  }

  .claim-details-cta {
    margin-top: 18px;
  }

  .lawyer-headshot {
    max-height: 430px;
  }

  .lawyer-copy h2 {
    font-size: min(10vh, 80px);
  }

  .lawyer-copy > p {
    margin-block: 8px;
  }

  .lawyer-stats {
    margin-block: 14px;
    padding-block: 14px;
  }

  .process-inner > h2 {
    font-size: min(10vh, 78px);
  }

  .process-steps {
    margin-top: 24px;
  }

  .process-steps article {
    min-height: min(24vh, 220px);
    padding-block: 28px;
  }

  .faq-list article {
    padding-block: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/* WordPress compatibility and added content layouts */
.testimonial-card[data-slide] { display: none; }
.testimonial-card[data-slide].is-active { display: flex; }
.practice-index-grid .case-icon { color: var(--yellow); height: 44px; margin: 22px 0 4px; width: 44px; }
.location-index-grid > a { display: flex; flex-direction: column; }
.location-index-grid > a > img { filter: grayscale(.45); height: 210px; object-fit: cover; width: 100%; }
.location-index-grid > a > span,
.location-index-grid > a > h2,
.location-index-grid > a > strong { margin-left: 25px; margin-right: 25px; }
.location-index-grid > a > span { margin-top: 24px; }
.intake-page-section {
  background: #e8e8e4;
  color: #111;
  display: grid;
  gap: clamp(35px, 7vw, 100px);
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  padding: clamp(65px, 8vw, 120px) clamp(28px, 7vw, 112px);
}
.intake-page-section .final-form-card { background: #fff; padding: clamp(28px, 4vw, 55px); }
.intake-page-section aside { padding-top: 35px; }
.intake-page-section aside li { margin: 0 0 20px; padding-left: 8px; }
.answer-article-shell { background: #ecece8; color: #111; }
.answer-article-hero { display: block; min-height: 72svh; padding-top: calc(var(--header-h) + 90px); }
.answer-article-hero > p:not(.eyebrow) { color: #bbb; font-size: clamp(17px, 1.4vw, 22px); line-height: 1.55; max-width: 900px; }
.answer-article-hero .answer-byline { margin-top: 34px; }
.answer-content-layout {
  align-items: start;
  display: grid;
  gap: clamp(50px, 7vw, 110px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, .38fr);
  margin: 0 auto;
  max-width: 1360px;
  padding: clamp(70px, 9vw, 130px) clamp(28px, 7vw, 112px);
}
.answer-article-content .mike-quick-answer { background: var(--yellow); border-left: 8px solid #111; padding: clamp(28px, 4vw, 52px); }
.answer-article-content section { border-top: 1px solid rgba(0,0,0,.2); padding: clamp(40px, 5vw, 68px) 0; }
.answer-article-content h2 { font-size: clamp(34px, 3.2vw, 54px); letter-spacing: -.035em; line-height: 1; text-transform: uppercase; }
.answer-article-content h3 { font-size: clamp(20px, 2vw, 28px); margin-top: 32px; }
.answer-article-content p,
.answer-article-content li { color: #444; font-size: clamp(16px, 1.15vw, 19px); line-height: 1.7; }
.answer-article-content li { margin-bottom: 12px; }
.answer-disclaimer { background: #fff; border-top: 5px solid var(--yellow); padding: 28px; }
.answer-sidebar { background: #111; color: #fff; padding: 32px; position: sticky; top: calc(var(--header-h) + 25px); }
.answer-sidebar h2 { font-size: clamp(31px, 3vw, 48px); text-transform: uppercase; }
.answer-sidebar > a { color: var(--yellow); display: inline-block; font-weight: 900; margin-top: 24px; text-transform: uppercase; }
.answers-pagination { background: #e8e8e4; color: #111; padding: 0 7vw 70px; text-align: center; }
@media (max-width: 800px) {
  .intake-page-section,
  .answer-content-layout { grid-template-columns: 1fr; }
  .answer-sidebar { position: static; }
  .answer-article-hero { min-height: auto; padding-bottom: 60px; }
  .location-index-grid > a > img { height: 175px; }
}

/* Mike Explains contrast repair.
 * The article body intentionally uses dark text on a light background. Restore
 * the 732INJURED light-on-dark palette where the page returns to dark panels.
 */
.answer-article-shell .practice-related-section,
.answer-article-shell .practice-final-cta {
  color: #f7f7f4;
}

.answer-article-shell .practice-related-section .practice-section-heading h2,
.answer-article-shell .practice-related-grid h3,
.answer-article-shell .practice-final-cta h2 {
  color: #f7f7f4;
}

.answer-article-shell .practice-related-grid a:hover h3,
.answer-article-shell .practice-related-grid a:focus-visible h3 {
  color: #050505;
}

.answer-article-shell .practice-final-cta > p:not(.eyebrow) {
  color: #c7c7c7;
}

.answer-article-shell .practice-final-cta footer p,
.answer-article-shell .practice-final-cta footer p a,
.answer-article-shell .practice-final-cta footer .brand-firm {
  color: #bdbdbd;
}

.answer-article-shell .answer-sidebar > a:not(.call-button) {
  color: var(--yellow);
}

.answer-article-shell .answer-sidebar .call-button {
  color: #050505;
  width: 100%;
}
