@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=IBM+Plex+Mono:wght@500;600&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --oxblood: #8f1023;
  --crimson: #b5162d;
  --ink: #181719;
  --charcoal: #2a2829;
  --ivory: #f4efe6;
  --paper: #fbf8f2;
  --sand: #d7ccbc;
  --muted: #696363;
  --white: #ffffff;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --shell: min(1320px, calc(100vw - 96px));
  --focus: #f6c75b;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
  font-family: var(--body);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-padding {
  padding-block: 132px 148px;
}

.utility-bar {
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
}

.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.utility-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.utility-inner span:nth-child(2) {
  margin-left: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(24, 23, 25, 0.12);
  background: rgba(251, 248, 242, 0.96);
}

.header-inner {
  min-height: 130px;
  display: grid;
  grid-template-columns: minmax(230px, 330px) 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand-link {
  width: min(100%, 308px);
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 10px;
}

.brand-eagle {
  width: 100%;
  height: 82px;
  object-fit: contain;
}

.brand-wordmark {
  width: 100%;
  filter: brightness(0) saturate(100%);
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(20px, 2.2vw, 38px);
}

.desktop-nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--oxblood);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 13px 22px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--oxblood);
  color: var(--white);
}

.button-primary:hover {
  background: var(--crimson);
}

.button-light {
  background: var(--paper);
  color: var(--oxblood);
}

.button-light:hover {
  background: var(--white);
}

.header-cta {
  min-width: 176px;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  background:
    linear-gradient(rgba(24, 23, 25, 0.025) 1px, transparent 1px),
    var(--ivory);
  background-size: 100% 32px;
}

.hero-red-field {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 32%;
  background: var(--oxblood);
}

.hero-eagle {
  position: absolute;
  z-index: 2;
  right: -4.5vw;
  top: 8%;
  width: min(60vw, 900px);
  height: 86%;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(-18px 20px 30px rgba(54, 10, 18, 0.12));
}

.hero-rail {
  position: absolute;
  z-index: 4;
  left: max(18px, calc((100vw - 1320px) / 2 - 30px));
  top: 180px;
  bottom: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-rail::before,
.hero-rail::after {
  content: "";
  width: 1px;
  height: 74px;
  background: rgba(24, 23, 25, 0.28);
}

.hero-grid {
  position: relative;
  z-index: 5;
  min-height: 830px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  align-items: end;
  padding-block: 100px 76px;
}

.hero-copy {
  grid-column: 1 / span 6;
  padding-left: 46px;
}

.eyebrow,
.section-label,
.card-kicker,
.panel-index {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 26px;
  padding: 10px 18px;
  border-block: 1px solid rgba(143, 16, 35, 0.34);
  color: var(--oxblood);
}

.hero h1,
.trust-lead h2,
.result-feature h2,
.case-heading h2,
.attorney-copy h2,
.locations-heading h2,
.review-heading h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 770px;
  margin: 0;
  font-size: clamp(4.7rem, 6.7vw, 7rem);
  line-height: 0.84;
}

.hero-intro {
  max-width: 550px;
  margin: 34px 0 0;
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  color: var(--oxblood);
  font-weight: 700;
  transition:
    color 180ms ease,
    gap 180ms ease;
}

.text-link:hover {
  color: var(--crimson);
  gap: 13px;
}

.text-link-light {
  color: var(--paper);
}

.text-link-light:hover {
  color: var(--white);
}

.hero-review-card {
  grid-column: 9 / -1;
  position: relative;
  z-index: 6;
  background: rgba(251, 248, 242, 0.97);
  border: 1px solid rgba(24, 23, 25, 0.35);
  padding: 28px;
}

.hero-review-card p {
  margin: 14px 0 20px;
}

.hero-review-card .button {
  width: 100%;
}

.card-kicker {
  color: var(--oxblood);
}

.trust-note {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 60px;
  color: var(--oxblood);
}

.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 18px;
  background: rgba(24, 23, 25, 0.18);
}

.section-label-inverse {
  color: var(--sand);
}

