/* ═══════════════════════════════════════════════════════════
   STRATA — Contemporary Art Gallery, Seattle
   Style inspired by brutalist/Swiss design-tool sites:
   off-white canvas, expanded grotesque type, acid accents.
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #F1EFE9;
  --ink: #131313;
  --acid: #A6FF00;
  --yellow: #FFE600;
  --red: #FF3B00;
  --blue: #1B2AC4;
  --dark: #0C0C0C;
  --line: rgba(19, 19, 19, 0.18);

  --font-main: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono: "Space Mono", "Courier New", monospace;

  --pad: clamp(1.25rem, 4vw, 4rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ═══════════ GRAIN OVERLAY ═══════════ */
.grain {
  position: fixed;
  inset: -100%;
  z-index: 200;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.6s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ═══════════ CURSOR ═══════════ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0;
}
.cursor__dot {
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--ink);
  transition: transform 0.25s var(--ease-out), background 0.25s;
}
.cursor.is-hover .cursor__dot { transform: scale(2.6); background: var(--acid); mix-blend-mode: normal; }
.cursor.is-view .cursor__dot { transform: scale(5); background: var(--acid); }
.cursor__label {
  position: absolute;
  top: -6px; left: -14px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  opacity: 0;
  transition: opacity 0.2s;
}
.cursor.is-view .cursor__label { opacity: 1; }
@media (hover: none) { .cursor { display: none; } }

