:root {
  --navy-950: #061a2d;
  --navy-900: #092642;
  --navy-800: #103859;
  --navy-700: #1a486d;
  --gold: #c6a358;
  --gold-bright: #d9b969;
  --ivory: #f4f0e7;
  --paper: #fbfaf7;
  --ink: #0b2846;
  --ink-soft: #445568;
  --red: #a72731;
  --white: #ffffff;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(11, 40, 70, 0.16);
  --shadow: 0 24px 70px rgba(2, 17, 31, 0.22);
  --header-height: 78px;
  --ad-height: 28px;
  --content-width: 1380px;
  --font-sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.theme-light {
  background: var(--ivory);
  color: var(--ink);
}

body.theme-split {
  background: linear-gradient(90deg, var(--navy-900) 0 42%, var(--ivory) 42% 100%);
  color: var(--ink);
}

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

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

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

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

::selection {
  background: var(--gold);
  color: var(--navy-950);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
}

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

.ad-notice {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--ad-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  background: var(--gold);
  color: var(--navy-950);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 90;
  top: var(--ad-height);
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(255px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - var(--content-width)) / 2));
  border-bottom: 1px solid var(--line-dark);
  background: rgba(9, 38, 66, 0.96);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.theme-light .site-header {
  border-color: var(--line-light);
  background: rgba(244, 240, 231, 0.96);
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong {
  font-size: 0.94rem;
  letter-spacing: 0.035em;
}

.brand small {
  margin-top: 4px;
  color: var(--gold-bright);
  font-size: 0.68rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.desktop-nav a,
.header-call {
  position: relative;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

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

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-call {
  padding: 10px 15px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
}

.theme-light .header-call {
  color: var(--ink);
}

.mobile-menu {
  display: none;
}

.site-main {
  position: relative;
  min-height: calc(100svh - var(--ad-height) - var(--header-height));
  overflow: hidden;
}

.site-main::before {
  position: absolute;
  z-index: 0;
  right: -0.08em;
  bottom: -0.25em;
  color: rgba(255, 255, 255, 0.025);
  content: "§";
  font-family: var(--font-serif);
  font-size: min(55vw, 48rem);
  line-height: 1;
  pointer-events: none;
}

.theme-light .site-main::before,
.theme-split .site-main::before {
  color: rgba(11, 40, 70, 0.03);
}

.site-main > section {
  position: relative;
  z-index: 1;
}

.page-counter {
  position: absolute;
  z-index: 6;
  top: 28px;
  right: max(24px, calc((100vw - var(--content-width)) / 2));
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-counter i {
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.4vw, 5.85rem);
  font-weight: 750;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

h2 {
  color: inherit;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.eyebrow,
.section-label,
.panel-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

.gold {
  color: var(--gold-bright);
}

.gold-italic {
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-style: italic;
}

.lede {
  max-width: 790px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.65vw, 1.35rem);
  line-height: 1.55;
}

.theme-light .lede,
.theme-split .lede {
  color: var(--ink-soft);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button-gold {
  background: var(--gold);
  color: var(--navy-950);
}

.button-gold:hover {
  background: var(--gold-bright);
}

.button-outline {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.theme-light .button-outline {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-bright);
  font-size: 0.86rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.dark-link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.ready .reveal {
  opacity: 1;
  transform: none;
  transition: opacity 650ms ease, transform 650ms ease;
}

.ready .reveal-delay {
  transition-delay: 120ms;
}

.ready .reveal-delay-2 {
  transition-delay: 220ms;
}

/* Home */
.home-grid {
  display: grid;
  min-height: calc(100svh - var(--ad-height) - var(--header-height));
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 20px 82px;
}

.home-grid::after {
  position: absolute;
  z-index: -1;
  top: 14%;
  right: 24%;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(198, 163, 88, 0.12);
  border-radius: 50%;
  content: "";
}

.home-copy .eyebrow {
  margin-bottom: 28px;
}

.home-copy h1 {
  max-width: 800px;
  font-size: clamp(3.8rem, 7.5vw, 7.7rem);
}

.home-copy .lede {
  max-width: 730px;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 780px;
  margin: 58px 0 0;
  border-top: 1px solid var(--line-dark);
}

.fact-strip div {
  padding: 20px 18px 0 0;
}

.fact-strip div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line-dark);
}

.fact-strip dt {
  margin-bottom: 4px;
  color: var(--gold-bright);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 850;
  line-height: 1;
}

.fact-strip dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.45;
}

.stat-note {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

.portrait-frame {
  position: relative;
  width: min(100%, 500px);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--gold);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(198, 163, 88, 0.02));
  box-shadow: var(--shadow);
}

.portrait-frame::before,
.portrait-frame::after {
  position: absolute;
  width: 54px;
  height: 54px;
  content: "";
}

.portrait-frame::before {
  top: -10px;
  left: -10px;
  border-top: 3px solid var(--gold-bright);
  border-left: 3px solid var(--gold-bright);
}

.portrait-frame::after {
  right: -10px;
  bottom: -10px;
  border-right: 3px solid var(--gold-bright);
  border-bottom: 3px solid var(--gold-bright);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 0.66;
  background: #d7dadd;
  object-fit: cover;
}

.portrait-frame figcaption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(6, 26, 45, 0.9);
}

.portrait-frame figcaption span {
  font-weight: 800;
}

.portrait-frame figcaption small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

/* Statement */
.statement-grid {
  display: grid;
  min-height: calc(100svh - var(--ad-height) - var(--header-height));
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 20px;
}

.statement-copy h1 {
  max-width: 820px;
}

.statement-copy .gold-italic {
  max-width: 650px;
  font-size: 1.2rem;
}

.prose {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.76);
}

