:root {
  --paper: #f5f4ef;
  --surface: #fff;
  --ink: #202d30;
  --muted: #596465;
  --line: #d5d9d3;
  --accent: #285d5d;
  --wash: #e1eae4;
  --green: #38f283;
  --yellow: #eefd44;
  --purple: #d3b6ff;
  --width: 1180px;
  --gutter: 56px;
  --sans: "Segoe UI", Arial, sans-serif;
  --mono: Consolas, "SFMono-Regular", Menlo, monospace;
  color-scheme: light;
}

[data-station="fabrication"] {
  --accent: #405779;
  --wash: #e2e8ee;
}
[data-station="maker"] {
  --accent: #285d5d;
  --wash: #e1eae4;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  max-width: 100%;
}
img {
  height: auto;
}
a {
  color: inherit;
  text-underline-offset: 0.22em;
}
a:hover {
  text-decoration-thickness: 2px;
}
button,
input {
  font: inherit;
}
:focus-visible {
  outline: 3px solid #176aaa;
  outline-offset: 5px;
}
[id] {
  scroll-margin-top: 110px;
}
.shell {
  width: min(100%, calc(var(--width) + var(--gutter) * 2));
  margin: auto;
  padding-inline: var(--gutter);
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
}
.skip-link:focus {
  top: 12px;
}

h1,
h2,
h3,
h4,
p,
figure {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
}
h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 6vw, 78px);
  letter-spacing: -0.055em;
}
h1 span {
  color: var(--accent);
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(27px, 3.5vw, 42px);
  letter-spacing: -0.035em;
}
h3 {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: -0.02em;
}
h4 {
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
p {
  color: var(--muted);
}
.eyebrow {
  margin-bottom: 17px;
  color: var(--accent);
  font: 700 11px/1.5 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.lede {
  max-width: 630px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.section-lede {
  margin-bottom: 26px;
}
.small {
  font-size: 13px;
}
.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.03;
  letter-spacing: -0.025em;
}
.wordmark-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  background: var(--ink);
}
.wordmark-mark img {
  width: 38px;
  height: 38px;
}
.wordmark small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font: 9px/1.3 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}
.site-nav a {
  padding: 9px 11px;
  border-radius: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}
.site-nav a:hover {
  color: var(--ink);
  background: #e7e9df;
}
.site-nav a[aria-current="page"] {
  color: #fff;
  background: var(--ink);
}

.hub-masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 25px;
  border-bottom: 1px solid var(--line);
}
.hub-label {
  color: var(--muted);
  font-size: 12px;
}
.hub-intro {
  max-width: 780px;
  padding: 68px 0 48px;
}
.hub-intro h1 {
  margin-bottom: 24px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 18px;
}
.section-heading h2 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.section-heading span {
  color: var(--muted);
  font-size: 12px;
}

