/* ============================================================
   MOCHI DESIGNER — editorial portfolio
   Palette: charcoal studio (matched to the reel footage) / bone / signal red
   ============================================================ */

:root {
  --paper: #161311;
  --paper-deep: #1f1a15;
  --ink: #ece7db;
  --ink-soft: #a59c8c;
  --red: #e5392b;
  --line: rgba(236, 231, 219, 0.16);
  --font-head: "Inter Tight", "Helvetica Neue", "Zen Kaku Gothic New", sans-serif;
  --font-mono: "Space Mono", ui-monospace, "SF Mono", monospace;
  --pad: clamp(1.25rem, 4vw, 4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accent { color: var(--red); }

/* h2/h3 used inside mono blocks keep the surrounding type, not UA styles */
.section-head .label { font-size: inherit; font-weight: inherit; }

.hero-title .hero-kicker {
  display: block;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-weight: 400;
}

/* ---------- grain overlay ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.12;
  filter: invert(1); /* light grain over the dark footage */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 1.2s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, 2%); }
  100% { transform: translate(2%, -1%); }
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem var(--pad);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo {
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.logo-mark { color: var(--red); font-size: 0.7em; vertical-align: super; }

.header-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--ink-soft);
}

.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a { position: relative; padding: 0.2rem 0; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-nav .nav-cta {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  transition: background 0.25s ease, color 0.25s ease;
}
.site-nav .nav-cta:hover { background: var(--ink); color: var(--paper); }
.site-nav .nav-cta::after { display: none; }

/* ---------- hero (scroll-driven walk) ---------- */
.hero {
  position: relative;
  /* Tall runway: the inner pin stays stuck while Mochi walks */
  height: 280vh;
}

.hero-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: calc(4.5rem + 2vh) var(--pad) 4rem;
}

.hero-side {
  position: absolute;
  top: 50%;
  right: calc(var(--pad) * 0.25);
  transform: translateY(-50%);
  color: var(--ink-soft);
  writing-mode: vertical-rl;
  letter-spacing: 0.35em;
  opacity: 0.7;
  z-index: 3;
}
@media (max-width: 900px) { .hero-side { display: none; } }

/* backdrop: sun + ground ticks (replaces the removed photo bg) */
.hero-backdrop { position: absolute; inset: 0; z-index: 0; }

.sun {
  position: absolute;
  top: 10svh;
  right: 8vw;
  width: clamp(280px, 38vw, 560px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  /* over live footage: just the ring, no fill */
  background: none;
}

.sun-dot {
  position: absolute;
  top: 9svh;
  right: calc(8vw + clamp(280px, 38vw, 560px) * 0.82);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
}

.ground {
  position: absolute;
  left: 0; right: 0;
  bottom: 7svh;
  border-top: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  padding: 0.5rem var(--pad) 0;
  color: var(--ink-soft);
  opacity: 0.75;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1400px);
  margin: 0 auto;
  max-width: 640px;
  margin-left: max(calc((100% - 1400px) / 2), 0px);
}

.eyebrow { color: var(--ink-soft); margin-bottom: 1.6rem; }
.eyebrow .arrows { color: var(--red); margin-right: 0.4em; }
.eyebrow .dots { opacity: 0.4; }

.hero-title {
  font-weight: 900;
  font-size: clamp(3.4rem, 9.5vw, 8.2rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero-title .line { display: block; }
.hero-title .line:nth-child(2) { color: transparent; -webkit-text-stroke: 2px var(--ink); }

.hero-desc {
  max-width: 44ch;
  margin-top: 1.8rem;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 -2px var(--ink); }
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--red); border-color: var(--red); box-shadow: 0 6px 0 -2px var(--red); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 1.6rem;
  color: var(--ink-soft);
}
.barcode { width: 110px; height: 26px; color: var(--ink); opacity: 0.85; }

.walker-fallback { display: none; }

.hero-caption {
  position: absolute;
  z-index: 3;
  right: calc(var(--pad) + 2.5rem);
  bottom: 1.4rem;
  display: flex;
  gap: 1.2rem;
  color: var(--ink-soft);
}
@media (max-width: 900px) { .hero-caption { display: none; } }

.stamp {
  position: absolute;
  z-index: 3;
  top: calc(10svh - 1rem);
  right: calc(8vw - 1.5rem);
  width: 5.4rem;
  height: 5.4rem;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.58rem;
  line-height: 1.5;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 50%;
  transform: rotate(12deg);
  background: color-mix(in srgb, var(--paper) 85%, transparent);
  animation: stamp-spin 14s linear infinite;
}
@keyframes stamp-spin { to { transform: rotate(372deg); } }

.scroll-hint {
  position: absolute;
  left: var(--pad);
  bottom: 1.4rem;
  color: var(--ink-soft);
  animation: hint-bob 2.2s ease-in-out infinite;
}
@keyframes hint-bob { 50% { transform: translateY(6px); } }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  border-block: 1px solid var(--ink);
  padding: 1.05rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee .star { color: var(--red); font-size: 0.8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: clamp(4rem, 9vh, 7rem) var(--pad); }