/* ═══════════ PRELOADER ═══════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
}
.preloader__panel {
  position: absolute;
  left: 0; width: 100%; height: 50.5%;
  background: var(--ink);
}
.preloader__panel--top { top: 0; }
.preloader__panel--bottom { bottom: 0; }
.preloader__center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: var(--bg);
}
.preloader__star { width: 64px; animation: spin 3s linear infinite; }
.preloader__word {
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.04em;
}
.preloader__count {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--acid);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════ HEADER ═══════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--pad);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.45s var(--ease-out);
}
.header.is-hidden { transform: translateY(-101%); }
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-mark { width: 22px; height: 22px; color: var(--red); animation: spin 9s linear infinite; }
.header__wordmark {
  font-weight: 900;
  font-stretch: 125%;
  font-size: 1.15rem;
  letter-spacing: 0.05em;
}
.header__nav { display: flex; gap: 1.8rem; }
.header__nav a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header__meta { display: flex; align-items: center; gap: 1.2rem; }
.header__clock { opacity: 0.65; }
.header__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.header__burger span { width: 26px; height: 2.5px; background: var(--ink); transition: transform .3s var(--ease-out), opacity .3s; }
.header__burger[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

.mobmenu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad);
  gap: 0.5rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.55s var(--ease-out);
}
.mobmenu.is-open { clip-path: inset(0 0 0% 0); }
.mobmenu a {
  font-weight: 900;
  font-stretch: 115%;
  font-size: clamp(2.4rem, 10vw, 4rem);
  text-transform: uppercase;
  line-height: 1.05;
  border-bottom: 1px solid var(--line);
  padding: 0.4rem 0;
}
.mobmenu a:hover { color: var(--red); }

/* ═══════════ PILLS / BUTTONS ═══════════ */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.pill--acid { background: var(--acid); color: var(--ink); }
.pill--acid:hover { box-shadow: 4px 4px 0 var(--ink); }
.pill--dark { background: var(--ink); color: var(--bg); }
.pill--dark:hover { background: var(--red); color: #fff; box-shadow: 4px 4px 0 var(--ink); }
.pill--ghost { background: transparent; }
.pill--ghost:hover { background: var(--ink); color: var(--bg); }
.pill--ghostlight { background: transparent; border-color: var(--bg); color: var(--bg); }
.pill--ghostlight:hover { background: var(--bg); color: var(--ink); }
.pill--big { padding: 0.9rem 1.8rem; font-size: 0.8rem; }

.chip {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.chip--red { background: var(--red); color: #fff; border-color: var(--red); }
.chip--acid { background: var(--acid); color: var(--ink); border-color: var(--ink); }

/* ═══════════ SECTION TITLES ═══════════ */
.section-title {
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.section-title--light { color: var(--bg); }

/* split heading lines get masked */
[data-split-heading] .sh-line { display: block; overflow: hidden; }
[data-split-heading] .sh-inner { display: inline-block; will-change: transform; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem var(--pad) 4.5rem;
}
.hero__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: clamp(1.5rem, 4vh, 3rem);
  opacity: 0.75;
}
.hero__topline-dot { font-size: 0.5rem; color: var(--red); }

.hero__title {
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(2.4rem, 12vw, 11.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 2;
}
.hero__line { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.hero__line--serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  text-transform: lowercase;
  letter-spacing: 0;
  color: var(--red);
}
.hero__period { color: var(--red); }
.ht-split { display: inline-block; }
.ht-split .char { display: inline-block; will-change: transform; }

.hero__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(2rem, 6vh, 4rem);
}
.hero__sub { max-width: 34rem; font-size: clamp(1rem, 1.6vw, 1.25rem); line-height: 1.55; }
.hero__cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.hero__scrollhint {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.6rem;
  opacity: 0.5;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translate(-50%, 6px); } }

/* hero decorations */
.hero__deco { position: absolute; z-index: 1; }
.hero__deco--star { width: clamp(60px, 9vw, 130px); top: 16%; right: 12%; animation: spin 14s linear infinite; }
.hero__deco--spring { width: clamp(80px, 11vw, 160px); bottom: 30%; right: 24%; }
.hero__deco--eye { width: clamp(70px, 9vw, 120px); top: 42%; right: 6%; }
.hero__kana {
  position: absolute;
  top: 18%;
  right: 2.2%;
  writing-mode: vertical-rl;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  opacity: 0.55;
}

/* ═══════════ TICKER ═══════════ */
.ticker {
  overflow: hidden;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  padding: 0.7rem 0;
}
.ticker__track { display: flex; width: max-content; animation: ticker-run 22s linear infinite; }
.ticker__chunk {
  font-weight: 800;
  font-stretch: 115%;
  font-size: clamp(0.9rem, 1.6vw, 1.2rem);
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding-right: 1rem;
}
.ticker__chunk em { font-style: normal; color: var(--acid); padding: 0 0.5rem; }
@keyframes ticker-run { to { transform: translateX(-50%); } }

/* ═══════════ FEATURE ═══════════ */
.feature {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 10vh, 8rem) var(--pad);
}
.feature__frame {
  position: relative;
  background: #fff;
  border: 2px solid var(--ink);
  padding: clamp(1.2rem, 3vw, 2.5rem);
  box-shadow: 10px 10px 0 var(--ink);
}
.feature__grid-paper {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
}
.feature__kana {
  position: absolute;
  top: 8px;
  left: 14px;
  z-index: 2;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  color: var(--red);
  letter-spacing: 0.06em;
  pointer-events: none;
}
.feature__art { position: relative; width: 100%; height: auto; border: 2px solid var(--ink); }
.feature__art-caption {
  font-family: var(--font-mono);
  font-size: 13px;
  fill: #F1EFE9;
  letter-spacing: 1px;
}
.feature__rings { transform-origin: 350px 220px; animation: spin 26s linear infinite; }
.feature__orbit { transform-origin: 350px 220px; animation: spin 12s linear infinite reverse; }
.feature__redframe {
  position: absolute;
  inset: clamp(0.6rem, 1.5vw, 1.2rem);
  border: 2.5px solid var(--red);
  pointer-events: none;
}
.feature__chips {
  position: absolute;
  bottom: -14px;
  left: 24px;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.feature__chips .chip { background: var(--bg); }
.feature__chips .chip--red { background: var(--red); }

.feature__title {
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}
.feature__byline { color: var(--red); margin-bottom: 1.4rem; }
.feature__desc { font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.6; max-width: 30rem; margin-bottom: 2rem; }

/* ═══════════ MANIFESTO ═══════════ */
.manifesto {
  padding: clamp(5rem, 14vh, 10rem) var(--pad);
  max-width: 72rem;
  margin: 0 auto;
}
.manifesto__text {
  font-weight: 700;
  font-stretch: 110%;
  font-size: clamp(1.6rem, 3.8vw, 3.2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.manifesto__text .word { opacity: 0.14; will-change: opacity; }
.manifesto__underline { width: min(420px, 60%); margin-top: 2rem; overflow: visible; }

/* ═══════════ EXHIBITIONS ═══════════ */
.exhibits { background: var(--ink); color: var(--bg); }
.exhibits__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(3rem, 8vh, 6rem) var(--pad) 1rem;
}
.exhibits__head .section-title { color: var(--bg); }
.exhibits__hint { color: var(--acid); }
.exhibits__pin { overflow: hidden; }
.exhibits__track {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  padding: 3rem var(--pad) 5rem;
  width: max-content;
}

.excard {
  width: clamp(280px, 34vw, 460px);
  flex-shrink: 0;
  background: var(--bg);
  color: var(--ink);
  border: 2px solid var(--bg);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.excard:hover { transform: translateY(-10px) rotate(-1deg); box-shadow: 0 14px 0 var(--acid); }
.excard__art { overflow: hidden; border-bottom: 2px solid var(--ink); }
.excard__art svg { width: 100%; height: auto; transition: transform .6s var(--ease-out); }
.excard:hover .excard__art svg { transform: scale(1.06); }
.excard__meta { padding: 1.1rem 1.2rem 1.4rem; display: flex; flex-direction: column; gap: 0.45rem; align-items: flex-start; }
.excard__meta h3 {
  font-weight: 900;
  font-stretch: 120%;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  text-transform: uppercase;
  line-height: 1;
}
.excard__meta .mono { opacity: 0.6; font-size: 0.65rem; }

.excard--end {
  background: var(--acid);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.4rem;
  padding: 2rem;
  border-color: var(--acid);
}
.excard--end h3 {
  font-weight: 900;
  font-stretch: 120%;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.02;
  text-transform: uppercase;
}
.excard__endstar { width: 64px; }

.spin-slow { animation: spin 16s linear infinite; transform-origin: center; transform-box: fill-box; }
.wobble { animation: wobble 3.2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes wobble { 0%,100% { transform: rotate(-8deg); } 50% { transform: rotate(8deg); } }
.wave-path { animation: wave-drift 5s ease-in-out infinite alternate; }
@keyframes wave-drift { to { transform: translateX(-14px); } }

/* ═══════════ ARTISTS ═══════════ */
.artists { position: relative; padding: clamp(4rem, 10vh, 8rem) 0 clamp(4rem, 10vh, 7rem); }
.artists__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 var(--pad) 2.5rem;
}
.artists__head .mono { opacity: 0.55; }

.artist-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto 2.5rem;
  align-items: center;
  gap: 1.2rem;
  padding: 1.35rem var(--pad);
  border-top: 1.5px solid var(--ink);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}
.artist-row:last-child { border-bottom: 1.5px solid var(--ink); }
.artist-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}
.artist-row:hover::before { transform: scaleY(1); transform-origin: top; }
.artist-row:hover { color: var(--bg); }
.artist-row > * { position: relative; z-index: 1; }
.artist-row__num { opacity: 0.45; }
.artist-row__name {
  font-weight: 900;
  font-stretch: 120%;
  font-size: clamp(1.7rem, 4.5vw, 3.4rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.015em;
  transition: transform 0.35s var(--ease-out);
}
.artist-row:hover .artist-row__name { transform: translateX(14px); color: var(--acid); }
.artist-row__medium { opacity: 0.55; font-size: 0.65rem; }
.artist-row__arrow {
  font-size: 1.5rem;
  transform: translateX(-8px) rotate(-45deg);
  opacity: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}
.artist-row:hover .artist-row__arrow { transform: translateX(0) rotate(0deg); opacity: 1; }

.artist-preview {
  position: fixed;
  top: 0; left: 0;
  width: clamp(200px, 22vw, 300px);
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.85) rotate(3deg);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--acid);
  background: #fff;
}
.artist-preview__svg { width: 100%; height: auto; display: none; }
.artist-preview__svg.is-active { display: block; }

/* ═══════════ CELLS GRID ═══════════ */
.cells { padding: clamp(3rem, 8vh, 6rem) var(--pad); }
.cells__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid var(--ink);
}
.cell {
  min-height: clamp(120px, 16vw, 190px);
  padding: 1.2rem;
  border: 1.5px solid var(--ink);
  margin: -0.75px;
  display: flex;
  align-items: flex-end;
  line-height: 1.7;
  transition: background 0.3s;
}
.cell:hover { background: #fff; }
.cell--icon { align-items: center; justify-content: center; }
.cell--icon svg { width: clamp(44px, 5vw, 64px); }
.cell--pill { align-items: center; justify-content: center; background: var(--ink); }
.cell--pill:hover { background: var(--ink); }

/* ═══════════ DARK PINNED SECTION ═══════════ */
.dark { background: var(--dark); color: var(--bg); }
.dark__pin {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.dark__collage { position: absolute; inset: 0; }
.dark__tile {
  position: absolute;
  left: var(--tx);
  top: var(--ty);
  width: clamp(130px, 16vw, 240px);
  transform: rotate(var(--tr));
  border: 2px solid var(--bg);
  opacity: 0.55;
}
.dark__tile svg { width: 100%; height: auto; }
.dark__words { position: relative; z-index: 2; display: grid; place-items: center; }
.dark__word {
  grid-area: 1 / 1;
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(4rem, 16vw, 15rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: 0;
  will-change: transform, opacity;
}
.dark__dot { color: var(--acid); }

/* ═══════════ VISIT ═══════════ */
.visit { background: var(--dark); color: var(--bg); padding: clamp(4rem, 10vh, 8rem) var(--pad); }
.visit__head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3.5rem; }
.visit__sub { color: var(--acid); }
.visit__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-bottom: 4rem;
}
.vcard {
  border: 1.5px solid rgba(241, 239, 233, 0.35);
  padding: clamp(1.4rem, 2.5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, background 0.35s;
}
.vcard:hover { transform: translateY(-8px); border-color: var(--acid); }
.vcard--hot { background: #161616; border-color: var(--acid); position: relative; }
.vcard--hot::after {
  content: "✺ POPULAR";
  position: absolute;
  top: -11px; right: 18px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.vcard__label { color: var(--acid); }
.vcard__price {
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
}
.vcard__per { font-size: 0.35em; font-weight: 700; opacity: 0.6; }
.vcard ul { display: flex; flex-direction: column; gap: 0.55rem; flex: 1; font-size: 0.66rem; opacity: 0.85; }
.vcard .pill { align-self: flex-start; }
.vcard .pill--acid { border-color: var(--acid); }

.visit__hours {
  max-width: 46rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.8rem;
}
.visit__hours > div { display: flex; align-items: baseline; gap: 0.8rem; }
.visit__dots { flex: 1; border-bottom: 2px dotted rgba(241, 239, 233, 0.35); }

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--dark);
  color: var(--bg);
  padding: clamp(4rem, 10vh, 7rem) var(--pad) 2rem;
  border-top: 1.5px solid rgba(241, 239, 233, 0.2);
  overflow: hidden;
}
.footer__doodles {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  color: var(--acid);
}
.footer__doodles svg { width: clamp(34px, 4vw, 54px); overflow: visible; }

.footer__giant {
  text-align: center;
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(2.4rem, 9.5vw, 10.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.footer__giant-line { display: block; overflow: hidden; padding-bottom: 0.05em; margin-bottom: -0.05em; }
.footer__giant-line--acid { color: var(--acid); }
.footer__giant .char { display: inline-block; will-change: transform; }

.footer__cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(4rem, 8vh, 6rem);
}
.footer__cta .pill--acid { border-color: var(--acid); }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1.5px solid rgba(241, 239, 233, 0.2);
  margin-bottom: 3rem;
  font-size: 0.72rem;
  line-height: 2;
}
.footer__cols a { display: block; opacity: 0.75; }
.footer__cols a:hover { opacity: 1; color: var(--acid); }
.footer__col-head { color: var(--acid); margin-bottom: 0.6rem; font-weight: 700; }
.footer__stamp { display: flex; justify-content: flex-end; align-items: flex-start; }
.footer__stamp svg { width: clamp(90px, 10vw, 130px); }
.footer__stamp-text { font-family: var(--font-mono); font-size: 10.5px; fill: var(--bg); letter-spacing: 2px; }

.footer__legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.6rem;
  opacity: 0.5;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(241, 239, 233, 0.15);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  .header__nav, .header__clock { display: none; }
  .header__burger { display: flex; }
  .feature { grid-template-columns: 1fr; }
  .cells__grid { grid-template-columns: repeat(2, 1fr); }
  .visit__cards { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__stamp { justify-content: flex-start; }
  .artist-row { grid-template-columns: 2.2rem 1fr 2rem; }
  .artist-row__medium { display: none; }
  .hero__deco--spring { display: none; }
  .artist-preview { display: none; }
}
@media (max-width: 520px) {
  .cells__grid { grid-template-columns: 1fr 1fr; }
  .hero__kana { display: none; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .grain { display: none; }
}
