/* ============================================================
   KINKLA — Drop 001 · Giorgi Kinkladze tribute merch
   Palette + type drawn from the 1995–98 Maine Road era:
   laser-blue Umbro kit, navy "brother" wordmark, washed tees,
   gold scribbled crown from the black tee's chest print.
   ============================================================ */

:root {
  --laser: #92c4e4;      /* 95/96 kit sky */
  --laser-deep: #6ba8cf;
  --navy: #141d36;       /* brother wordmark navy */
  --ink: #0a0a0c;        /* mockup-shot black */
  --stone: #ebe7dd;      /* washed stone tee */
  --stone-deep: #ddd8ca;
  --chalk: #f6f4ee;
  --gold: #c7a55b;       /* crown scribble gold */
  --gold-deep: #97762e;  /* readable gold for text on light backgrounds */

  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-stencil: "Big Shoulders Stencil Display", "Big Shoulders Display", sans-serif;
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --wrap: 1180px;
  --radius: 4px;
  --shadow-card: 0 18px 40px -18px rgba(10, 10, 12, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--stone);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--laser-deep);
  outline-offset: 3px;
}

.wrap {
  width: min(var(--wrap), calc(100% - 3rem));
  margin-inline: auto;
}

/* ---------- type utilities ---------- */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 2px;
  background: currentColor;
  opacity: 0.55;
}

.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* ============================================================
   Ticker
   ============================================================ */

.ticker {
  background: var(--laser);
  color: var(--navy);
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 29, 54, 0.25);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-roll 30s linear infinite;
}

.ticker-track ul {
  display: flex;
  list-style: none;
  align-items: center;
}

.ticker-track li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.55rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.ticker-track li::after {
  content: "✦";
  font-size: 0.65rem;
  opacity: 0.7;
}

@keyframes ticker-roll {
  to { transform: translateX(-50%); }
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--chalk);
  border-bottom: 1px solid rgba(246, 244, 238, 0.12);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.brand .crown { color: var(--gold); flex-shrink: 0; }

.brand small {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--laser);
  align-self: flex-end;
  padding-bottom: 0.2rem;
}

.site-nav {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
}

.site-nav a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.82;
  padding-block: 0.3rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
  border-bottom-color: var(--laser);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid rgba(246, 244, 238, 0.3);
  border-radius: var(--radius);
  color: var(--chalk);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--laser);
  color: var(--navy);
  border: 2px solid var(--laser);
  border-radius: var(--radius);
  padding: 0.9rem 1.7rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover { background: var(--chalk); border-color: var(--chalk); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--chalk);
  border-color: rgba(246, 244, 238, 0.4);
}

.btn-ghost:hover { background: transparent; border-color: var(--laser); color: var(--laser); }

.btn-dark {
  background: var(--ink);
  color: var(--chalk);
  border-color: var(--ink);
}

.btn-dark:hover { background: var(--navy); border-color: var(--navy); color: var(--chalk); }

.btn-small { padding: 0.55rem 1.1rem; font-size: 0.7rem; }

/* ============================================================
   Hero (home)
   ============================================================ */

.hero {
  background: var(--ink);
  color: var(--chalk);
  overflow: hidden;
  position: relative;
}

/* Right-side photo backdrop — Kinky celebrating in the ’96 kit.
   The box keeps the photo's exact aspect ratio, so the image height always
   equals the hero height; gradients on its left melt it into the ink. */
.hero-bg {
  position: absolute;
  top: 0;
  right: 8%;
  bottom: 0;
  width: auto;
  aspect-ratio: 2079 / 3000;
  background: url("../assets/photo-celebration.jpg") no-repeat right center / cover;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(10, 10, 12, 0.72) 24%, rgba(10, 10, 12, 0.12) 55%, rgba(10, 10, 12, 0.55) 84%, var(--ink) 100%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.5) 0%, rgba(10, 10, 12, 0.08) 32%, rgba(10, 10, 12, 0.08) 62%, var(--ink) 100%),
    linear-gradient(rgba(20, 29, 54, 0.28), rgba(20, 29, 54, 0.28));
}

.hero-bg .scrawl {
  position: absolute;
  top: 10%;
  right: 4%;
  width: 62%;
  color: rgba(246, 244, 238, 0.2);
}

.hero .wrap {
  position: relative;
  z-index: 2;
  padding-block: 5.5rem 6.5rem;
}