.station-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.station-card {
  --tile-accent: #285d5d;
  --tile-wash: #e1eae4;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #cbd2cd;
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.station-card.metal {
  --tile-accent: #405779;
  --tile-wash: #e2e8ee;
}
.station-card.timber {
  --tile-accent: #796039;
  --tile-wash: #eee7da;
}
a.station-card:hover {
  transform: translateY(-4px);
  border-color: var(--tile-accent);
  box-shadow: 0 12px 25px #202d3010;
}
.station-card.unavailable {
  cursor: default;
}
.card-visual {
  position: relative;
  height: 164px;
  overflow: hidden;
  border-bottom: 1px solid #202d3010;
  color: var(--tile-accent);
  background: var(--tile-wash);
}
.card-visual img {
  display: block;
  width: 100%;
  height: 100%;
}
.card-number {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 1;
  font: 11px/1 var(--mono);
  letter-spacing: 0.08em;
}
.card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px 24px 22px;
}
.station-name {
  margin-bottom: 10px;
  color: var(--tile-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card-content h3 {
  margin: 0;
  font-size: 36px;
  letter-spacing: -0.045em;
}
.card-description {
  margin: 16px 0 18px;
  font-size: 14px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}
.tag-list li {
  padding: 6px 8px;
  border-radius: 3px;
  background: #f2f4f1;
  color: #4e5c5b;
  font-size: 10px;
}
.card-action {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid #e0e4df;
  font-size: 13px;
  font-weight: 700;
}
.station-card.unavailable .card-action {
  color: var(--muted);
  font-weight: 400;
}
.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.coming-soon::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7d715d;
  content: "";
}
.page-hero {
  padding: 64px 0 44px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 64px;
  align-items: start;
}
.hero-grid > * {
  min-width: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.practical-panel {
  padding: 27px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--paper);
}
.practical-panel .eyebrow,
.practical-panel p {
  color: #c6cdca;
}
.practical-panel h2 {
  margin-bottom: 22px;
  font-size: 23px;
  letter-spacing: -0.02em;
}
.practical-panel .btn {
  margin-top: 20px;
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}
.practical-panel .btn:hover {
  border-color: #fff;
  background: #fff;
}
.fact-list {
  margin: 0;
}
.fact-list div {
  padding: 13px 0;
  border-top: 1px solid #526063;
}
.fact-list dt {
  color: #bfc8c6;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fact-list dd {
  margin: 4px 0 0;
  font-size: 17px;
  font-weight: 650;
}
.content-section {
  padding: 46px 0;
  border-top: 1px solid var(--line);
}
.content-section:last-child {
  padding-bottom: 64px;
}
.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
}
.prose {
  max-width: 76ch;
}
.prose > * + * {
  margin-top: 18px;
}
.prose ul,
.prose ol {
  padding-left: 21px;
}
.prose li + li {
  margin-top: 8px;
}
.steps,
.equipment-grid,
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.attachment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.step,
.plain-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
}
.step-number {
  color: var(--accent);
  font: 13px/1 var(--mono);
}
.step h3 {
  margin-top: 22px;
}
.plain-card img {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  background: var(--wash);
}
.equipment-grid .plain-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.equipment-card {
  display: flex;
  flex-direction: column;
}
[data-station="fabrication"] .equipment-card {
  --equipment-level: var(--line);
}
[data-station="fabrication"] .equipment-card.level-green {
  --equipment-level: var(--green);
}
[data-station="fabrication"] .equipment-card.level-yellow {
  --equipment-level: var(--yellow);
}
[data-station="fabrication"] .equipment-card.level-purple {
  --equipment-level: var(--purple);
}
[data-station="fabrication"] .equipment-card h3 {
  padding-bottom: 10px;
  border-bottom: 6px solid var(--equipment-level);
}
[data-station="fabrication"] .equipment-level {
  align-self: flex-start;
  margin: 0 0 9px;
  padding: 4px 8px;
  border-radius: 2px;
  background: var(--equipment-level);
  color: var(--ink);
  font: 700 10px/1.4 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.card-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: auto;
  padding-top: 8px;
}
.text-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
.back-link {
  color: var(--muted);
  font-weight: 700;
}

.level-stack {
  display: grid;
  gap: 18px;
}
.level-card {
  --level: var(--green);
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr) minmax(220px, 0.65fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}
.level-card.level-2 {
  --level: var(--yellow);
}
.level-card.level-3 {
  --level: var(--purple);
}
.level-head {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: var(--level);
}
.level-head strong {
  font-size: 48px;
  line-height: 1;
}
.level-head span {
  font: 700 12px/1.3 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.level-main,
.level-side {
  padding: 25px;
}
.level-side {
  border-left: 1px solid var(--line);
  background: #fafaf7;
}
.level-main h2 {
  font-size: 28px;
}
.level-side ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.level-side li + li {
  margin-top: 7px;
}
.level-card .btn {
  margin-top: 16px;
}
.btn {
  display: inline-block;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  background: #3c494b;
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: #fff;
}
.notice {
  display: flex;
  gap: 15px;
  padding: 20px 23px;
  border-left: 3px solid var(--accent);
  background: #ebece5;
}
.notice img {
  width: 23px;
  align-self: flex-start;
}
.notice p {
  margin: 0;
  font-size: 13px;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 52px;
  align-items: start;
}
.guide-layout > * {
  min-width: 0;
}
.guide-image {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--wash);
}
.location-map,
.location-map iframe {
  width: 100%;
  min-height: 480px;
}
.guide-nav {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
}
.guide-nav a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  text-decoration: none;
}
.guide-section {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}
.guide-section h2 {
  font-size: 30px;
}
.guide-section h3 {
  margin-top: 26px;
}
.guide-section ul,
.guide-section ol {
  max-width: 74ch;
  padding-left: 21px;
}
.guide-section li + li {
  margin-top: 8px;
}
.document-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.document-list li {
  border-top: 1px solid var(--line);
}
.document-list a {
  display: block;
  padding: 15px 0;
  text-decoration: none;
}
.document-list strong,
.document-list span {
  display: block;
  overflow-wrap: anywhere;
}
.document-list span {
  color: var(--muted);
  font-size: 13px;
}