.principle-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  max-width: 650px;
  margin: 30px 0;
  padding: 18px 20px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.principle-callout p {
  margin: 0;
}

.principle-number {
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 850;
}

.cinematic-frame {
  position: relative;
  margin: 0;
  border: 1px solid rgba(198, 163, 88, 0.65);
  box-shadow: var(--shadow);
}

.cinematic-frame img {
  width: 100%;
  min-height: 430px;
  filter: saturate(0.85) contrast(1.04);
  object-fit: cover;
}

.cinematic-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 26, 45, 0.92), transparent 48%);
  content: "";
  pointer-events: none;
}

.cinematic-frame figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  flex-direction: column;
}

.cinematic-frame figcaption span {
  font-size: 1.15rem;
  font-weight: 800;
}

.cinematic-frame figcaption small {
  color: rgba(255, 255, 255, 0.64);
}

/* Service area */
.area-hero {
  min-height: calc(100svh - var(--ad-height) - var(--header-height));
  display: grid;
  place-items: center;
  padding: 82px 24px;
}

.area-image,
.area-overlay {
  position: absolute;
  inset: 0;
}

.area-image {
  background: url("/assets/south-florida.webp") center / cover no-repeat;
  filter: saturate(0.78) contrast(1.05);
}

.area-overlay {
  background: linear-gradient(90deg, rgba(6, 26, 45, 0.97) 0 42%, rgba(9, 38, 66, 0.85) 70%, rgba(9, 38, 66, 0.66) 100%);
}

.area-content {
  width: min(1100px, 100%);
}

.area-content h1 {
  max-width: 900px;
}

.area-content .lede {
  max-width: 840px;
}

.area-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 26px;
}

.area-panels article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(198, 163, 88, 0.55);
  background: rgba(9, 38, 66, 0.72);
  backdrop-filter: blur(12px);
}

.area-panels h2 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.area-panels p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.panel-label {
  margin-bottom: 12px;
}

.county-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.county-line span {
  padding: 7px 12px;
  border: 1px solid var(--line-dark);
  background: rgba(6, 26, 45, 0.55);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Practice areas */
.practice-shell,
.experience-shell,
.complex-shell {
  width: min(var(--content-width), calc(100% - 48px));
  min-height: calc(100svh - var(--ad-height) - var(--header-height));
  margin: 0 auto;
  padding: 78px 20px 82px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 44px;
}

.section-heading h1,
.complex-heading h1 {
  max-width: 940px;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5vw, 5.3rem);
}