.section > * { max-width: 1400px; margin-inline: auto; }

.section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink-soft);
  margin-bottom: clamp(2.4rem, 5vh, 4rem);
}
.section-head .num { font-size: 1rem; font-weight: 700; }
.section-head .label { color: var(--ink); font-weight: 700; }
.section-head .rule { flex: 1; height: 1px; background: var(--line); }

/* 01 direction */
.direction-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.statement {
  grid-column: 1 / -1;
  font-size: clamp(1.9rem, 4.6vw, 4rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  /* keep clear of Mochi's right-half corridor on desktop */
  max-width: min(24ch, 47vw);
}
.statement em {
  font-style: normal;
  color: var(--red);
  border-bottom: 3px solid currentColor;
}

.direction-body p { color: var(--ink-soft); max-width: 52ch; }

.direction-list {
  margin-top: 1.8rem;
  list-style: none;
  border-top: 1px solid var(--line);
}
.direction-list li {
  display: flex;
  gap: 1rem;
  padding: 0.8rem 0.2rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease, padding-left 0.25s ease;
}
.direction-list li:hover { background: var(--paper-deep); padding-left: 0.8rem; }
.direction-list li span { color: var(--red); }

.direction-visual .cutout-panel {
  aspect-ratio: 3 / 2; /* matches the tattoo-designs collage exactly */
  border: 1px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg, #ece7db0d 0 2px, transparent 2px 26px),
    repeating-linear-gradient(90deg, #ece7db0d 0 2px, transparent 2px 26px),
    var(--paper-deep);
}
.direction-visual .cutout-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 4%;
}
.direction-visual figcaption { margin-top: 0.7rem; color: var(--ink-soft); }

/* 02 work */
.work { background: var(--paper-deep); border-block: 1px solid var(--line); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.work-card {
  border: 1px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.work-card:hover { transform: translateY(-6px); box-shadow: 8px 8px 0 -1px var(--paper), 8px 8px 0 0 var(--ink); }

.thumb {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}
.thumb .glyph {
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  transition: transform 0.35s ease;
}
.work-card:hover .glyph { transform: scale(1.18) rotate(-6deg); }

.thumb-a { background: repeating-linear-gradient(45deg, #241f19 0 14px, #1a1613 14px 28px); }
.thumb-b { background: radial-gradient(circle at 30% 30%, #3a2e1f 0 22%, transparent 22%), radial-gradient(circle at 70% 65%, #e5392b22 0 30%, transparent 30%), #1c1815; }
.thumb-c { background: repeating-linear-gradient(0deg, #ece7db0d 0 2px, transparent 2px 26px), repeating-linear-gradient(90deg, #ece7db0d 0 2px, transparent 2px 26px), #221d18; color: var(--red); }
.thumb-d { background: conic-gradient(from 40deg at 60% 40%, #23261f, #1a1613, #2a2218, #23261f); }

.card-meta { padding: 1rem 1.1rem 1.15rem; }
.card-meta h3 { font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em; }
.card-meta p { margin-top: 0.35rem; color: var(--ink-soft); }

.work-note { margin-top: 2rem; color: var(--ink-soft); }

/* 03 profile */
.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
/* text left, portrait right — Mochi sits next to his own portrait */
.profile-body { order: 1; }
.profile-visual { order: 2; }

.profile-visual img {
  /* the width/height attrs (CLS hints) must not set the box size here */
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 6%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #35291c 0%, #241d15 70%, #191410 100%);
  filter: saturate(1.05);
}

.profile-lead {
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.01em;
  /* keep clear of Mochi sitting on the right */
  max-width: min(30ch, 42vw);
}

.stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 2.4rem;
}
.stat dt { color: var(--ink-soft); }
.stat dd {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.stat dd::after { content: ""; }

/* ---------- plan (pricing) ---------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border: 1px solid var(--ink);
  border-radius: 16px;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.6rem 1.5rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: 8px 8px 0 -1px var(--paper-deep), 8px 8px 0 0 var(--ink); }
.plan-card.is-featured { background: var(--ink); color: var(--paper); }
.plan-card.is-featured .plan-price { color: var(--paper); }
.plan-card.is-featured li { border-color: #17150f26; }

.plan-tag {
  position: absolute;
  top: -0.8rem;
  right: 1.2rem;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.62rem;
}

.plan-name { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.plan-for { color: inherit; opacity: 0.65; min-height: 2.4em; }

.plan-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.plan-price small { font-size: 0.45em; font-weight: 700; }
.plan-price .tilde { color: var(--red); }

.plan-card ul { list-style: none; }
.plan-card li {
  display: flex;
  gap: 0.6rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}
.plan-card li::before { content: "✳"; color: var(--red); font-size: 0.8em; padding-top: 0.15em; }

.plan-note { margin-top: 2rem; color: var(--ink-soft); }

/* ---------- flow ---------- */
.flow {
  background: color-mix(in srgb, #0d0b09 62%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  border-block: 1px solid var(--line);
}
.flow .section-head { color: #b7b1a2; }
.flow .section-head .label { color: var(--ink); }
.flow .section-head .rule { background: #ffffff26; }

.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
  counter-reset: flow;
}

.flow-step {
  border: 1px solid #ffffff33;
  border-radius: 14px;
  padding: 1.4rem 1.3rem;
  position: relative;
}
.flow-step::before {
  counter-increment: flow;
  content: "0" counter(flow);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--red);
}
.flow-step h3 { margin-top: 0.5rem; font-size: 1.02rem; font-weight: 800; }
.flow-step p { margin-top: 0.5rem; font-size: 0.86rem; color: #cfc9ba; }
.flow-step .flow-arrow {
  position: absolute;
  top: 50%;
  right: -1.4rem;
  transform: translateY(-50%);
  color: var(--red);
  font-weight: 800;
}
.flow-step:last-child .flow-arrow { display: none; }
@media (max-width: 900px) { .flow-step .flow-arrow { display: none; } }

/* ---------- faq ---------- */
.faq-list { max-width: 900px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0.4rem 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  padding: 0.7rem 0.2rem;
  font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "Q."; color: var(--red); font-family: var(--font-mono); }
.faq-item[open] summary { color: var(--red); }
.faq-item .faq-a {
  display: flex;
  gap: 0.9rem;
  padding: 0 0.2rem 0.9rem;
  color: var(--ink-soft);
}
.faq-item .faq-a::before { content: "A."; color: var(--ink); font-family: var(--font-mono); }

/* ---------- footer ---------- */
.footer {
  background: color-mix(in srgb, #0d0b09 58%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  text-align: center;
  padding: clamp(4rem, 10vh, 7rem) var(--pad) 2rem;
}

.footer-eyebrow { color: #b7b1a2; }
.footer-eyebrow .accent { animation: blink 1.6s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0.15; } }

.footer-cta {
  display: inline-block;
  margin-top: 1.2rem;
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 8rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-cta:hover { color: var(--red); -webkit-text-stroke-color: var(--red); transform: skewX(-4deg); }

/* ---------- contact form ---------- */
.contact-form {
  margin: clamp(2rem, 5vh, 3rem) auto 0;
  max-width: 560px;
  text-align: left;
  display: grid;
  gap: 0.9rem;
}
.form-row { display: grid; gap: 0.35rem; }
.form-row label { color: #b7b1a2; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: color-mix(in srgb, var(--paper) 55%, transparent);
  border: 1px solid #ffffff33;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  color: var(--ink);
  font: inherit;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact-form ::placeholder { color: #8a8375; }
.form-send {
  justify-self: start;
  background: var(--red);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, background 0.2s ease;
}
.form-send:hover { transform: translateY(-2px); background: #f04534; }
.form-thanks { display: none; color: var(--ink); }
.contact-form.is-sent .form-row,
.contact-form.is-sent .form-send { display: none; }
.contact-form.is-sent .form-thanks { display: block; }

.footer-mail { margin-top: 1.6rem; }
.footer-mail a { color: var(--ink); border-bottom: 1px solid var(--line); }
.footer-mail a:hover { color: var(--red); border-color: var(--red); }

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(3rem, 8vh, 5rem);
  padding-top: 1.4rem;
  border-top: 1px solid #ffffff26;
  color: #b7b1a2;
}
.footer-meta a:hover { color: var(--ink); }

/* ---------- reel: fixed full-viewport canvas BEHIND the page.
   The pose footage (with its own studio background) is drawn fit-to-height,
   anchored right; its left edge dissolves into --paper inside the canvas.
   z-index -1 keeps it above the body background but under all content. ---- */
.reel {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.reel.is-on { opacity: 1; }

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .site-header { flex-wrap: wrap; padding-block: 0.8rem; }
  .header-meta { display: none; }
  .hero { height: 240vh; }
  .hero-pin { padding-top: calc(var(--header-h, 12rem) + 1.5rem); align-items: flex-start; }
  .hero-copy { margin-left: 0; }
  .sun { top: auto; bottom: 18svh; right: -10vw; }
  .sun-dot { display: none; }
  .stamp { top: auto; bottom: 34svh; right: 1rem; }
  .direction-grid, .profile-grid { grid-template-columns: 1fr; }
  .profile-visual { max-width: 320px; }
  .scroll-hint { display: none; }
  .statement { max-width: none; }
  .profile-lead { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .stamp, .scroll-hint, .footer-eyebrow .accent { animation: none; }
  .marquee-track { animation-duration: 60s; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero { height: auto; }
  .hero-pin { position: relative; height: 100svh; }
  .reel { display: none; }
  .walker-fallback {
    display: block;
    position: absolute;
    z-index: 4;
    right: 6vw;
    bottom: 0;
    height: 62svh;
    width: auto;
  }
}
