:root {
  --ink: #17292d;
  --muted: #52666a;
  --deep: #0b3f49;
  --teal: #0b5a5c;
  --water: #e6f1ef;
  --mineral: #f4f0e6;
  --paper: #fffefd;
  --line: #b9ceca;
  --line-soft: #dce6e3;
  --accent: #a84f16;
  --accent-soft: #f5e5d8;
  --radius-sm: 0.45rem;
  --radius: 0.85rem;
  --shadow: 0 14px 34px rgba(11, 63, 73, 0.08);
  --container: 88rem;
  --prose: 82ch;
  --header: 4.6rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 1.25rem);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1rem + 0.2vw, 1.16rem);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--teal);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--deep);
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  border-radius: 0.2rem;
  box-shadow: 0 0 0 6px #172c30;
}

::selection {
  color: var(--paper);
  background: var(--teal);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--deep);
  font-weight: 720;
  line-height: 1.14;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  max-width: 17ch;
  font-size: clamp(2.45rem, 5.6vw, 5.35rem);
}

h2 {
  max-width: 24ch;
  font-size: clamp(2rem, 3.3vw, 3.35rem);
}

h3 {
  margin-top: 1.5rem;
  font-size: clamp(1.27rem, 1.8vw, 1.58rem);
}

h4 {
  margin-top: 1.35rem;
  font-size: 1.05rem;
  letter-spacing: 0;
}

p,
ul,
ol,
dl {
  margin-top: 0.8rem;
  margin-bottom: 0;
}

strong {
  color: var(--deep);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--deep);
  transform: translateY(-160%);
}

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

