:root {
  color-scheme: light;
  --ink: #17203f;
  --ink-soft: #576073;
  --cream: #f7f0e3;
  --paper: #fffdf8;
  --mint: #d9eee9;
  --teal: #108f85;
  --pink: #ec4d83;
  --yellow: #f5bf22;
  --purple: #5e457e;
  --line: rgba(23, 32, 63, 0.16);
  --shadow: 0 28px 70px rgba(45, 43, 54, 0.13);
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

body::selection { color: #fff; background: var(--teal); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { cursor: pointer; }
button,
input,
textarea,
select { font: inherit; }

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 300;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  transform: translateY(-180%);
}

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

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 76px;
  padding: 0.7rem 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.91);
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; align-items: center; gap: 0.85rem; }

.brand img {
  width: 90px;
  height: 48px;
  object-fit: contain;
}

.brand > span {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.55rem;
  padding-left: 0.85rem;
  border-left: 1px solid var(--line);
}

.brand b {
  color: var(--teal);
  font: 900 1.65rem/1 Impact, "Arial Black", sans-serif;
}

.brand small {
  max-width: 8ch;
  color: var(--ink-soft);
  font: 900 0.56rem/1.15 "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: 0.8rem; }

.site-nav a {
  position: relative;
  padding: 0.62rem 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transform: rotate(-1deg);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.site-nav a:nth-child(2) { background: var(--mint); transform: rotate(1deg); }
.site-nav a:nth-child(3) { color: #fff; background: var(--pink); transform: rotate(-0.5deg); }

.site-nav a::after {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  filter: saturate(1.15);
  transform: translate(-2px, -2px) rotate(0);
}

/* Shared typography */
.edition-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.4rem;
  color: var(--teal);
  font: 900 0.65rem/1 "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.edition-label span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 23px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
  letter-spacing: 0;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.58rem 0.9rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--pink);
  font: 900 0.65rem/1 "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

/* Figure gallery */
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(600px, 1.28fr);
  gap: clamp(2.5rem, 5vw, 7rem);
  align-items: center;
  min-height: max(900px, 100svh);
  padding: 8.5rem 4vw 4rem;
  background:
    linear-gradient(112deg, transparent 0 62%, rgba(16, 143, 133, 0.08) 62% 100%),
    radial-gradient(circle at 13% 76%, rgba(245, 191, 34, 0.14), transparent 22%),
    var(--cream);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21%;
  width: 9px;
  height: 37%;
  background: var(--teal);
}

.hero::after {
  content: "";
  position: absolute;
  right: 1.5vw;
  bottom: 8%;
  z-index: -1;
  width: 170px;
  height: 130px;
  opacity: 0.14;
  background: radial-gradient(circle, var(--ink) 0 2px, transparent 2.5px) 0 0 / 13px 13px;
  transform: rotate(-6deg);
}

.hero-copy { position: relative; z-index: 4; max-width: 580px; }

.hero-copy h1,
.section-heading h2,
.anniversary-copy h2 {
  margin: 0;
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.0em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 7ch;
  color: var(--ink);
  font-size: clamp(4.7rem, 7.3vw, 8.2rem);
  line-height: 0.89;
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: 72%;
  height: 12px;
  margin-top: 1.2rem;
  background: linear-gradient(90deg, var(--teal) 0 58%, var(--pink) 58% 82%, var(--yellow) 82%);
  transform: skewX(-18deg);
}

.hero-intro {
  max-width: 35rem;
  margin: 1.7rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  font-weight: 650;
  line-height: 1.65;
}

.hero-intro p { margin: 0 0 0.9rem; }
.hero-intro p:first-child { color: var(--ink); font-weight: 900; }
.hero-intro p:last-child { margin-bottom: 0; }

.hero-confetti i { position: absolute; z-index: -1; pointer-events: none; }
.hero-confetti { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-confetti i:nth-child(1) { left: 41%; top: 22%; width: 17px; height: 17px; border: 4px solid var(--pink); transform: rotate(22deg); }
.hero-confetti i:nth-child(2) { left: 45%; bottom: 17%; width: 34px; height: 7px; background: var(--yellow); transform: rotate(-36deg); }
.hero-confetti i:nth-child(3) { right: 3%; top: 22%; width: 0; height: 0; border-left: 12px solid transparent; border-right: 12px solid transparent; border-bottom: 21px solid var(--purple); transform: rotate(25deg); }
.hero-confetti i:nth-child(4) { left: 2.5%; bottom: 15%; width: 24px; height: 6px; background: var(--pink); transform: rotate(41deg); }

.figure-gallery {
  position: relative;
  z-index: 3;
  min-width: 0;
  width: min(850px, 100%);
  justify-self: end;
}

.gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.6rem 0.65rem;
  color: var(--ink-soft);
  font: 900 0.62rem/1 "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-head small { color: var(--teal); font: inherit; }

.figure-stage {
  position: relative;
  height: min(67vh, 650px);
  min-height: 570px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  touch-action: pan-y;
}

.figure-stage::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 8%;
  bottom: 18%;
  height: 48%;
  border-radius: 44% 56% 48% 52%;
  background: rgba(16, 143, 133, 0.14);
  transform: skewX(-8deg) rotate(-2deg);
}

.figure-stage::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 7%;
  width: 150px;
  height: 120px;
  opacity: 0.2;
  background: radial-gradient(circle, var(--purple) 0 2px, transparent 2.5px) 0 0 / 14px 14px;
  transform: rotate(7deg);
}