.machine-image {
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.guide-fold {
  border-top: 1px solid var(--line);
}
.guide-fold:last-of-type {
  border-bottom: 1px solid var(--line);
}
.guide-fold > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 0;
  cursor: pointer;
  list-style: none;
}
.guide-fold > summary::-webkit-details-marker {
  display: none;
}
.guide-fold > summary h2 {
  margin: 0;
  font-size: 23px;
  letter-spacing: -0.02em;
}
.guide-fold > summary::after {
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  margin-right: 4px;
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform 0.15s ease;
  content: "";
}
.guide-fold[open] > summary::after {
  transform: rotate(225deg) translate(-3px, -3px);
}
.guide-fold > summary:hover h2 {
  color: var(--accent);
}
.fold-body {
  padding-bottom: 34px;
}
.fold-body > *:first-child {
  margin-top: 0;
}
.fold-body h3 {
  margin-top: 26px;
}
.fold-body ul,
.fold-body ol {
  max-width: 74ch;
  padding-left: 21px;
}
.fold-body li + li {
  margin-top: 8px;
}
.infill-note {
  margin: 20px 0 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: var(--wash);
  font-size: 13px;
}
.infill-note p {
  margin: 0;
}
.infill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.infill-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
}
.infill-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
  background: var(--wash);
  object-fit: cover;
}
.infill-card-body {
  padding: 18px;
}
.fold-body .infill-card h3 {
  margin: 0 0 14px;
}
.infill-best {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}
.infill-best .eyebrow {
  display: block;
  margin-bottom: 3px;
}
.infill-description {
  margin-bottom: 17px;
  font-size: 13px;
  line-height: 1.55;
}
.infill-ratings {
  margin: 0;
  font-size: 11px;
}
.infill-ratings > div {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) minmax(106px, 0.85fr);
  gap: 8px;
  align-items: center;
  padding: 6px 0;
  border-top: 1px solid var(--line);
}
.infill-ratings dt,
.infill-ratings dd {
  margin: 0;
}
.infill-ratings dd {
  display: grid;
  grid-template-columns: minmax(70px, 1fr) 28px;
  gap: 8px;
  align-items: center;
}
.infill-ratings meter {
  width: 100%;
  height: 10px;
  accent-color: var(--accent);
}
.infill-score {
  color: var(--muted);
  font: 10px/1 var(--mono);
  white-space: nowrap;
}
.table-scroll {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.data-table th,
.data-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.data-table thead th {
  position: sticky;
  top: 0;
  background: var(--wash);
  font: 700 11px/1.4 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.data-table tbody tr:last-child td {
  border-bottom: 0;
}
.data-table td:first-child {
  font-weight: 650;
}
.data-table td {
  color: var(--muted);
}
.yes {
  color: #1d6b46;
  font-weight: 700;
  white-space: nowrap;
}
.caution {
  color: #8a6100;
  font-weight: 700;
  white-space: nowrap;
}
.no {
  color: #97331f;
  font-weight: 700;
  white-space: nowrap;
}
.callout-danger {
  padding: 20px 23px;
  border-left: 3px solid #97331f;
  border-radius: 0 4px 4px 0;
  background: #f7ebe8;
}
.callout-danger h3 {
  color: #7c2a19;
}
.callout-danger ul {
  margin: 0;
  padding-left: 19px;
  color: #5d4038;
  font-size: 14px;
}
.callout-danger li + li {
  margin-top: 7px;
}

.resource-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.resource-jump a {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}
.resource-jump a:hover {
  border-color: var(--accent);
  color: var(--ink);
}
.resource-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.resource-tile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
}
.resource-tile:hover {
  border-color: var(--accent);
}
.resource-tile-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  text-decoration: none;
}
.resource-tile-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}
.resource-tile-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.resource-tile-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 20px 20px;
}
.resource-tile-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
}
.resource-tile h3 {
  margin: 0;
  font-size: 17px;
}
.tile-badge {
  flex: none;
  padding: 4px 7px;
  border-radius: 2px;
  background: var(--wash);
  color: var(--ink);
  font: 700 9px/1.4 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.resource-tile p {
  margin-bottom: 12px;
  font-size: 13px;
}
.tile-points {
  margin: 0 0 14px;
  padding-left: 17px;
  color: var(--muted);
  font-size: 12px;
}
.tile-points li + li {
  margin-top: 5px;
}
.resource-tile .text-link {
  margin-top: auto;
  font-size: 13px;
}
.resource-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 34px 0;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
  text-decoration: none;
}
.resource-cta:hover {
  border-color: var(--accent);
}
.resource-cta h2 {
  margin-bottom: 6px;
  font-size: 23px;
}
.resource-cta p {
  margin: 0;
  max-width: 62ch;
  font-size: 14px;
}
.resource-cta::after {
  flex: none;
  width: 13px;
  height: 13px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(45deg);
  content: "";
}

