:root {
  --night: #08010d;
  --night-soft: #13071c;
  --panel: #1b0b28;
  --panel-strong: #291039;
  --ink: #fff9ff;
  --muted: #d8c5dc;
  --pink: #ff73d3;
  --violet: #a660ff;
  --cyan: #e18cff;
  --sun: #f7b3eb;
  --green: #e9b9ff;
  --line: rgba(255, 255, 255, .14);
  --shadow: 0 30px 90px rgba(0, 0, 0, .45);
  --radius: 28px;
  --sans: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --accent: var(--pink);
  color-scheme: dark;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 0;
  background:
    radial-gradient(circle at 9% 12%, rgba(174, 74, 255, .19), transparent 32rem),
    radial-gradient(circle at 88% 18%, rgba(255, 92, 213, .18), transparent 36rem),
    var(--night);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: clip;
}

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

a { color: inherit; }

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

button, input, select, textarea { font: inherit; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--night);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.site-nav {
  width: min(1280px, calc(100% - 48px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.wordmark strong { color: var(--pink); font-size: 1.08em; }

.site-nav nav,
.artist-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}

.site-nav nav a,
.artist-footer nav a {
  min-width: 44px;
  min-height: 44px;
  padding-block: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav nav a:hover,
.artist-footer nav a:hover { color: var(--ink); }

main > section {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.artist-hero > *,
.gift-section > *,
.simple-guide > *,
.story-heading > *,
.archive-section > *,
.artist-footer > * { min-width: 0; }

p, li { overflow-wrap: anywhere; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-name {
  margin: 0 0 18px;
  color: var(--pink);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 850;
  letter-spacing: .13em;
  line-height: 1.1;
  text-transform: uppercase;
}

h1, h2, h3, p { text-wrap: pretty; }

h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.045em;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 7.4vw, 7.8rem);
  line-height: .86;
}

h1 em {
  color: var(--pink);
  font-weight: 400;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: .95;
}

.artist-hero {
  position: relative;
  min-height: min(840px, calc(100vh - 92px));
  padding: clamp(58px, 8vw, 110px) 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .86fr);
  align-items: center;
  gap: clamp(36px, 7vw, 110px);
}

.hero-glow {
  position: absolute;
  width: min(460px, 100%);
  height: 460px;
  top: 18%;
  left: 0;
  right: 0;
  margin-inline: auto;
  border-radius: 50%;
  background: conic-gradient(from 30deg, #6f28cb, #b356ff, #ff61d2, #ed9dff, #6f28cb);
  filter: blur(95px);
  opacity: .13;
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 2; }

.hero-lead {
  max-width: 680px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero-lead strong { color: var(--ink); }

.hero-actions,
.gift-actions {
  margin-top: 34px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--sans);
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button-primary,
.button-download {
  background: linear-gradient(105deg, #d78cff, var(--violet) 34%, var(--pink) 72%, #f6b0ee);
  color: #08010d;
  box-shadow: 0 12px 38px rgba(255, 115, 211, .24);
}

.button-download { min-height: 62px; padding-inline: 30px; font-size: 1rem; }
.button-download span { font-size: 1.3em; }

.button-quiet,
.button-share {
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .055);
}

.button-quiet:hover,
.button-share:hover { border-color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .1); }

.hero-portrait {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(239, 173, 255, .32);
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(225, 140, 255, .24), rgba(255, 115, 211, .08));
  box-shadow: 0 36px 110px rgba(82, 15, 112, .56);
  transform: none;
}

.hero-portrait::after {
  content: none;
}

.hero-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 22px;
}

.hero-portrait figcaption {
  position: static;
  min-height: 46px;
  padding: 10px 13px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-portrait figcaption span { color: var(--sun); }

.stage-gallery {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(84px, 11vw, 160px) 0 clamp(92px, 12vw, 170px);
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 20%, rgba(166, 96, 255, .2), transparent 34rem),
    radial-gradient(circle at 82% 78%, rgba(255, 115, 211, .16), transparent 38rem),
    linear-gradient(180deg, rgba(19, 7, 28, .86), rgba(8, 1, 13, .98));
}

.stage-gallery::before {
  content: "COLORI";
  position: absolute;
  top: clamp(20px, 3vw, 42px);
  right: -0.04em;
  color: rgba(255, 255, 255, .025);
  font-family: var(--serif);
  font-size: clamp(7rem, 22vw, 22rem);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .7;
  pointer-events: none;
}

.gallery-heading {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto clamp(42px, 6vw, 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .65fr);
  align-items: end;
  gap: 30px clamp(48px, 9vw, 130px);
}

.gallery-heading h2 { max-width: 850px; }
.gallery-heading h2 em { color: var(--pink); font-weight: 400; }
.gallery-intro > p { margin: 0 0 22px; color: var(--muted); font-size: .98rem; }

.gallery-toggle {
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: var(--ink);
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
}

.gallery-toggle:hover,
.gallery-toggle[aria-pressed="true"] { border-color: var(--pink); background: rgba(255, 115, 211, .12); }

.gallery-reel {
  position: relative;
  width: 100%;
  padding: 7px 0;
  overflow: hidden;
  outline: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.gallery-reel + .gallery-reel { margin-top: 18px; }
.gallery-reel:focus-visible { box-shadow: inset 0 0 0 2px var(--pink); }

.gallery-track {
  display: flex;
  width: max-content;
  animation: gallery-scroll 58s linear infinite;
  will-change: transform;
}

.gallery-reel-reverse .gallery-track {
  animation-name: gallery-scroll-reverse;
  animation-duration: 64s;
}

.gallery-set {
  padding-right: 18px;
  display: flex;
  flex: none;
  align-items: center;
  gap: 18px;
}

.gallery-card {
  position: relative;
  flex: none;
  height: clamp(250px, 27vw, 390px);
  margin: 0;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(239, 173, 255, .24);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(225, 140, 255, .14), rgba(255, 115, 211, .04));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

.gallery-card picture { display: block; width: 100%; height: 100%; }
.gallery-card img { width: 100%; height: 100%; max-width: none; border-radius: 17px; object-fit: contain; }
.gallery-card-portrait { width: auto; aspect-ratio: 2 / 3; }
.gallery-card-three-four { width: auto; aspect-ratio: 3 / 4; }
.gallery-card-wide { width: auto; aspect-ratio: 1280 / 852; }

.gallery-reel:hover .gallery-track,
.gallery-reel:focus-within .gallery-track,
.stage-gallery[data-paused] .gallery-track { animation-play-state: paused; }

.gallery-caption {
  width: min(1280px, calc(100% - 48px));
  margin: 24px auto 0;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-align: right;
  text-transform: uppercase;
}

.gallery-caption span { color: var(--pink); }

@keyframes gallery-scroll { to { transform: translateX(-50%); } }
@keyframes gallery-scroll-reverse { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.gift-section {
  position: relative;
  padding: clamp(70px, 10vw, 150px) clamp(28px, 6vw, 86px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(166, 96, 255, .13), transparent 42%),
    linear-gradient(315deg, rgba(255, 115, 211, .14), transparent 44%),
    var(--night-soft);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.gift-section::before {
  content: "";
  position: absolute;
  height: 8px;
  inset: 0 0 auto;
  background: linear-gradient(90deg, #6f28cb, var(--violet), var(--pink), #f3a9ef);
}

.gift-copy { position: relative; z-index: 2; }

.gift-copy > p:not(.eyebrow):not(.download-note):not(.share-status) {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.gift-copy .gift-emphasis { color: var(--ink) !important; font-weight: 700; }

.download-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: .76rem;
}

.share-status {
  min-height: 1.6em;
  margin: 8px 0 0;
  color: var(--green);
  font-size: .82rem;
  font-weight: 700;
}

.video-shell {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 32px;
  background: #030306;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .55);
}

.main-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 23px;
  background: #000;
  object-fit: cover;
}

.video-accessibility-note {
  margin: 14px 4px 2px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
  text-align: center;
}

.video-accessibility-note a {
  color: var(--sun);
  font-weight: 700;
  text-underline-offset: 3px;
}

.big-play {
  position: absolute;
  left: 50%;
  bottom: 75px;
  min-height: 58px;
  padding: 15px 26px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 243, .94);
  color: var(--night);
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .4);
  transform: translateX(-50%);
}

.big-play:hover { background: #fff; }
.big-play[hidden] { display: none; }

.simple-guide {
  padding: clamp(90px, 12vw, 170px) 0;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(40px, 8vw, 110px);
}

.section-intro > p:last-child,
.story-heading > p:last-child,
.archive-copy > p,
.coming-section > p:last-child {
  max-width: 680px;
  color: var(--muted);
}

.section-intro > p:last-child { font-size: 1.08rem; }

.guide-steps {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.guide-steps li {
  min-height: 126px;
  padding: 24px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .035);
}

.guide-steps li > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  color: var(--night);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
}

.guide-steps strong { display: block; color: var(--ink); font-size: 1.03rem; }
.guide-steps p { margin: 4px 0 0; color: var(--muted); font-size: .9rem; }

.iphone-note {
  grid-column: 2;
  margin-top: -40px;
  padding: 22px 26px;
  border-left: 4px solid var(--sun);
  border-radius: 0 18px 18px 0;
  background: rgba(247, 179, 235, .09);
}

.iphone-note strong { color: var(--sun); }
.iphone-note p { margin: 4px 0 0; color: var(--muted); font-size: .9rem; }

.artist-story {
  padding: clamp(70px, 9vw, 130px) clamp(28px, 6vw, 86px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--night);
}

.artist-story .eyebrow { color: #8a2463; }
.story-heading { display: grid; grid-template-columns: .6fr 1fr; column-gap: 60px; }
.story-heading .eyebrow { grid-column: 1 / -1; }
.story-heading > p:last-child { margin: 10px 0 0; color: #4b4854; }

.milestones {
  margin-top: clamp(44px, 7vw, 90px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(7, 7, 11, .18);
}

.milestones article {
  min-height: 220px;
  padding: 28px 24px 20px 0;
  border-right: 1px solid rgba(7, 7, 11, .18);
}

.milestones article:not(:first-child) { padding-left: 24px; }
.milestones article:last-child { border-right: 0; }
.milestones span { color: #b02374; font-family: var(--serif); font-size: 1.35rem; font-weight: 700; }
.milestones p { margin: 22px 0 0; color: #36333d; font-size: .92rem; line-height: 1.55; }

.archive-section {
  padding: clamp(90px, 12vw, 170px) 0;
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.archive-art {
  width: min(100%, 400px);
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(-2.5deg);
}

.archive-art img { width: 100%; height: auto; }
.archive-copy > p { margin: 28px 0 34px; font-size: 1.05rem; }

.sponsor-section {
  margin-bottom: clamp(80px, 11vw, 150px);
  padding: clamp(70px, 9vw, 110px) 0 0;
  border-top: 1px solid var(--line);
}

.sponsor-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  align-items: end;
  gap: 22px clamp(40px, 8vw, 120px);
}

.sponsor-heading .eyebrow { grid-column: 1 / -1; }
.sponsor-heading h2 { max-width: 850px; }
.sponsor-heading > p:last-child { margin: 0 0 10px; color: var(--muted); }

.sponsor-marquee {
  position: relative;
  left: 50%;
  width: 100vw;
  margin: clamp(42px, 6vw, 72px) 0 0;
  padding: 18px 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  outline: none;
  transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.sponsor-marquee:focus-visible { box-shadow: inset 0 0 0 2px var(--pink); }

.sponsor-track {
  display: flex;
  width: max-content;
  animation: sponsor-scroll 44s linear infinite;
  will-change: transform;
}

.sponsor-marquee:hover .sponsor-track,
.sponsor-marquee:focus .sponsor-track { animation-play-state: paused; }

.sponsor-track picture { display: block; flex: none; }
.sponsor-strip { display: block; width: auto; height: clamp(116px, 12vw, 154px); max-width: none; }

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

.sponsor-names {
  max-width: 1080px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.7;
  text-align: center;
}

.sponsor-partnership {
  margin-top: clamp(38px, 6vw, 68px);
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 115, 211, .28);
  border-radius: 22px;
  background: linear-gradient(110deg, rgba(166, 96, 255, .1), rgba(255, 115, 211, .08));
}

.sponsor-partnership span { color: var(--pink); font-size: .72rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.sponsor-partnership p { margin: 5px 0 0; color: var(--ink); font-family: var(--serif); font-size: clamp(1.3rem, 3vw, 2rem); line-height: 1.1; }
.sponsor-partnership .button { flex: none; }

.coming-section {
  margin-bottom: clamp(80px, 11vw, 150px);
  padding: clamp(60px, 9vw, 120px) clamp(28px, 8vw, 105px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 20%, rgba(166, 96, 255, .14), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(255, 115, 211, .16), transparent 32%),
    var(--panel);
  text-align: center;
}

.coming-section h2 { max-width: 900px; margin-inline: auto; }
.coming-section > p:last-child { margin: 28px auto 0; }

.artist-footer {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0 36px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.artist-footer > div { display: flex; flex-direction: column; }
.artist-footer > div strong { font-family: var(--serif); font-size: 1.15rem; }
.artist-footer > div span { color: var(--muted); font-size: .78rem; }
.tnp-mark {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .75;
  transition: opacity .15s ease;
}
.tnp-mark:hover { opacity: 1; }

.artist-footer .ai-note { grid-column: 1 / -1; width: 100%; }
.artist-footer .ai-note a { min-height: 44px; display: inline-flex; align-items: center; }

@media (max-width: 980px) {
  .artist-hero { grid-template-columns: 1fr .8fr; gap: 38px; }
  h1 { font-size: clamp(3.2rem, 9vw, 6rem); }
  .gift-section { grid-template-columns: 1fr .65fr; padding-inline: 38px; gap: 48px; }
  .milestones { grid-template-columns: repeat(2, 1fr); }
  .milestones article:nth-child(2) { border-right: 0; }
  .milestones article:nth-child(n + 3) { border-top: 1px solid rgba(7, 7, 11, .18); }
  .story-heading { grid-template-columns: 1fr; }
  .story-heading > p:last-child { margin-top: 24px; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .site-nav { min-height: 78px; }
  .site-nav nav a:first-child { display: none; }
  .artist-hero {
    min-height: auto;
    padding-top: 52px;
    grid-template-columns: 1fr;
  }
  .hero-copy { order: 1; }
  .hero-portrait { order: 2; width: min(100%, 560px); border-radius: 24px; transform: none; }
  .gallery-heading { grid-template-columns: 1fr; }
  .gallery-intro { max-width: 640px; }
  .gallery-card { height: clamp(230px, 70vw, 330px); border-radius: 20px; }
  .gallery-card img { border-radius: 14px; }
  h1 { font-size: clamp(3.35rem, 16vw, 6rem); }
  .gift-section { grid-template-columns: 1fr; padding: 72px 24px 38px; }
  .gift-copy { order: 1; }
  .video-shell { order: 2; width: min(100%, 390px); }
  .gift-actions .button { width: 100%; }
  .simple-guide { grid-template-columns: 1fr; }
  .iphone-note { grid-column: 1; margin-top: 10px; }
  .archive-section { grid-template-columns: 1fr; }
  .archive-art { width: min(78vw, 370px); }
  .archive-copy { text-align: center; }
  .archive-copy > p { margin-inline: auto; }
  .sponsor-heading { grid-template-columns: 1fr; }
  .sponsor-heading .eyebrow { grid-column: 1; }
  .sponsor-heading > p:last-child { margin-top: 8px; }
  .sponsor-partnership { align-items: stretch; flex-direction: column; }
  .sponsor-partnership .button { width: 100%; }
  .artist-footer { grid-template-columns: 1fr auto; }
  .artist-footer nav { grid-column: 1 / -1; grid-row: 2; flex-wrap: wrap; }
  .tnp-mark { grid-column: 2; grid-row: 1; }
}

@media (max-width: 520px) {
  .site-nav,
  main > section,
  .artist-footer { width: min(100% - 28px, 1280px); }
  .site-nav { gap: 10px; }
  .site-nav nav,
  .artist-footer nav { gap: 10px; }
  .site-nav nav { gap: 6px; }
  .wordmark { font-size: .88rem; }
  .site-nav nav a { font-size: .78rem; }
  h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  h2 { font-size: clamp(2.4rem, 13vw, 4rem); }
  .hero-lead { margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .gallery-heading,
  .gallery-caption { width: calc(100% - 28px); }
  .gallery-card { height: 252px; padding: 5px; }
  .gallery-set { gap: 12px; padding-right: 12px; }
  .gallery-reel + .gallery-reel { margin-top: 12px; }
  .gift-section { width: calc(100% - 14px); padding-inline: 18px; border-radius: 22px; }
  .guide-steps li { grid-template-columns: 46px 1fr; gap: 14px; padding: 19px 16px; }
  .guide-steps li > span { width: 42px; height: 42px; }
  .artist-story { width: calc(100% - 14px); padding-inline: 20px; }
  .milestones { grid-template-columns: 1fr; }
  .milestones article,
  .milestones article:not(:first-child) { min-height: 0; padding: 24px 0; border-right: 0; border-top: 1px solid rgba(7, 7, 11, .18); }
  .milestones article:first-child { border-top: 0; }
  .coming-section { width: calc(100% - 14px); padding-inline: 20px; }
  .sponsor-strip { height: 108px; }
  .sponsor-partnership { padding: 20px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .hero-portrait, .archive-art { transform: none; }
  .sponsor-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .sponsor-track { animation: none !important; }
  .sponsor-track picture + picture { display: none; }
  .gallery-reel { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .gallery-track { animation: none !important; }
  .gallery-set[aria-hidden="true"] { display: none; }
}