.hero-copy { max-width: 580px; }

.hero-copy .eyebrow { color: var(--gold); margin-bottom: 2rem; }

/* Signature: stacked two-tone wordmark, echoing the tee's back print */
.hero-title { line-height: 0.88; }

.hero-title .line {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-title .giorgi {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--gold);
  letter-spacing: 0.34em;
  margin-left: 0.25rem;
}

.hero-title .kinkladze {
  font-size: clamp(4.2rem, 10.5vw, 8.8rem);
  color: var(--laser);
  letter-spacing: 0.015em;
}

.hero-lede {
  max-width: 44ch;
  margin-top: 1.8rem;
  font-size: 1.02rem;
  color: rgba(246, 244, 238, 0.82);
}

.hero-lede strong { color: var(--chalk); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

/* countdown */
.countdown {
  display: flex;
  gap: 1.6rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(246, 244, 238, 0.15);
}

.countdown .seg { min-width: 3.2rem; }

.countdown .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--chalk);
  font-variant-numeric: tabular-nums;
}

.countdown .lab {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 244, 238, 0.55);
  margin-top: 0.35rem;
}

.countdown-note {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: center;
}

/* ============================================================
   Sections (shared)
   ============================================================ */

.section { padding-block: 5.5rem; }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.section-head .eyebrow { margin-bottom: 0.9rem; }

.section-head .aside-note {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  max-width: 24ch;
  text-align: right;
}

/* ============================================================
   Product cards
   ============================================================ */

.drop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.product-card {
  text-decoration: none;
  background: var(--chalk);
  border: 1px solid rgba(10, 10, 12, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.card-media {
  position: relative;
  aspect-ratio: 1;
  background: var(--ink);
  overflow: hidden;
}

.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.card-media .back { opacity: 0; }

.product-card:hover .card-media .back,
.product-card:focus-visible .card-media .back { opacity: 1; }

.card-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 0.35rem 0.65rem;
  border-radius: 2px;
}

.card-info { padding: 1.3rem 1.4rem 1.5rem; }

.card-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  text-transform: uppercase;
  line-height: 1;
}

.card-meta {
  font-size: 0.85rem;
  color: rgba(10, 10, 12, 0.6);
  margin-top: 0.45rem;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1rem;
}

.card-price em {
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--laser-deep);
}

/* ============================================================
   Story band (home)
   ============================================================ */

.story-band {
  background: var(--navy);
  color: var(--chalk);
}

.story-band .wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 5.5rem;
}

.duotone {
  position: relative;
  background: var(--laser);
  border-radius: var(--radius);
  overflow: hidden;
}

.duotone img {
  filter: grayscale(1) contrast(1.12) brightness(1.02);
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy .eyebrow { color: var(--laser); margin-bottom: 1.4rem; }

.story-copy h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.story-copy h2 span { color: var(--gold); }

.story-copy p {
  color: rgba(246, 244, 238, 0.82);
  max-width: 52ch;
  margin-bottom: 1rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: 2.6rem;
  margin: 2.2rem 0 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(246, 244, 238, 0.16);
}

.stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--laser);
}

.stat .lab {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 244, 238, 0.55);
  margin-top: 0.4rem;
  max-width: 12ch;
}

/* ============================================================
   Craft strip (home)
   ============================================================ */

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.craft-item {
  background: var(--chalk);
  border: 1px solid rgba(10, 10, 12, 0.12);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.8rem;
}

.craft-item .idx {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--laser-deep);
  display: block;
  margin-bottom: 1rem;
}

.craft-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.craft-item p { font-size: 0.88rem; color: rgba(10, 10, 12, 0.68); }

/* ============================================================
   How pre-order works
   ============================================================ */

.how { background: var(--ink); color: var(--chalk); }

.how .section-head h2 { color: var(--chalk); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}

.how-step {
  border: 1px solid rgba(246, 244, 238, 0.16);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem 2rem;
  position: relative;
}

.how-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.how-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.how-step p { font-size: 0.9rem; color: rgba(246, 244, 238, 0.72); }

.how-note {
  margin-top: 2.4rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--laser);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list { max-width: 780px; }

.faq-list details {
  border-bottom: 1px solid rgba(10, 10, 12, 0.18);
}

.faq-list summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  padding: 1.3rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--laser-deep);
  flex-shrink: 0;
}

