@font-face {
  font-family: "EB Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/eb-garamond-500.woff2") format("woff2");
}

@font-face {
  font-family: "EB Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/eb-garamond-500-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-400.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/inter-600.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --ink: #0a0a0a;
  --paper: #faf9f6;
  --paper-light: #ffffff;
  --muted: #6f7074;
  --line: #d8d7d2;
  --cyan: #22a9d6;
  --shell: 78rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --serif: "EB Garamond", Garamond, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 20rem;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  font-size: 1rem;
  line-height: 1.7;
}

main {
  overflow-x: clip;
}

h1,
h2,
h3,
p,
dl,
dd,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.75rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 4.5rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

a {
  color: inherit;
  text-decoration-thickness: 0.0625rem;
  text-underline-offset: 0.24em;
}

address {
  font-style: normal;
}

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

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  top: -6rem;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--paper-light);
  font-size: 0.82rem;
  font-weight: 600;
  transition: top 140ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgb(250 249 246 / 96%);
}

.header-inner {
  display: flex;
  min-height: 6.25rem;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.brand {
  display: inline-grid;
  min-width: 0;
  flex: none;
  grid-template-columns: 3rem minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  background: var(--cyan);
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: -0.05em;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
}

.brand-copy span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2.6vw, 2.25rem);
}

.site-nav a,
.office-link {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 0.18rem;
  background: var(--cyan);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: opacity 160ms ease, transform 160ms ease;
}

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

.office-link {
  flex: none;
  padding: 0.68rem 0.85rem;
  border: 1px solid var(--ink);
}

.office-link:hover {
  background: var(--ink);
  color: var(--paper-light);
}

.hero {
  display: grid;
  min-height: 43rem;
  grid-template-columns: minmax(0, 1.65fr) minmax(17rem, 0.65fr);
  align-items: stretch;
  gap: clamp(2rem, 6vw, 6rem);
  padding-top: clamp(4rem, 8vw, 7.5rem);
  padding-bottom: clamp(4rem, 7vw, 6.5rem);
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin-bottom: 1.3rem;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.105em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 2.25rem;
  height: 0.2rem;
  margin-right: 0.7rem;
  vertical-align: 0.16em;
  background: var(--cyan);
  content: "";
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.75rem;
}

.hero h1::first-line {
  font-style: italic;
}

.hero-lead {
  max-width: 44rem;
  margin-bottom: 2rem;
  color: #343a3d;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

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

.button-primary:hover {
  background: var(--cyan);
  color: var(--ink);
}

.button-secondary {
  border: 1px solid var(--ink);
}

.button-secondary:hover {
  border-color: var(--cyan);
  color: var(--ink);
}

.contact-warning,
.deadline-warning {
  max-width: 44rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.deadline-warning {
  margin-top: 0.35rem;
}

.hero-aside {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-self: stretch;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--paper-light);
  box-shadow: inset 0.35rem 0 var(--cyan);
}

.aside-label {
  margin-bottom: auto;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aside-quote {
  margin: 4rem 0 2rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-style: italic;
  line-height: 1.05;
}

.fact-list {
  margin: 0;
  border-top: 1px solid rgb(10 10 10 / 22%);
}

.fact-list div {
  padding-block: 0.85rem;
  border-bottom: 1px solid rgb(10 10 10 / 22%);
}

.fact-list dt {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
}

.section {
  padding-top: clamp(4.5rem, 9vw, 8rem);
  padding-bottom: clamp(4.5rem, 9vw, 8rem);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.55fr);
  gap: 1.5rem clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(2.75rem, 6vw, 5rem);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.section-heading > p:last-child {
  max-width: 33rem;
  margin-bottom: 0.25rem;
  color: var(--muted);
}

.assessment-ledger {
  border-top: 1px solid var(--ink);
}

.assessment-ledger article {
  display: grid;
  grid-template-columns: clamp(3rem, 7vw, 6rem) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: 1.3rem;
  border-bottom: 1px solid var(--line);
}

.assessment-ledger article > span {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
}

.assessment-ledger article > div {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1fr);
  gap: 1rem 2rem;
  align-items: baseline;
}

.assessment-ledger h3,
.assessment-ledger p {
  margin-bottom: 0;
}

.assessment-ledger p {
  max-width: 44rem;
  color: var(--muted);
}

.section-dark,
.contact-section {
  background: var(--ink);
  color: var(--paper-light);
}

.section-heading-light > p:last-child,
.section-dark .eyebrow,
.contact-section .eyebrow {
  color: #b7c0c2;
}

.process-rail {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-rail::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2rem;
  width: 0.3rem;
  background: var(--cyan);
  content: "";
}

.process-rail li {
  position: relative;
  display: grid;
  min-height: 9rem;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 4rem);
  padding: 0 0 2.5rem;
}