.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  padding: 18px 36px 18px 0;
  cursor: pointer;
  font-weight: 700;
}
.faq-list details > div {
  max-width: 75ch;
  padding: 0 0 20px;
}

.consent-embed {
  display: grid;
  min-height: 330px;
  place-items: center;
  padding: 28px;
  border: 1px dashed #919a8e;
  background: var(--wash);
  text-align: center;
}
.consent-embed > div {
  max-width: 520px;
}
.consent-embed img {
  width: 34px;
  margin-bottom: 12px;
}
.consent-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
}
.consent-embed .btn {
  margin: 8px 4px;
}

.embed-notice {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: #202d30b8;
}
.embed-notice[hidden] {
  display: none;
}
.embed-notice-panel {
  max-width: 520px;
  padding: 30px 32px;
  border-radius: 6px;
  background: var(--surface);
  box-shadow: 0 18px 44px #202d3040;
}
.embed-notice-panel h2 {
  margin-bottom: 14px;
  font-size: 24px;
}
.embed-notice-panel p {
  margin-bottom: 14px;
  font-size: 14px;
}
.embed-notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.site-footer {
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px 30px;
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 980px) {
  :root {
    --gutter: 30px;
  }
  .site-nav a {
    padding-inline: 7px;
  }
  .hero-grid {
    gap: 34px;
  }
  .station-grid,
  .steps,
  .equipment-grid,
  .safety-grid {
    gap: 13px;
  }
  .resource-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }
  .level-card {
    grid-template-columns: 130px minmax(0, 1fr);
  }
  .level-side {
    grid-column: 2;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 740px) {
  :root {
    --gutter: 20px;
  }
  html {
    scroll-behavior: auto;
  }
  .site-header {
    position: static;
  }
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 15px;
  }
  .site-nav {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .site-nav a {
    white-space: nowrap;
  }
  .hub-label {
    display: none;
  }
  .hub-intro {
    padding: 44px 0 34px;
  }
  h1 {
    font-size: 50px;
  }
  .station-grid,
  .hero-grid,
  .steps,
  .equipment-grid,
  .safety-grid,
  .guide-layout,
  .split,
  .attachment-grid,
  .infill-grid,
  .resource-tiles {
    grid-template-columns: minmax(0, 1fr);
  }
  .infill-card-body {
    padding: 17px;
  }
  .infill-ratings > div {
    grid-template-columns: minmax(128px, 1fr) minmax(118px, 1fr);
  }
  .infill-ratings dd {
    grid-template-columns: minmax(80px, 1fr) 30px;
  }
  .resource-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .card-visual {
    height: 176px;
  }
  .level-card {
    grid-template-columns: 1fr;
  }
  .level-head {
    min-height: 130px;
  }
  .level-side {
    grid-column: 1;
  }
  .footer-inner {
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 42px;
  }
  .location-map,
  .location-map iframe {
    min-height: 400px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  a.station-card:hover {
    transform: none;
  }
}

@media print {
  .site-header,
  .site-nav,
  .skip-link,
  .consent-embed button {
    display: none;
  }
  body {
    background: #fff;
  }
  .shell {
    width: 100%;
    padding: 0;
  }
  .station-card,
  .level-card,
  .plain-card {
    break-inside: avoid;
  }
}
