/* ==========================================================================
   Alamsi Group — site.css
   One stylesheet, no build step.

   1. Tokens
   2. Reset & base
   3. Typography
   4. Layout
   5. Header
   6. Footer
   7. Components
   8. Home
   9. About & Contact
   10. Legal
   11. Motion, print & preferences
   ========================================================================== */

/* 1. Tokens
   ========================================================================== */

:root {
  color-scheme: light;

  /* Palette — warm neutrals, one bronze accent */
  --paper: #f5f3ee;
  --paper-sunk: #edeae3;
  --ink: #121417;
  --ink-soft: #383b40;
  --muted: #5f6268;
  --line: #dcd8cf;
  --line-strong: #bfbab0;
  --accent: #7a5c31;

  --night: #111315;
  --night-ink: #ebe8e1;
  --night-muted: #a3a09a;
  --night-line: #2a2d31;
  --night-accent: #c4a878;

  /* Type — system stacks: zero font downloads, zero third-party requests */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", "URW Palladio L", P052, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Text", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-lead: clamp(1.25rem, 1.1rem + 0.6vw, 1.5625rem);
  --text-h3: clamp(1.3125rem, 1.2rem + 0.45vw, 1.5rem);
  --text-h2: clamp(2rem, 1.5rem + 2vw, 3.375rem);
  --text-h1: clamp(2.625rem, 1.75rem + 3.8vw, 5.25rem);
  --text-display: clamp(3.5rem, 1.5rem + 8.6vw, 9.5rem);

  /* Space */
  --gutter: clamp(1.25rem, 4.5vw, 4rem);
  --container: 78rem;
  --measure: 38rem;
  --col-gap: clamp(1rem, 2.5vw, 2.5rem);
  --section: clamp(5rem, 3.25rem + 6.5vw, 9.5rem);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --radius: 2px;
}

/* 2. Reset & base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--text-base);
  line-height: 1.65;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

main:focus {
  outline: none;
}

h1, h2, h3, p, ul, ol, dl, dd, figure {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

button {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--radius);
}

::selection {
  background: #e3d8c4;
  color: var(--ink);
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: var(--gutter);
  z-index: 10;
  padding: 0.75rem 1.125rem;
  background: var(--ink);
  color: var(--paper);
  font-size: var(--text-sm);
  text-decoration: none;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* 3. Typography
   ========================================================================== */

.display,
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  text-wrap: balance;
}