.faq-list details[open] summary::after { content: "–"; }

.faq-list details p {
  padding-bottom: 1.4rem;
  max-width: 62ch;
  color: rgba(10, 10, 12, 0.72);
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--navy);
  color: var(--chalk);
  padding-top: 4rem;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--laser);
  margin-bottom: 1rem;
}

.footer-grid p { font-size: 0.88rem; color: rgba(246, 244, 238, 0.7); max-width: 34ch; }

.footer-grid ul { list-style: none; }

.footer-grid li { margin-bottom: 0.55rem; }

.footer-grid a {
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(246, 244, 238, 0.8);
}

.footer-grid a:hover { color: var(--laser); }

.footer-mark {
  font-family: var(--font-stencil);
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 11rem);
  line-height: 0.78;
  text-transform: uppercase;
  text-align: center;
  color: rgba(146, 196, 228, 0.16);
  letter-spacing: 0.04em;
  user-select: none;
}

.footer-legal {
  border-top: 1px solid rgba(246, 244, 238, 0.14);
  padding-block: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 244, 238, 0.5);
}

/* ============================================================
   Product page
   ============================================================ */

.crumbs {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-block: 1.4rem;
  color: rgba(10, 10, 12, 0.55);
}

.crumbs a { color: inherit; text-decoration: none; }

.crumbs a:hover { color: var(--ink); text-decoration: underline; }

.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: start;
  padding-bottom: 5rem;
}

/* gallery */
.gallery { position: sticky; top: 5.5rem; }

.gallery-main {
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumbs {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.thumb {
  width: 84px;
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  opacity: 0.65;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}

.thumb img { width: 100%; height: 100%; object-fit: cover; }

.thumb.is-active,
.thumb:hover { opacity: 1; border-color: var(--laser-deep); }

/* buy box */
.buy-box .eyebrow { color: var(--laser-deep); margin-bottom: 1.1rem; }

.buy-box h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.buy-box h1 .colorway { color: var(--laser-deep); display: block; font-size: 0.55em; letter-spacing: 0.08em; margin-top: 0.35rem; }

.price-line {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 1.4rem 0 1.2rem;
  font-family: var(--font-mono);
}

.price-line .price { font-size: 1.5rem; font-weight: 600; }

.price-line .badge {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--laser);
  padding: 0.4rem 0.7rem;
  border-radius: 2px;
}

.buy-lede { color: rgba(10, 10, 12, 0.72); max-width: 52ch; margin-bottom: 2rem; }

/* form */
.preorder-form fieldset { border: none; margin-bottom: 1.6rem; }

.preorder-form legend,
.field-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}

.field-label .hint,
.preorder-form legend .hint {
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(10, 10, 12, 0.5);
  text-transform: none;
}

.size-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.size-pills input { position: absolute; opacity: 0; pointer-events: none; }

.size-pills label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 3.4rem;
  text-align: center;
  padding: 0.7rem 0.9rem;
  border: 2px solid rgba(10, 10, 12, 0.25);
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--chalk);
  transition: border-color 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.size-pills label:hover { border-color: var(--ink); }

.size-pills input:checked + label {
  background: var(--ink);
  color: var(--laser);
  border-color: var(--ink);
}

.size-pills input:focus-visible + label {
  outline: 3px solid var(--laser-deep);
  outline-offset: 2px;
}

/* qty + text inputs */
.form-row { display: flex; gap: 1rem; margin-bottom: 1.4rem; }

.form-row > div { flex: 1; }