.section-heading > p {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.theme-light .eyebrow {
  color: #8a681e;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.practice-grid > a {
  position: relative;
  min-height: 230px;
  padding: 28px 30px 34px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.58);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.practice-grid > a:hover {
  z-index: 1;
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.practice-grid h2 {
  margin: 48px 0 10px;
}

.practice-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.practice-grid > a:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.practice-index {
  color: #8a681e;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.card-arrow {
  position: absolute;
  top: 24px;
  right: 26px;
  color: var(--gold);
  font-size: 1.1rem;
}

.practice-wide {
  grid-column: span 3;
  min-height: 180px !important;
}

.practice-wide h2 {
  margin-top: 24px;
}

.fine-print {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

/* Injury */
.split-legal,
.foreclosure-grid,
.premises-grid {
  display: grid;
  min-height: calc(100svh - var(--ad-height) - var(--header-height));
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.8fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 20px;
}

.split-copy h1,
.premises-copy h1,
.foreclosure-copy h1 {
  max-width: 850px;
}

.body-note {
  max-width: 760px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.66);
}

.evidence-stack {
  border-top: 1px solid rgba(198, 163, 88, 0.8);
}

.evidence-stack article,
.process-list li,
.criminal-stages article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.evidence-stack article > span,
.process-list li > span,
.criminal-stages article > span {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 850;
}

.evidence-stack h2,
.process-list h2,
.criminal-stages h2 {
  margin-bottom: 6px;
}

.evidence-stack p,
.process-list p,
.criminal-stages p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.evidence-stack aside {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

/* Premises */
.premises-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.58fr);
}

.check-list {
  display: grid;
  gap: 14px;
  max-width: 800px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.75);
}

.check-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.statute-card {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: 930px;
  padding: 22px 24px;
  border: 1px solid rgba(198, 163, 88, 0.62);
  background: rgba(6, 26, 45, 0.42);
}

.statute-card > div {
  display: flex;
  flex-direction: column;
}

.statute-card span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.statute-card strong {
  color: var(--gold-bright);
  font-size: 1.7rem;
}