.container,
.section-inner {
  width: min(100% - clamp(1.35rem, 4vw, 4rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header);
  border-bottom: 1px solid rgba(185, 206, 202, 0.78);
  background: rgba(255, 254, 253, 0.96);
  backdrop-filter: blur(12px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--deep);
  font-size: 1.06rem;
  font-weight: 780;
  line-height: 1;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  border-radius: 0.72rem;
  box-shadow: 0 4px 12px rgba(11, 63, 73, 0.14);
}

.brand-word {
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.brand-tld {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.55rem 0.72rem;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--deep);
  background: var(--water);
}

.site-nav .nav-mobile-legal {
  display: none;
}

.nav-toggle {
  display: none;
  min-width: 3rem;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--deep);
  background: var(--paper);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(3rem, 4.5vw, 4.5rem);
  background: linear-gradient(135deg, var(--mineral), #faf8f2 58%, var(--water) 145%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  align-items: center;
  gap: clamp(1.5rem, 3.5vw, 4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero-lede {
  max-width: 61ch;
  margin-top: 1.25rem;
  color: #324a4e;
  font-size: clamp(1.13rem, 1.35vw, 1.32rem);
  line-height: 1.62;
}

.jump-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border: 1px solid var(--teal);
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--teal);
  font-size: 0.92rem;
  font-weight: 740;
  text-decoration: none;
}

.button:hover {
  color: #fff;
  background: var(--deep);
}

.button.secondary {
  color: var(--deep);
  background: transparent;
}

.button.secondary:hover {
  color: var(--deep);
  background: var(--water);
}

.hero-figure {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 31rem;
  justify-self: end;
  padding: clamp(0.75rem, 1.5vw, 1.15rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 253, 0.74);
  box-shadow: var(--shadow);
}

.hero-figure img {
  width: 100%;
}

.hero-figure figcaption,
.diagram figcaption {
  margin-top: 0.8rem;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
}

.fact-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact {
  min-width: 0;
  padding: 1.1rem clamp(1rem, 1.6vw, 1.4rem);
  border-right: 1px solid var(--line-soft);
}

.fact:first-child {
  border-left: 1px solid var(--line-soft);
}

.fact b {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--deep);
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.fact span {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.section {
  padding: clamp(2.35rem, 4vw, 3.6rem) 0;
  scroll-margin-top: calc(var(--header) + 1.1rem);
}

.section--compact {
  padding: clamp(1.4rem, 2.4vw, 2.1rem) 0;
}

.section-header,
.section-head {
  display: grid;
  grid-template-columns: minmax(15rem, 0.68fr) minmax(18rem, 1fr);
  align-items: end;
  gap: clamp(1.25rem, 3vw, 3rem);
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

.section-header .eyebrow,
.section-header h2 {
  grid-column: 1;
}

.section-header h2 {
  align-self: start;
}

.section-header .lead {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 70ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.section--water {
  background: var(--water);
}

.section--mineral {
  background: var(--mineral);
}

.section--deep {
  color: #eaf4f2;
  background: var(--deep);
}

.section--deep h2,
.section--deep h3,
.section--deep h4,
.section--deep strong {
  color: #fff;
}

.section--deep .eyebrow,
.section--deep .stat-label {
  color: #f2ad7c;
}

.section-intro {
  max-width: 70ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.section--deep .section-intro {
  color: #c5d9d6;
}

.prose {
  max-width: var(--prose);
}

.prose > :first-child,
.panel > :first-child,
.callout > :first-child {
  margin-top: 0;
}

.lead-answer {
  color: var(--deep);
  font-size: clamp(1.15rem, 1.55vw, 1.36rem);
  line-height: 1.55;
}

.toc {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.toc h2 {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.toc ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.18rem 0.9rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.toc li {
  counter-increment: toc;
}

.toc a {
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  min-height: 2.35rem;
  align-items: start;
  padding: 0.35rem 0.4rem;
  border-radius: 0.3rem;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.4;
  text-decoration: none;
}

.toc a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.toc a:hover {
  background: var(--water);
}

.answer-grid,
.three-grid,
.four-grid,
.two-grid {
  display: grid;
  gap: 0.85rem;
}

.answer-grid,
.three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.panel {
  padding: clamp(1.15rem, 1.8vw, 1.55rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.panel h3,
.panel h4 {
  margin-top: 0;
  font-size: 1.25rem;
}

.panel p,
.panel li {
  color: #435a5e;
}

.panel--accent {
  border-top: 4px solid var(--accent);
}

.panel--deep {
  color: #eaf4f2;
  border-color: #2c6970;
  background: #0e4a53;
}

.panel--deep h3,
.panel--deep h4,
.panel--deep p,
.panel--deep li,
.panel--deep strong {
  color: inherit;
}

.stat-label {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.callout,
.notice {
  max-width: var(--prose);
  padding: 1.05rem 1.2rem 1.1rem 1.05rem;
  border-left: 5px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--accent-soft);
}

.callout {
  margin-top: 1.4rem;
}

.notice {
  margin: 1.4rem 0;
}

.notice h3 {
  margin-top: 0;
  font-size: 1.08rem;
}

.callout--dark {
  color: #e9f4f2;
  border-left-color: #f0a56f;
  background: #124c54;
}

.callout--dark strong {
  color: #fff;
}

.diagram {
  margin: clamp(1.4rem, 2.5vw, 2.5rem) 0 0;
  padding: clamp(0.75rem, 1.7vw, 1.3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.diagram img {
  width: 100%;
  max-width: 50rem;
  margin-inline: auto;
}

.diagram figcaption {
  max-width: 62ch;
  margin-inline: auto;
}

.panel-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.75rem;
}

.plan-data {
  max-width: var(--prose);
  margin-top: 1.25rem;
}

.table-wrap {
  max-width: 100%;
  margin-top: 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 48rem;
  border-collapse: collapse;
  font-size: 1rem;
  line-height: 1.5;
}

caption {
  padding: 1rem;
  color: var(--deep);
  font-size: 1.1rem;
  font-weight: 760;
  line-height: 1.35;
  text-align: left;
}

th,
td {
  padding: 0.8rem 0.9rem;
  border-top: 1px solid var(--line-soft);
  vertical-align: top;
  text-align: left;
}

thead th {
  color: #fff;
  border-top: 0;
  background: var(--deep);
}

tbody th {
  width: 22%;
  color: var(--deep);
  background: #f7faf9;
}

tbody tr:nth-child(even) td {
  background: #fbfcfb;
}

.section--deep .table-wrap,
.section--deep .table-wrap td {
  color: var(--ink);
}

.section--deep .table-wrap strong {
  color: var(--deep);
}

.feature-list,
.source-list {
  padding-left: 1.25rem;
}

.feature-list li,
.source-list li {
  margin-top: 0.55rem;
}

.process {
  display: grid;
  gap: 0;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  min-height: 9rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  background: var(--paper);
  counter-increment: steps;
}

.process-list li::before {
  display: block;
  margin-bottom: 0.65rem;
  content: counter(steps, decimal-leading-zero);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.topic-grid article {
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.topic-grid h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

.cost-components {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.cost-components > div {
  padding: 1rem 1.1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.cost-components dt {
  color: var(--deep);
  font-weight: 760;
}

.cost-components dd {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.print-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 2rem;
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 2px solid var(--deep);
  border-radius: var(--radius);
  background: var(--paper);
  list-style: none;
}

.print-checklist li {
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  gap: 0.45rem;
}

.print-checklist li span {
  color: var(--teal);
  font-size: 1.4rem;
  line-height: 1.1;
}

.checklist-note {
  max-width: var(--prose);
}

.glossary-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.glossary-list > div {
  padding: 1rem 1.1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.glossary-list dt {
  color: var(--deep);
  font-weight: 760;
}

.glossary-list dd {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.process li {
  position: relative;
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
  min-height: 4.8rem;
  padding-bottom: 1.15rem;
  counter-increment: process;
}

.process li::before {
  position: relative;
  z-index: 1;
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  content: counter(process, decimal-leading-zero);
  border: 2px solid var(--teal);
  border-radius: 50%;
  color: var(--deep);
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
}

.process li:not(:last-child)::after {
  position: absolute;
  top: 3rem;
  bottom: 0;
  left: 1.5rem;
  width: 2px;
  content: "";
  background: var(--line);
}

.process h3 {
  margin-top: 0.2rem;
  font-size: 1.1rem;
}

.process p {
  max-width: 76ch;
  margin-top: 0.45rem;
  color: var(--muted);
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.icon-item {
  min-width: 0;
  padding: 1.2rem;
  border-right: 1px solid var(--line-soft);
}

.icon-item:last-child {
  border-right: 0;
}

.icon-item img {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.8rem;
}

.icon-item b {
  display: block;
  color: var(--deep);
  font-size: 1rem;
}

.icon-item span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

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

.faq-item {
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin-top: 0;
  font-size: 1.12rem;
}

.faq-item p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.source-list a {
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 2rem 0;
  color: #d7e7e4;
  background: #082f36;
}

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

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-logo {
  box-shadow: 0 0 0 1px rgba(234, 244, 242, 0.22);
}

.site-footer .brand-tld {
  color: #f2ad7c;
}

.site-footer p {
  max-width: 62ch;
  color: #b9d0cc;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-links a {
  color: #eaf4f2;
  font-size: 0.9rem;
}

.legal-page {
  min-height: 65vh;
  padding: clamp(3rem, 7vw, 7rem) 0;
}

.legal-page h1 {
  max-width: none;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

.back-to-top {
  display: inline-flex;
  margin-top: 1.5rem;
  font-weight: 700;
}

@media (max-width: 68rem) {
  .hero-grid,
  .section-head,
  .section-header {
    grid-template-columns: 1fr;
  }

  .section-header .eyebrow,
  .section-header h2,
  .section-header .lead {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-figure {
    width: min(100%, 34rem);
    max-width: 34rem;
    justify-self: start;
  }

  .section-head {
    gap: 1.25rem;
  }

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

  .four-grid,
  .fact-grid,
  .icon-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fact:nth-child(3),
  .icon-item:nth-child(3) {
    border-left: 1px solid var(--line-soft);
  }

  .fact:nth-child(-n + 2),
  .icon-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .fact:nth-child(2),
  .fact:nth-child(4),
  .icon-item:nth-child(2),
  .icon-item:nth-child(4) {
    border-right: 0;
  }

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

@media screen and (max-width: 52rem) {
  :root {
    --header: 4.15rem;
  }

  .js .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 0.75rem max(1rem, calc((100vw - var(--container)) / 2));
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .js .site-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .no-js .nav-shell {
    flex-wrap: wrap;
    padding-block: 0.6rem;
  }

  .no-js .site-nav {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 0.4rem;
    border-top: 1px solid var(--line-soft);
  }

  .site-nav:not([data-nav]) {
    display: none;
  }

  .site-nav a {
    min-height: 3rem;
  }

  .site-nav .nav-mobile-legal {
    display: inline-flex;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .table-wrap table {
    display: block;
    min-width: 0;
    font-size: 1rem;
  }

  .table-wrap caption {
    display: block;
    padding: 0 0 0.75rem;
  }

  .section--deep .table-wrap caption {
    color: #fff;
  }

  h2,
  h3,
  h4 {
    hyphens: auto;
    overflow-wrap: break-word;
  }

  .table-wrap thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .table-wrap tbody {
    display: grid;
    gap: 0.7rem;
  }

  .table-wrap tbody tr {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 0.6rem;
    background: #fff;
  }

  .table-wrap tbody th,
  .table-wrap tbody td {
    display: block;
    width: auto;
  }

  .table-wrap tbody th {
    padding: 0.8rem 0.9rem;
    border-top: 0;
    background: var(--water);
  }

  .table-wrap tbody td,
  .table-wrap tbody tr:nth-child(even) td {
    display: grid;
    grid-template-columns: minmax(6.8rem, 36%) minmax(0, 1fr);
    gap: 0.65rem;
    padding: 0.75rem 0.9rem;
    color: var(--ink);
    background: #fff;
    overflow-wrap: anywhere;
  }

  .table-wrap tbody td::before {
    color: var(--deep);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.35;
  }

  .table-terms td:nth-of-type(1)::before { content: "Hauptfunktion"; }
  .table-terms td:nth-of-type(2)::before { content: "Abgrenzung"; }
  .table-materials td:nth-of-type(1)::before { content: "Verhalten"; }
  .table-materials td:nth-of-type(2)::before { content: "Planung"; }
  .table-decision td:nth-of-type(1)::before { content: "Einordnung"; }
  .table-decision td:nth-of-type(2)::before { content: "Nächster Schritt"; }
  .table-construction td:nth-of-type(1)::before { content: "Vorteil"; }
  .table-construction td:nth-of-type(2)::before { content: "Zu prüfen"; }
  .table-rules td:nth-of-type(1)::before { content: "Stand"; }
  .table-rules td:nth-of-type(2)::before { content: "Wofür relevant"; }
  .table-operation td:nth-of-type(1)::before { content: "Regelmäßig"; }
  .table-operation td:nth-of-type(2)::before { content: "Zusätzlich"; }
  .table-cost td:nth-of-type(1)::before { content: "Planwert 2024"; }
  .table-cost td:nth-of-type(2)::before { content: "Stand 2026"; }
  .table-cost td:nth-of-type(3)::before { content: "Einordnung"; }
  .table-errors td:nth-of-type(1)::before { content: "Mögliche Folge"; }
  .table-errors td:nth-of-type(2)::before { content: "Vermeidung"; }

  .answer-grid,
  .three-grid,
  .two-grid,
  .faq-list,
  .process-list,
  .topic-grid,
  .cost-components,
  .print-checklist,
  .glossary-list {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 38rem) {
  .container,
  .section-inner {
    width: min(100% - 1.35rem, var(--container));
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-grid {
    gap: 1.5rem;
  }

  h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.45rem);
  }

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

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

  .js .site-nav.is-open {
    grid-template-columns: 1fr;
  }

  .process li {
    grid-template-columns: 2.7rem 1fr;
  }

  .process li::before {
    width: 2.55rem;
    height: 2.55rem;
  }

  .process li:not(:last-child)::after {
    top: 2.5rem;
    left: 1.25rem;
  }
}

@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;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  @page {
    margin: 1.6cm;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 10.5pt;
  }

  .site-header,
  .jump-actions,
  .toc,
  .site-footer,
  .back-to-top,
  .hero-figure,
  .fact-strip {
    display: none !important;
  }

  .hero,
  .section,
  .section--water,
  .section--mineral,
  .section--deep {
    padding: 1rem 0;
    color: #000;
    background: #fff;
  }

  .section--deep h2,
  .section--deep h3,
  .section--deep strong,
  h1,
  h2,
  h3,
  h4 {
    color: #000;
  }

  .container {
    width: 100%;
  }

  .table-wrap {
    overflow: visible;
    border-color: #777;
  }

  table {
    min-width: 0;
    font-size: 8.5pt;
  }

  thead th {
    color: #000;
    background: #ddd;
  }

  a {
    color: #000;
    text-decoration: none;
  }

  .panel,
  table,
  figure {
    break-inside: avoid;
  }
}