.section-label-inverse span:first-child {
  color: var(--crimson);
}

.section-label-inverse::after {
  background: rgba(215, 204, 188, 0.4);
}

.trust-section {
  background: var(--paper);
}

.trust-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: start;
}

.trust-lead h2 {
  margin: 0;
  font-size: clamp(4.8rem, 7.2vw, 7rem);
  line-height: 0.82;
}

.trust-lead h2 span,
.result-feature h2 span {
  color: var(--oxblood);
}

.trust-lead > p {
  max-width: 480px;
  margin: 42px 0 0;
  font-family: var(--display);
  font-size: 1.28rem;
  line-height: 1.55;
}

.evidence-ledger {
  border-top: 1px solid var(--sand);
}

.ledger-heading,
.evidence-row {
  display: grid;
  grid-template-columns: 54px 1fr 155px;
  column-gap: 22px;
  align-items: center;
}

.ledger-heading {
  min-height: 58px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oxblood);
}

.ledger-heading span:first-child {
  grid-column: 2;
}

.evidence-row {
  min-height: 104px;
  border-top: 1px solid var(--sand);
}

.evidence-row strong {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.2;
}

.evidence-index,
.evidence-source,
.credential span {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.evidence-index {
  color: var(--oxblood);
}

.evidence-source {
  color: var(--muted);
}

.credential-shelf {
  margin-top: 84px;
  padding-top: 42px;
  border-top: 1px solid var(--sand);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.credential {
  min-height: 126px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 24px;
  border-left: 1px solid var(--sand);
}

.credential:first-child {
  border-left: 0;
  padding-left: 0;
}

.credential img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.credential strong,
.credential span {
  display: block;
}

.credential strong {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.2;
}

.credential span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.55rem;
}

.results-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.results-eagle {
  position: absolute;
  right: 0;
  top: 11%;
  width: 48%;
  height: 78%;
  object-fit: cover;
  opacity: 0.44;
  mix-blend-mode: screen;
}

.results-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--ink) 43%, rgba(24, 23, 25, 0.32) 100%);
}

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

.results-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 72px;
}

.result-feature {
  padding-right: 70px;
  border-right: 1px solid rgba(215, 204, 188, 0.5);
}

.result-feature h2 {
  margin: 0 0 38px;
  font-size: clamp(4.8rem, 6.5vw, 6.8rem);
  line-height: 0.9;
}

.result-amount {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 0.9;
}

.result-amount > span {
  display: inline-block;
  margin-right: 12px;
  font-size: clamp(9rem, 15vw, 14rem);
  letter-spacing: -0.07em;
}

.result-feature > p:last-child,
.result-secondary article > p:last-child {
  color: var(--sand);
  font-size: 1.05rem;
}

.result-secondary {
  display: grid;
  align-content: center;
}

.result-secondary article {
  min-height: 210px;
  padding-block: 35px;
  border-bottom: 1px solid rgba(215, 204, 188, 0.45);
}

.result-secondary article:last-child {
  border-bottom: 0;
}

.result-index {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--crimson);
}

.secondary-amount {
  margin: 12px 0 4px;
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
}

.secondary-amount span {
  font-size: 1.55rem;
}

.results-footer {
  margin-top: 72px;
  padding-top: 26px;
  border-top: 1px solid rgba(215, 204, 188, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.results-footer p {
  margin: 0;
  color: var(--sand);
  font-size: 0.82rem;
}

.case-section {
  background: var(--ivory);
}

.case-heading {
  margin-bottom: 42px;
}

.case-heading h2 {
  margin: 0;
  font-size: clamp(3.5rem, 5.6vw, 5.7rem);
  line-height: 0.96;
}

.case-heading p {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--muted);
}

.case-layout {
  display: grid;
  grid-template-columns: 6fr 7fr;
  gap: 24px;
}

.featured-case {
  border: 1px solid var(--sand);
  background: var(--paper);
}

.featured-case > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.featured-case-copy {
  padding: 28px 32px 36px;
}

.featured-case-copy > span,
.case-row > span {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--oxblood);
}