.statute-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.statute-card a {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.video-frame {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 9px;
  border: 1px solid var(--gold);
  background: var(--navy-950);
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  max-height: 65svh;
  aspect-ratio: 9 / 16;
  background: #e8e8e6;
  object-fit: cover;
}

.video-frame figcaption {
  display: flex;
  flex-direction: column;
  padding: 15px 10px 7px;
}

.video-frame figcaption span {
  font-weight: 800;
}

.video-frame figcaption small {
  color: rgba(255, 255, 255, 0.58);
}

/* Domestic violence */
.safety-grid {
  display: grid;
  min-height: calc(100svh - var(--ad-height) - var(--header-height));
  grid-template-columns: minmax(310px, 0.7fr) minmax(0, 1.3fr);
}

.safety-symbol {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  min-height: 100%;
  background: var(--navy-900);
  color: var(--gold-bright);
}

.safety-symbol span {
  display: grid;
  width: min(36vw, 340px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(198, 163, 88, 0.48);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: clamp(7rem, 16vw, 14rem);
  line-height: 1;
}

.safety-symbol small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.safety-copy {
  align-self: center;
  padding: 76px clamp(32px, 7vw, 110px);
}

.safety-copy h1 {
  max-width: 850px;
}

.safety-rows {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.safety-rows article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(11, 40, 70, 0.08);
}

.safety-rows article:last-child {
  border-color: var(--red);
}

.safety-rows span {
  color: #8a681e;
  font-size: 0.75rem;
  font-weight: 850;
}

.safety-rows h2 {
  margin-bottom: 5px;
}

.safety-rows p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.urgent-note {
  max-width: 860px;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(167, 39, 49, 0.28);
  color: #6c1720;
  font-size: 0.84rem;
}

/* Foreclosure */
.foreclosure-grid {
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
}

.foreclosure-copy blockquote {
  max-width: 710px;
  margin: 34px 0;
  padding: 18px 22px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(198, 163, 88, 0.72);
  list-style: none;
}

/* Criminal */
.criminal-grid {
  display: grid;
  min-height: calc(100svh - var(--ad-height) - var(--header-height));
  grid-template-columns: 42% 58%;
}

.criminal-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 82px max(38px, calc((100vw - var(--content-width)) / 2));
  background: var(--navy-900);
  color: var(--white);
}

.criminal-title h1 {
  font-size: clamp(4rem, 8vw, 8.2rem);
}

.criminal-title .lede {
  max-width: 440px;
}

.name-lockup {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 48px;
  border-top: 1px solid var(--line-dark);
}

.name-lockup span {
  font-weight: 800;
}

.name-lockup small {
  color: var(--gold-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.criminal-stages {
  align-self: center;
  width: min(760px, calc(100% - 80px));
  margin: 0 auto;
  padding: 76px 0;
}

.criminal-stages article {
  border-color: var(--line-light);
}

.criminal-stages h2 {
  color: var(--ink);
}

.criminal-stages p {
  color: var(--ink-soft);
}

.criminal-stages aside {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--red);
  background: rgba(167, 39, 49, 0.06);
  color: #68202a;
  font-size: 0.84rem;
}

/* Complex disputes */
.complex-heading {
  max-width: 1000px;
  margin-bottom: 42px;
}

.complex-heading > p:last-child {
  max-width: 820px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.complex-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.complex-columns article {
  min-height: 300px;
  padding: 30px;
  border-top: 3px solid var(--gold);
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(11, 40, 70, 0.07);
}

.complex-columns h2 {
  margin: 34px 0 20px;
  font-size: 1.65rem;
}

.complex-columns ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.complex-columns p {
  color: var(--ink-soft);
}

.selection-note {
  padding-top: 15px;
  border-top: 1px solid var(--line-light);
  font-size: 0.82rem;
}

.judicial-review {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  margin-top: 18px;
  padding: 32px;
  background: var(--navy-900);
  color: var(--white);
}

.judicial-mark {
  display: grid;
  align-self: start;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 4rem;
}

.judicial-review .eyebrow {
  margin-bottom: 12px;
}

.judicial-review h2 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
}

.judicial-review p {
  max-width: 1000px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

/* Experience */
.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.credential-grid article {
  min-height: 230px;
  padding: 30px;
  border-top: 4px solid var(--gold);
  background: var(--navy-900);
  color: var(--white);
}

.credential-grid article:nth-child(2) {
  border-color: var(--red);
}

.credential-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold-bright);
  font-size: clamp(2.5rem, 4.8vw, 4.6rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
}

.credential-grid h2 {
  margin-bottom: 8px;
}

.credential-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.83rem;
}

.experience-detail {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  margin-top: 42px;
}

.experience-detail figure {
  margin: 0;
  border: 1px solid var(--line-light);
  background: var(--paper);
}

.experience-detail img {
  width: 100%;
  aspect-ratio: 16 / 8.25;
  filter: saturate(0.78);
  object-fit: cover;
}

.experience-detail figcaption {
  padding: 14px 18px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.experience-detail h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.experience-detail p {
  color: var(--ink-soft);
}

/* Method */
.method-shell {
  display: grid;
  align-content: center;
  width: min(var(--content-width), calc(100% - 48px));
  min-height: calc(100svh - var(--ad-height) - var(--header-height));
  margin: 0 auto;
  padding: 80px 20px;
}

.method-heading h1 {
  margin-bottom: 20px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.method-grid article {
  position: relative;
  min-height: 310px;
  padding: 32px 30px;
  overflow: hidden;
  border-top: 4px solid var(--gold);
  background: var(--paper);
  color: var(--ink);
}

.method-grid article:nth-child(2) {
  border-color: var(--red);
}

.method-index {
  color: #8a681e;
  font-size: 0.76rem;
  font-weight: 850;
}

.method-grid h2 {
  margin: 88px 0 14px;
  font-size: 2rem;
}

.method-grid p {
  color: var(--ink-soft);
}

.method-grid article::after {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(11, 40, 70, 0.06);
  content: attr(data-step);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}

.method-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}

.method-close p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

/* Contact */
.contact-grid {
  display: grid;
  min-height: calc(100svh - var(--ad-height) - var(--header-height));
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.62fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 20px;
}

.contact-copy h1 {
  max-width: 830px;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 830px;
  margin: 34px 0;
}

.contact-actions a {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(198, 163, 88, 0.55);
  background: rgba(255, 255, 255, 0.04);
  transition: background 160ms ease;
}

.contact-actions a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.contact-actions span,
.contact-copy address > span:first-child {
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-actions strong {
  margin: 7px 0 4px;
  overflow-wrap: anywhere;
  font-size: 1.1rem;
}

.contact-actions small {
  color: rgba(255, 255, 255, 0.56);
}

.contact-copy address {
  display: flex;
  max-width: 830px;
  flex-direction: column;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-style: normal;
}

.contact-copy address strong {
  margin-top: 8px;
}

.contact-copy address span:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.contact-notice {
  max-width: 830px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.contact-portrait {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
  border: 1px solid var(--gold);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-portrait img {
  width: 100%;
  max-height: 66svh;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
}

.contact-portrait figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex-direction: column;
  padding: 13px 15px;
  border-left: 3px solid var(--gold);
  background: rgba(6, 26, 45, 0.9);
}

.contact-portrait figcaption span {
  font-weight: 800;
}

.contact-portrait figcaption small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

/* Navigation and footer */
.chapter-nav {
  display: grid;
  grid-template-columns: minmax(170px, 0.6fr) minmax(0, 1.7fr) minmax(170px, 0.6fr);
  align-items: center;
  gap: 26px;
  padding: 24px max(24px, calc((100vw - var(--content-width)) / 2));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--navy-950);
  color: var(--white);
}

.theme-light .chapter-nav {
  border-color: var(--line-light);
  background: #eae4d8;
  color: var(--ink);
}

.theme-split .chapter-nav {
  background: var(--navy-950);
  color: var(--white);
}

.chapter-step {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  width: fit-content;
}

.chapter-step.next {
  grid-template-columns: 1fr auto;
  justify-self: end;
  text-align: right;
}

.chapter-step > span {
  grid-row: span 2;
  color: var(--gold-bright);
  font-size: 1.25rem;
}

.chapter-step small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.theme-light .chapter-step small {
  color: var(--ink-soft);
}

.chapter-step strong {
  font-size: 0.78rem;
}

.chapter-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.chapter-dots a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.65rem;
  font-weight: 750;
}

.theme-light .chapter-dots a {
  color: rgba(11, 40, 70, 0.5);
}

.chapter-dots a:hover,
.chapter-dots a[aria-current="page"] {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.theme-light .chapter-dots a[aria-current="page"],
.theme-light .chapter-dots a:hover {
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px 70px;
  padding: 52px max(24px, calc((100vw - var(--content-width)) / 2));
  background: #041523;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.site-footer > div {
  display: flex;
  flex-direction: column;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.site-footer > div:first-child strong {
  margin-bottom: 8px;
  color: var(--gold-bright);
  font-size: 0.96rem;
}

.site-footer > div:nth-child(2) {
  align-items: flex-end;
}

.site-footer a {
  text-decoration: underline;
  text-decoration-color: rgba(198, 163, 88, 0.55);
  text-underline-offset: 3px;
}

.site-footer p {
  grid-column: 1 / -1;
  max-width: 1100px;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.65;
}

/* 404 */
.not-found {
  display: grid;
  min-height: 100svh;
  align-content: center;
  justify-items: start;
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
}

.not-found > span {
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.not-found h1 {
  margin-top: 18px;
}

.not-found p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.05rem;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 0.72rem;
  }

  .home-grid,
  .statement-grid,
  .split-legal,
  .premises-grid,
  .foreclosure-grid,
  .contact-grid {
    gap: 44px;
  }

  .statute-card {
    grid-template-columns: 150px 1fr;
  }

  .statute-card a {
    grid-column: 2;
  }

  .chapter-dots {
    gap: 2px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

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

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    display: grid;
    width: 44px;
    height: 44px;
    align-content: center;
    gap: 5px;
    padding: 9px;
    border: 1px solid var(--gold);
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
  }

  .mobile-menu nav {
    position: absolute;
    top: 55px;
    right: 0;
    display: grid;
    width: min(82vw, 330px);
    padding: 12px;
    border: 1px solid var(--gold);
    background: var(--navy-950);
    box-shadow: var(--shadow);
    color: var(--white);
  }

  .mobile-menu nav a {
    padding: 11px 12px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 0.82rem;
    font-weight: 750;
  }

  .mobile-menu nav a:last-child {
    border: 0;
    color: var(--gold-bright);
  }

  .home-grid,
  .statement-grid,
  .split-legal,
  .premises-grid,
  .foreclosure-grid,
  .contact-grid,
  .experience-detail {
    grid-template-columns: 1fr;
  }

  .home-grid,
  .statement-grid,
  .split-legal,
  .premises-grid,
  .foreclosure-grid,
  .contact-grid {
    padding-top: 90px;
  }

  .portrait-frame,
  .contact-portrait {
    width: min(100%, 450px);
  }

  .cinematic-frame img {
    min-height: 360px;
  }

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

  .practice-wide {
    grid-column: span 2;
  }

  .safety-grid {
    grid-template-columns: 280px 1fr;
  }

  .criminal-grid {
    grid-template-columns: 38% 62%;
  }

  .criminal-title,
  .criminal-stages {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .credential-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-grid article {
    min-height: 250px;
  }

  .method-grid h2 {
    margin-top: 48px;
  }

  .chapter-nav {
    grid-template-columns: 1fr 1fr;
  }

  .chapter-dots {
    grid-column: 1 / -1;
    grid-row: 2;
    overflow-x: auto;
    justify-content: flex-start;
    padding-top: 8px;
  }
}

@media (max-width: 720px) {
  :root {
    --ad-height: 36px;
  }

  .ad-notice {
    height: var(--ad-height);
    padding: 0 12px;
    font-size: 0.61rem;
    line-height: 1.25;
  }

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

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand small {
    font-size: 0.6rem;
  }

  .page-counter {
    top: 16px;
    right: 18px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.4rem);
  }

  .home-grid,
  .statement-grid,
  .split-legal,
  .premises-grid,
  .foreclosure-grid,
  .contact-grid,
  .practice-shell,
  .experience-shell,
  .complex-shell,
  .method-shell {
    width: min(100% - 24px, var(--content-width));
    padding-right: 8px;
    padding-left: 8px;
  }

  .home-grid,
  .statement-grid,
  .split-legal,
  .premises-grid,
  .foreclosure-grid,
  .contact-grid {
    padding-top: 76px;
    padding-bottom: 62px;
  }

  .home-copy h1 {
    font-size: clamp(3.2rem, 17vw, 5.4rem);
  }

  .lede {
    font-size: 1.04rem;
  }

  .fact-strip {
    grid-template-columns: 1fr;
  }

  .fact-strip div {
    padding: 16px 0;
  }

  .fact-strip div + div {
    padding-left: 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .portrait-frame {
    width: min(100%, 360px);
  }

  .statement-grid,
  .home-grid {
    min-height: 0;
  }

  .area-hero {
    padding: 76px 16px 64px;
  }

  .area-overlay {
    background: rgba(6, 26, 45, 0.88);
  }

  .area-panels,
  .section-heading,
  .complex-columns,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 24px;
  }

  .practice-grid {
    grid-template-columns: 1fr;
  }

  .practice-wide {
    grid-column: span 1;
  }

  .practice-grid > a {
    min-height: 195px;
  }

  .statute-card {
    grid-template-columns: 1fr;
  }

  .statute-card a {
    grid-column: auto;
  }

  .video-frame {
    width: min(100%, 360px);
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

  .safety-symbol {
    min-height: 310px;
    padding-top: 58px;
  }

  .safety-symbol span {
    width: 210px;
    font-size: 8rem;
  }

  .safety-copy {
    padding: 60px 20px;
  }

  .safety-rows article {
    grid-template-columns: 36px 1fr;
    padding: 16px;
  }

  body.theme-split {
    background: var(--ivory);
  }

  .criminal-grid {
    grid-template-columns: 1fr;
  }

  .criminal-title {
    min-height: 66svh;
    padding: 76px 20px 50px;
  }

  .criminal-title h1 {
    font-size: clamp(4rem, 22vw, 6.6rem);
  }

  .criminal-stages {
    width: calc(100% - 40px);
    padding: 60px 0;
  }

  .judicial-review {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .judicial-mark {
    width: 80px;
  }

  .credential-grid article {
    min-height: 210px;
  }

  .experience-detail {
    grid-template-columns: 1fr;
  }

  .method-close {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions a {
    min-width: 0;
  }

  .chapter-nav {
    gap: 14px;
    padding: 20px 16px;
  }

  .chapter-step strong {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 42px 20px;
  }

  .site-footer > div:nth-child(2) {
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .brand small {
    display: none;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .portrait-frame figcaption,
  .contact-portrait figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .chapter-step small {
    display: none;
  }

  .chapter-step {
    grid-template-rows: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