.qty-stepper {
  display: inline-flex;
  align-items: stretch;
  border: 2px solid rgba(10, 10, 12, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-stepper button {
  width: 3.4rem;
  height: 3.4rem;
  border: none;
  background: var(--chalk);
  font-family: var(--font-mono);
  font-size: 1.2rem;
  cursor: pointer;
}

.qty-stepper button:hover { background: var(--stone-deep); }

.qty-stepper input {
  width: 3.8rem;
  height: 3.4rem;
  text-align: center;
  border: none;
  border-inline: 2px solid rgba(10, 10, 12, 0.25);
  font-family: var(--font-mono);
  font-size: 1rem;
  background: var(--chalk);
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* personalisation add-on */
.addon-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.addon-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid rgba(10, 10, 12, 0.25);
  border-radius: var(--radius);
  background: var(--chalk);
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
}

.addon-option:hover { border-color: var(--ink); }

.addon-check {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  border: 2px solid rgba(10, 10, 12, 0.4);
  border-radius: 2px;
  background: var(--chalk);
  display: grid;
  place-items: center;
}

.addon-check::after {
  content: "✓";
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  opacity: 0;
}

.addon-field input:checked + .addon-option {
  border-color: var(--gold);
  background: #f5eeda;
}

.addon-field input:checked + .addon-option .addon-check {
  background: var(--gold);
  border-color: var(--gold);
}

.addon-field input:checked + .addon-option .addon-check::after { opacity: 1; }

.addon-field input:focus-visible + .addon-option {
  outline: 3px solid var(--laser-deep);
  outline-offset: 2px;
}

.addon-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.addon-name { font-weight: 600; font-size: 0.95rem; }

.addon-desc { font-size: 0.8rem; color: rgba(10, 10, 12, 0.6); }

.addon-price {
  margin-left: auto;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold-deep);
  white-space: nowrap;
}

.text-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 2px solid rgba(10, 10, 12, 0.25);
  border-radius: var(--radius);
  background: var(--chalk);
}

.text-input:focus { border-color: var(--navy); outline: none; }

.preorder-form .btn { width: 100%; padding-block: 1.1rem; font-size: 0.85rem; }

.form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(10, 10, 12, 0.6);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.form-note .crown { color: var(--gold); flex-shrink: 0; margin-top: 0.15rem; }

.form-error {
  display: none;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: #8c2f22;
}

.form-error.is-visible { display: block; }

/* product detail accordions */
.detail-stack { margin-top: 2.4rem; border-top: 1px solid rgba(10, 10, 12, 0.18); }

.detail-stack details { border-bottom: 1px solid rgba(10, 10, 12, 0.18); }

.detail-stack summary {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.1rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-stack summary::-webkit-details-marker { display: none; }

.detail-stack summary::after { content: "+"; color: var(--laser-deep); }

.detail-stack details[open] summary::after { content: "–"; }

.detail-stack .detail-body { padding-bottom: 1.4rem; font-size: 0.9rem; color: rgba(10, 10, 12, 0.72); }

.detail-stack .detail-body ul { padding-left: 1.1rem; }

.detail-stack .detail-body li { margin-bottom: 0.4rem; }

/* size table */
.size-table { width: 100%; border-collapse: collapse; font-family: var(--font-mono); font-size: 0.8rem; }

.size-table th,
.size-table td {
  border: 1px solid rgba(10, 10, 12, 0.2);
  padding: 0.55rem 0.7rem;
  text-align: center;
}

.size-table th {
  background: var(--navy);
  color: var(--laser);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.size-table caption {
  caption-side: bottom;
  padding-top: 0.6rem;
  font-size: 0.72rem;
  color: rgba(10, 10, 12, 0.55);
  text-align: left;
}

/* also-in-drop */
.also { padding-bottom: 5.5rem; }

.also .drop-grid { grid-template-columns: repeat(2, 1fr); }

/* sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--ink);
  color: var(--chalk);
  padding: 0.8rem 1.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(246, 244, 238, 0.2);
}

.sticky-cta .price { font-family: var(--font-mono); font-weight: 600; }

.sticky-cta .price small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--laser);
  font-weight: 400;
}

/* ============================================================
   Confirmation dialog
   ============================================================ */

.confirm-dialog {
  margin: auto; /* restore centering removed by the universal reset */
  border: none;
  border-radius: var(--radius);
  padding: 0;
  max-width: 460px;
  width: calc(100% - 2.4rem);
  background: var(--chalk);
  box-shadow: 0 30px 80px rgba(10, 10, 12, 0.5);
}

.confirm-dialog::backdrop { background: rgba(10, 10, 12, 0.72); }

.confirm-inner { padding: 2.4rem 2.2rem 2.2rem; text-align: center; }

.confirm-inner .crown { color: var(--gold); margin-inline: auto; margin-bottom: 1rem; display: block; }

.confirm-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 0.9rem;
}

.confirm-inner p { font-size: 0.92rem; color: rgba(10, 10, 12, 0.72); margin-bottom: 1rem; }

.confirm-summary {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  background: var(--stone);
  border: 1px dashed rgba(10, 10, 12, 0.35);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: 1.6rem;
  text-align: left;
  line-height: 1.9;
}

.confirm-summary span { float: right; font-weight: 600; }

/* ============================================================
   Story page
   ============================================================ */

.story-hero {
  background: var(--navy);
  color: var(--chalk);
  position: relative;
  overflow: hidden;
}

.story-hero .duotone {
  position: absolute;
  inset: 0;
  border-radius: 0;
  opacity: 0.5;
}

.story-hero .wrap {
  position: relative;
  z-index: 2;
  padding-block: 7rem 6rem;
  max-width: 900px;
}

.story-hero .eyebrow { color: var(--gold); margin-bottom: 1.6rem; }

.story-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.story-hero h1 span { color: var(--laser); }

.story-hero .hero-lede { font-size: 1.1rem; }

.story-body { max-width: 720px; margin-inline: auto; }

.story-body p { margin-bottom: 1.4rem; font-size: 1.02rem; color: rgba(10, 10, 12, 0.8); }

.story-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.6em;
  float: left;
  line-height: 0.8;
  padding-right: 0.12em;
  color: var(--laser-deep);
}

