:root {
  --surface: #fafaf5;
  --surface-dim: #e8e8e4;
  --surface-card: #ffffff;
  --ink: #1a1c19;
  --muted: #46474a;
  --black: #000000;
  --yellow: #eaea16;
  --teal: #2f9b8f;
  --teal-soft: #9af3e4;
  --coral: #ffb3a7;
  --line: #1a1c19;
  --max: 1280px;
  --margin: clamp(24px, 6vw, 80px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 7% 22%, rgba(154, 243, 228, 0.45) 0 42px, transparent 43px),
    radial-gradient(circle, rgba(0, 0, 0, 0.13) 1px, transparent 1px);
  background-size: auto, 14px 14px;
  background-position: 0 0, calc(100% - 180px) 96px;
  background-repeat: no-repeat, no-repeat;
  z-index: -1;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
.brand {
  font-family: "Montserrat", Arial, sans-serif;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.93;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
}

h3 {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.15;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--yellow);
  border: 2px solid var(--black);
  transform: translateY(-140%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 14px var(--margin);
  background: rgba(250, 250, 245, 0.96);
  border-bottom: 2px solid var(--black);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  width: 18px;
  height: 18px;
  position: relative;
  border-left: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
}

.brand-mark::before {
  right: -3px;
  top: -2px;
  background: var(--teal);
}

.brand-mark::after {
  right: 3px;
  bottom: 3px;
  background: var(--yellow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  border-color: var(--black);
}

.nav-cta {
  padding: 10px 16px;
  background: var(--yellow);
  border: 2px solid var(--black) !important;
  box-shadow: 4px 4px 0 var(--black);
}

.nav-toggle {
  display: none;
}

.section {
  padding: clamp(72px, 10vw, 144px) var(--margin);
}

.page-grid {
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  border-bottom: 2px solid var(--surface-dim);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(48px, 8vw, 108px);
  align-items: center;
  width: 100%;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  background: var(--black);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker {
  background: transparent;
  color: #858500;
  padding: 0;
}

.lede {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.13rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid var(--black);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0 var(--black);
}

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

.button-secondary {
  background: var(--surface-card);
}

.system-board {
  min-height: 430px;
  padding: 24px;
  background: var(--surface-card);
  border: 2px solid var(--black);
  box-shadow: 10px 10px 0 var(--yellow);
  position: relative;
  overflow: hidden;
}

.system-board::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 82px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--black) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.25;
}

.board-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 56px;
}

.board-toolbar span {
  width: 12px;
  height: 12px;
  border: 2px solid var(--black);
}

.board-toolbar span:nth-child(1) {
  background: var(--yellow);
}

.board-toolbar span:nth-child(2) {
  background: var(--teal-soft);
}

.board-toolbar span:nth-child(3) {
  background: var(--coral);
}

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

.metric-row div,
.flow-map {
  border: 2px solid var(--black);
  padding: 16px;
}