.process-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  border: 0.3rem solid var(--ink);
  border-radius: 50%;
  background: var(--cyan);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.process-rail h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.process-rail p {
  max-width: 45rem;
  margin-bottom: 0;
  color: #c8d0d1;
}

.document-grid {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.document-grid li {
  min-height: 11rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.document-grid li:nth-child(3n) {
  border-right: 0;
}

.document-grid strong,
.document-grid span {
  display: block;
}

.document-grid strong {
  margin-bottom: 2.5rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.document-grid span {
  color: var(--muted);
  font-size: 0.87rem;
}

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

.role-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--ink);
}

.role-pair article {
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.role-pair article + article {
  border-left: 1px solid var(--ink);
  background: var(--paper);
}

.role-label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.role-pair h3 {
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.role-pair p:last-child {
  margin-bottom: 0;
}

.law-section {
  background: #f0efeb;
}

.law-section .section-heading .eyebrow,
.law-section .section-heading > p:last-child {
  color: #42494b;
}

.law-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.law-notes article {
  min-width: 0;
  padding: clamp(1.4rem, 3.2vw, 2.5rem);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.law-cite {
  display: inline-flex;
  margin-bottom: 2rem;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: none;
}

.law-cite:hover {
  text-decoration: underline;
}

.law-notes h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.law-notes p {
  color: #32393b;
}

.law-notes p:last-child {
  margin-bottom: 0;
}

.law-notes p a {
  color: var(--ink);
  font-weight: 600;
}

.question-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
}

.question-teaser .section-heading {
  display: block;
  margin-bottom: 0;
}

.question-teaser .section-heading h2 {
  margin-bottom: 1.25rem;
}

.question-teaser .section-heading > p:last-child {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 2rem;
  padding-bottom: 0.4rem;
  border-bottom: 0.2rem solid var(--cyan);
  font-weight: 600;
  text-decoration: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-layout .section-heading {
  display: block;
  margin: 0;
}

.contact-layout .section-heading h2 {
  margin-bottom: 1.5rem;
}

.contact-card {
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--cyan);
  color: var(--ink);
}

.contact-name {
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  font-size: 2rem;
}

.contact-card > a {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 0.45rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-card address {
  margin: 2rem 0 0.75rem;
}

.contact-warning-dark,
.deadline-warning-dark {
  color: #293235;
}

.site-footer {
  padding-block: 3rem;
  border-top: 1px solid #343a3d;
  background: var(--ink);
  color: #c9d0d1;
  font-size: 0.78rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
}

.site-footer p {
  margin-bottom: 0.8rem;
}

.footer-brand {
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 1.7rem;
}

.site-footer a:hover {
  color: var(--cyan);
}

.page-hero {
  padding-top: clamp(4.5rem, 10vw, 9rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--ink);
}

.page-hero h1 {
  max-width: 11ch;
  margin-bottom: 2rem;
}

.page-hero > p:last-child {
  max-width: 48rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(12rem, 0.28fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 8rem);
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 9vw, 8rem);
}

.faq-index {
  position: sticky;
  top: 1.5rem;
  align-self: start;
  padding-left: 1rem;
  border-left: 0.25rem solid var(--cyan);
}

.faq-index a {
  display: block;
  padding-block: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-decoration: none;
}

.faq-index a:hover {
  color: var(--ink);
}

.faq-list {
  min-width: 0;
}

.faq-group {
  scroll-margin-top: 2rem;
  padding: 0 0 4rem;
}

.faq-group + .faq-group {
  padding-top: 4rem;
  border-top: 1px solid var(--line);
}

.faq-number {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
  place-items: center;
  background: var(--cyan);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.faq-group h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.faq-group details {
  border-top: 1px solid var(--ink);
}

.faq-group details:last-child {
  border-bottom: 1px solid var(--ink);
}

.faq-group summary {
  position: relative;
  padding: 1.2rem 2.5rem 1.2rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.15;
  list-style: none;
}

.faq-group summary::-webkit-details-marker {
  display: none;
}

.faq-group summary::after {
  position: absolute;
  top: 1.25rem;
  right: 0;
  color: var(--ink);
  content: "+";
  font-family: var(--sans);
}

.faq-group details[open] summary::after {
  content: "−";
}

.faq-group details > div {
  max-width: 49rem;
  padding: 0 2.5rem 1.5rem 0;
  color: var(--muted);
}

.faq-group details p:last-child {
  margin-bottom: 0;
}

.faq-group details a {
  color: var(--ink);
  font-weight: 600;
}

.privacy-shell {
  display: grid;
  grid-template-columns: minmax(15rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 9vw, 8rem);
}

.privacy-summary {
  position: sticky;
  top: 1.5rem;
  align-self: start;
  padding: 1.5rem;
  border: 1px solid var(--ink);
  box-shadow: 0.4rem 0.4rem 0 var(--cyan);
}

.summary-statement {
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.65rem);
  line-height: 1.1;
}

.privacy-summary > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.privacy-copy {
  min-width: 0;
}

.privacy-copy section {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  column-gap: clamp(1rem, 3vw, 2.5rem);
  padding-bottom: 3rem;
}

.privacy-copy section + section {
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.privacy-index {
  grid-row: 1 / span 8;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.privacy-copy h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.privacy-copy section > p:not(.privacy-index) {
  color: #42494b;
}

.privacy-copy section > p:last-child {
  margin-bottom: 0;
}

.not-found {
  display: grid;
  min-height: 36rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.error-code {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(8rem, 24vw, 19rem);
  line-height: 0.72;
}

.not-found h1 {
  max-width: 8ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.not-found > div > p:not(.eyebrow) {
  max-width: 32rem;
  margin-bottom: 2rem;
  color: var(--muted);
}

.reveal {
  transition: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 62rem) {
  .header-inner {
    flex-wrap: wrap;
    padding-top: 0.8rem;
    padding-bottom: 0.75rem;
  }

  .site-nav {
    order: 3;
    width: 100%;
    flex-basis: 100%;
    justify-content: flex-start;
    padding-top: 0.7rem;
    border-top: 1px solid var(--line);
  }

  .office-link {
    margin-left: auto;
  }

  .hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-aside {
    min-height: 26rem;
  }

  .aside-label {
    margin-bottom: 0;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-heading .eyebrow {
    grid-column: auto;
  }

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

  .document-grid li:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .document-grid li:nth-child(2n) {
    border-right: 0;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-shell,
  .privacy-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-index,
  .privacy-summary {
    position: static;
  }

  .faq-index {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.2rem 1rem;
  }
}

@media (max-width: 44rem) {
  body {
    line-height: 1.62;
  }

  .header-inner {
    gap: 0.75rem;
  }

  .brand {
    grid-template-columns: 2.65rem minmax(0, 1fr);
    gap: 0.65rem;
  }

  .brand-mark {
    width: 2.65rem;
    height: 2.65rem;
  }

  .brand-copy strong {
    font-size: 1.2rem;
  }

  .brand-copy span {
    display: none;
  }

  .office-link {
    padding: 0.58rem 0.65rem;
    font-size: 0.7rem;
  }

  .site-nav {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr 0.8fr;
    gap: 0.4rem;
  }

  .site-nav a {
    min-width: 0;
    font-size: 0.68rem;
    line-height: 1.25;
    text-align: center;
  }

  .site-nav a::after {
    bottom: -0.35rem;
  }

  .hero {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-aside {
    min-height: 22rem;
  }

  .section-heading {
    margin-bottom: 2.75rem;
  }

  .assessment-ledger article,
  .assessment-ledger article > div {
    grid-template-columns: minmax(0, 1fr);
  }

  .assessment-ledger article {
    gap: 0.9rem;
  }

  .assessment-ledger article > div {
    gap: 0.5rem;
  }

  .process-rail::before {
    left: 1.5rem;
  }

  .process-rail li {
    grid-template-columns: 3.25rem minmax(0, 1fr);
    gap: 1rem;
  }

  .process-marker {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.25rem;
  }

  .document-grid,
  .role-pair,
  .law-notes,
  .question-teaser,
  .not-found {
    grid-template-columns: minmax(0, 1fr);
  }

  .document-grid li,
  .document-grid li:nth-child(3n) {
    min-height: 0;
    border-right: 0;
  }

  .document-grid strong {
    margin-bottom: 1.25rem;
  }

  .role-pair article + article {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .law-notes {
    border-left: 0;
  }

  .law-notes article {
    border-right: 0;
  }

  .text-link {
    width: 100%;
    justify-content: space-between;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .page-hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.5rem);
  }

  .faq-index {
    grid-template-columns: minmax(0, 1fr);
  }

  .privacy-copy section {
    grid-template-columns: 2rem minmax(0, 1fr);
    column-gap: 0.75rem;
  }

  .not-found {
    gap: 3rem;
  }

  .error-code {
    font-size: clamp(8rem, 50vw, 11rem);
  }
}

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