.pull-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--navy);
  border-left: 5px solid var(--gold);
  padding-left: 1.4rem;
  margin: 2.6rem 0;
}

/* timeline */
.timeline { max-width: 780px; margin-inline: auto; list-style: none; }

.timeline li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.6rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(10, 10, 12, 0.16);
}

.timeline .year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--laser-deep);
}

.timeline h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.timeline p { font-size: 0.92rem; color: rgba(10, 10, 12, 0.7); max-width: 56ch; }

/* photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.photo-strip figure { border-radius: var(--radius); overflow: hidden; position: relative; }

.photo-strip img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }

.photo-strip figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(10, 10, 12, 0.85));
  color: var(--chalk);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* CTA band */
.cta-band { background: var(--ink); color: var(--chalk); text-align: center; }

.cta-band .wrap { padding-block: 5rem; }

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 1rem;
}

.cta-band h2 span { color: var(--gold); }

.cta-band p {
  color: rgba(246, 244, 238, 0.75);
  max-width: 46ch;
  margin: 0 auto 2rem;
}

/* ============================================================
   Reveal animation
   ============================================================ */

/* Reveal styles only apply once JS has tagged <html class="js">,
   so content stays visible when JavaScript is unavailable. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .drop-grid { grid-template-columns: repeat(2, 1fr); }
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, auto); row-gap: 1.6rem; }
}

@media (max-width: 900px) {
  .hero .wrap { padding-block: 4rem 4.5rem; }

  .hero-bg { width: 100%; right: 0; aspect-ratio: auto; background-position: 65% 12%; background-size: cover; }

  .hero-bg::before {
    background:
      linear-gradient(90deg, rgba(10, 10, 12, 0.82) 0%, rgba(10, 10, 12, 0.55) 55%, rgba(10, 10, 12, 0.7) 100%),
      linear-gradient(180deg, rgba(10, 10, 12, 0.65) 0%, rgba(10, 10, 12, 0.25) 40%, var(--ink) 100%),
      linear-gradient(rgba(20, 29, 54, 0.28), rgba(20, 29, 54, 0.28));
  }

  .hero-bg .scrawl { display: none; }
  .story-band .wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    gap: 0;
    padding: 0.6rem 1.5rem 1.4rem;
    border-bottom: 1px solid rgba(246, 244, 238, 0.15);
  }

  .site-nav.is-open { display: flex; }

  .site-nav a { padding-block: 0.8rem; border-bottom: none; }

  .nav-toggle { display: block; }

  .header-cta { display: none; }
}

@media (max-width: 640px) {
  .section { padding-block: 3.8rem; }
  .drop-grid,
  .how-grid,
  .craft-grid,
  .photo-strip,
  .also .drop-grid { grid-template-columns: 1fr; }
  .countdown { gap: 1.1rem; flex-wrap: wrap; }
  .timeline li { grid-template-columns: 1fr; gap: 0.4rem; }
  .section-head .aside-note { text-align: left; }
  .form-row { flex-direction: column; }
  .sticky-cta { display: flex; }
  body.has-sticky-cta { padding-bottom: 4.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Reduced motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn,
  .product-card { transition: none; }
  .card-media img { transition: none; }
}