.figure-track { position: absolute; inset: 0; }

.figure-slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(430px, 56vw);
  height: calc(100% - 2.3rem);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.78);
  transition:
    opacity 380ms ease,
    transform 380ms cubic-bezier(0.22, 0.75, 0.25, 1),
    filter 380ms ease;
  pointer-events: none;
}

.figure-slide.is-active {
  z-index: 4;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.figure-slide.is-prev {
  z-index: 2;
  opacity: 0.3;
  visibility: visible;
  transform: translate(-118%, -50%) scale(0.82) rotate(-1.5deg);
  filter: saturate(0.72);
  pointer-events: auto;
}

.figure-slide.is-next {
  z-index: 2;
  opacity: 0.3;
  visibility: visible;
  transform: translate(18%, -50%) scale(0.82) rotate(1.5deg);
  filter: saturate(0.72);
  pointer-events: auto;
}

.figure-media {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.figure-media:not(:disabled) { cursor: zoom-in; }
.figure-slide:not(.is-active) .figure-media { cursor: pointer; }

.figure-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 20px rgba(23, 32, 63, 0.16));
  transition: opacity 240ms ease, transform 240ms ease;
}

.figure-media img.is-changing { opacity: 0; transform: translateX(12px); }

.new-badge {
  position: absolute;
  right: 7%;
  top: 5%;
  display: grid;
  place-items: center;
  min-width: 58px;
  min-height: 58px;
  padding: 0.5rem;
  color: var(--ink);
  background: var(--yellow);
  clip-path: polygon(50% 0, 61% 13%, 78% 6%, 82% 23%, 100% 26%, 90% 43%, 100% 57%, 84% 66%, 85% 84%, 66% 82%, 56% 100%, 43% 87%, 26% 96%, 22% 77%, 4% 73%, 13% 56%, 0 43%, 17% 32%, 14% 13%, 34% 15%);
  font: 900 0.72rem/1 Impact, sans-serif;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.gallery-starburst {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--pink);
  clip-path: polygon(50% 0, 60% 16%, 78% 7%, 82% 26%, 100% 31%, 87% 47%, 98% 64%, 78% 68%, 73% 89%, 56% 79%, 42% 100%, 31% 80%, 10% 87%, 14% 65%, 0 53%, 17% 41%, 4% 22%, 26% 22%, 32% 3%);
  font: 900 0.7rem/0.85 Impact, sans-serif;
  text-align: center;
  transform: rotate(-6deg);
}

