:root {
  --forest: #172315;
  --forest-deep: #0e160d;
  --moss: #455c28;
  --leaf: #72883e;
  --acid: #d5e559;
  --parchment: #ead8ad;
  --paper: #f2e8cb;
  --ink: #15160f;
  --rust: #c64d28;
  --gold: #e0aa2e;
  --line: rgba(234, 216, 173, 0.22);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--forest-deep);
}

body {
  margin: 0;
  color: var(--parchment);
  background: var(--forest);
  font-family: var(--serif);
  overflow-x: hidden;
}

body::selection {
  color: var(--ink);
  background: var(--acid);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-200%);
  transition: transform 0.2s;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 99;
  opacity: 0.075;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 4vw;
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, height 0.25s;
}

.site-header.scrolled {
  height: 68px;
  background: rgba(14, 22, 13, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid var(--parchment);
  border-radius: 50%;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand b {
  color: var(--acid);
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.brand small {
  margin-top: 0.25rem;
  font-family: Arial, sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.25em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.8rem);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-buy) {
  position: relative;
  padding-block: 0.6rem;
}

.site-nav > a:not(.nav-buy)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-buy {
  display: flex;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: var(--acid);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--parchment);
  transition: transform 0.15s, box-shadow 0.15s;
}

.nav-buy:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--parchment);
}

.menu-button {
  display: none;
  width: 45px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--parchment);
  transition: transform 0.2s, opacity 0.2s;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 4vw;
  padding: 130px 7vw 100px;
  isolation: isolate;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 75% 45%, rgba(114, 136, 62, 0.22), transparent 32%),
    linear-gradient(120deg, rgba(14, 22, 13, 0.2), rgba(14, 22, 13, 0.86)),
    repeating-linear-gradient(95deg, transparent 0 46px, rgba(234, 216, 173, 0.025) 47px 48px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 44vw;
  height: 62vw;
  max-height: 800px;
  border: 1px solid rgba(234, 216, 173, 0.08);
  border-radius: 50%;
  transform: rotate(28deg);
}

.hero::before {
  top: 5%;
  left: -25%;
}

.hero::after {
  right: -28%;
  bottom: -30%;
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 690px;
}

.eyebrow,
.kicker {
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.35rem;
  color: var(--acid);
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(4.6rem, 9vw, 9.6rem);
  font-weight: 900;
  line-height: 0.73;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-shadow: 6px 6px 0 var(--ink);
}

.hero h1 .ticker {
  align-self: flex-start;
  margin-bottom: 0.28em;
  padding: 0.06em 0.12em 0.02em;
  color: var(--ink);
  background: var(--acid);
  transform: rotate(-2deg);
  text-shadow: none;
}

.hero-manifesto {
  list-style: none;
  margin: 2.3rem 0 1.8rem;
  padding: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.8rem);
  font-weight: 700;
  line-height: 1.55;
}

.hero-manifesto li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-manifesto span {
  color: var(--rust);
  font-size: 1.4em;
}

.hero-tagline {
  margin: 0 0 2rem;
  color: rgba(242, 232, 203, 0.72);
  font-style: italic;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 185px;
  padding: 1rem 1.2rem;
  border: 2px solid var(--parchment);
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  transition: color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.button-primary {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
  box-shadow: 5px 5px 0 var(--rust);
}

.button-secondary {
  color: var(--paper);
  background: rgba(14, 22, 13, 0.3);
}

.button:hover {
  transform: translate(-2px, -2px) rotate(-1deg);
}

.button-primary:hover {
  box-shadow: 8px 8px 0 var(--rust);
}

.button-secondary:hover {
  color: var(--ink);
  background: var(--parchment);
}

.warning {
  margin: 1.3rem 0 0;
  color: rgba(234, 216, 173, 0.58);
  font-size: 0.78rem;
  font-style: italic;
}

.hero-art {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(44vw, 680px);
}

.sun {
  position: absolute;
  top: 1%;
  left: -7%;
  width: 92%;
  aspect-ratio: 1;
  border: 2px solid rgba(213, 229, 89, 0.55);
  border-radius: 50%;
  box-shadow: inset 0 0 0 18px rgba(213, 229, 89, 0.025);
}

.sun::before,
.sun::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px dashed rgba(213, 229, 89, 0.3);
  border-radius: 50%;
}