.featured-case h3 {
  margin: 8px 0 18px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}

.featured-case a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--oxblood);
  font-weight: 700;
}

.case-list {
  border-top: 1px solid var(--sand);
}

.case-row {
  min-height: 95px;
  display: grid;
  grid-template-columns: 54px 1fr minmax(0, 210px);
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--sand);
}

.case-row h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
}

.case-row img {
  width: 100%;
  height: 94px;
  object-fit: cover;
  filter: grayscale(1);
}

.case-all-link {
  margin-top: 24px;
}

.attorneys-section {
  min-height: 810px;
  display: grid;
  grid-template-columns: 64.5% 35.5%;
}

.attorney-field {
  position: relative;
  overflow: hidden;
  min-height: 810px;
  display: grid;
  grid-template-columns: 42% 58%;
  background: var(--oxblood);
  color: var(--paper);
}

.attorney-copy {
  position: relative;
  z-index: 4;
  padding: 46px 20px 72px max(40px, calc((100vw - 1320px) / 2));
}

.attorney-copy .section-label {
  margin-bottom: 48px;
}

.attorney-copy h2 {
  width: 470px;
  max-width: none;
  margin: 0;
  font-size: clamp(3.5rem, 4.5vw, 4.1rem);
  line-height: 0.92;
}