.display {
  font-size: var(--text-display);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

h1 {
  font-size: var(--text-h1);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

h2 {
  font-size: var(--text-h2);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

h3 {
  font-size: var(--text-h3);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

p {
  text-wrap: pretty;
}

.lead {
  font-family: var(--serif);
  font-size: var(--text-lead);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.eyebrow,
.label {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.eyebrow::before {
  content: "";
  flex: none;
  width: 1.75rem;
  height: 1px;
  background: var(--accent);
}

.nowrap {
  white-space: nowrap;
}

/* 4. Layout
   ========================================================================== */

.container {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--col-gap);
}

.grid > * {
  grid-column: 1 / -1;
}

.section {
  padding-block: var(--section);
}

.section--divided {
  border-top: 1px solid var(--line);
}

.section--sunk {
  background: var(--paper-sunk);
}

.section-head .eyebrow {
  margin-bottom: 1.75rem;
}

.section-intro {
  margin-top: 1.75rem;
}

.section-intro p {
  max-width: var(--measure);
  color: var(--ink-soft);
}

.section-intro .link-arrow {
  margin-top: 1.75rem;
}

@media (min-width: 56rem) {
  .section-head {
    grid-column: 1 / span 6;
  }

  .section-head--wide {
    grid-column: 1 / -1;
  }

  .section-intro--below {
    grid-column: 7 / span 6;
    margin-top: 2.5rem;
  }

  .section-intro {
    grid-column: 8 / span 5;
    align-self: end;
    margin-top: 0;
  }
}

/* 5. Header
   ========================================================================== */

.site-header {
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  flex: none;
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: square;
}

.brand__bar {
  stroke: var(--accent);
}

.brand__name {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav ul {
  display: flex;
  gap: clamp(1.125rem, 3vw, 2.75rem);
}

.site-nav a {
  position: relative;
  display: block;
  padding-block: 0.5rem;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0.25rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

@media (max-width: 25rem) {
  .brand {
    gap: 0.625rem;
  }

  .brand__mark {
    width: 1.5rem;
    height: 1.5rem;
  }

  .brand__name {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
  }
}

/* 6. Footer
   ========================================================================== */

.site-footer {
  padding-block: clamp(4rem, 3rem + 4vw, 6.5rem) 2rem;
  background: var(--night);
  color: var(--night-ink);
}

.site-footer :focus-visible {
  outline-color: var(--night-accent);
}

.site-footer .brand {
  color: var(--night-ink);
}

.site-footer .brand__bar {
  stroke: var(--night-accent);
}

.site-footer__top {
  display: grid;
  gap: 3.5rem;
}

.site-footer__summary {
  max-width: 21rem;
  margin-top: 1.5rem;
  font-size: var(--text-sm);
  color: var(--night-muted);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.75rem 2rem;
}

.site-footer__nav > :last-child {
  grid-column: 1 / -1;
}

.site-footer .label {
  margin-bottom: 1.25rem;
  color: var(--night-muted);
}

.site-footer__nav ul {
  display: grid;
  gap: 0.75rem;
}

.site-footer__nav a {
  font-size: var(--text-sm);
  color: var(--night-ink);
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.25s var(--ease);
}

.site-footer__nav a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--night-accent);
}

.site-footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-top: clamp(3.5rem, 2.5rem + 3vw, 5.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--night-line);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--night-muted);
}

.site-footer__base a {
  color: var(--night-muted);
  text-decoration: none;
}

.site-footer__base a:hover {
  color: var(--night-ink);
}

@media (min-width: 40rem) {
  .site-footer__nav {
    grid-template-columns: 1fr 1fr 1.5fr;
  }

  .site-footer__nav > :last-child {
    grid-column: auto;
  }
}

@media (min-width: 64rem) {
  .site-footer__top {
    grid-template-columns: 5fr 7fr;
    gap: var(--col-gap);
  }
}

/* 7. Components
   ========================================================================== */

.arrow {
  flex: none;
  width: 0.875rem;
  height: 0.875rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: transform 0.4s var(--ease);
}

a:hover > .arrow {
  transform: translateX(4px);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.0625rem 1.625rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.button:hover {
  border-color: #2e3136;
  background: #2e3136;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-block: 0.375rem;
  border-bottom: 1px solid var(--line-strong);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.3s var(--ease);
}

.link-arrow:hover {
  border-color: var(--ink);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2.25rem;
  margin-top: 2.5rem;
}

/* Email routes — shared by Home and Contact */

.routes {
  border-top: 1px solid var(--ink);
}

.routes--offset {
  margin-top: clamp(3rem, 2rem + 4vw, 5.5rem);
}

.route {
  display: grid;
  gap: 1rem;
  padding-block: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  border-bottom: 1px solid var(--line-strong);
}

.route__title {
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.route__desc {
  max-width: 26rem;
  margin-top: 0.625rem;
  font-size: var(--text-sm);
  color: var(--ink-soft);
}

.route__action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.route__email {
  font-family: var(--serif);
  font-size: clamp(1.3125rem, 1rem + 1.4vw, 2.125rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-decoration: none;
  overflow-wrap: anywhere;
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: background-size 0.5s var(--ease);
}

.route__email:hover {
  background-size: 100% 1px;
}

.copy {
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: transparent;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.copy:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.copy[hidden] {
  display: none;
}

.routes-more {
  margin-top: 2.5rem;
}

@media (min-width: 56rem) {
  .route {
    grid-template-columns: 5fr 7fr;
    column-gap: var(--col-gap);
    align-items: center;
  }
}

/* 8. Home
   ========================================================================== */

.hero {
  padding-top: clamp(4.5rem, 2.75rem + 7vw, 10rem);
  padding-bottom: clamp(4rem, 2.5rem + 5vw, 7rem);
}

.hero .eyebrow {
  margin-bottom: clamp(1.75rem, 1.25rem + 1.5vw, 2.75rem);
}

.hero__grid {
  row-gap: 1.75rem;
  margin-top: clamp(2.5rem, 1.5rem + 4vw, 5.5rem);
}

.hero__lead {
  max-width: 34rem;
  font-size: clamp(1.375rem, 1.15rem + 1vw, 1.9375rem);
  line-height: 1.35;
}

.hero__aside p {
  max-width: 28rem;
  color: var(--ink-soft);
}

.facts {
  display: grid;
  margin-top: clamp(4.5rem, 3rem + 6vw, 8.5rem);
  border-top: 1px solid var(--line-strong);
}

.facts > div {
  padding-block: 1.5rem;
}

.facts > div + div {
  border-top: 1px solid var(--line);
}

.facts dd {
  margin-top: 0.625rem;
  font-family: var(--serif);
  font-size: 1.1875rem;
  line-height: 1.4;
}

@media (min-width: 56rem) {
  .hero__lead {
    grid-column: 1 / span 7;
  }

  .hero__aside {
    grid-column: 9 / span 4;
    padding-top: 0.5rem;
  }

  .facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: var(--col-gap);
  }

  .facts > div {
    padding-top: 1.75rem;
    padding-bottom: 0;
  }

  .facts > div + div {
    border-top: 0;
  }
}

/* The ledger: what each property keeps vs. what the group provides */

.ledger {
  display: grid;
  margin-top: clamp(3.5rem, 2.25rem + 4.5vw, 6.5rem);
  border-top: 1px solid var(--ink);
}

.ledger__col {
  padding-top: 2rem;
}

.ledger__col + .ledger__col {
  margin-top: 2.5rem;
}

.ledger__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.ledger__head span {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.ledger__list li {
  display: grid;
  gap: 0.25rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--line);
}

.ledger__term {
  font-family: var(--serif);
  font-size: var(--text-h3);
  line-height: 1.3;
}

.ledger__desc {
  font-size: var(--text-sm);
  color: var(--ink-soft);
}

@media (min-width: 40rem) {
  .ledger__list li {
    grid-template-columns: minmax(10rem, 2fr) 3fr;
    column-gap: 1.5rem;
    align-items: baseline;
  }
}

@media (min-width: 64rem) {
  .ledger {
    grid-template-columns: 5fr 7fr;
  }

  .ledger__col {
    padding-top: 2.25rem;
  }

  .ledger__col:first-child {
    padding-right: clamp(2rem, 4vw, 4rem);
  }

  .ledger__col + .ledger__col {
    margin-top: 0;
    padding-left: clamp(2rem, 4vw, 4rem);
    border-left: 1px solid var(--line);
  }

  .ledger__col:first-child .ledger__list li {
    grid-template-columns: 1fr;
  }
}

/* Principles */

.principles {
  display: grid;
  margin-top: clamp(3.5rem, 2.25rem + 4.5vw, 6rem);
}

.principle {
  padding-block: 1.75rem 2.75rem;
  border-top: 1px solid var(--line-strong);
}

.principle__num {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}

.principle h3 {
  margin-top: clamp(1.5rem, 1rem + 2vw, 3rem);
}

.principle p {
  max-width: 24rem;
  margin-top: 1rem;
  color: var(--ink-soft);
}

@media (min-width: 56rem) {
  .principles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: var(--col-gap);
  }

  .principle {
    padding-bottom: 0;
  }
}

/* 9. About & Contact
   ========================================================================== */

.page-head {
  padding-block: clamp(4rem, 2.75rem + 5.5vw, 8.5rem) clamp(3.5rem, 2.5rem + 4vw, 6.5rem);
  border-bottom: 1px solid var(--line);
}

.page-head .eyebrow {
  margin-bottom: clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
}

.page-head h1 {
  max-width: 15ch;
}

.page-head .lead {
  max-width: 40rem;
  margin-top: clamp(1.75rem, 1.25rem + 1.5vw, 2.75rem);
  color: var(--ink-soft);
}

.page-head__meta {
  margin-top: 2rem;
}

.page-head--error {
  padding-bottom: var(--section);
  border-bottom: 0;
}

.chapter {
  padding-block: clamp(3.5rem, 2.5rem + 3.5vw, 6rem);
  border-top: 1px solid var(--line);
}

.chapter:first-child {
  border-top: 0;
}

.chapter__num {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}

.chapter h2 {
  margin-top: 1.25rem;
  font-size: clamp(1.75rem, 1.4rem + 1.3vw, 2.5rem);
  line-height: 1.12;
}

.chapter__body {
  margin-top: 1.75rem;
}

.chapter__body p {
  max-width: var(--measure);
  color: var(--ink-soft);
}

.chapter__body p:first-child {
  font-family: var(--serif);
  font-size: var(--text-lead);
  line-height: 1.45;
  color: var(--ink);
}

.chapter__body p + p {
  margin-top: 1.25rem;
}

@media (min-width: 56rem) {
  .chapter__head {
    grid-column: 1 / span 4;
  }

  .chapter__body {
    grid-column: 6 / span 7;
    margin-top: 0;
    padding-top: 2.5rem;
  }
}

.statement {
  padding-block: var(--section);
  border-top: 1px solid var(--line);
}

.statement__text {
  max-width: 20ch;
  font-family: var(--serif);
  font-size: var(--text-h2);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.statement .actions {
  margin-top: clamp(2.5rem, 2rem + 2vw, 3.5rem);
}

.notes {
  display: grid;
  gap: 3rem;
  margin-top: clamp(4rem, 3rem + 4vw, 6.5rem);
}

.note .label {
  margin-bottom: 1rem;
}

.note p {
  max-width: 30rem;
  color: var(--ink-soft);
}

.note a {
  color: var(--ink);
  text-decoration-color: var(--line-strong);
}

.note a:hover {
  text-decoration-color: var(--ink);
}

@media (min-width: 56rem) {
  .notes {
    grid-template-columns: 5fr 7fr;
    column-gap: var(--col-gap);
  }
}

/* 10. Legal
   ========================================================================== */

.legal {
  padding-block: clamp(3.5rem, 2.5rem + 4vw, 6.5rem) var(--section);
}

.legal__toc {
  display: none;
}

.legal__toc .label {
  margin-bottom: 1.25rem;
}

.legal__toc ol {
  counter-reset: toc;
  border-top: 1px solid var(--line);
}

.legal__toc li {
  counter-increment: toc;
}

.legal__toc a {
  display: flex;
  gap: 0.875rem;
  padding-block: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.legal__toc a::before {
  content: counter(toc, decimal-leading-zero);
  flex: none;
  min-width: 1.5rem;
  font-size: var(--text-xs);
  line-height: 1.7;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}

.legal__toc a:hover {
  color: var(--ink);
}

@media (min-width: 64rem) {
  .legal__toc {
    display: block;
    grid-column: 1 / span 3;
    position: sticky;
    top: 2rem;
    align-self: start;
  }

  .legal__body {
    grid-column: 5 / span 7;
  }
}

.prose {
  max-width: 42rem;
  counter-reset: clause;
}

.prose > h2 {
  counter-increment: clause;
  margin-top: clamp(3rem, 2.5rem + 2vw, 4.5rem);
  font-size: clamp(1.4375rem, 1.25rem + 0.8vw, 1.875rem);
  line-height: 1.2;
  scroll-margin-top: 2rem;
}

.prose > h2::before {
  content: counter(clause, decimal-leading-zero);
  display: block;
  margin-bottom: 0.875rem;
  font-family: var(--sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}

.prose > h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.prose p,
.prose ul {
  margin-top: 1.125rem;
  color: var(--ink-soft);
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 0.5rem;
}

.prose li::marker {
  color: var(--accent);
}

.prose a {
  color: var(--ink);
  text-decoration-color: var(--line-strong);
  overflow-wrap: anywhere;
}

.prose a:hover {
  text-decoration-color: var(--ink);
}

.prose strong {
  font-weight: 600;
  color: var(--ink);
}

/* 11. Motion, print & preferences
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  .reveal {
    animation: rise 1s var(--ease) both;
  }

  .reveal--2 { animation-delay: 0.08s; }
  .reveal--3 { animation-delay: 0.18s; }
  .reveal--4 { animation-delay: 0.3s; }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(0.75rem);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .eyebrow::before,
  .route__email {
    background: none;
  }

  .route__email {
    text-decoration: underline;
  }
}

@media print {
  .skip-link,
  .site-nav,
  .site-footer,
  .legal__toc,
  .copy {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .legal__body {
    grid-column: 1 / -1;
  }
}