.sun::after {
  inset: -5%;
  border-style: solid;
  border-color: rgba(213, 229, 89, 0.09);
}

.portrait-frame {
  position: relative;
  width: 90%;
  margin-left: auto;
  padding: 12px;
  background: var(--parchment);
  border: 3px solid var(--ink);
  box-shadow: 15px 16px 0 var(--rust), 18px 19px 0 var(--ink);
  transform: rotate(2deg);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
  border: 2px solid var(--ink);
}

.stamp {
  position: absolute;
  right: -6%;
  bottom: 8%;
  display: grid;
  place-items: center;
  width: 105px;
  aspect-ratio: 1;
  color: var(--rust);
  background: var(--parchment);
  border: 4px double var(--rust);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 0.9;
  text-align: center;
  transform: rotate(-12deg);
}

.scribble {
  position: absolute;
  z-index: 4;
  color: var(--parchment);
  font-family: "Comic Sans MS", cursive;
  font-size: 0.9rem;
  transform: rotate(-8deg);
}

.scribble-one {
  top: 12%;
  left: -5%;
}

.scribble-two {
  right: 3%;
  bottom: -8%;
  transform: rotate(7deg);
}

.scroll-cue {
  position: absolute;
  left: 4vw;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: Arial, sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue b {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--ink);
  background: var(--parchment);
  border-radius: 50%;
  animation: bob 1.4s ease-in-out infinite;
}

.ticker-tape {
  width: 104%;
  margin-left: -2%;
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
  border-block: 4px solid var(--ink);
  transform: rotate(-1deg);
}

.ticker-tape div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.8rem 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  letter-spacing: 0.04em;
  animation: ticker 24s linear infinite;
}

.ticker-tape i {
  color: var(--rust);
  font-style: normal;
}

.section-pad {
  padding: 9rem 7vw;
}

.legend {
  position: relative;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(rgba(65, 58, 37, 0.11) 0.6px, transparent 0.6px),
    radial-gradient(rgba(65, 58, 37, 0.07) 0.6px, transparent 0.6px);
  background-position: 0 0, 8px 8px;
  background-size: 16px 16px;
}

.legend::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(21, 22, 15, 0.18);
  pointer-events: none;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto 5rem;
}

.section-heading .kicker {
  align-self: flex-start;
  margin-top: 0.8rem;
  color: var(--rust);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.8;
  letter-spacing: -0.04em;
}

.legend-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(460px, 1.3fr);
  gap: clamp(3rem, 7vw, 8rem);
  max-width: 1280px;
  margin: 0 auto;
}

.legend-story {
  font-size: 1.08rem;
  line-height: 1.8;
}

.legend-story > p:first-child {
  margin-top: 0;
}

.drop-cap::first-letter {
  float: left;
  margin: 0.14em 0.13em 0 0;
  color: var(--rust);
  font-family: var(--display);
  font-size: 5.2rem;
  line-height: 0.62;
}

.big-line {
  display: inline-block;
  margin: 0.7rem 0;
  padding: 0 0.25rem;
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
  border-bottom: 5px solid var(--acid);
  transform: rotate(-1deg);
}

.tax-list {
  display: grid;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(198, 77, 40, 0.08);
  border: 1px dashed rgba(21, 22, 15, 0.45);
  font-style: italic;
  line-height: 1.55;
  transform: rotate(0.5deg);
}

.tax-list strong {
  margin-top: 0.5rem;
  color: var(--rust);
}

.signature {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--rust);
  font-family: "Comic Sans MS", cursive;
  font-size: 2.2rem;
  font-weight: 700;
  transform: rotate(-4deg);
}