.attorney-name-rail {
  position: absolute;
  top: 374px;
  left: max(40px, calc((100vw - 1320px) / 2));
  z-index: 5;
  width: 252px;
  display: grid;
  row-gap: 143px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.attorney-name-rail span {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(251, 248, 242, 0.38);
}

.attorney-copy > .text-link {
  position: absolute;
  top: 688px;
  left: max(40px, calc((100vw - 1320px) / 2));
}

.attorney-portraits {
  position: relative;
  min-height: 810px;
}

.attorney {
  position: absolute;
  margin: 0;
}

.attorney img {
  width: 100%;
  height: calc(100% - 30px);
  object-fit: contain;
  object-position: bottom center;
  background: var(--paper);
}

.attorney figcaption {
  display: none;
}

.attorney-1 {
  z-index: 3;
  top: 88px;
  right: 4%;
  width: 66%;
  height: 520px;
}

.attorney-2 {
  z-index: 4;
  left: -11%;
  bottom: 36px;
  width: 59%;
  height: 485px;
}

.review-panel {
  margin: 0;
  min-width: 0;
  background: var(--paper);
  padding: 104px clamp(54px, 6vw, 94px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-panel > svg {
  color: var(--sand);
}

.review-panel > p {
  margin: 30px 0 34px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 3.4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.review-panel footer {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}

.review-panel cite {
  color: var(--oxblood);
  font-family: var(--mono);
  font-size: 0.86rem;
  font-style: normal;
}

.review-panel footer span {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.locations-section {
  display: grid;
  grid-template-columns: 53% 47%;
}

.locations-map-panel {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--ivory);
  padding: 92px 48px 52px max(40px, calc((100vw - 1320px) / 2));
}

.locations-heading {
  position: relative;
  z-index: 3;
  max-width: 570px;
}

.locations-heading .section-label {
  margin-bottom: 44px;
}

.locations-heading h2 {
  margin: 0;
  font-size: clamp(4rem, 5.6vw, 6rem);
  line-height: 0.92;
}

.locations-heading > p {
  max-width: 500px;
  margin: 24px 0 0;
  color: var(--muted);
}

.map-wrap {
  position: absolute;
  top: 420px;
  right: 0;
  left: 0;
  height: 570px;
}

.map-wrap::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 25%;
  background: url("assets/images/arizona-coverage-map.png") center bottom / auto 400% no-repeat;
  pointer-events: none;
}

.map-wrap > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  clip-path: inset(0 0 25% 0);
  transform: translateX(102px);
}

.region-label {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.region-label svg {
  color: var(--oxblood);
  filter: drop-shadow(0 0 0.5px var(--paper));
}

.region-north {
  left: 45%;
  top: 25%;
}

.region-mohave {
  left: 31%;
  top: 43%;
}

.region-phoenix {
  left: 48%;
  top: 50%;
}

.region-east {
  left: 58%;
  top: 57%;
}

.region-west {
  left: 40%;
  top: 60%;
}

.region-south {
  left: 47%;
  top: 75%;
}

.case-review-panel {
  min-height: 820px;
  background: var(--oxblood);
  color: var(--white);
  padding: 92px max(40px, calc((100vw - 1320px) / 2)) 64px 78px;
}

.review-heading h2 {
  margin: 18px 0 36px;
  font-size: clamp(3rem, 4vw, 4.6rem);
  line-height: 0.98;
}

.panel-index {
  color: var(--sand);
}

.case-review-form {
  display: grid;
  gap: 26px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-group input,
.field-group select {
  width: 100%;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  padding: 0 16px;
}

.field-group select option {
  background: var(--white);
  color: var(--ink);
}

.field-group [aria-invalid="true"] {
  border-color: #ffd36e;
}

.field-error {
  color: #fff0bd;
  font-size: 0.76rem;
  font-weight: 600;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-disclaimer {
  margin: -10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.phone-divider {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.46);
}

.phone-divider > span {
  display: block;
  margin-bottom: 11px;
  font-size: 0.82rem;
}

.phone-divider a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
}

.form-success {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.form-success h3 {
  margin: 24px 0 8px;
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1;
}

.form-success p {
  max-width: 450px;
  margin: 0 0 28px;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: 58px 42px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 42px;
}

.footer-logo {
  width: min(340px, 32vw);
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: center;
  gap: 10px;
}

.footer-eagle {
  width: 100%;
  height: 90px;
  object-fit: contain;
}

.footer-wordmark {
  width: 100%;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 34px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-main nav a:hover,
.legal-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-legal {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid rgba(215, 204, 188, 0.36);
  color: var(--sand);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal p {
  max-width: 690px;
  margin: 24px 0 0;
}

.accessibility-contact {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 64px, 1320px);
  }

  .header-inner {
    grid-template-columns: 230px 1fr auto;
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero-copy {
    grid-column: 1 / span 7;
  }

  .hero-review-card {
    grid-column: 9 / -1;
  }

  .credential-shelf {
    grid-template-columns: repeat(3, 1fr);
  }

  .credential:nth-child(4) {
    border-left: 0;
  }

  .attorneys-section {
    grid-template-columns: 1.6fr 1fr;
  }

  .attorney-field {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .attorney figcaption {
    display: none;
  }

  .attorney-name-rail {
    display: none;
  }

  .attorney-copy > .text-link {
    position: static;
  }

  .attorney-copy h2 {
    margin-bottom: 52px;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    min-height: 104px;
    grid-template-columns: 240px 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    justify-self: end;
    min-width: 92px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--ink);
    border-radius: 3px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-weight: 700;
  }

  .mobile-nav {
    display: grid;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--paper);
    border-bottom: 1px solid var(--sand);
    visibility: hidden;
    transition:
      max-height 260ms ease,
      visibility 260ms ease;
  }

  .mobile-nav-open {
    max-height: 540px;
    visibility: visible;
  }

  .mobile-nav > a:not(.button) {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding-inline: 32px;
    border-top: 1px solid var(--sand);
    font-weight: 600;
  }

  .mobile-nav .button {
    margin: 18px 32px 6px;
  }

  .mobile-call-link {
    justify-content: center;
    border-top: 0 !important;
    color: var(--oxblood);
  }

  .hero {
    min-height: 780px;
  }

  .hero-grid {
    min-height: 780px;
  }

  .hero-copy {
    grid-column: 1 / span 8;
  }

  .hero h1 {
    font-size: clamp(4rem, 8vw, 6rem);
  }

  .hero-eagle {
    width: 56vw;
    opacity: 0.9;
  }

  .hero-review-card {
    grid-column: 9 / -1;
  }

  .trust-layout {
    gap: 44px;
  }

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

  .credential:nth-child(3),
  .credential:nth-child(5) {
    border-left: 0;
  }

  .results-grid {
    gap: 42px;
  }

  .result-feature {
    padding-right: 42px;
  }

  .case-layout {
    grid-template-columns: 1fr 1fr;
  }

  .case-row {
    grid-template-columns: 42px 1fr;
  }

  .case-row img {
    display: none;
  }

  .attorneys-section {
    grid-template-columns: 1fr;
  }

  .attorney-field {
    min-height: 760px;
  }

  .review-panel {
    min-height: 560px;
  }

  .locations-section {
    grid-template-columns: 1fr;
  }

  .locations-map-panel,
  .case-review-panel {
    min-height: 780px;
  }

  .case-review-panel {
    padding-right: 56px;
    padding-left: 56px;
  }
}

@media (max-width: 767px) {
  :root {
    --shell: calc(100% - 40px);
  }

  body {
    font-size: 15px;
  }

  .section-padding {
    padding-block: 86px 94px;
  }

  .utility-inner {
    justify-content: space-between;
  }

  .utility-inner span:nth-child(2),
  .utility-availability {
    display: none;
  }

  .utility-inner::after {
    content: "Available 24/7";
  }

  .header-inner {
    min-height: 88px;
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .brand-link {
    width: 205px;
    grid-template-columns: 60px 1fr;
    gap: 6px;
  }

  .brand-eagle {
    height: 58px;
  }

  .hero {
    min-height: 850px;
    background: var(--ivory);
  }

  .hero-red-field {
    top: auto;
    width: 100%;
    height: 33%;
  }

  .hero-rail {
    display: none;
  }

  .hero-eagle {
    top: auto;
    right: -14%;
    bottom: 19%;
    width: 90%;
    height: 47%;
    object-position: right bottom;
  }

  .hero-grid {
    min-height: 850px;
    display: block;
    padding-block: 58px 28px;
  }

  .hero-copy {
    padding: 0;
  }

  .eyebrow {
    margin-bottom: 24px;
    padding-inline: 0;
    border-inline: 0;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 16vw, 5rem);
    line-height: 0.88;
  }

  .hero h1 br {
    display: none;
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 26px;
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-review-card {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 22px;
    padding: 20px;
  }

  .hero-review-card p,
  .hero-review-card .card-kicker {
    display: none;
  }

  .trust-layout,
  .results-grid,
  .case-layout {
    grid-template-columns: 1fr;
  }

  .section-label {
    margin-bottom: 36px;
  }

  .trust-layout {
    gap: 60px;
  }

  .trust-lead h2 {
    font-size: 4.2rem;
  }

  .trust-lead > p {
    margin-top: 28px;
    font-size: 1.15rem;
  }

  .ledger-heading,
  .evidence-row {
    grid-template-columns: 38px 1fr;
  }

  .ledger-heading span:first-child {
    grid-column: 2;
  }

  .ledger-heading span:last-child,
  .evidence-source {
    display: none;
  }

  .evidence-row {
    min-height: 92px;
  }

  .evidence-row strong {
    font-size: 1.3rem;
  }

  .credential-shelf {
    margin-top: 58px;
    grid-template-columns: 1fr 1fr;
  }

  .credential {
    min-height: 132px;
    border-left: 0;
    border-top: 1px solid var(--sand);
    padding: 18px 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .credential:nth-child(even) {
    border-left: 1px solid var(--sand);
    padding-left: 18px;
  }

  .credential img {
    width: 58px;
    height: 58px;
  }

  .results-section {
    padding-bottom: 84px;
  }

  .results-eagle {
    top: 24%;
    width: 100%;
    opacity: 0.2;
  }

  .results-section::after {
    background: rgba(24, 23, 25, 0.66);
  }

  .result-feature {
    padding: 0 0 52px;
    border-right: 0;
    border-bottom: 1px solid rgba(215, 204, 188, 0.5);
  }

  .result-feature h2 {
    font-size: 4.5rem;
  }

  .result-amount > span {
    font-size: 7.8rem;
  }

  .result-secondary article {
    min-height: 176px;
  }

  .secondary-amount {
    font-size: 4rem;
  }

  .results-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-heading h2 {
    font-size: 3.5rem;
  }

  .featured-case > img {
    height: 270px;
  }

  .featured-case-copy {
    padding: 24px 22px 30px;
  }

  .featured-case h3 {
    font-size: 2.45rem;
  }

  .case-list {
    margin-top: 34px;
  }

  .case-row {
    min-height: 78px;
  }

  .case-row h3 {
    font-size: 1.05rem;
  }

  .attorneys-section {
    min-height: 0;
  }

  .attorney-field {
    min-height: 900px;
    display: block;
  }

  .attorney-copy {
    padding: 76px 20px 0;
  }

  .attorney-copy h2 {
    width: auto;
    max-width: 100%;
    margin-bottom: 52px;
    font-size: 4.2rem;
  }

  .attorney-portraits {
    height: 530px;
    min-height: 0;
  }

  .attorney-1 {
    top: 30px;
    right: 6%;
    width: 48%;
    height: 330px;
  }

  .attorney-2 {
    left: 4%;
    bottom: 0;
    width: 48%;
    height: 330px;
  }

  .attorney-3 {
    right: -6%;
    bottom: -15px;
    width: 34%;
    height: 230px;
  }

  .attorney-4 {
    left: 25%;
    top: 0;
    width: 28%;
    height: 190px;
  }

  .attorney figcaption {
    display: none;
  }

  .review-panel {
    min-height: 540px;
    padding: 76px 20px;
  }

  .review-panel > p {
    font-size: 2.55rem;
  }

  .locations-map-panel,
  .case-review-panel {
    min-height: 760px;
    padding: 82px 20px 56px;
  }

  .locations-heading h2 {
    font-size: 4rem;
  }

  .map-wrap {
    inset: 450px -25% 0 -25%;
    height: auto;
  }

  .map-wrap::after {
    display: none;
  }

  .map-wrap > img {
    clip-path: none;
    transform: none;
  }

  .region-label {
    font-size: 0.66rem;
  }

  .region-north {
    left: 48%;
  }

  .region-mohave {
    left: 30%;
  }

  .region-west {
    left: 39%;
  }

  .region-south {
    left: 49%;
  }

  .review-heading h2 {
    font-size: 3.5rem;
  }

  .phone-divider a {
    font-size: 1.2rem;
  }

  .site-footer {
    padding-block: 48px 34px;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-logo {
    width: 270px;
    grid-template-columns: 82px 1fr;
  }

  .footer-eagle {
    height: 74px;
  }

  .footer-main nav {
    justify-content: flex-start;
    gap: 20px 28px;
  }

  .footer-legal {
    padding-bottom: 72px;
  }

  .accessibility-contact {
    left: 0;
    right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Interior pages */

.subpage {
  overflow-x: clip;
}

.subpage .site-header {
  position: sticky;
  top: 0;
}

.desktop-nav a[aria-current="page"]::after {
  right: 0;
}

.subpage-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-bottom: 1px solid rgba(24, 23, 25, 0.18);
}

.subpage-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc(50% - 140px);
  background: var(--oxblood);
}

.subpage-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  align-items: end;
  gap: 72px;
  padding-block: 82px 92px;
}

.subpage-kicker,
.content-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 34px;
  color: var(--oxblood);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subpage-kicker::after,
.content-kicker::after {
  content: "";
  width: 120px;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
}

.subpage-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.8rem, 7vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.84;
}

.subpage-hero-copy > p:last-of-type {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.subpage-hero-aside {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--paper);
  padding: 64px 0 2px 70px;
}

.subpage-hero-aside img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  margin-bottom: 32px;
  border: 8px solid var(--paper);
}

.subpage-hero-aside strong {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.subpage-hero-aside p {
  max-width: 360px;
  margin: 14px 0 0;
  color: rgba(251, 248, 242, 0.8);
}

.subpage-section {
  padding-block: 128px;
}

.subpage-section-paper {
  background: var(--paper);
}

.subpage-section-dark {
  background: var(--ink);
  color: var(--paper);
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(320px, 5fr) minmax(0, 7fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: start;
}

.editorial-split-media {
  position: sticky;
  top: 190px;
}

.editorial-split-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.image-note {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subpage h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 5.4vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.lead-copy {
  max-width: 660px;
  margin: 34px 0 0;
  font-size: 1.18rem;
  line-height: 1.8;
}

.body-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
}

.fact-ledger {
  margin-top: 54px;
  border-top: 1px solid var(--sand);
}

.fact-row {
  min-height: 104px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--sand);
}

.fact-row > span:first-child {
  color: var(--oxblood);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.fact-row strong {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.1;
}

.fact-row > span:last-child {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(215, 204, 188, 0.42);
  border-bottom: 1px solid rgba(215, 204, 188, 0.42);
}

.page-metric {
  min-height: 250px;
  padding: 48px 42px;
  border-left: 1px solid rgba(215, 204, 188, 0.42);
}

.page-metric:first-child {
  border-left: 0;
}

.page-metric strong {
  display: block;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(3.5rem, 5vw, 5.4rem);
  font-weight: 600;
  line-height: 0.9;
}

.page-metric p {
  max-width: 280px;
  margin: 22px 0 0;
  color: var(--sand);
}

.attorney-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
  margin-top: 68px;
}

.attorney-card {
  margin: 0;
}

.attorney-card:first-child {
  margin-top: 72px;
}

.attorney-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: top center;
  background: var(--paper);
}

.attorney-card figcaption {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--sand);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
  align-items: end;
  gap: 70px;
  background: var(--oxblood);
  color: var(--paper);
}

.closing-cta h2 {
  max-width: 820px;
}

.closing-cta p {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(251, 248, 242, 0.78);
}

.closing-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.button-light {
  background: var(--paper);
  color: var(--oxblood);
}

.button-light:hover {
  background: var(--white);
}

.inverse-link {
  color: var(--paper);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  min-height: 590px;
}

.service-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--oxblood);
  color: var(--paper);
  padding: 70px;
}

.service-feature-copy .content-kicker {
  color: var(--paper);
}

.service-feature-copy h2 {
  font-size: clamp(3.4rem, 4.5vw, 4.8rem);
}

.service-feature-copy p {
  max-width: 480px;
  margin: 26px 0 34px;
  color: rgba(251, 248, 242, 0.8);
}

.service-ledger {
  margin-top: 70px;
  border-top: 1px solid var(--sand);
}

.service-row {
  min-height: 126px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(250px, 0.65fr);
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--sand);
}

.service-row > span {
  color: var(--oxblood);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.service-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(215, 204, 188, 0.42);
  border-bottom: 1px solid rgba(215, 204, 188, 0.42);
}

.process-step {
  min-height: 330px;
  padding: 46px;
  border-left: 1px solid rgba(215, 204, 188, 0.42);
}

.process-step:first-child {
  border-left: 0;
}

.process-step > span {
  color: var(--sand);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.process-step h3 {
  margin: 72px 0 18px;
  font-family: var(--display);
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1;
}

.process-step p {
  margin: 0;
  color: var(--sand);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 5fr) minmax(0, 7fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}

.contact-direct {
  position: sticky;
  top: 190px;
}

.contact-phone {
  display: inline-block;
  margin-top: 42px;
  color: var(--oxblood);
  font-family: var(--display);
  font-size: clamp(2.3rem, 3.6vw, 4rem);
  font-weight: 600;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 10px;
}

.contact-meta {
  margin-top: 54px;
  border-top: 1px solid var(--sand);
}

.contact-meta-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding-block: 20px;
  border-bottom: 1px solid var(--sand);
}

.contact-meta-row strong {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-meta-row span {
  color: var(--muted);
}

.contact-form-panel {
  background: var(--oxblood);
  color: var(--paper);
  padding: 70px;
}

.contact-form-panel h2 {
  font-size: clamp(3.5rem, 4.8vw, 5rem);
}

.contact-form-panel .case-review-form {
  margin-top: 46px;
}

.contact-form-panel .field-group {
  margin-top: 24px;
}

.contact-form-panel .field-group label {
  color: var(--paper);
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(251, 248, 242, 0.64);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 14px 16px;
}

.contact-form-panel select option {
  color: var(--ink);
}

.contact-form-panel textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form-panel .form-submit {
  width: 100%;
  margin-top: 28px;
}

.contact-form-panel .form-disclaimer {
  color: rgba(251, 248, 242, 0.72);
}

.coverage-panel {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  align-items: center;
  gap: 90px;
}

.coverage-panel img {
  width: 100%;
  height: 520px;
  object-fit: contain;
}

.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 44px;
  border-top: 1px solid var(--sand);
}

.coverage-list span {
  min-height: 74px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--sand);
  color: var(--muted);
}

