:root {
  --rh: #1a9e3f;
  --rh-soft: #ccf0c8;
  --rh-wash: #e8f7e4;
  --rh-deep: #0f6b2a;
  --ink: #141414;
  --paper: #f3efe6;
  --paper-2: #ebe4d6;
  --cream: #faf7f0;
  --muted: #4a4a4a;
  --line: #141414;
  --white: #ffffff;
  --dark: #1a1a1a;
  --font-display: "Dela Gothic One", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --nav-h: 74px;
  --max: 1120px;
  --shadow: 4px 4px 0 var(--ink);
  --shadow-lg: 7px 7px 0 var(--ink);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  overflow-x: hidden;
}

@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 900;
  color: var(--ink);
}

::selection {
  background: var(--rh);
  color: var(--white);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--rh-soft);
  font-weight: 800;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.inline-link {
  color: var(--rh-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: var(--ink);
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  border-bottom: 3px solid var(--ink);
  background: var(--rh-soft);
}

.nav__inner {
  height: 100%;
  width: 100%;
  min-width: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(14px, 3vw, 24px);
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 0 1 auto;
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  object-fit: cover;
  background: var(--dark);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand__sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  min-width: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: lowercase;
}

.nav__links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.12s, box-shadow 0.12s;
}

.nav__icon:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}

.nav__toggle {
  display: none;
  margin-left: auto;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 3px;
  background: var(--ink);
}

.nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.45);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  padding: 12px 20px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s, background 0.12s;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn--solid {
  background: var(--rh);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn--solid:hover {
  background: var(--rh-deep);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.btn--outline:hover {
  background: var(--rh-soft);
  box-shadow: var(--shadow-lg);
}

.btn--ink {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn--ink:hover {
  background: var(--dark);
  color: var(--rh-soft);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  padding: 16px 28px;
  font-size: 1.05rem;
}

.nav__cta {
  padding: 10px 16px;
  font-size: 0.85rem;
}

/* HERO */
.hero {
  position: relative;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(20, 20, 20, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(20, 20, 20, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 45%, black 20%, transparent 75%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 64px) clamp(14px, 3vw, 24px) clamp(44px, 7vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  min-height: calc(100svh - var(--nav-h) - 52px);
}

.hero__copy {
  min-width: 0;
  animation: riseIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__brand {
  font-family: var(--font-display);
  max-width: 100%;
  font-size: clamp(3.6rem, 11vw, 7.2rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: var(--ink);
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero__punch {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  text-transform: lowercase;
  color: var(--ink);
}

.hero__sub {
  font-size: 1.05rem;
  font-weight: 700;
  max-width: 38ch;
  margin-bottom: 28px;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
  margin-bottom: 20px;
}

.hero__mascot {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  animation: popIn 0.55s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__mascot img {
  width: min(100%, 460px);
  max-width: calc(100% - 12px);
  border-radius: 50%;
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  background: radial-gradient(circle at 45% 35%, var(--cream) 0 34%, var(--rh-soft) 35% 100%);
}

.ca {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-width: 0;
  max-width: 100%;
  padding: 8px 8px 8px 12px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.ca__label {
  flex-shrink: 0;
  padding: 4px 8px;
  background: var(--ink);
  color: var(--rh-soft);
  border-radius: 3px;
  font-size: 0.7rem;
}

.ca__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(42vw, 240px);
  overflow-wrap: anywhere;
}

.ca__copy {
  flex-shrink: 0;
  padding: 7px 12px;
  border: 3px solid var(--ink);
  border-radius: 4px;
  background: var(--rh);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: lowercase;
  cursor: pointer;
}

.ca__copy:hover {
  background: var(--ink);
  color: var(--rh-soft);
}

/* MARQUEE */
.marquee {
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  background: var(--rh);
  color: var(--white);
  padding: 14px 0;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  animation: marquee 26s linear infinite;
}

.marquee__track i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}

/* SECTIONS */
.section {
  width: 100%;
  min-width: 0;
  padding: clamp(56px, 9vw, 96px) clamp(14px, 3vw, 24px);
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: var(--rh-deep);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  margin-bottom: 28px;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

/* LORE */
.lore {
  max-width: none;
  padding-inline: 0;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}

.lore__top {
  max-width: var(--max);
  margin: 0 auto 48px;
  padding: 0 clamp(14px, 3vw, 24px);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.lore__mascot {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.lore__mascot img {
  width: min(100%, 360px);
  max-width: calc(100% - 10px);
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 10px;
}

.punches {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.punches li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
  padding: 16px 18px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
}

.punches span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.punches b {
  font-family: var(--font-mono);
  color: var(--white);
  background: var(--ink);
  padding: 2px 8px;
  border-radius: 3px;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.lore__now {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.lore__now strong {
  color: var(--rh-deep);
}

.proof {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(14px, 3vw, 24px) clamp(56px, 9vw, 96px);
}

.proof__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--muted);
}

.proof__strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
  margin-bottom: 14px;
}

.proof__strip img {
  width: 100%;
  min-width: 0;
  height: 140px;
  object-fit: cover;
  object-position: center;
  border: 3px solid var(--ink);
  border-radius: 4px;
  background: var(--paper-2);
  box-shadow: 3px 3px 0 var(--ink);
}

.proof__link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--rh-deep);
}

.proof__link:hover {
  color: var(--ink);
}

/* TOKENOMICS */
.tok {
  max-width: none;
  text-align: center;
  background: var(--ink);
  color: var(--white);
  border-bottom: 3px solid var(--ink);
  padding-inline: clamp(14px, 3vw, 24px);
}

.tok .eyebrow {
  color: var(--rh-soft);
}

.tok h2 {
  color: var(--white);
}

.tok__grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.tok__item {
  min-width: 0;
  padding: 32px 12px;
  border: 3px solid var(--white);
  border-radius: 6px;
  background: var(--dark);
  box-shadow: 4px 4px 0 var(--rh);
}

.tok__val {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
  margin-bottom: 8px;
  color: var(--rh-soft);
  overflow-wrap: anywhere;
}

.tok__lab {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.08em;
  color: #c8c8c8;
}

/* BUY */
.buy {
  border-bottom: 3px solid var(--ink);
  background: var(--paper-2);
}

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.step {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 18px 20px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
}

.step > div {
  min-width: 0;
}

.step__n {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  background: var(--rh);
  color: var(--white);
  border: 3px solid var(--ink);
  border-radius: 6px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: lowercase;
  margin-bottom: 2px;
}

.step p {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.buy__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

/* GALLERY */
.gallery {
  max-width: none;
  text-align: center;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
  padding-inline: clamp(14px, 3vw, 24px);
}

.gallery__head {
  max-width: var(--max);
  margin: 0 auto;
}

.gallery__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.gallery__item {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--paper-2);
  aspect-ratio: 1;
  box-shadow: 4px 4px 0 var(--ink);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* CLOSING */
.closing {
  text-align: center;
  padding: clamp(48px, 8vw, 80px) clamp(14px, 3vw, 24px);
  background: var(--rh-wash);
  border-bottom: 3px solid var(--ink);
}

.closing__band {
  width: min(680px, calc(100% - 10px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 40px) clamp(20px, 4vw, 32px);
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--ink);
}

.closing__mascot {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 4px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  background: var(--rh-soft);
}

.closing h2 {
  margin-bottom: 8px;
}

.closing p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  text-transform: lowercase;
  margin-bottom: 28px;
  color: var(--rh-deep);
}

.closing__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* FOOTER */
.footer {
  background: var(--ink);
  color: #9a9a9a;
  padding: 36px clamp(14px, 3vw, 24px);
}

.footer__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__brand {
  font-family: var(--font-display);
  color: var(--rh-soft);
  font-size: 1.05rem;
  text-transform: lowercase;
}

.footer__disclaimer {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.55;
  max-width: 62ch;
  margin: 0 auto;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--rh-soft);
}

.footer__links a:hover {
  text-decoration: underline;
}

/* REVEAL + TOAST */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

.toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  z-index: 200;
  transform: translateX(-50%) translateY(16px);
  padding: 12px 20px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--rh);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero__inner,
  .lore__top {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__mascot {
    order: -1;
  }

  .hero__mascot img {
    width: min(72vw, 360px);
  }

  .hero__copy {
    text-align: center;
  }

  .hero__sub {
    margin-inline: auto;
  }

  .hero__actions,
  .buy__cta {
    justify-content: center;
  }

  .ca {
    margin-inline: auto;
  }

  .tok__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lore__mascot {
    order: -1;
  }

  .hero__inner {
    min-height: auto;
  }
}

@media (max-width: 780px) {
  .nav {
    height: 68px;
    --nav-h: 68px;
  }

  .nav__inner {
    padding-inline: 12px;
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  body.nav-open .nav__links {
    display: flex;
    position: fixed;
    top: calc(var(--nav-h) + 10px);
    left: 12px;
    right: 12px;
    z-index: 45;
    flex-direction: column;
    gap: 0;
    max-height: calc(100svh - var(--nav-h) - 112px);
    overflow-y: auto;
    padding: 8px 16px 14px;
    background: var(--cream);
    border: 3px solid var(--ink);
    border-radius: 8px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  body.nav-open .nav__links a {
    padding: 14px 0;
    border-bottom: 2px solid rgba(20, 20, 20, 0.12);
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  body.nav-open .nav__actions {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 14px;
    z-index: 46;
    justify-content: center;
    min-width: 0;
    padding: 10px;
    background: var(--cream);
    border: 3px solid var(--ink);
    border-radius: 8px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  body.nav-open .nav__cta {
    flex: 1 1 auto;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 1rem;
  }

  .tok__grid,
  .gallery__grid,
  .proof__strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .proof__strip img {
    height: 160px;
  }

  .hero__actions,
  .closing__actions,
  .buy__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__inner {
    gap: 22px;
    padding-top: 28px;
    padding-bottom: 42px;
  }

  .hero__mascot img {
    width: min(78vw, 300px);
    box-shadow: 6px 6px 0 var(--ink);
  }

  .hero__punch {
    font-size: clamp(1.12rem, 6vw, 1.35rem);
  }

  .hero__sub {
    font-size: 0.98rem;
  }

  .btn--lg {
    padding: 14px 18px;
    font-size: 1rem;
  }

  .ca {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ca__value {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }

  .ca__copy {
    flex: 1 1 auto;
  }

  .hero__brand {
    font-size: clamp(2.85rem, 16vw, 3.9rem);
    line-height: 0.92;
  }

  .punches li {
    flex-direction: column;
    gap: 8px;
  }

  .step {
    align-items: flex-start;
    padding: 16px;
  }

  .step__n {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .closing__band {
    box-shadow: 5px 5px 0 var(--ink);
  }
}

@media (max-width: 380px) {
  .brand__logo {
    width: 40px;
    height: 40px;
  }

  .brand__sub {
    display: none;
  }

  .nav__toggle {
    width: 42px;
    height: 42px;
  }

  body.nav-open .nav__actions {
    gap: 6px;
    padding: 8px;
  }

  .nav__icon {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee__track,
  .hero__mascot,
  .hero__copy,
  .reveal {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