.story-image {
  align-self: start;
  margin: 0;
  padding: 12px;
  background: #d2b77b;
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 rgba(21, 22, 15, 0.18);
  transform: rotate(1.2deg);
}

.story-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 2px solid var(--ink);
  filter: saturate(0.87) sepia(0.12);
}

.story-image figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.4rem 0.15rem;
  font-size: 0.8rem;
  font-style: italic;
}

.story-image figcaption span {
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 8vw;
  align-items: center;
  color: var(--ink);
  background: var(--gold);
}

.mission-card {
  position: relative;
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 16px 18px 0 var(--ink);
  transform: rotate(-1deg);
}

.mission-card .kicker {
  margin: 0 0 2.5rem;
  color: var(--rust);
}

.mission-line {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: baseline;
  margin: 0.6rem 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.5vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.mission-line span {
  color: var(--rust);
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.mission-line s {
  text-decoration-color: var(--rust);
  text-decoration-thickness: 0.08em;
}

.wax-seal {
  position: absolute;
  right: -32px;
  bottom: -34px;
  display: grid;
  place-items: center;
  width: 95px;
  aspect-ratio: 1;
  color: #e6a48e;
  background: var(--rust);
  border: 5px double #8f2b16;
  border-radius: 45% 55% 50% 46%;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: bold;
  font-style: italic;
  box-shadow: 4px 6px 0 rgba(21, 22, 15, 0.3);
  transform: rotate(-10deg);
}

.mission-copy > p {
  max-width: 540px;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.55;
}

.decree {
  display: grid;
  margin-top: 2.5rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.decree strong {
  color: var(--paper);
  text-shadow: 4px 4px 0 var(--ink);
}

.how {
  color: var(--parchment);
  background:
    linear-gradient(rgba(14, 22, 13, 0.86), rgba(14, 22, 13, 0.96)),
    url("assets/rolan-sherwood.webp") center / cover fixed;
}

.section-heading.center {
  display: grid;
  justify-items: center;
  max-width: 860px;
  margin-bottom: 5rem;
  text-align: center;
}

.section-heading.center .kicker {
  justify-self: center;
  margin: 0;
  color: var(--acid);
}

.section-heading.center h2 {
  color: var(--paper);
  text-shadow: 6px 6px 0 var(--ink);
}

.section-heading.center h2 em {
  color: var(--acid);
  font-style: normal;
}

.section-heading.center > p:last-child {
  margin: -1.8rem 0 0;
  color: rgba(234, 216, 173, 0.7);
  font-style: italic;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  position: relative;
  min-height: 330px;
  padding: 2rem;
  background: rgba(14, 22, 13, 0.82);
  border: 1px solid rgba(234, 216, 173, 0.34);
  backdrop-filter: blur(6px);
  transition: transform 0.25s, background 0.25s;
}

.step:hover {
  z-index: 2;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-10px) rotate(-1deg);
}

.step-number {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  color: var(--rust);
  font-family: var(--display);
  font-size: 2rem;
}

.step-icon {
  display: block;
  margin: 2.3rem 0 2rem;
  font-size: 3.4rem;
}

.step h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
}

.step p {
  max-width: 270px;
  margin: 0;
  color: rgba(234, 216, 173, 0.68);
  line-height: 1.6;
}

.step:hover p {
  color: rgba(21, 22, 15, 0.72);
}

.contract-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding: 1.4rem 1.6rem;
  color: var(--ink);
  background: var(--acid);
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--rust);
}

.contract-card > div {
  min-width: 0;
}

.contract-card span {
  display: block;
  margin-bottom: 0.4rem;
  font-family: Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contract-card code {
  display: block;
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(1rem, 2.3vw, 1.6rem);
  font-weight: bold;
  font-style: italic;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-button {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: var(--paper);
  background: var(--ink);
  border: 0;
  cursor: pointer;
}

.copy-button span {
  margin: 0;
}

.roadmap {
  margin: 3rem 0 0;
  color: rgba(234, 216, 173, 0.56);
  font-style: italic;
  text-align: center;
}

.final-cta {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.08);
  transform: scale(1.03);
}

.final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 22, 13, 0.94) 0%, rgba(14, 22, 13, 0.58) 50%, rgba(14, 22, 13, 0.2));
}

