:root {
  --ink: #151a16;
  --night: #18201b;
  --pine: #252f28;
  --granite: #7d7f7a;
  --granite-light: #b9baaf;
  --sage: #98a081;
  --moss: #5f6b52;
  --ochre: #a7462d;
  --rust: #ce6337;
  --ember: #f09a68;
  --fog: #ecece4;
  --paper: #d9d9cf;
  --line: rgba(236, 236, 228, .2);
  --display: 'Cinzel', serif;
  --body: 'EB Garamond', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--night);
  color: var(--fog);
  font-family: var(--body);
  font-optical-sizing: auto;
  font-kerning: normal;
  font-size: 18px;
  line-height: 1.55;
  -webkit-tap-highlight-color: rgba(206, 99, 55, .24);
}
a { color: inherit; text-decoration-thickness: from-font; text-underline-offset: .2em; }
button, input { font: inherit; touch-action: manipulation; }
button { color: inherit; }
::selection { background: var(--ochre); color: var(--fog); }
* { scrollbar-width: thin; scrollbar-color: #9f472e #111813; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #111813; }
::-webkit-scrollbar-thumb { border: 3px solid #111813; border-radius: 9px; background: #9f472e; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 99; padding: 10px 16px; background: var(--fog); color: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 2px solid #f2a879; outline-offset: 4px; }
h1, h2, h3 { text-wrap: balance; font-optical-sizing: auto; font-feature-settings: "kern" 1, "liga" 1; }
p { text-wrap: pretty; }
[id] { scroll-margin-top: 24px; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(22px, 4vw, 64px);
  border-bottom: 1px solid rgba(236, 236, 228, .14);
  background: linear-gradient(to bottom, rgba(14, 19, 16, .35), transparent);
}
.wordmark { min-height: 48px; display: flex; align-items: center; gap: 13px; text-decoration: none; font-family: var(--display); font-size: 12px; letter-spacing: .19em; text-transform: uppercase; }
.wordmark svg { flex: none; width: 25px; height: 34px; }
.wordmark svg path:first-child { fill: var(--granite-light); }
.wordmark svg path:last-child { fill: none; stroke: var(--rust); stroke-width: 1.9; }
.site-header nav { display: flex; gap: clamp(12px, 2.4vw, 38px); }
.site-header nav a { min-height: 48px; padding-inline: 4px; display: grid; place-items: center; position: relative; text-decoration: none; font-family: var(--display); font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.site-header nav a::after { content: ""; position: absolute; right: 4px; bottom: 7px; left: 4px; height: 1px; background: var(--rust); transform: scaleX(0); transform-origin: left; transition: transform .32s cubic-bezier(.2,.8,.2,1); }
.site-header nav a:hover::after, .site-header nav a:focus-visible::after { transform: scaleX(1); }

.hero {
  min-height: max(100svh, 760px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
  align-items: center;
  overflow: hidden;
  padding: 130px clamp(28px, 7.5vw, 118px) 105px;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 18% 55%, rgba(183, 102, 58, .24), transparent 23%),
    linear-gradient(to bottom, #15201d 0 50%, #39413a 50.2%, #252f28 70%, #151b17 100%);
}
.hero::before { content: ""; position: absolute; z-index: -2; left: -8%; right: -8%; top: 43%; height: 24%; background: linear-gradient(180deg, rgba(218, 221, 212, .26), transparent 68%); filter: blur(24px); opacity: .9; }
.hero::after { content: ""; position: absolute; z-index: -1; inset: 51% 0 0; background: repeating-linear-gradient(100deg, transparent 0 19px, rgba(164, 173, 148, .1) 20px, transparent 22px); mask-image: linear-gradient(to bottom, transparent, black 62%); }
.hero-aurora { position: absolute; z-index: -2; width: 55vw; height: 24vw; left: 15vw; top: 14%; transform: rotate(-8deg); background: radial-gradient(ellipse, rgba(143, 158, 130, .14), transparent 66%); filter: blur(35px); }
.hero-copy { position: relative; z-index: 3; max-width: 750px; align-self: center; }
.eyebrow { margin: 0 0 17px; color: #c6cab9; font-family: var(--display); font-size: 10px; font-weight: 600; letter-spacing: .27em; text-transform: uppercase; }
.hero h1 { margin: 0; font-family: var(--display); font-size: clamp(65px, 8.1vw, 124px); font-weight: 400; line-height: .82; letter-spacing: -.055em; text-transform: uppercase; text-shadow: 0 16px 45px rgba(0, 0, 0, .22); }
.hero h1 span, .hero h1 em { display: block; }
.hero h1 span:nth-child(2) { margin-left: .35em; }
.hero h1 em { margin-left: .78em; color: var(--rust); font-style: normal; }
.hero-deck { width: min(580px, 80%); margin: 34px 0 26px 21%; color: #d7d9d1; font-size: clamp(19px, 1.5vw, 23px); line-height: 1.5; text-wrap: pretty; }
.down-link { min-height: 48px; margin-left: 21%; padding: 10px 0 9px; display: inline-flex; align-items: center; gap: 22px; border-bottom: 1px solid var(--rust); text-decoration: none; font-family: var(--display); font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.down-link b { color: var(--rust); font-size: 19px; font-weight: 400; transition: transform .3s ease; }
.down-link:hover b, .down-link:focus-visible b { transform: translateY(4px); }
.hero-stone-wrap { width: min(42vw, 480px); height: min(78vh, 720px); position: relative; z-index: 2; justify-self: end; align-self: end; display: grid; place-items: end center; }
.hero-stone { width: 100%; height: 100%; overflow: visible; filter: drop-shadow(33px 28px 32px rgba(8, 13, 10, .58)); transform: rotate(2deg); }
.hero-stone-shadow { fill: #0c120e; opacity: .68; }
.hero-stone-face { fill: url(#heroStoneLight); }
.hero-lichen { fill: #99a47d; opacity: .22; filter: blur(4px); }
.hero-band-cut, .hero-band-paint { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.hero-band-cut { stroke: #292822; stroke-width: 43; opacity: .75; }
.hero-band-paint { stroke: #b64f2d; stroke-width: 34; opacity: .15; stroke-dasharray: 1250; stroke-dashoffset: 1250; }
.hero-stone-wrap.is-visible .hero-band-paint { animation: heroPaint 2.2s .9s cubic-bezier(.2,.78,.2,1) both; }
.hero-rune-text { fill: #191d19; font-family: serif; font-size: 32px; letter-spacing: 6px; writing-mode: vertical-rl; }
.hero-stone-wrap > p { position: absolute; right: -14px; bottom: 14%; margin: 0; padding: 9px 0 9px 14px; border-left: 1px solid var(--rust); display: grid; color: #b7bdaf; font-size: 13px; font-style: italic; line-height: 1.25; }
.hero-stone-wrap > p span { color: var(--rust); font-family: var(--display); font-size: 8px; font-style: normal; letter-spacing: .17em; text-transform: uppercase; }
.hero-ledger { position: absolute; z-index: 4; left: clamp(28px, 4vw, 64px); right: clamp(28px, 4vw, 64px); bottom: 22px; min-height: 42px; display: flex; align-items: center; gap: 25px; border-top: 1px solid var(--line); color: #9fa79a; font-family: var(--display); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.hero-ledger span:last-child { margin-left: auto; color: #c9734b; }
.horizon { position: absolute; z-index: 0; inset: 49% 0 0; }
.far-stone { position: absolute; bottom: 16%; display: block; background: linear-gradient(100deg,#101612,#444b43); clip-path: polygon(24% 5%,63% 0,91% 16%,100% 100%,0 100%,10% 22%); box-shadow: 12px 8px 35px #131713; }
.s1 { width: 65px; height: 210px; left: 5%; transform: rotate(-2deg); opacity: .45; }
.s2 { width: 32px; height: 105px; left: 26%; bottom: 25%; opacity: .35; }
.s3 { width: 26px; height: 76px; right: 42%; bottom: 30%; opacity: .3; }
.s4 { width: 19px; height: 59px; right: 48%; bottom: 34%; opacity: .24; }
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-visible { animation: fieldArrival .9s cubic-bezier(.18,.78,.18,1) forwards; }
.reveal[data-reveal="2"].is-visible { animation-delay: .18s; }
.reveal[data-reveal="3"].is-visible { animation-delay: .45s; }
@keyframes fieldArrival { to { opacity: 1; transform: none; } }
@keyframes heroPaint { from { stroke-dashoffset: 1250; opacity: .15; } to { stroke-dashoffset: 0; opacity: .76; } }

.section-index { margin: 0 0 15px; color: #535c50; font-family: var(--display); font-size: 8px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.carve-section { position: relative; overflow: hidden; padding: 120px clamp(20px, 4vw, 64px) 130px; background: var(--paper); color: var(--ink); }
.carve-section::before { content: "ᛏ"; position: absolute; right: -3vw; top: -5vw; color: rgba(30, 36, 30, .035); font-family: serif; font-size: 38vw; line-height: 1; }
.section-intro { max-width: 1280px; margin: 0 auto 72px; position: relative; display: grid; grid-template-columns: .58fr 1fr .75fr; gap: 4vw; align-items: end; }
.section-intro .eyebrow, .futhark-intro .eyebrow { color: #626b5a; }
.section-intro h2, .field-heading h2, .paint-copy h2, .futhark-intro h2, .afterword h2 { margin: 0; font-family: var(--display); font-size: clamp(50px, 7vw, 102px); font-weight: 400; line-height: .9; letter-spacing: -.045em; text-transform: uppercase; }
.section-intro h2 em { color: var(--ochre); font-style: normal; }
.section-intro > p { max-width: 410px; margin: 0 0 5px; color: #40483f; font-size: 20px; line-height: 1.45; }
.carving-workbench { max-width: 1320px; min-height: 760px; margin: auto; display: grid; grid-template-columns: minmax(320px, .72fr) minmax(540px, 1.28fr); overflow: hidden; background: #1b221d; box-shadow: 0 40px 90px rgba(34, 40, 34, .25); }
.carve-controls { position: relative; z-index: 8; padding: 58px clamp(28px, 4vw, 56px); align-self: center; color: var(--fog); }
.bench-label { margin: 0 0 38px; padding-bottom: 13px; border-bottom: 1px solid #4a5149; color: #8f9789; font-family: var(--display); font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }
.carve-controls label { display: block; margin-bottom: 11px; color: #c2c6ba; font-family: var(--display); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.input-wrap { position: relative; }
.input-wrap input { width: 100%; min-height: 62px; padding: 13px 76px 13px 0; border: 0; border-bottom: 1px solid #71796d; border-radius: 0; background: transparent; color: var(--fog); font-size: 23px; }
.input-wrap input::placeholder { color: #7d8579; }
.input-wrap input:focus-visible { outline: 0; border-color: var(--ember); box-shadow: 0 1px 0 var(--ember); }
.input-wrap span { position: absolute; right: 0; bottom: 18px; color: #929a8d; font-family: var(--display); font-size: 8px; font-variant-numeric: tabular-nums; letter-spacing: .1em; }
.form-error { min-height: 23px; margin: 7px 0 0; color: #ffb28b; font-size: 14px; font-style: italic; }
.carve-controls button { width: 100%; min-height: 60px; margin-top: 14px; padding: 0 18px 0 23px; border: 1px solid var(--rust); display: flex; align-items: center; justify-content: space-between; background: var(--ochre); color: white; cursor: pointer; font-family: var(--display); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; transition: background-color .28s, color .28s, transform .18s; }
.carve-controls button b { font-family: serif; font-size: 25px; font-weight: 400; }
.carve-controls button:hover { background: transparent; color: #ffc099; }
.carve-controls button:active { transform: translateY(2px); }
.carve-controls button:disabled { opacity: .66; cursor: progress; }
.sound-note { margin: 12px 0 28px; color: #abb1a7; font-size: 14px; font-style: italic; }
.translation { padding-top: 18px; border-top: 1px solid #434a43; display: grid; gap: 4px; }
.translation span { margin-top: 8px; color: #8f978a; font-family: var(--display); font-size: 8px; letter-spacing: .17em; text-transform: uppercase; }
.translation strong { min-width: 0; overflow-wrap: anywhere; font-family: var(--display); font-size: 12px; font-weight: 500; letter-spacing: .08em; line-height: 1.5; }
.translation .rune-line { color: #ee9468; font-family: serif; font-size: 20px; letter-spacing: .11em; }
.stone-stage { position: relative; min-width: 0; height: 760px; display: grid; place-items: center; background: radial-gradient(circle at 36% 33%, #586158 0, #343d35 31%, #1e261f 68%); isolation: isolate; }
.stone-stage::after { content: ""; position: absolute; z-index: -1; inset: 0; background: repeating-linear-gradient(103deg, transparent 0 27px, rgba(183, 191, 165, .06) 28px, transparent 30px); mask-image: linear-gradient(to bottom, transparent 45%, black); }
.standing-stone { position: relative; z-index: 2; width: min(92%, 525px); height: 96%; overflow: visible; filter: drop-shadow(34px 30px 26px rgba(11, 16, 12, .46)); }
.stone-shadow { fill: #303831; }
.stone-face { fill: url(#stoneLight); }
.stone-edge { fill: #4a544d; opacity: .82; }
.lichen { fill: #9ca87a; opacity: .35; filter: blur(1px); }
.stone-cracks { fill: none; stroke: #3e463f; stroke-width: 2.2; opacity: .48; stroke-linecap: round; }
.carved-groove, .fresh-cut, .ochre-line { fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 0; }
.carved-groove { stroke: #332f2a; stroke-width: 46; opacity: .76; }
.fresh-cut { stroke: #d1c7af; stroke-width: 42; opacity: 0; }
.ochre-line { stroke: var(--ochre); stroke-width: 39; opacity: .9; }
.serpent-head { fill: var(--ochre); }
.serpent-eye { fill: #211e1a; }
.stone-runes { fill: #252823; font-family: serif; font-size: var(--rune-size, 21px); font-weight: 700; letter-spacing: var(--rune-spacing, 8px); dominant-baseline: middle; }
.ground-shadow { fill: #1f2821; opacity: .48; filter: blur(7px); }
.sun-glow { position: absolute; z-index: 1; width: 67%; height: 82%; top: 2%; left: 0; background: linear-gradient(116deg, rgba(255, 239, 195, .48), transparent 43%); filter: blur(38px); transform: skewX(-12deg); }
#dust { position: absolute; z-index: 6; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.chisel-marker { opacity: 0; pointer-events: none; }
.chisel-marker circle { fill: rgba(246, 219, 174, .15); stroke: #f4ca9e; stroke-width: 2; }
.chisel-marker path { fill: none; stroke: #f4ca9e; stroke-width: 5; stroke-linecap: square; }
.stone-stage.is-cutting .chisel-marker { opacity: 1; }
.stone-stage.is-cutting .ochre-line,
.stone-stage.is-cutting .serpent-head,
.stone-stage.is-cutting .serpent-eye { opacity: 0; }
.stone-stage.is-cutting .fresh-cut { animation: cutGroove 2.15s cubic-bezier(.18,.75,.18,1) both; }
.stone-stage.is-cutting .stone-runes { opacity: 0; }
.stone-stage.is-painting .ochre-line { animation: paintGroove 1.3s cubic-bezier(.22,.76,.22,1) both; }
.stone-stage.is-painting .serpent-head,
.stone-stage.is-painting .serpent-eye { animation: revealRunes .7s .5s both; }
.stone-stage.is-painting .stone-runes { animation: revealRunes 1.1s .35s both; }
.carving-status { position: absolute; z-index: 8; right: 24px; bottom: 24px; padding: 9px 13px; border-left: 2px solid var(--rust); background: rgba(21, 27, 22, .7); color: #e4e5dd; font-family: var(--display); font-size: 8px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.carve-phases { position: absolute; z-index: 8; top: 23px; right: 23px; left: 23px; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; }
.carve-phases li { position: relative; min-width: 0; padding: 9px 10px; border-top: 1px solid rgba(236, 236, 228, .24); display: flex; gap: 10px; color: #8f978a; font-family: var(--display); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; transition: border-color .25s, color .25s; }
.carve-phases li b { font-variant-numeric: tabular-nums; font-weight: 400; opacity: .65; }
.carve-phases li.is-active, .carve-phases li.is-complete { border-color: var(--rust); color: #f0b08b; }
@keyframes cutGroove { from { stroke-dashoffset: 1; opacity: .92; } to { stroke-dashoffset: 0; opacity: .18; } }
@keyframes paintGroove { from { stroke-dashoffset: 1; opacity: .16; } to { stroke-dashoffset: 0; opacity: .95; } }
@keyframes revealRunes { from { opacity: 0; } to { opacity: 1; } }

.field-section { --light-x: 76%; --light-y: 18%; position: relative; overflow: hidden; padding: 145px clamp(22px, 6vw, 90px) 170px; background: #222b24; isolation: isolate; }
.field-section::before { content: ""; position: absolute; z-index: -2; inset: 0; pointer-events: none; background: radial-gradient(circle at 12% 35%, rgba(140, 153, 119, .1), transparent 28%), radial-gradient(ellipse at 78% 74%, rgba(112,126,97,.075), transparent 24%), linear-gradient(102deg, transparent 68%, rgba(197, 184, 148, .07) 78%, transparent 89%); }
.field-section::after { content: ""; position: absolute; z-index: -1; inset: 0; pointer-events: none; background: radial-gradient(ellipse 38% 15% at var(--light-x) var(--light-y), rgba(244, 224, 176, .2), rgba(166, 174, 134, .07) 41%, transparent 72%); mix-blend-mode: screen; opacity: 0; transition: opacity .7s cubic-bezier(.18,.78,.18,1); }
.field-section.is-raking::after { opacity: 1; }
.field-section.is-sweeping::after { animation: rakeField 3.2s cubic-bezier(.24,.7,.18,1) both; }
.field-section .section-index { color: #aeb5a8; }
.field-heading { max-width: 1180px; margin: 0 auto 92px; position: relative; display: grid; grid-template-columns: .52fr 1.3fr .75fr; column-gap: 4vw; align-items: end; }
.field-heading .section-index { grid-column: 1; align-self: start; }
.field-heading .eyebrow { grid-column: 1; margin-top: auto; }
.field-heading h2 { grid-column: 2; grid-row: 1 / 3; }
.field-heading > .field-summary { grid-column: 3; grid-row: 1 / 3; margin: 0 0 5px; color: #bcc2b7; font-size: 19px; line-height: 1.48; }
.raking-control { grid-column: 1; margin-top: 23px; align-self: start; }
.raking-control button { width: min(100%, 205px); min-height: 51px; padding: 0 13px 0 15px; border: 1px solid #697164; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: rgba(14,20,15,.2); color: #d8ddd1; cursor: pointer; font-family: var(--display); font-size: 7px; font-weight: 600; letter-spacing: .14em; line-height: 1.35; text-align: left; text-transform: uppercase; transition: border-color .28s, background-color .28s, color .28s; }
.raking-control button b { flex: none; width: 20px; height: 20px; border: 1px solid #9e4a30; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #f1a06d 0 8%, #b64f2d 12% 42%, transparent 45%); box-shadow: -8px 7px 18px rgba(226,137,83,.12); }
.raking-control button:hover, .raking-control button:focus-visible, .raking-control button[aria-pressed="true"] { border-color: #d36b42; background: rgba(166,67,40,.22); color: #fff4e9; }
.raking-control button[aria-pressed="true"] b { box-shadow: -11px 9px 23px rgba(241,160,109,.38); }
.raking-control p { max-width: 205px; margin: 8px 0 0; color: #899386; font-size: 13px; font-style: italic; line-height: 1.3; }
.stone-stories { max-width: 1180px; margin: auto; position: relative; }
.story { min-height: 585px; position: relative; display: grid; grid-template-columns: 72px minmax(230px, .82fr) minmax(340px, 1.18fr); gap: clamp(24px, 5vw, 75px); align-items: center; border-top: 1px solid var(--line); transition: border-color .45s; }
.field-section.is-raking .story { border-color: rgba(236,236,228,.29); }
.story-number { align-self: start; margin-top: 28px; color: #9ba391; font-family: var(--display); font-size: 8px; font-variant-numeric: tabular-nums; letter-spacing: .17em; }
.story-copy { max-width: 500px; padding: 80px 0; }
.place { margin: 0 0 13px; color: #abb3a1; font-size: 17px; font-style: italic; }
.story h3 { margin: 0 0 24px; color: #e5e6df; font-family: var(--display); font-size: clamp(30px, 3.1vw, 46px); font-weight: 400; line-height: 1.03; letter-spacing: -.025em; }
.story-copy > p:not(.place) { color: #c2c7bd; font-size: 18px; text-wrap: pretty; }
.story blockquote { margin: 26px 0 0; padding-left: 18px; border-left: 2px solid var(--rust); color: #e49469; font-size: 20px; font-style: italic; }
.record-facts { margin: 38px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #414940; }
.record-facts div { min-width: 0; padding: 13px 10px 0 0; }
.record-facts dt { color: #7f897c; font-family: var(--display); font-size: 7px; letter-spacing: .15em; text-transform: uppercase; }
.record-facts dd { margin: 4px 0 0; color: #c6cbc0; font-size: 14px; overflow-wrap: anywhere; }
.mini-stone { justify-self: center; width: 245px; height: 405px; position: relative; display: grid; place-items: center; background: radial-gradient(circle at 27% 19%,rgba(230,226,203,.38) 0 2px,transparent 3px),radial-gradient(circle at 66% 64%,rgba(24,31,26,.36) 0 1px,transparent 2px),linear-gradient(115deg,#a6aaa2,#5e665f 55%,#343d36); background-size: 37px 43px,29px 31px,100% 100%; clip-path: polygon(20% 5%,56% 0,84% 9%,95% 38%,100% 100%,8% 96%,0 34%); filter: drop-shadow(22px 24px 25px rgba(0,0,0,.44)); transition: transform .55s cubic-bezier(.18,.78,.18,1), filter .55s; }
.story:hover .mini-stone { transform: translateY(-12px) rotate(-1deg); filter: drop-shadow(28px 35px 28px rgba(0,0,0,.52)); }
.mini-stone::before { content: ""; position: absolute; inset: 18% 20%; border: 15px solid var(--ochre); border-radius: 48% 52% 45% 55%; opacity: .82; transition: opacity .5s, border-color .5s, filter .5s; }
.mini-stone::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%,rgba(166,176,125,.62),transparent 10%),radial-gradient(circle at 65% 70%,rgba(139,153,104,.45),transparent 15%), linear-gradient(118deg, rgba(255,244,211,0), rgba(255,244,211,.15) 36%, rgba(255,244,211,0) 56%); background-size: auto, auto, 220% 100%; background-position: center, center, 140% 0; transition: background-position .8s cubic-bezier(.18,.78,.18,1); }
.field-section.is-raking .mini-stone::after { background-position: center, center, 55% 0; }
.field-section.is-raking .story.is-lit .mini-stone { filter: drop-shadow(34px 39px 32px rgba(0,0,0,.55)) brightness(1.14) contrast(1.04); }
.field-section.is-raking .story.is-lit .mini-stone::before { border-color: #d65f36; opacity: 1; filter: drop-shadow(0 0 9px rgba(198,78,43,.28)); }
.mini-stone i { position: relative; z-index: 1; color: #202720; font-family: serif; font-size: 27px; font-style: normal; letter-spacing: .25em; writing-mode: vertical-rl; }
.story:nth-child(even) { grid-template-columns: 72px minmax(340px, 1.18fr) minmax(230px, .82fr); }
.story:nth-child(even) .story-copy { grid-column: 2; grid-row: 1; }
.story:nth-child(even) .mini-stone { grid-column: 3; grid-row: 1; transform: rotate(2deg); }
.story:nth-child(even):hover .mini-stone { transform: translateY(-12px) rotate(1deg); }
.jelling { height: 360px; clip-path: polygon(23% 1%,76% 5%,93% 24%,90% 97%,8% 100%,4% 28%); }
.jelling::before { border-radius: 12%; transform: rotate(-5deg); }
.berezan { width: 285px; height: 220px; clip-path: polygon(5% 20%,29% 2%,85% 12%,99% 78%,76% 100%,2% 86%); }
.berezan::before { inset: 25% 15%; border-width: 10px; border-radius: 50%; }
.berezan i { font-size: 23px; writing-mode: horizontal-tb; }
.hillersjo { height: 420px; clip-path: polygon(15% 2%,72% 0,94% 21%,100% 95%,12% 100%,0 25%); }

.paint-section { min-height: 900px; display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; color: #fff3e8; background: #8e3824; }
.paint-demo { min-height: 900px; position: relative; overflow: hidden; display: grid; place-items: center; isolation: isolate; background: radial-gradient(circle at 28% 20%, #aeb694, transparent 28%), radial-gradient(circle at 75% 70%, #5b684e, transparent 34%), #81896e; }
.paint-demo::before { content: ""; position: absolute; z-index: -1; inset: -10%; background: repeating-radial-gradient(ellipse at 30% 40%, transparent 0 12px, rgba(29, 40, 29, .16) 13px 16px, transparent 17px 29px); transform: rotate(-13deg) scale(1.15); }
.paint-caption { position: absolute; top: 32px; right: 35px; left: 35px; margin: 0; padding-top: 12px; border-top: 1px solid rgba(26, 34, 26, .4); display: flex; justify-content: space-between; color: #222b24; font-family: var(--display); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.paint-caption b { color: #6f2719; font-weight: 700; }
.painted-slab { width: min(54%, 360px); aspect-ratio: .57; position: relative; display: grid; place-items: center; background: radial-gradient(circle at 20% 25%, rgba(188,199,156,.75), transparent 11%), radial-gradient(circle at 75% 66%, rgba(93,107,73,.6), transparent 16%), linear-gradient(110deg,#aaa99d,#696d65 58%,#4a514b); clip-path: polygon(20% 2%, 73% 0, 96% 18%, 100% 94%, 17% 100%, 0 23%); filter: drop-shadow(30px 28px 28px rgba(23,30,24,.42)); transition: filter .7s, transform .7s; }
.painted-slab::before { content: ""; position: absolute; inset: 13% 14%; border: 28px solid #ae4329; border-radius: 46% 53% 42% 51%; transform: rotate(-3deg); transition: opacity .7s; }
.painted-slab::after { content: ""; position: absolute; width: 38%; height: 27%; top: 35%; background: #e7dfc8; clip-path: polygon(50% 0,58% 36%,93% 24%,63% 50%,93% 76%,58% 64%,50% 100%,42% 64%,7% 76%,37% 50%,7% 24%,42% 36%); transition: opacity .7s; }
.painted-slab i { z-index: 2; color: #171b17; font-family: serif; font-size: 31px; font-style: normal; font-weight: 700; letter-spacing: .2em; writing-mode: vertical-rl; }
.painted-slab b { position: absolute; z-index: 2; width: 55%; height: 2px; bottom: 22%; background: #151a16; transform: rotate(17deg); }
.paint-demo.is-weathered .painted-slab { filter: grayscale(.78) saturate(.45) drop-shadow(30px 28px 28px rgba(23,30,24,.42)); transform: rotate(-1deg); }
.paint-demo.is-weathered .painted-slab::before, .paint-demo.is-weathered .painted-slab::after { opacity: .08; }
.pigment-toggle { position: absolute; left: 35px; bottom: 35px; min-width: 205px; min-height: 50px; padding: 0 16px; border: 1px solid #2c342d; display: flex; justify-content: space-between; align-items: center; background: rgba(218, 219, 204, .46); color: #202820; cursor: pointer; font-family: var(--display); font-size: 8px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; transition: background-color .25s; }
.pigment-toggle:hover { background: rgba(235, 234, 220, .75); }
.pigment-toggle b { width: 28px; height: 12px; position: relative; border: 1px solid #3a4339; border-radius: 20px; }
.pigment-toggle b::after { content: ""; position: absolute; width: 8px; height: 8px; top: 1px; left: 2px; border-radius: 50%; background: var(--ochre); transform: translateX(14px); transition: transform .3s; }
.pigment-toggle[aria-pressed="false"] b::after { transform: none; background: #555d54; }
.paint-copy { max-width: 760px; padding: 120px clamp(30px, 7vw, 105px) 90px; position: relative; align-self: center; }
.paint-copy .section-index, .paint-copy .eyebrow { color: #f2c1a1; }
.paint-copy h2 em { color: #241c18; font-style: italic; }
.large-copy { margin: 38px 0 52px; font-size: clamp(22px, 2vw, 29px); line-height: 1.42; text-wrap: pretty; }
.pigment-notes { display: grid; gap: 22px; }
.pigment-notes > div { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.27); display: grid; grid-template-columns: 16px 120px 1fr; gap: 12px; align-items: baseline; }
.pigment-notes strong { font-family: var(--display); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.pigment-notes p { margin: 0; color: #f2d7c5; font-size: 16px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: block; }
.dot.ochre { background: #551d13; }
.dot.soot { background: #171a17; }
.dot.chalk { background: #f3ecd9; }
.paint-aside { margin-top: 45px; padding: 16px 0 0 18px; border-top: 1px solid rgba(255,255,255,.26); border-left: 2px solid #251c18; display: grid; grid-template-columns: 95px 1fr; gap: 12px; }
.paint-aside span { color: #251c18; font-family: var(--display); font-size: 8px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.paint-aside p { margin: 0; color: #f4dccc; font-size: 16px; font-style: italic; }

.futhark-section { padding: 145px clamp(20px, 6vw, 88px); background: var(--paper); color: var(--ink); }
.futhark-intro { max-width: 1220px; margin: 0 auto 70px; display: grid; grid-template-columns: 1.25fr .6fr; gap: 6vw; align-items: end; }
.futhark-intro > div { min-width: 0; }
.futhark-intro > p { margin: 0 0 5px; color: #485047; font-size: 19px; line-height: 1.5; }
.rune-lab { max-width: 1220px; margin: auto; display: grid; grid-template-columns: .48fr 1.52fr; border-top: 1px solid #92988d; border-left: 1px solid #92988d; }
.rune-inspector { min-height: 374px; padding: 36px; border-right: 1px solid #92988d; border-bottom: 1px solid #92988d; display: flex; flex-direction: column; justify-content: space-between; background: #222a23; color: var(--fog); }
.rune-inspector > span { color: #df7248; font-family: serif; font-size: clamp(100px, 13vw, 180px); line-height: .8; }
.rune-inspector p { margin: 0 0 4px; color: #9aa294; font-family: var(--display); font-size: 8px; letter-spacing: .17em; text-transform: uppercase; }
.rune-inspector h3 { margin: 0; font-family: var(--display); font-size: 24px; font-weight: 400; }
.rune-inspector b { color: #d9a382; font-size: 16px; font-style: italic; font-weight: 400; }
.rune-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.rune-grid button { min-width: 0; min-height: 187px; padding: 17px 9px 12px; border: 0; border-right: 1px solid #92988d; border-bottom: 1px solid #92988d; border-radius: 0; display: flex; flex-direction: column; align-items: center; background: transparent; color: var(--ink); cursor: pointer; text-align: center; transition: background-color .24s, color .24s, transform .24s, box-shadow .24s; }
.rune-grid button:hover, .rune-grid button.is-active { z-index: 1; background: var(--ochre); color: white; box-shadow: inset 0 -7px 0 #712b1d; }
.rune-grid button:active { transform: translateY(2px); }
.rune-grid b { margin-bottom: 12px; font-family: serif; font-size: 53px; font-weight: 400; line-height: 1; }
.rune-grid strong { font-family: var(--display); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.rune-grid span { margin-top: auto; color: #586056; font-size: 13px; font-style: italic; }
.rune-grid button:hover span, .rune-grid button.is-active span { color: #fff; }
.futhark-caption { max-width: 1220px; margin: 20px auto 0; color: #626b60; font-size: 16px; font-style: italic; text-align: right; }

.afterword { min-height: 850px; padding: 140px 8vw; position: relative; display: grid; place-items: center; overflow: hidden; background: radial-gradient(circle at 64% 44%,#3d483d,#202820 53%,#141a16); }
.afterword::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 29%, rgba(207,194,157,.13) 48%, transparent 62%); }
.afterword-copy { max-width: 800px; margin-left: 18%; position: relative; }
.afterword .section-index { color: #8f9a88; }
.afterword h2 { font-size: clamp(53px, 7.4vw, 108px); }
.afterword-copy > p:not(.eyebrow):not(.section-index) { max-width: 620px; color: #ccd0c6; font-size: 21px; }
.afterword-copy em { color: #ef9a6d; }
.vertical-runes { position: absolute; left: 9%; top: 10%; margin: 0; color: rgba(170,180,150,.13); font-family: serif; font-size: 100px; line-height: 1.25; }
.return-carve { min-height: 48px; margin-top: 22px; padding: 12px 0; border-bottom: 1px solid var(--ochre); display: inline-flex; align-items: center; gap: 25px; text-decoration: none; font-family: var(--display); font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.return-carve span { color: var(--rust); font-size: 21px; }
.return-carve span { transition: transform .3s cubic-bezier(.18,.78,.18,1); }
.return-carve:hover span, .return-carve:focus-visible span { transform: translateY(-4px); }

footer { min-height: 145px; padding: 34px 5vw; border-top: 1px solid #313730; display: flex; align-items: center; justify-content: space-between; gap: 25px; background: #0e140f; color: #aeb3a8; font-size: 14px; }
footer p { margin: 0; font-style: italic; }
footer nav { display: flex; align-items: center; gap: 27px; }
footer a { min-height: 48px; display: grid; place-items: center; border-bottom: 1px solid transparent; text-decoration: none; }
footer a:hover, footer a:focus-visible { border-color: var(--ochre); color: var(--fog); }

/* Guide */
.guide-page { background: #222b24; }
.guide-page .site-header { position: relative; background: #131a16; }
.guide-hero { min-height: 600px; padding: 120px 8vw 75px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; background: radial-gradient(circle at 75% 35%, #3a463b, transparent 30%), linear-gradient(160deg,#2d382f,#18201b); }
.guide-hero::after { content: "ᚱ"; position: absolute; right: 1%; top: -20%; color: rgba(152,160,129,.09); font-family: serif; font-size: 570px; line-height: 1; }
.guide-hero > div { position: relative; z-index: 1; max-width: 900px; }
.guide-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(58px, 8.2vw, 118px); font-weight: 400; line-height: .86; letter-spacing: -.05em; text-transform: uppercase; }
.guide-hero h1 span { display: block; margin-left: .44em; color: var(--rust); }
.guide-hero-note { position: relative; z-index: 1; align-self: end; max-width: 300px; margin: 0 0 9px auto; padding-top: 13px; border-top: 1px solid var(--rust); color: #bfc5b8; font-size: 17px; font-style: italic; }
.guide-layout { max-width: 1250px; margin: auto; padding: 105px 5vw 140px; display: grid; grid-template-columns: 210px 1fr; gap: clamp(55px, 9vw, 125px); }
.guide-toc { position: sticky; top: 30px; align-self: start; padding-top: 14px; border-top: 2px solid var(--ochre); }
.guide-toc a { min-height: 47px; padding: 10px 0; border-bottom: 1px solid #465047; display: block; color: #b8bfb2; text-decoration: none; font-family: var(--display); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.guide-toc a:hover, .guide-toc a:focus-visible { color: var(--ember); }

@keyframes rakeField {
  0% { --light-x: 6%; --light-y: 8%; opacity: 0; }
  18% { opacity: 1; }
  52% { --light-x: 82%; --light-y: 45%; opacity: .9; }
  100% { --light-x: 24%; --light-y: 86%; opacity: .72; }
}

@property --light-x { syntax: '<percentage>'; inherits: true; initial-value: 76%; }
@property --light-y { syntax: '<percentage>'; inherits: true; initial-value: 18%; }
.guide-article { max-width: 820px; }
.guide-article section { margin-bottom: 88px; scroll-margin-top: 30px; }
.guide-article h2 { margin: 0 0 25px; font-family: var(--display); font-size: clamp(39px, 4.3vw, 61px); font-weight: 400; line-height: 1; letter-spacing: -.03em; }
.guide-article p, .guide-article li { color: #c8cdc3; font-size: 19px; text-wrap: pretty; }
.guide-article code { padding: 2px 6px; background: #141a16; color: #f0a77f; font-size: 14px; overflow-wrap: anywhere; }
.guide-callout { margin: 35px 0; padding: 24px 28px; border-left: 3px solid var(--rust); background: rgba(13,18,14,.4); color: #d9ddd3; font-size: 21px; font-style: italic; }
.phase-diagram { margin: 32px 0 38px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #596159; border-left: 1px solid #596159; }
.phase-diagram div { min-height: 170px; padding: 20px; border-right: 1px solid #596159; border-bottom: 1px solid #596159; display: flex; flex-direction: column; }
.phase-diagram b { color: var(--rust); font-family: serif; font-size: 52px; font-weight: 400; line-height: 1; }
.phase-diagram span { margin-top: auto; color: #d9ddd3; font-family: var(--display); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.phase-diagram small { color: #8f998c; font-size: 13px; }
.tech-list { margin: 0; padding: 0; list-style: none; }
.tech-list li { padding: 23px 0; border-top: 1px solid #465047; }
.path-diagram { margin: 34px 0; padding: 28px; position: relative; overflow: hidden; background: #151c17; }
.path-diagram svg { width: 100%; height: auto; display: block; }
.path-diagram path { fill: none; stroke: var(--rust); stroke-width: 8; stroke-linecap: round; }
.path-diagram text { fill: #bac2b4; font-family: serif; font-size: 22px; letter-spacing: 4px; }
.path-diagram figcaption { margin-top: 14px; color: #969f92; font-size: 14px; font-style: italic; }
.token-strip { margin: 32px 0; display: grid; grid-template-columns: repeat(5, 1fr); }
.token-strip span { height: 105px; padding: 12px; display: flex; align-items: end; color: white; font-family: var(--display); font-size: 9px; font-weight: 600; letter-spacing: .08em; text-shadow: 0 1px 2px rgba(0,0,0,.45); }
.token-strip span:nth-child(1) { background: #18201b; }
.token-strip span:nth-child(2) { background: #7d7f7a; }
.token-strip span:nth-child(3) { background: #98a081; color: #18201b; text-shadow: none; }
.token-strip span:nth-child(4) { background: #a7462d; }
.token-strip span:nth-child(5) { background: #ecece4; color: #18201b; text-shadow: none; }
.type-specimen { margin: 36px 0; padding: 27px 0; border-top: 1px solid #4d564e; border-bottom: 1px solid #4d564e; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.type-specimen b { display: block; color: var(--fog); font-family: var(--display); font-size: 33px; font-weight: 400; line-height: 1; }
.type-specimen span { color: #cbd0c6; font-size: 22px; }
.prompt-box { padding: 30px; border-left: 4px solid var(--ochre); background: #151c17; color: #d8ddd2; font-size: 18px; font-style: italic; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1.2fr .8fr; padding-left: 6vw; padding-right: 4vw; }
  .hero h1 { font-size: clamp(63px, 10.2vw, 96px); }
  .hero-deck, .down-link { margin-left: 10%; }
  .hero-deck { width: 90%; }
  .hero-stone-wrap { width: min(43vw, 400px); }
  .section-intro { grid-template-columns: .5fr 1fr; }
  .section-intro > p { grid-column: 2; margin-top: 16px; }
  .carving-workbench { grid-template-columns: 1fr; }
  .carve-controls { max-width: 680px; width: 100%; justify-self: center; }
  .stone-stage { height: 650px; }
  .field-heading { grid-template-columns: .5fr 1.5fr; }
  .field-heading h2 { grid-column: 2; }
  .field-heading > .field-summary { grid-column: 2; grid-row: auto; margin-top: 24px; }
  .raking-control { grid-column: 2; }
  .story { grid-template-columns: 50px minmax(190px,.8fr) minmax(300px,1.2fr); gap: 28px; }
  .story:nth-child(even) { grid-template-columns: 50px minmax(300px,1.2fr) minmax(190px,.8fr); }
  .mini-stone { width: 195px; height: 335px; }
  .berezan { width: 215px; height: 175px; }
  .paint-section { grid-template-columns: .8fr 1.2fr; }
  .paint-copy { padding-inline: 42px; }
  .painted-slab { width: 67%; }
  .rune-lab { grid-template-columns: .4fr 1.6fr; }
  .rune-inspector { padding: 25px; }
  .guide-hero { grid-template-columns: 1fr; }
  .guide-hero-note { display: none; }
}

@media (max-width: 700px) {
  body { font-size: 17px; }
  .site-header { min-height: 76px; padding: 12px 12px 12px 15px; align-items: center; }
  .wordmark { min-width: 42px; width: 42px; min-height: 48px; }
  .wordmark span { display: none; }
  .site-header nav { flex: 1; justify-content: flex-end; gap: 0; }
  .site-header nav a { min-width: 58px; padding-inline: 5px; font-size: 8px; letter-spacing: .1em; }
  .hero { min-height: 820px; display: block; padding: 130px 20px 78px; }
  .hero-copy { max-width: 100%; }
  .hero h1 { font-size: clamp(58px, 17.5vw, 69px); line-height: .86; }
  .hero h1 span:nth-child(2) { margin-left: .12em; }
  .hero h1 em { margin-left: .25em; }
  .hero-deck { width: 85%; margin: 29px 0 20px 9%; font-size: 18px; }
  .down-link { margin-left: 9%; }
  .hero-stone-wrap { width: 255px; height: 410px; position: absolute; right: -74px; bottom: 41px; opacity: .52; }
  .hero-stone-wrap > p { display: none; }
  .hero-ledger { left: 20px; right: 20px; gap: 10px; font-size: 6.5px; }
  .hero-ledger span:nth-child(2) { display: none; }
  .far-stone.s1 { left: 4%; width: 42px; height: 140px; }
  .far-stone.s2 { left: 39%; }
  .carve-section { padding: 88px 14px 90px; }
  .section-intro { margin-bottom: 45px; padding: 0 8px; display: block; }
  .section-intro h2, .field-heading h2, .paint-copy h2, .futhark-intro h2, .afterword h2 { font-size: 49px; }
  .section-intro h2 { margin: 12px 0 24px; }
  .section-intro > p { font-size: 18px; }
  .carving-workbench { min-height: 0; }
  .carve-controls { padding: 34px 22px 38px; }
  .bench-label { margin-bottom: 28px; }
  .input-wrap input { min-height: 58px; padding-right: 58px; font-size: 18px; }
  .translation .rune-line { font-size: 17px; }
  .stone-stage { height: 545px; }
  .standing-stone { width: 108%; height: 91%; }
  .carve-phases { top: 15px; right: 14px; left: 14px; }
  .carve-phases li { padding-inline: 5px; gap: 5px; font-size: 7px; }
  .carving-status { right: 14px; bottom: 13px; }
  .field-section { padding: 90px 20px 105px; }
  .field-heading { margin-bottom: 52px; display: block; }
  .field-heading h2 { margin: 11px 0 24px; }
  .field-heading > .field-summary { margin: 0; font-size: 18px; }
  .raking-control { margin-top: 26px; }
  .raking-control button { width: 100%; max-width: 280px; }
  .raking-control p { max-width: 280px; }
  .story, .story:nth-child(even) { min-height: 0; padding: 32px 0 70px; display: grid; grid-template-columns: 1fr; gap: 10px; }
  .story-number { margin: 0; }
  .story .mini-stone, .story:nth-child(even) .mini-stone { grid-column: 1; grid-row: auto; width: 170px; height: 275px; margin: 8px auto 22px; transform: rotate(-1deg); }
  .story .berezan { width: 225px; height: 164px; }
  .story .story-copy, .story:nth-child(even) .story-copy { grid-column: 1; grid-row: auto; padding: 0; }
  .story h3 { font-size: 32px; }
  .story-copy > p:not(.place) { font-size: 17px; }
  .record-facts { margin-top: 30px; }
  .paint-section { display: block; }
  .paint-demo { min-height: 480px; }
  .painted-slab { width: 46%; }
  .paint-caption { top: 22px; right: 22px; left: 22px; }
  .pigment-toggle { left: 22px; bottom: 22px; }
  .paint-copy { padding: 82px 22px 88px; }
  .large-copy { margin: 28px 0 42px; font-size: 21px; }
  .pigment-notes > div { grid-template-columns: 16px 1fr; }
  .pigment-notes p { grid-column: 2; }
  .paint-aside { grid-template-columns: 1fr; }
  .futhark-section { padding: 90px 14px; }
  .futhark-intro { margin-bottom: 42px; padding: 0 8px; display: block; }
  .futhark-intro h2 { margin: 12px 0 25px; }
  .futhark-intro > p { font-size: 17px; }
  .rune-lab { display: block; border-top: 0; border-left: 0; }
  .rune-inspector { min-height: 150px; padding: 20px 24px; border: 1px solid #92988d; flex-direction: row; align-items: center; }
  .rune-inspector > span { font-size: 104px; }
  .rune-grid { grid-template-columns: repeat(4, 1fr); border-left: 1px solid #92988d; }
  .rune-grid button { min-height: 112px; padding: 10px 4px 8px; }
  .rune-grid b { margin-bottom: 7px; font-size: 39px; }
  .rune-grid strong { font-size: 7px; letter-spacing: .05em; }
  .rune-grid span { font-size: 10px; line-height: 1.15; }
  .futhark-caption { padding: 0 8px; text-align: left; }
  .afterword { min-height: 760px; padding: 100px 22px; place-items: center start; }
  .afterword-copy { margin-left: 0; }
  .afterword-copy > p:not(.eyebrow):not(.section-index) { font-size: 18px; }
  .vertical-runes { right: 5%; left: auto; top: 10%; font-size: 58px; }
  footer { padding: 35px 22px; display: block; }
  footer nav { margin-top: 18px; display: grid; gap: 0; justify-items: start; }
  footer a { place-items: center start; }
  .guide-hero { min-height: 500px; padding: 115px 22px 62px; }
  .guide-hero h1 { font-size: 53px; }
  .guide-hero h1 span { margin-left: .12em; }
  .guide-layout { padding: 70px 22px 100px; display: block; }
  .guide-toc { position: relative; top: auto; margin-bottom: 68px; }
  .guide-article p, .guide-article li { font-size: 17px; }
  .guide-article section { margin-bottom: 70px; }
  .phase-diagram { grid-template-columns: 1fr; }
  .phase-diagram div { min-height: 110px; }
  .token-strip { grid-template-columns: 1fr; }
  .token-strip span { height: 58px; }
  .type-specimen { grid-template-columns: 1fr; }
  .prompt-box { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .story:hover .mini-stone, .story:nth-child(even):hover .mini-stone { transform: none; }
  .field-section.is-sweeping::after { animation: none; opacity: .65; }
}