.coverage-list span:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--sand);
}

@media (max-width: 1024px) {
  .subpage-hero::after {
    width: 34%;
  }

  .subpage-hero-grid {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 42px;
  }

  .subpage-hero-aside {
    padding-left: 30px;
  }

  .editorial-split,
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
  }

  .attorney-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .attorney-card img {
    height: 340px;
  }

  .service-feature-copy,
  .contact-form-panel {
    padding: 52px;
  }
}

@media (max-width: 767px) {
  .subpage .site-header {
    position: relative;
  }

  .subpage-hero,
  .subpage-hero-grid {
    min-height: 0;
  }

  .subpage-hero::after {
    top: auto;
    width: 100%;
    height: 250px;
  }

  .subpage-hero-grid {
    display: block;
    padding-block: 72px 0;
  }

  .subpage-hero h1 {
    font-size: clamp(4rem, 18vw, 5.4rem);
  }

  .subpage-hero-copy > p:last-of-type {
    margin-top: 28px;
  }

  .subpage-hero-aside {
    min-height: 250px;
    margin: 56px -20px 0;
    padding: 34px 20px;
  }

  .subpage-hero-aside img {
    display: none;
  }

  .subpage-section {
    padding-block: 86px;
  }

  .editorial-split,
  .contact-layout,
  .coverage-panel,
  .service-feature,
  .closing-cta {
    grid-template-columns: 1fr;
  }

  .editorial-split-media,
  .contact-direct {
    position: static;
  }

  .editorial-split-media img {
    height: 390px;
  }

  .subpage h2 {
    font-size: 3.7rem;
  }

  .fact-row {
    grid-template-columns: 40px 1fr;
  }

  .fact-row > span:last-child {
    display: none;
  }

  .page-metrics,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .page-metric,
  .process-step {
    min-height: 210px;
    border-left: 0;
    border-top: 1px solid rgba(215, 204, 188, 0.42);
    padding: 38px 0;
  }

  .page-metric:first-child,
  .process-step:first-child {
    border-top: 0;
  }

  .process-step h3 {
    margin-top: 42px;
  }

  .attorney-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .attorney-card:first-child {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .attorney-card img {
    height: 300px;
  }

  .attorney-card:first-child img {
    height: 410px;
  }

  .closing-actions {
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    margin-top: 18px;
  }

  .service-feature img {
    height: 300px;
  }

  .service-feature-copy,
  .contact-form-panel {
    padding: 48px 20px;
  }

  .service-row {
    min-height: 132px;
    grid-template-columns: 40px 1fr;
    gap: 18px;
  }

  .service-row p {
    display: none;
  }

  .contact-layout {
    gap: 64px;
  }

  .contact-phone {
    font-size: 2.2rem;
    white-space: nowrap;
  }

  .contact-form-panel {
    margin-inline: -20px;
  }

  .coverage-panel {
    gap: 34px;
  }

  .coverage-panel img {
    height: 340px;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }

  .coverage-list span:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }
}