.final-copy {
  position: relative;
  z-index: 2;
  width: min(1200px, 86vw);
}

.final-copy p {
  margin: 0 0 1.5rem;
  color: var(--acid);
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.final-copy h2 {
  margin: 0 0 2.5rem;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.78;
  text-shadow: 6px 6px 0 var(--ink);
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
  padding: 3.5rem 5vw 2rem;
  color: rgba(234, 216, 173, 0.72);
  background: var(--forest-deep);
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: var(--acid);
  font-family: var(--display);
  font-size: 3rem;
}

footer p {
  font-size: 0.88rem;
  font-style: italic;
}

footer nav {
  display: flex;
  gap: 1.5rem;
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

footer nav a:hover {
  color: var(--acid);
}

footer small {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  font-family: Arial, sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  border-top: 1px solid var(--line);
}

.toast {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 150;
  padding: 1rem 1.2rem;
  color: var(--ink);
  background: var(--acid);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--rust);
  font-weight: bold;
  transform: translateY(180%);
  transition: transform 0.25s;
}

.toast.show {
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes bob {
  50% { transform: translateY(5px); }
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: grid;
    gap: 0;
    padding: 1rem 4vw 2rem;
    background: var(--forest-deep);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.25s;
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-buy {
    justify-content: space-between;
    margin-top: 1rem;
    padding-inline: 1rem;
  }

  .menu-button {
    display: block;
    flex: 0 0 auto;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-top: 130px;
  }

  .hero-art {
    width: min(78vw, 590px);
    margin-top: 2rem;
  }

  .scroll-cue {
    display: none;
  }

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

  .legend-story {
    max-width: 680px;
  }

  .mission {
    grid-template-columns: 1fr;
    gap: 6rem;
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .step {
    min-height: auto;
  }

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

  footer p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 68px;
    padding-inline: 1rem;
  }

  .menu-button {
    position: absolute;
    right: 1rem;
    z-index: 2;
    background: var(--acid);
    border: 2px solid var(--ink);
    box-shadow: 3px 3px 0 var(--rust);
  }

  .menu-button > span:not(.sr-only) {
    background: var(--ink);
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 110px 1.3rem 80px;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6.8rem);
    line-height: 0.78;
  }

  .hero-manifesto {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    width: 94%;
    margin-right: auto;
  }

  .stamp {
    width: 75px;
    right: -4%;
    font-size: 1.1rem;
  }

  .section-pad {
    padding: 6.5rem 1.35rem;
  }

  .legend::before {
    inset: 0.55rem;
  }

  .section-heading {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
  }

  .section-heading h2 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  .legend-grid {
    gap: 3.5rem;
  }

  .story-image {
    margin-inline: -0.3rem;
    padding: 6px;
    box-shadow: 8px 8px 0 rgba(21, 22, 15, 0.18);
  }

  .story-image figcaption {
    font-size: 0.7rem;
  }

  .mission-card {
    padding: 2.5rem 1.2rem;
    box-shadow: 9px 10px 0 var(--ink);
  }

  .mission-line {
    font-size: 2.55rem;
  }

  .wax-seal {
    right: -8px;
    width: 72px;
    font-size: 2.5rem;
  }

  .decree {
    font-size: 3.5rem;
  }

  .how {
    background-attachment: scroll;
  }

  .section-heading.center > p:last-child {
    margin-top: -0.6rem;
  }

  .steps {
    width: 100%;
  }

  .contract-card {
    align-items: stretch;
    flex-direction: column;
  }

  .copy-button {
    justify-content: center;
  }

  .final-cta {
    min-height: 520px;
  }

  .final-cta > img {
    object-position: 68% center;
  }

  .final-overlay {
    background: rgba(14, 22, 13, 0.7);
  }

  footer {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    text-align: center;
  }

  footer nav {
    justify-content: center;
  }

  footer p {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