.metric-row small,
.method-card small,
.mini-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metric-row strong {
  display: block;
  margin-top: 6px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.flow-map {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.flow-map i {
  flex: 1;
  height: 2px;
  background: var(--black);
  position: relative;
}

.flow-map i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  border-left: 8px solid var(--black);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.chart-bars {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 110px;
  display: flex;
  align-items: end;
  gap: 12px;
  border-left: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  padding-left: 16px;
}

.chart-bars span {
  width: 18%;
  background: var(--teal);
  border: 2px solid var(--black);
}

.chart-bars span:nth-child(even) {
  background: var(--yellow);
}

.intro-band,
.pricing-band {
  background: var(--surface-dim);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.65fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}

.split-grid > div {
  display: grid;
  gap: 24px;
}

blockquote {
  margin: 0;
  padding: 28px;
  background: var(--surface-card);
  border-left: 4px solid var(--yellow);
  font-style: italic;
}

.feature-card,
.method-card,
.price-card {
  position: relative;
  padding: 32px;
  background: var(--surface-card);
  border: 2px solid var(--black);
}

.offset-card {
  box-shadow: 8px 8px 0 var(--yellow);
}

.feature-card {
  min-height: 300px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.card-dots {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 86px;
  height: 86px;
  background-image: radial-gradient(circle, var(--black) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.18;
}

.icon-signal {
  width: 30px;
  height: 30px;
  background:
    linear-gradient(var(--black), var(--black)) 3px 21px / 4px 7px no-repeat,
    linear-gradient(var(--black), var(--black)) 11px 16px / 4px 12px no-repeat,
    linear-gradient(var(--black), var(--black)) 19px 9px / 4px 19px no-repeat;
}

.swatches {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.swatches span {
  width: 12px;
  height: 12px;
  background: var(--yellow);
}

.swatches span:nth-child(2) {
  background: var(--black);
}

.swatches span:nth-child(3) {
  background: var(--teal-soft);
}

.section-heading,
.wide-heading {
  max-width: var(--max);
  margin: 0 auto 44px;
  display: grid;
  gap: 14px;
  text-align: center;
}

.wide-heading {
  max-width: 920px;
  text-align: left;
}

.wide-heading span,
.hero h1::after {
  color: var(--teal);
}

.hero h1::after {
  content: "";
  display: block;
  width: min(440px, 90%);
  height: 12px;
  margin-top: -14px;
  background: var(--yellow);
  position: relative;
  z-index: -1;
}

.method-grid,
.pricing-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.method-card {
  min-height: 280px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.method-card::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  border-top: 34px solid var(--yellow);
  border-left: 34px solid transparent;
}

.method-card:nth-child(2)::after {
  top: auto;
  right: auto;
  bottom: -2px;
  left: -2px;
  width: 34px;
  height: 34px;
  background: var(--teal-soft);
  border: 0;
  border-radius: 0 34px 0 0;
}

.method-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.82rem;
}

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

.method-card li::before {
  content: "";
  border-left: 8px solid var(--yellow);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.price-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.price-list li::before {
  content: "";
  flex: 0 0 auto;
  margin-top: 7px;
  border-left: 8px solid var(--yellow);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.featured-price .price-list {
  color: #f2f2f2;
}

.method-card-dark {
  background: var(--black);
  color: #ffffff;
}

.method-card-dark small,
.method-card-dark p {
  color: #dddddd;
}

.mini-panel {
  margin-top: auto;
  padding: 16px;
  border: 1px solid #555555;
}

.number-list {
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 20px;
  list-style: none;
}

.number-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
}

.number-list li > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border: 2px solid var(--black);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  transform: rotate(4deg);
}

.number-list li:nth-child(2) > span {
  background: var(--teal-soft);
  transform: rotate(-6deg);
}

.number-list li:nth-child(3) > span {
  background: var(--surface-card);
  transform: rotate(8deg);
}

.number-list li:nth-child(5) > span {
  background: var(--black);
  color: #ffffff;
  transform: rotate(-3deg);
}

.number-list p,
.price-card p,
.faq p,
.split-grid p,
.feature-card p,
.method-card p,
.cta-panel p {
  color: var(--muted);
}

.price-card {
  display: grid;
  gap: 20px;
}

.price-card strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2rem;
}

.featured-price {
  background: var(--black);
  color: #ffffff;
  box-shadow: 8px 8px 0 var(--yellow);
}

.featured-price p {
  color: #f2f2f2;
}

.featured-price .eyebrow {
  background: var(--yellow);
  color: var(--black);
}

.cta-panel {
  max-width: calc(var(--max) + (var(--margin) * 2));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  background: var(--black);
  color: #ffffff;
  border: solid var(--surface);
  border-width: 0 var(--margin);
  box-shadow: inset -8px -8px 0 var(--yellow);
}

.cta-panel .section-kicker {
  color: var(--yellow);
}

.cta-panel p {
  color: #f2f2f2;
}

.cta-copy {
  display: grid;
  gap: 20px;
}

.audit-form {
  display: grid;
  gap: 16px;
}

.audit-form label {
  display: grid;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-form input,
.audit-form select,
.audit-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  background: #ffffff;
  border: 2px solid #ffffff;
  color: var(--black);
  border-radius: 0;
}

.audit-form textarea {
  resize: vertical;
}

.audit-form input:focus,
.audit-form select:focus,
.audit-form textarea:focus {
  outline: 3px solid var(--teal-soft);
  outline-offset: 2px;
}

.form-status {
  min-height: 24px;
  font-size: 0.9rem;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

details {
  background: var(--surface-card);
  border: 2px solid var(--black);
}

summary {
  cursor: pointer;
  padding: 22px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

details p {
  padding: 0 22px 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 34px var(--margin);
  background: var(--surface-dim);
  border-top: 2px solid var(--black);
  font-size: 0.86rem;
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    background: var(--yellow);
    border: 2px solid var(--black);
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--black);
  }

  .site-nav {
    position: absolute;
    left: var(--margin);
    right: var(--margin);
    top: calc(100% + 10px);
    display: none;
    padding: 22px;
    background: var(--surface-card);
    border: 2px solid var(--black);
    box-shadow: 6px 6px 0 var(--black);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .split-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .system-board {
    min-height: 380px;
  }

  .cta-panel {
    border-width: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 3rem;
  }

  .site-header {
    min-height: 62px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .system-board {
    min-height: 430px;
    box-shadow: 6px 6px 0 var(--yellow);
  }

  .metric-row,
  .flow-map {
    grid-template-columns: 1fr;
  }

  .flow-map {
    display: grid;
  }

  .flow-map i {
    width: 2px;
    height: 24px;
  }

  .flow-map i::after {
    right: -4px;
    top: auto;
    bottom: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--black);
    border-bottom: 0;
  }

  .number-list li {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .number-list li > span {
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   INNER PAGE COMPONENTS
   ============================================ */

/* Page hero (smaller than homepage) */
.page-hero {
  position: relative;
  border-bottom: 2px solid var(--surface-dim);
  overflow: hidden;
}

.page-hero-compact {
  padding-bottom: 64px;
}

.page-hero .page-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.page-h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.03em;
  max-width: 760px;
}

.page-lede {
  max-width: 600px;
}

.page-hero-accent {
  position: absolute;
  right: var(--margin);
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, var(--black) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.1;
  pointer-events: none;
}

/* Stats band (about page) */
.stats-band {
  background: var(--black);
  color: #ffffff;
}

.stats-row {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 2px solid #333;
}

.stat-block {
  padding: 44px 32px;
  border-right: 2px solid #333;
  display: grid;
  gap: 10px;
}

.stat-block:last-child {
  border-right: 0;
}

.stat-block strong {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  color: var(--yellow);
}

.stat-block span {
  font-size: 0.82rem;
  color: #999999;
  line-height: 1.4;
}

/* Case studies grid (work page) */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.case-card {
  position: relative;
  padding: 36px;
  background: var(--surface-card);
  border: 2px solid var(--black);
  display: grid;
  gap: 20px;
  align-content: start;
}

.case-card-dark {
  background: var(--black);
  color: #ffffff;
}

.case-card-dark p {
  color: #cccccc;
}

.case-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-tag {
  padding: 4px 10px;
  background: var(--black);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-tag-teal {
  background: var(--teal);
}

.case-tag-yellow {
  background: var(--yellow);
  color: var(--black);
}

.case-card-dark .case-tag {
  background: #333333;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 20px;
  border-top: 2px solid var(--surface-dim);
}

.case-card-dark .case-metrics {
  border-top-color: #333333;
}

.case-metric strong {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--yellow);
}

.case-card-dark .case-metric strong {
  color: var(--yellow);
}

.case-metric span {
  display: block;
  margin-top: 5px;
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.3;
}

.case-card-dark .case-metric span {
  color: #999999;
}

.case-phase {
  padding: 5px 10px;
  background: var(--surface-dim);
  border: 1px solid var(--line);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.case-card-dark .case-phase {
  background: #222222;
  border-color: #444444;
  color: #888888;
}

/* Disclaimer band (work page) */
.disclaimer-band {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px;
  background: var(--surface-dim);
  border: 2px solid var(--black);
  display: grid;
  gap: 14px;
}

.disclaimer-band p {
  color: var(--muted);
  line-height: 1.7;
}

/* Contact page */
.contact-section {
  background: var(--surface-dim);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(40px, 8vw, 80px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.contact-info {
  display: grid;
  gap: 32px;
}

.contact-info-block {
  display: grid;
  gap: 28px;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}

.process-list li > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border: 2px solid var(--black);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
}

.process-list h3 {
  margin-bottom: 6px;
}

.process-list p {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-aside-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.aside-card {
  padding: 22px;
  background: var(--surface-card);
  border: 2px solid var(--black);
  display: grid;
  gap: 8px;
}

.aside-card small {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.aside-card strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.contact-form-wrap {
  background: var(--black);
  padding: 36px;
  border: 2px solid var(--black);
  box-shadow: 8px 8px 0 var(--yellow);
}

.contact-form-wrap label span {
  color: #dddddd;
}

/* Legal / privacy page */
.legal-content {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 64px;
  align-items: start;
}

.legal-body {
  display: grid;
  gap: 32px;
}

.legal-body h2 {
  font-size: 1.05rem;
  font-weight: 800;
  padding-top: 8px;
  border-top: 2px solid var(--black);
}

.legal-body p,
.legal-body li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-body ul {
  padding-left: 20px;
  margin: 0;
  display: grid;
  gap: 6px;
}

.legal-aside {
  position: sticky;
  top: 88px;
}

/* Responsive: inner page components */
@media (max-width: 920px) {
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-block:nth-child(2) {
    border-right: 0;
  }

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

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

  .legal-content {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }

  .page-hero-accent {
    display: none;
  }
}

@media (max-width: 560px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .stat-block {
    border-right: 0;
    border-bottom: 2px solid #333;
  }

  .stat-block:last-child {
    border-bottom: 0;
  }

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

  .contact-aside-cards {
    grid-template-columns: 1fr;
  }
}
