:root {
  color-scheme: dark;
  --page: #121713;
  --surface: #1b241d;
  --surface-2: #222e25;
  --line: #465449;
  --text: #f3f0e7;
  --muted: #b7beb3;
  --wood: #d09a60;
  --wood-dark: #8b5d39;
  --moss: #86b36b;
  --ember: #ea7047;
  --mono: "DejaVu Sans Mono", "SFMono-Regular", Consolas, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 300px;
  margin: 0;
  background:
    radial-gradient(circle at 86% 6%, rgb(208 154 96 / 11%), transparent 31rem),
    radial-gradient(circle at 5% 33%, rgb(134 179 107 / 7%), transparent 28rem),
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px),
    var(--page);
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a { color: var(--moss); text-underline-offset: .2em; }
a:hover { color: var(--wood); }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--wood); outline-offset: 4px; }
.wrap { width: min(1260px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 9px 13px; transform: translateY(-160%); background: white; color: #111; font-family: var(--mono); }
.skip-link:focus { transform: none; }
.scroll-meter { position: fixed; z-index: 80; inset: 0 0 auto; height: 3px; }
.scroll-meter span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--ember), var(--wood), var(--moss)); }

.site-header { position: sticky; z-index: 30; top: 0; border-bottom: 1px solid rgb(255 255 255 / 9%); background: rgb(18 23 19 / 90%); backdrop-filter: blur(16px); }
.topbar { display: flex; min-height: 68px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; color: white; font-family: var(--mono); font-size: .75rem; font-weight: 700; text-decoration: none; }
.brand:hover { color: white; }
.brand span { padding: 7px 17px 7px 16px; background: #345a39; clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 0 100%, 9px 50%); }
.brand span:first-child { padding-left: 11px; background: var(--wood-dark); clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 0 100%); }
.brand span + span { margin-left: -6px; }
.nav-links { display: flex; gap: 22px; font-family: var(--mono); font-size: .72rem; }
.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: white; }