.figure-placeholder {
  display: grid;
  place-content: center;
  justify-items: center;
  width: 90%;
  height: 90%;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  color: var(--ink);
  background:
    radial-gradient(circle, rgba(23, 32, 63, 0.15) 0 1.5px, transparent 2px) 0 0 / 15px 15px,
    var(--mint);
  text-align: center;
}

.figure-placeholder span { color: var(--pink); font: 900 0.75rem/1 "Arial Narrow", Arial, sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }
.figure-placeholder strong { max-width: 9ch; margin-top: 1rem; font: 900 clamp(2.5rem, 5vw, 4.2rem)/0.9 Impact, sans-serif; text-transform: uppercase; }
.figure-placeholder small { margin-top: 1rem; color: var(--teal); font-size: 0.75rem; font-weight: 900; }

.figure-caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0.5rem 0;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.caption-copy { display: grid; grid-template-columns: minmax(0, auto) 1fr; grid-template-rows: auto auto; align-items: center; column-gap: 0.8rem; row-gap: 0.35rem; min-width: 0; }
.caption-copy small { justify-self: start; padding: 0.4rem 0.65rem; border-radius: 999px; color: #fff; background: var(--teal); font: 900 0.58rem/1 "Arial Narrow", Arial, sans-serif; letter-spacing: 0.06em; text-transform: uppercase; }
.caption-copy strong { grid-column: 1; grid-row: 2; overflow: hidden; color: var(--ink); font-size: 1.05rem; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.caption-copy span { grid-column: 2; grid-row: 1 / 3; justify-self: end; color: var(--pink); font: 900 0.65rem/1 "Arial Narrow", Arial, sans-serif; }

.side-toggle { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.side-toggle button { min-height: 46px; border: 2px solid var(--ink); border-radius: 999px; padding: 0.6rem 1.05rem; color: var(--ink); background: var(--mint); box-shadow: 4px 4px 0 var(--ink); font-size: 0.68rem; font-weight: 900; text-transform: uppercase; }
.side-toggle button:last-child { background: var(--yellow); }
.side-toggle button[aria-pressed="true"] { color: #fff; background: var(--pink); transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.side-toggle button:disabled { opacity: 0.38; cursor: not-allowed; }

.fake-shop {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 0.7rem;
  margin: 0.8rem 0.5rem 0;
}

.fake-cart-button {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 0.55rem 1.15rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.fake-cart-button span { font-size: 0.64rem; font-weight: 900; letter-spacing: 0.025em; text-transform: uppercase; }
.fake-cart-button:hover,
.fake-cart-button:focus-visible { background: var(--mint); box-shadow: 4px 4px 0 var(--ink); transform: translate(-1px, -1px); }
.fake-cart-button:disabled { color: var(--ink-soft); background: #ded9d0; box-shadow: 3px 3px 0 var(--ink-soft); cursor: not-allowed; transform: none; }

.mini-cart {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 1fr auto;
  align-items: center;
  column-gap: 0.7rem;
  min-width: 132px;
  min-height: 48px;
  padding: 0.48rem 1rem 0.45rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  box-shadow: 3px 3px 0 var(--ink);
}

.mini-cart-icon {
  position: relative;
  grid-row: 1 / 3;
  width: 28px;
  height: 19px;
  border: 3px solid var(--ink);
  border-top: 0;
  transform: skew(-8deg);
}

.mini-cart-icon::before { content: ""; position: absolute; left: -7px; top: -7px; width: 11px; height: 8px; border-top: 3px solid var(--ink); }
.mini-cart-icon::after { content: ""; position: absolute; left: 3px; bottom: -8px; width: 5px; height: 5px; border-radius: 50%; background: var(--ink); box-shadow: 14px 0 0 var(--ink); }
.mini-cart strong { align-self: end; font: 900 1.3rem/1 Impact, "Arial Black", sans-serif; }
.mini-cart small { align-self: start; font-size: 0.48rem; font-weight: 900; line-height: 1; text-transform: uppercase; }
.mini-cart.is-bumping { animation: cartBump 420ms cubic-bezier(0.2, 0.9, 0.25, 1.35); }
@keyframes cartBump { 45% { transform: rotate(3deg) scale(1.12); } }

.gallery-controls {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 0.8rem;
  margin: 0.8rem 0.5rem 0;
}

.gallery-arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid var(--ink);
  border-radius: 46% 54% 58% 42%;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 1.4rem;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible { color: #fff; background: var(--pink); box-shadow: 6px 6px 0 var(--ink); transform: translate(-2px, -2px) rotate(-3deg); }

.gallery-dots { display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.gallery-dots button { width: 13px; height: 13px; border: 2px solid var(--ink); border-radius: 50%; padding: 0; background: var(--mint); transition: transform 180ms ease, background 180ms ease; }
.gallery-dots button:nth-child(2n) { border-radius: 2px; background: var(--yellow); transform: rotate(45deg) scale(0.8); }
.gallery-dots button:nth-child(3n) { background: var(--pink); }
.gallery-dots button.is-active { background: var(--teal); transform: scale(1.35) rotate(0); }

.autoplay-line { border-radius: 2px; height: 8px; margin: 0.85rem 0.5rem 0; background: rgba(23, 32, 63, 0.1); overflow: hidden; }
.autoplay-line span { display: block; width: 100%; height: 100%; background: var(--pink); transform: scaleX(0); transform-origin: left; }
.figure-gallery.is-running [data-figure-progress] { animation: figureProgress 6s linear forwards; }
.card-gallery.is-running [data-card-progress] { animation: cardProgress 4.5s linear forwards; }
@keyframes figureProgress { to { transform: scaleX(1); } }
@keyframes cardProgress { to { transform: scaleX(1); } }

/* Trading cards */
.cards-section {
  position: relative;
  padding: 7rem 4vw 7.5rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(125deg, transparent 0 66%, rgba(255, 255, 255, 0.48) 66%),
    var(--mint);
  overflow: hidden;
}

.cards-section::before {
  content: "";
  position: absolute;
  left: 3vw;
  bottom: 10%;
  width: 150px;
  height: 110px;
  opacity: 0.16;
  background: radial-gradient(circle, var(--teal) 0 2px, transparent 2.5px) 0 0 / 13px 13px;
  transform: rotate(4deg);
}

.section-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(280px, 0.62fr);
  gap: 4rem;
  align-items: end;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.section-heading h2 { color: var(--ink); font-size: clamp(4rem, 7vw, 7rem); line-height: 0.82; }
.section-heading > p { max-width: 35rem; margin: 0 0 0.5rem; padding-left: 1rem; border-left: 4px solid var(--pink); color: var(--ink-soft); font-weight: 650; line-height: 1.6; }

.card-gallery { position: relative; z-index: 2; width: min(1280px, 100%); margin: 3.2rem auto 0; }

.card-stage {
  position: relative;
  height: 590px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  touch-action: pan-y;
}

.card-stage::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 18%;
  bottom: 14%;
  border-radius: 50%;
  background: rgba(245, 191, 34, 0.22);
  transform: rotate(-3deg);
}

.card-stage::after {
  content: "";
  position: absolute;
  left: 8%;
  bottom: 10%;
  width: 130px;
  height: 100px;
  opacity: 0.18;
  background: radial-gradient(circle, var(--teal) 0 2px, transparent 2.5px) 0 0 / 13px 13px;
}

.collectible-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(340px, 30vw);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.78);
  transition:
    opacity 360ms ease,
    transform 360ms cubic-bezier(0.22, 0.75, 0.25, 1),
    filter 360ms ease;
  pointer-events: none;
}

.collectible-card.is-active { z-index: 4; opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); pointer-events: auto; }
.collectible-card.is-prev { z-index: 2; opacity: 0.42; visibility: visible; transform: translate(-135%, -50%) scale(0.84) rotate(-2deg); filter: saturate(0.7); pointer-events: auto; }
.collectible-card.is-next { z-index: 2; opacity: 0.42; visibility: visible; transform: translate(35%, -50%) scale(0.84) rotate(2deg); filter: saturate(0.7); pointer-events: auto; }

.card-media { position: relative; display: block; width: 100%; border: 0; padding: 0; color: var(--ink); background: transparent; }
.card-media img { display: block; width: 100%; aspect-ratio: 4 / 5; border: 1px solid var(--line); border-radius: 18px; object-fit: cover; box-shadow: 0 20px 34px rgba(23, 32, 63, 0.16); }
.card-media > span { position: absolute; inset: auto 0 0; display: grid; gap: 0.18rem; padding: 2.6rem 1rem 0.9rem; border-radius: 0 0 18px 18px; color: #fff; background: linear-gradient(transparent, rgba(23, 32, 63, 0.88)); text-align: left; }
.card-media small { color: var(--yellow); font: 900 0.6rem/1 "Arial Narrow", Arial, sans-serif; }
.card-media strong { overflow: hidden; font-size: 0.72rem; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.collectible-card:not(.is-active) .card-media { cursor: pointer; }

.card-gallery-footer {
  display: grid;
  grid-template-columns: 52px minmax(170px, 0.4fr) minmax(160px, 1fr) 52px;
  align-items: center;
  gap: 1rem;
  margin: 1.2rem 0.5rem 0;
}

.card-readout { display: grid; min-width: 0; }
.card-readout small { color: var(--teal); font: 900 0.58rem/1 "Arial Narrow", Arial, sans-serif; text-transform: uppercase; }
.card-readout strong { overflow: hidden; margin-top: 0.25rem; font-size: 0.75rem; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.card-progress { margin-inline: 0.5rem; }

/* Anniversary */
.anniversary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(420px, 1fr) minmax(230px, 0.45fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  min-height: 650px;
  padding: 6rem 6vw;
  color: var(--ink);
  background: var(--paper);
  overflow: hidden;
}

.anniversary::after { content: ""; position: absolute; right: -80px; top: -100px; width: 310px; height: 310px; border: 55px solid var(--mint); border-radius: 50%; opacity: 0.7; }

.anniversary-mark {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font: 900 clamp(9rem, 20vw, 19rem)/0.72 Impact, sans-serif;
  letter-spacing: -0.06em;
  text-shadow: 8px 8px 0 var(--pink), -8px -8px 0 var(--mint);
}

.anniversary-copy { position: relative; z-index: 1; }
.anniversary-copy h2 { max-width: 13ch; font-size: clamp(3.2rem, 5.2vw, 5.6rem); line-height: 0.88; }
.anniversary-copy > p:last-child { max-width: 42rem; margin: 1.6rem 0 0; color: var(--ink-soft); font-weight: 650; line-height: 1.65; }

.anniversary-years { position: relative; z-index: 1; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0.6rem; font: 900 1.1rem/1 Impact, sans-serif; transform: rotate(-2deg); }
.anniversary-years i { height: 4px; background: var(--teal); }
.anniversary-years b { grid-column: 2; padding: 0.8rem 1rem; color: var(--ink); background: var(--yellow); font-size: 2.4rem; text-align: center; }

/* Lightbox */
.has-lightbox { overflow: hidden; }
.media-lightbox { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; border: 0; padding: clamp(0.75rem, 3vw, 2rem); color: var(--ink); background: transparent; }
.media-lightbox::backdrop { background: rgba(23, 32, 63, 0.72); backdrop-filter: blur(9px); }
.media-lightbox-panel { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; gap: 0.8rem; width: min(960px, 100%); height: 100%; margin: auto; padding: 1rem; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); box-shadow: 0 35px 100px rgba(23, 32, 63, 0.34); }
.media-lightbox-panel > header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.media-lightbox-panel header p { margin: 0; color: var(--teal); font: 900 0.6rem/1 "Arial Narrow", Arial, sans-serif; text-transform: uppercase; }
.media-lightbox-panel header h2 { margin: 0.25rem 0 0; font: 900 1.8rem/1 Impact, sans-serif; text-transform: uppercase; }
.media-lightbox-panel header button { width: 44px; height: 44px; border: 1px solid var(--ink); border-radius: 50%; color: var(--ink); background: var(--yellow); font-size: 1.8rem; line-height: 1; }
.media-lightbox-stage { display: grid; place-items: start center; min-height: 0; overflow: auto; }
.media-lightbox-stage img { display: block; width: auto; max-width: 100%; height: auto; margin: 0 auto; object-fit: contain; }
.media-lightbox-controls { display: flex; justify-content: center; gap: 0.5rem; }
.media-lightbox-controls button { min-height: 40px; padding: 0.55rem 1rem; border: 2px solid var(--ink); border-radius: 999px; color: var(--ink); background: var(--yellow); box-shadow: 3px 3px 0 var(--ink); font-size: 0.68rem; font-weight: 900; text-transform: uppercase; }
.media-lightbox-controls button:nth-child(2) { background: var(--mint); }
.media-lightbox-controls button[aria-pressed="true"] { color: #fff; background: var(--pink); }
.media-lightbox-controls button:disabled { opacity: 0.35; cursor: not-allowed; }

/* Fake checkout */
.order-dialog {
  width: min(540px, calc(100% - 2rem));
  max-width: none;
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  overflow: visible;
}

.order-dialog::backdrop { background: rgba(23, 32, 63, 0.58); backdrop-filter: blur(7px); }
.order-dialog-panel {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: clamp(2.2rem, 7vw, 4rem) clamp(1.3rem, 6vw, 3.3rem);
  border: 3px solid var(--ink);
  border-radius: 34px 22px 38px 26px;
  background:
    radial-gradient(circle, rgba(23, 32, 63, 0.11) 0 1.5px, transparent 2px) right 20px top 22px / 15px 15px no-repeat,
    var(--paper);
  box-shadow: 12px 12px 0 var(--teal), 18px 18px 0 var(--pink);
  text-align: center;
}

.order-dialog-close {
  position: absolute;
  z-index: 2;
  right: 1rem;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 1.65rem;
  line-height: 1;
}

.order-processing,
.order-result { width: 100%; }
.order-sticker,
.order-error-badge { display: inline-block; padding: 0.48rem 0.85rem; border: 2px solid var(--ink); color: #fff; background: var(--teal); box-shadow: 3px 3px 0 var(--ink); font-size: 0.62rem; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; transform: rotate(-3deg); }
.order-processing h2,
.order-result h2 { max-width: 13ch; margin: 1.4rem auto; font: 900 clamp(2rem, 7vw, 3.2rem)/0.95 Impact, "Arial Black", sans-serif; text-transform: uppercase; }
.order-processing > small { display: block; margin-top: 0.85rem; color: var(--ink-soft); font-size: 0.62rem; font-weight: 800; }
.order-progress { height: 22px; padding: 3px; border: 2px solid var(--ink); border-radius: 999px; background: var(--mint); overflow: hidden; }
.order-progress span { display: block; width: 100%; height: 100%; border-radius: inherit; background: repeating-linear-gradient(135deg, var(--pink) 0 12px, var(--yellow) 12px 24px); transform: scaleX(0.03); transform-origin: left; }
.order-dialog.is-processing .order-progress span { animation: orderLoading 1.8s steps(12, end) forwards; }
@keyframes orderLoading { 35% { transform: scaleX(0.31); } 68% { transform: scaleX(0.73); } 100% { transform: scaleX(1); } }
.order-error-badge { border-radius: 50%; padding: 0.9rem 0.65rem; color: var(--ink); background: var(--yellow); transform: rotate(7deg); }
.order-result h2 { max-width: 15ch; font-family: Arial, Helvetica, sans-serif; font-size: clamp(1.6rem, 6vw, 2.4rem); line-height: 1.08; text-transform: none; }
.order-result button { min-height: 48px; padding: 0.65rem 1.25rem; border: 2px solid var(--ink); border-radius: 999px; color: #fff; background: var(--pink); box-shadow: 4px 4px 0 var(--ink); font-size: 0.7rem; font-weight: 900; text-transform: uppercase; }
.order-result button:hover,
.order-result button:focus-visible { background: var(--teal); transform: translate(-1px, -1px); }
.order-dialog [hidden] { display: none !important; }

.site-footer { display: flex; align-items: center; justify-content: center; gap: 1.5rem; min-height: 130px; padding: 2rem 5vw; border-top: 1px solid var(--line); color: var(--ink-soft); background: var(--cream); font-size: 0.72rem; font-weight: 800; text-align: center; }
.site-footer img { width: 145px; max-height: 42px; object-fit: contain; }
.site-footer a { padding: 0.55rem 0.8rem; border: 2px solid var(--ink); border-radius: 999px; color: var(--ink); background: var(--yellow); box-shadow: 3px 3px 0 var(--ink); text-transform: uppercase; }

@media (max-width: 1100px) {
  .hero { grid-template-columns: minmax(280px, 0.65fr) minmax(500px, 1.2fr); gap: 2rem; }
  .hero-copy h1 { font-size: clamp(4.2rem, 7.4vw, 6.5rem); }
  .figure-stage { min-height: 540px; }
  .figure-slide { width: min(390px, 54vw); }
  .anniversary { grid-template-columns: 0.5fr 1fr; }
  .anniversary-years { grid-column: 2; width: min(320px, 100%); }
}

@media (max-width: 820px) {
  .hero { display: block; padding-top: 7.5rem; }
  .hero-copy { max-width: 680px; margin: 0 auto 3rem; }
  .hero-copy h1 { max-width: 8ch; }
  .figure-gallery { margin: 0 auto; }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-heading > p { max-width: 42rem; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 68px; }
  .site-header { min-height: 68px; padding: 0.45rem 0.7rem; }
  .brand { flex: 0 0 56px; }
  .brand img { width: 56px; height: 38px; }
  .brand > span { display: none; }
  .site-nav { gap: 0.35rem; }
  .site-nav a { padding: 0.55rem 0.58rem; box-shadow: 3px 3px 0 var(--ink); font-size: 0.53rem; }

  .hero { min-height: auto; padding: 6.5rem 0.8rem 4.5rem; }
  .hero::before { top: 16%; width: 5px; height: 26%; }
  .hero::after { display: none; }
  .hero-copy { margin-bottom: 2.5rem; padding-inline: 0.3rem; }
  .edition-label { margin-bottom: 1rem; font-size: 0.56rem; }
  .eyebrow { font-size: 0.57rem; }
  .hero-copy h1 { font-size: clamp(3.65rem, 18vw, 5.2rem); }
  .hero-copy h1::after { height: 8px; margin-top: 0.9rem; }
  .hero-intro { margin-top: 1.25rem; font-size: 0.9rem; line-height: 1.52; }
  .gallery-head { font-size: 0.54rem; }
  .gallery-head small { display: none; }
  .figure-stage { height: 565px; min-height: 0; border-radius: 24px; }
  .figure-slide { width: min(84vw, 390px); height: calc(100% - 1.2rem); }
  .figure-slide.is-prev { transform: translate(-130%, -50%) scale(0.82); opacity: 0.22; }
  .figure-slide.is-next { transform: translate(30%, -50%) scale(0.82); opacity: 0.22; }
  .gallery-starburst { right: 0.7rem; bottom: 0.7rem; width: 48px; height: 48px; }
  .figure-placeholder { border-radius: 20px; }

  .figure-caption { grid-template-columns: 1fr; gap: 0.7rem; margin-inline: 0.25rem; }
  .side-toggle { width: 100%; }
  .fake-shop { display: grid; grid-template-columns: minmax(0, 1fr) auto; margin-inline: 0.25rem; }
  .fake-cart-button { min-width: 0; padding-inline: 1rem; }
  .mini-cart { min-width: 116px; padding-inline: 0.8rem; }
  .gallery-controls { margin-inline: 0.25rem; }
  .autoplay-line { margin-inline: 0.25rem; }

  .cards-section { padding: 4.5rem 0.8rem 5rem; }
  .section-heading { padding-inline: 0.3rem; }
  .section-heading h2 { font-size: clamp(3rem, 13.5vw, 4.2rem); letter-spacing: -0.035em; }
  .section-heading > p { font-size: 0.9rem; line-height: 1.5; }
  .card-gallery { margin-top: 2rem; }
  .card-stage { height: 500px; border-radius: 24px; }
  .collectible-card { width: min(72vw, 305px); }
  .collectible-card.is-prev { transform: translate(-132%, -50%) scale(0.82); opacity: 0.28; }
  .collectible-card.is-next { transform: translate(32%, -50%) scale(0.82); opacity: 0.28; }
  .card-gallery-footer { grid-template-columns: 52px minmax(0, 1fr) 52px; gap: 0.7rem; margin-inline: 0.25rem; }
  .card-readout { grid-column: 2; grid-row: 1; text-align: center; }
  .card-gallery-footer .gallery-dots { grid-column: 1 / -1; grid-row: 2; }
  .card-gallery-footer > .gallery-arrow:last-child { grid-column: 3; grid-row: 1; }

  .anniversary { display: block; min-height: auto; padding: 5rem 1.1rem; }
  .anniversary-mark { font-size: 12rem; }
  .anniversary-copy { margin-top: 2.5rem; }
  .anniversary-copy h2 { font-size: clamp(3.1rem, 14vw, 4.4rem); }
  .anniversary-copy > p:last-child { font-size: 0.9rem; line-height: 1.55; }
  .anniversary-years { width: min(290px, 100%); margin-top: 2.5rem; }

  .media-lightbox-panel { padding: 0.7rem; border-radius: 16px; }
  .media-lightbox-panel header p { display: none; }
  .media-lightbox-panel header h2 { font-size: 1.3rem; }
  .media-lightbox-controls { display: grid; grid-template-columns: repeat(2, 1fr); }

  .order-dialog { width: calc(100% - 1.4rem); }
  .order-dialog-panel { min-height: 280px; border-radius: 24px 18px 28px 20px; box-shadow: 7px 7px 0 var(--teal), 11px 11px 0 var(--pink); }
  .order-dialog-close { right: 0.75rem; top: 0.75rem; }

  .site-footer { flex-direction: column; gap: 0.8rem; padding-inline: 1rem; }
}

@media (max-width: 390px) {
  .site-nav { gap: 0.25rem; }
  .site-nav a { padding-inline: 0.48rem; font-size: 0.49rem; }
  .figure-stage { height: 520px; }
  .fake-shop { gap: 0.5rem; }
  .fake-cart-button span { font-size: 0.62rem; }
  .mini-cart { min-width: 105px; column-gap: 0.55rem; }
  .mini-cart-icon { width: 24px; }
  .card-stage { height: 460px; }
}

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