.hero { padding: clamp(72px, 10vw, 140px) 0 0; }
.hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: clamp(40px, 7vw, 110px); }
.kicker, .step-label { margin: 0 0 18px; color: var(--moss); font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: var(--mono); letter-spacing: -.065em; line-height: .98; }
h1 { font-size: clamp(3.1rem, 7vw, 7rem); }
h1 span { color: var(--wood); }
h2 { font-size: clamp(2.25rem, 5vw, 5.2rem); }
h3 { margin: 0; font-family: var(--mono); font-size: clamp(1.5rem, 3vw, 2.7rem); letter-spacing: -.045em; line-height: 1.08; }
.lede { max-width: 690px; margin: 26px 0 0; color: #d6d9d1; font-size: clamp(1rem, 1.5vw, 1.18rem); }
.button { display: inline-block; margin-top: 30px; padding: 13px 17px; border: 1px solid var(--moss); border-radius: 4px; color: var(--text); font-family: var(--mono); font-size: .75rem; font-weight: 700; text-decoration: none; }
.button:hover { border-color: var(--wood); }

.hero-figure, .step-photo { overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: 5px; background: var(--surface); box-shadow: 0 26px 80px rgb(0 0 0 / 26%); }
.hero-figure button, .step-photo button { display: block; width: 100%; padding: 0; border: 0; background: #090c09; cursor: zoom-in; }
.hero-figure button { aspect-ratio: 4 / 5; }
.hero-figure.final-hero button { aspect-ratio: 1; }
.hero-figure img, .step-photo img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.hero-figure button:hover img, .step-photo button:hover img { transform: scale(1.015); }
.hero-figure figcaption, .step-photo figcaption { display: flex; justify-content: space-between; gap: 14px; padding: 11px 13px; color: var(--muted); font-family: var(--mono); font-size: .66rem; }
.hero-figure figcaption span:first-child, .step-photo figcaption span:first-child { color: var(--moss); }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-block: 1px solid var(--line); }
.facts div { padding: 22px 24px; border-left: 1px solid var(--line); }
.facts div:first-child { border-left: 0; }
.facts span, .facts strong { display: block; }
.facts span { color: var(--muted); font-family: var(--mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.facts strong { margin-top: 4px; font-family: var(--mono); font-size: .84rem; }

.section { padding: clamp(88px, 11vw, 150px) 0; }
.section-heading { max-width: 900px; }
.section-heading > p:last-child { max-width: 760px; margin: 24px 0 0; color: var(--muted); }
.brief-section { background: linear-gradient(120deg, rgb(134 179 107 / 5%), rgb(208 154 96 / 5%)); box-shadow: inset 0 -1px var(--line); }
.brief-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(55px, 9vw, 130px); align-items: start; }
.rotation { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.rotation li { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.rotation li > span { display: grid; width: 43px; height: 43px; place-items: center; border: 1px solid var(--wood-dark); border-radius: 50%; color: var(--wood); font-family: var(--mono); font-size: .72rem; }
.rotation strong { font-family: var(--mono); font-size: .92rem; }
.rotation p { margin: 5px 0 0; color: var(--muted); }
.capacity-math { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 16px; margin-top: 72px; padding: 25px 20px; border: 1px solid var(--line); border-left: 5px solid var(--wood); background: rgb(9 13 10 / 48%); font-family: var(--mono); }
.capacity-math span { color: var(--muted); }
.capacity-math b { color: var(--wood); font-weight: 400; }
.capacity-math strong { color: var(--text); font-size: clamp(1rem, 2vw, 1.3rem); }

.build-section { overflow: hidden; }
.build-heading { margin-bottom: clamp(70px, 9vw, 120px); }
.build-log { position: relative; }
.build-log::before { position: absolute; z-index: -1; top: 0; bottom: 0; left: 50%; width: 1px; background: linear-gradient(transparent, var(--line) 4%, var(--line) 96%, transparent); content: ""; }
.build-step { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr); gap: clamp(45px, 8vw, 110px); align-items: center; margin-bottom: clamp(100px, 14vw, 190px); }
.build-step:nth-child(even) .step-copy { order: -1; }
.step-photo { align-self: start; }
.step-photo.portrait { width: min(100%, 650px); justify-self: center; }
.step-photo.portrait button { aspect-ratio: 3 / 4; }
.step-photo.landscape button { aspect-ratio: 4 / 3; }
.step-photo.square button { aspect-ratio: 1; }
.step-copy > p:not(.step-label) { margin: 20px 0 0; color: var(--muted); }
.step-label { color: var(--wood); }
.lesson { display: grid; gap: 6px; margin-top: 28px; padding: 19px 20px; border: 1px solid var(--line); border-left: 4px solid var(--moss); background: rgb(134 179 107 / 6%); }
.lesson strong { color: var(--moss); font-family: var(--mono); font-size: .71rem; letter-spacing: .08em; text-transform: uppercase; }
.lesson span { color: #d8dcd4; }
.shape-list { display: grid; gap: 0; margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.shape-list li { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.shape-copy { display: grid; grid-template-columns: 130px minmax(0, 1fr); align-items: baseline; gap: 12px; }
.shape-list strong { color: var(--text); font-family: var(--mono); font-size: .72rem; }
.shape { display: block; justify-self: center; background: var(--wood-dark); }
.shape.square { width: 21px; height: 21px; transform: skew(-8deg); }
.shape.triangle { width: 0; height: 0; border-right: 13px solid transparent; border-bottom: 23px solid var(--wood); border-left: 13px solid transparent; background: transparent; }
.shape.semicircle { width: 27px; height: 15px; border-radius: 27px 27px 3px 3px; background: var(--moss); }

.plan-card { overflow: hidden; margin: 34px 0 0; border: 1px solid var(--line); border-radius: 5px; background: #101612; }
.plan-card svg { display: block; width: 100%; height: auto; }
.plan-card figcaption { padding: 10px 13px; border-top: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: .65rem; }
.pallet { fill: #1b261e; stroke: #68776a; stroke-width: 3; }
.pallet-seam { fill: none; stroke: #68776a; stroke-width: 2; stroke-dasharray: 8 8; }
.towers rect { stroke: #d09a60; stroke-width: 3; }
.long-splits path { fill: none; stroke: #a8b0a7; stroke-width: 12; stroke-linecap: round; stroke-dasharray: 38 13; }
.cross-row rect { fill: #4b6847; stroke: #86b36b; stroke-width: 2; }
.cross-row path { fill: none; stroke: #b8d2aa; stroke-width: 4; }
.force-arrow { fill: none; stroke: #86b36b; stroke-width: 3; }
.axis-label, .cross-label, .force-label, .dimension-label { fill: #c7cec5; font-family: var(--mono); font-size: 16px; letter-spacing: .06em; }
.cross-label { fill: #a8d18f; font-size: 15px; }
.force-label { fill: #a8d18f; font-size: 14px; }
.dimension { fill: none; stroke: #d09a60; stroke-width: 2; }
.dimension-label { fill: #d09a60; }
.dimension-label.side { transform: rotate(-90deg); transform-origin: 32px 225px; }

.taper-diagram { display: grid; grid-template-columns: 160px 1fr; gap: 24px; align-items: center; margin-top: 30px; padding: 23px; border: 1px solid var(--line); background: rgb(208 154 96 / 5%); }
.taper-shape { position: relative; display: grid; width: 142px; height: 150px; grid-template-rows: auto 1fr; justify-items: center; padding: 10px 0; clip-path: polygon(19% 0, 81% 0, 100% 100%, 0 100%); background: repeating-linear-gradient(0deg, #7e5738 0 13px, #ae784a 13px 16px); color: white; font-family: var(--mono); font-size: .58rem; text-transform: uppercase; }
.taper-shape span:last-child { align-self: end; }
.taper-diagram p { margin: 0; color: var(--muted); }
.taper-diagram strong { color: var(--wood); font-family: var(--mono); }
.taper-tool { display: grid; grid-template-columns: 165px 1fr; gap: 20px; align-items: center; margin-top: 20px; padding: 16px; border: 1px solid var(--line); background: rgb(134 179 107 / 5%); }
.taper-tool .tool-photo { width: 100%; box-shadow: none; }
.taper-tool .tool-photo figcaption { display: block; }
.tool-copy strong { color: var(--moss); font-family: var(--mono); font-size: .75rem; letter-spacing: .04em; }
.tool-copy p { margin: 8px 0 0; color: var(--muted); font-size: .9rem; }
.current-step { margin-bottom: 80px; }
.current-step .step-photo { box-shadow: 0 0 0 1px rgb(134 179 107 / 30%), 0 26px 80px rgb(0 0 0 / 26%); }
.final-lesson { border-left-color: var(--wood); background: rgb(208 154 96 / 7%); }
.final-lesson strong { color: var(--wood); }
.stability-link { width: fit-content; margin-top: 5px; color: var(--wood); font-family: var(--mono); font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.stability-link:hover { color: var(--moss); }
.geometry-note { max-width: 880px; margin: 0 auto; padding: 27px 30px; border-block: 1px solid var(--line); text-align: center; }
.geometry-note .kicker { margin-bottom: 8px; color: var(--wood); }
.geometry-note p:last-child { margin: 0; color: var(--muted); }
.roof-consideration { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); gap: clamp(35px, 7vw, 90px); align-items: center; margin-top: 55px; padding: clamp(25px, 4vw, 42px); border: 1px solid var(--line); border-top: 4px solid var(--wood); background: linear-gradient(125deg, rgb(208 154 96 / 8%), rgb(134 179 107 / 5%)); }
.roof-consideration .step-label { margin-bottom: 12px; }
.roof-consideration h3 { font-size: clamp(1.35rem, 2.5vw, 2.2rem); }
.roof-consideration > p { margin: 0; color: var(--muted); }

.stability-section { background: linear-gradient(145deg, rgb(134 179 107 / 7%), rgb(208 154 96 / 3%)); box-shadow: inset 0 1px var(--line); }
.appendix-heading { display: grid; grid-template-columns: 94px 1fr; gap: 26px; align-items: start; margin-bottom: 38px; }
.appendix-mark { display: grid; width: 76px; height: 76px; place-items: center; border: 1px solid var(--wood-dark); border-radius: 50%; color: var(--wood); font-family: var(--mono); font-size: 1.55rem; font-weight: 700; }
.stability-heading { margin-bottom: clamp(48px, 7vw, 80px); }
.stability-feature { display: grid; grid-template-columns: minmax(360px, .76fr) minmax(0, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 5px; background: rgb(9 13 10 / 54%); box-shadow: 0 26px 80px rgb(0 0 0 / 22%); }
.stability-video { min-width: 0; margin: 0; border-right: 1px solid var(--line); background: #050806; }
.stability-video video { display: block; width: min(100%, 428px); aspect-ratio: 9 / 16; margin-inline: auto; background: #050806; object-fit: contain; }
.stability-video figcaption { display: flex; justify-content: space-between; gap: 14px; padding: 11px 13px; border-top: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: .66rem; }
.stability-video figcaption span:first-child { color: var(--moss); }
.stability-copy { align-self: center; padding: clamp(30px, 5vw, 70px); }
.stability-copy > p:not(.step-label) { margin: 20px 0 0; color: var(--muted); }
.stability-observations { margin: 30px 0 0; border-top: 1px solid var(--line); }
.stability-observations div { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.stability-observations dt { color: var(--moss); font-family: var(--mono); font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
.stability-observations dd { margin: 0; color: #d8dcd4; font-size: .86rem; }
.stability-scope { margin-top: 30px; }

.cover-section { background: linear-gradient(145deg, rgb(208 154 96 / 7%), rgb(134 179 107 / 4%)); box-shadow: inset 0 1px var(--line), inset 0 -1px var(--line); }
.appendix-context { margin: 0 0 clamp(65px, 9vw, 105px); padding: 20px 22px; border: 1px solid rgb(234 112 71 / 42%); border-left: 4px solid var(--ember); background: rgb(234 112 71 / 7%); }
.appendix-context strong { color: var(--ember); font-family: var(--mono); font-size: .71rem; letter-spacing: .09em; text-transform: uppercase; }
.appendix-context p { margin: 7px 0 0; color: #d6d9d1; }
.cover-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(38px, 7vw, 90px); align-items: center; }
.cover-intro-copy > p:not(.step-label), .cover-measure-copy > p:not(.step-label), .connection-copy > p:not(.step-label), .result-copy > p:not(.step-label) { margin: 20px 0 0; color: var(--muted); }
.cover-load-path { display: grid; grid-template-columns: repeat(6, 1fr); margin: clamp(65px, 9vw, 105px) 0; padding: 0; border: 1px solid var(--line); list-style: none; background: rgb(9 13 10 / 45%); }
.cover-load-path li { position: relative; min-width: 0; padding: 23px 18px 22px; border-left: 1px solid var(--line); }
.cover-load-path li:first-child { border-left: 0; }
.cover-load-path li:not(:last-child)::after { position: absolute; z-index: 2; top: 28px; right: -8px; width: 15px; height: 15px; border-top: 1px solid var(--wood); border-right: 1px solid var(--wood); background: #171e18; content: ""; transform: rotate(45deg); }
.cover-load-path span, .cover-load-path strong, .cover-load-path small { display: block; }
.cover-load-path span { margin-bottom: 22px; color: var(--wood); font-family: var(--mono); font-size: .65rem; }
.cover-load-path strong { font-family: var(--mono); font-size: .75rem; line-height: 1.3; }
.cover-load-path small { margin-top: 6px; color: var(--muted); font-size: .72rem; line-height: 1.35; }
.cover-measure { display: grid; grid-template-columns: .9fr minmax(320px, .55fr); gap: clamp(45px, 8vw, 110px); align-items: center; }
.cutter-photo { width: min(100%, 560px); justify-self: end; }
.connection-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, .82fr) minmax(330px, 1fr); gap: 24px; align-items: center; margin-top: clamp(70px, 10vw, 125px); }
.connection-grid .step-photo { width: 100%; }
.connection-copy { padding-left: clamp(10px, 3vw, 35px); }
.cover-specs { margin: 28px 0 0; border-top: 1px solid var(--line); }
.cover-specs div { display: grid; grid-template-columns: 88px 1fr; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.cover-specs dt { color: var(--wood); font-family: var(--mono); font-size: .67rem; letter-spacing: .08em; text-transform: uppercase; }
.cover-specs dd { margin: 0; color: var(--muted); font-size: .85rem; }
.cover-result { display: grid; grid-template-columns: minmax(320px, .72fr) 1fr; gap: clamp(50px, 9vw, 125px); align-items: center; margin-top: clamp(80px, 12vw, 150px); }
.result-photo { width: min(100%, 610px); justify-self: center; }
.cover-lesson { border-left-color: var(--wood); background: rgb(208 154 96 / 7%); }
.cover-lesson strong { color: var(--wood); }

.site-footer { display: flex; min-height: 104px; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-family: var(--mono); font-size: .68rem; }
.site-footer a { text-decoration: none; }
.lightbox { width: min(95vw, 1600px); max-width: none; max-height: 94vh; padding: 48px 12px 12px; border: 1px solid var(--line); border-radius: 5px; background: #060806; color: var(--text); box-shadow: 0 30px 100px #000; }
.lightbox::backdrop { background: rgb(0 0 0 / 88%); backdrop-filter: blur(5px); }
.lightbox img { display: block; width: auto; max-width: 100%; height: auto; max-height: calc(94vh - 90px); margin: auto; object-fit: contain; }
.lightbox p { margin: 9px 4px 0; color: var(--muted); font-family: var(--mono); font-size: .68rem; text-align: center; }
.lightbox-close { position: absolute; top: 10px; right: 12px; padding: 5px 8px; border: 1px solid var(--line); border-radius: 3px; background: var(--surface); color: var(--text); font-family: var(--mono); cursor: pointer; }

@media (max-width: 960px) {
  .hero-grid, .brief-grid { grid-template-columns: 1fr; }
  .hero-figure { width: min(100%, 710px); }
  .build-log::before { left: 18px; }
  .build-step { grid-template-columns: 1fr; padding-left: 50px; }
  .build-step:nth-child(even) .step-copy { order: initial; }
  .step-photo, .step-photo.portrait { width: min(100%, 720px); justify-self: start; }
  .stability-feature, .cover-intro, .cover-measure, .cover-result { grid-template-columns: 1fr; }
  .stability-video { border-right: 0; border-bottom: 1px solid var(--line); }
  .roof-consideration { grid-template-columns: 1fr; }
  .cover-intro-copy, .cover-measure-copy, .result-copy { max-width: 760px; }
  .cutter-photo, .result-photo { width: min(100%, 650px); justify-self: start; }
  .connection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .connection-copy { grid-column: 1 / -1; max-width: 760px; padding: 30px 0 0; }
  .cover-load-path { grid-template-columns: repeat(3, 1fr); }
  .cover-load-path li:nth-child(4) { border-top: 1px solid var(--line); border-left: 0; }
  .cover-load-path li:nth-child(5), .cover-load-path li:nth-child(6) { border-top: 1px solid var(--line); }
}

@media (max-width: 700px) {
  .facts { grid-template-columns: repeat(2, 1fr); }
  .facts div:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .facts div:nth-child(4) { border-top: 1px solid var(--line); }
  .capacity-math { align-items: baseline; gap: 8px 10px; font-size: .76rem; }
  .shape-list li { grid-template-columns: 36px minmax(0, 1fr); }
  .shape-copy { display: block; min-width: 0; }
  .shape-copy strong, .shape-copy > span { display: block; }
  .shape-copy > span { margin-top: 3px; }
  .taper-diagram { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .taper-shape { justify-self: center; }
  .appendix-heading { grid-template-columns: 1fr; }
  .appendix-mark { width: 58px; height: 58px; font-size: 1.1rem; }
  .stability-video figcaption { display: grid; gap: 2px; }
  .cover-load-path { grid-template-columns: 1fr; }
  .cover-load-path li { display: grid; grid-template-columns: 36px 1fr; column-gap: 13px; border-top: 1px solid var(--line); border-left: 0; }
  .cover-load-path li:first-child { border-top: 0; }
  .cover-load-path li:nth-child(4) { border-top: 1px solid var(--line); }
  .cover-load-path li:not(:last-child)::after { top: auto; right: auto; bottom: -8px; left: 27px; transform: rotate(135deg); }
  .cover-load-path span { grid-row: 1 / 3; margin: 0; }
  .cover-load-path small { grid-column: 2; }
  .connection-grid { grid-template-columns: 1fr; }
  .connection-grid .step-photo { width: min(100%, 650px); }
  .connection-copy { grid-column: auto; }
}

@media (max-width: 580px) {
  .wrap { width: min(100% - 24px, 1260px); }
  .site-header { position: relative; }
  .nav-links { display: none; }
  .hero { padding-top: 52px; }
  .hero-figure button { aspect-ratio: 3 / 4; }
  .hero-figure figcaption, .step-photo figcaption { display: grid; gap: 2px; }
  .build-log::before { display: none; }
  .build-step { padding-left: 0; }
  .plan-card { margin-inline: -4px; }
  .taper-tool { grid-template-columns: 1fr; }
  .taper-tool .tool-photo { width: min(100%, 240px); justify-self: center; }
  .tool-copy { text-align: center; }
  .site-footer { display: block; padding: 30px 0; }
  .site-footer span { display: block; margin-top: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-figure img, .step-photo img { transition: none; }
}
