:root {
  color-scheme: dark;
  --black: #030302;
  --charcoal: #11100e;
  --graphite: #1d1a17;
  --titanium: #a8a197;
  --sand: #d0ad73;
  --gold: #c99b52;
  --ivory: #f4efe6;
  --bronze: #9b5a2f;
  --line: rgba(244, 239, 230, 0.14);
  --soft: rgba(244, 239, 230, 0.68);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

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

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

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: overlay;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(118px, auto) 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 18px clamp(18px, 4vw, 72px);
  background: linear-gradient(180deg, rgba(3, 3, 2, 0.86), rgba(3, 3, 2, 0.42));
  border-bottom: 1px solid rgba(244, 239, 230, 0.05);
  backdrop-filter: blur(10px);
  transition: background 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 3, 2, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.28em;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--serif);
  transform: scaleY(1.08);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 72px);
}

.site-nav a {
  display: grid;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.82rem;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav span {
  color: var(--soft);
  font-size: 0.62rem;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--sand);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
}

.account {
  position: relative;
}

.account::before,
.account::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid currentColor;
}

.account::before {
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.account::after {
  bottom: 8px;
  width: 22px;
  height: 11px;
  border-radius: 18px 18px 0 0;
  border-bottom: 0;
}

.bag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto;
}

.bag span {
  width: 18px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 2px;
  position: relative;
}

.bag span::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 5px;
  border: 1px solid currentColor;
  border-bottom: 0;
  left: 4px;
  top: -6px;
  border-radius: 8px 8px 0 0;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 124px clamp(18px, 4.5vw, 80px) 26px;
}

.hero-image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 68%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  transform: scale(1.04);
  animation: cinematic-drift 18s ease-in-out infinite alternate;
  opacity: 0.84;
}

.hero-haze {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 2, 1) 0%, rgba(3, 3, 2, 0.95) 24%, rgba(3, 3, 2, 0.24) 60%, rgba(3, 3, 2, 0.48)),
    linear-gradient(180deg, rgba(3, 3, 2, 0.8), transparent 26%),
    linear-gradient(0deg, rgba(3, 3, 2, 1) 0%, rgba(3, 3, 2, 0.98) 18%, rgba(3, 3, 2, 0.34) 48%, rgba(3, 3, 2, 0.35));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-bottom: 5vh;
}

.kicker {
  margin: 0 0 18px;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.82rem;
  font-weight: 600;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(4.1rem, 7.2vw, 8rem);
  font-weight: 500;
  line-height: 0.82;
}

h1 span,
.forever,
.countdown strong,
.quality-seal strong {
  color: var(--sand);
}

.forever {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.9vw, 3.3rem);
  letter-spacing: 0.16em;
  margin-bottom: 22px;
}

.hero-actions,
.access-form,
.colorway-panel,
.swatches,
.spec-grid,
.presale-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.vote-button {
  min-height: 50px;
  border: 1px solid rgba(208, 173, 115, 0.62);
  border-radius: 2px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--ivory);
  background: rgba(3, 3, 2, 0.24);
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.button.primary {
  background: linear-gradient(180deg, #e7bd79, #b98543);
  color: #0b0907;
  border-color: transparent;
}

.button:hover,
.vote-button:hover {
  transform: translateY(-2px);
  border-color: var(--sand);
}

.countdown {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
}

.countdown-label {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.76rem;
  font-weight: 800;
}

.countdown span:not(.countdown-label) {
  display: grid;
  gap: 2px;
  text-align: center;
  min-width: 48px;
}

.countdown strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
}

.countdown small {
  color: var(--soft);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.vertical-note {
  position: absolute;
  right: clamp(18px, 4vw, 62px);
  top: 34%;
  z-index: 2;
  margin: 0;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: rgba(244, 239, 230, 0.86);
}

.hero-features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: min(1040px, 70vw);
  margin-left: auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  padding-bottom: 4px;
  background: linear-gradient(90deg, transparent, rgba(3, 3, 2, 0.42));
}

.hero-features article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px 12px;
}

.feature-icon {
  grid-row: span 2;
  color: var(--sand);
  font-size: 1.55rem;
}

.hero-features strong,
.archive-table span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero-features p {
  color: var(--soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.ticker {
  display: flex;
  gap: 46px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 18px clamp(18px, 4vw, 70px);
  background: #050504;
}

.ticker span {
  animation: ticker-drift 18s linear infinite;
}

.ticker span {
  flex: 0 0 auto;
  color: rgba(244, 239, 230, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
}

.section-band {
  position: relative;
  padding: clamp(78px, 10vw, 150px) clamp(18px, 5vw, 84px);
  background: var(--black);
  overflow: hidden;
}

.section-heading {
  max-width: 720px;
}

.section-heading.wide {
  max-width: 980px;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 500;
  line-height: 0.92;
  margin-bottom: 20px;
}

.section-heading p:not(.kicker),
.drop-copy > p,
.notes-panel p {
  color: var(--soft);
  line-height: 1.75;
  max-width: 720px;
}

.artist-intro {
  min-height: 78svh;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  align-items: end;
  gap: 40px;
}

.process-bg {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  filter: invert(1) contrast(1.35) blur(1px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.process-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: process-pulse 8s ease-in-out infinite alternate;
}

.artist-intro::after,
.vote::after,
.archive::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 2, 0.96), rgba(3, 3, 2, 0.48), rgba(3, 3, 2, 0.92)),
    linear-gradient(0deg, rgba(3, 3, 2, 1), transparent 48%, rgba(3, 3, 2, 0.84));
  pointer-events: none;
}

.artist-intro > *,
.vote > *,
.archive > * {
  position: relative;
  z-index: 2;
}

.artist-copy {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}

.artist-name {
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.quote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 3rem);
  line-height: 1.08;
}

.signature {
  color: var(--sand);
  font-family: var(--serif);
  font-size: 2rem;
}

.access-form {
  margin: 36px 0 44px;
  align-items: end;
}

.access-form label {
  display: grid;
  gap: 8px;
  flex: 1 1 190px;
  max-width: 260px;
}

.access-form label span {
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.access-form input,
.presale-form input,
.presale-form select {
  width: 100%;
  min-height: 50px;
  color: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(244, 239, 230, 0.05);
  padding: 0 14px;
  outline: 0;
}

.access-form input:focus,
.presale-form input:focus,
.presale-form select:focus {
  border-color: var(--sand);
}

.access-form > p {
  flex-basis: 100%;
  color: var(--soft);
  font-size: 0.82rem;
}

.vote-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.concept {
  min-height: 620px;
  display: grid;
  grid-template-rows: 1fr auto;
  background: #070605;
  overflow: hidden;
}

.concept img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
  transition: transform 700ms ease, filter 700ms ease;
}

.concept:hover img,
.concept.active img {
  transform: scale(1.045);
  filter: saturate(0.96) contrast(1.1);
}

.concept.active {
  box-shadow: inset 0 0 0 1px rgba(208, 173, 115, 0.55);
}

.concept div {
  padding: 22px;
}

.concept p {
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
}

.concept h3,
.colorway-panel h3 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
}

.vote-button {
  width: 100%;
  margin: 8px 0 16px;
  background: transparent;
}

.vote-button.is-selected,
.concept.active .vote-button {
  background: rgba(208, 173, 115, 0.12);
  color: var(--sand);
}

.bar {
  height: 3px;
  background: rgba(244, 239, 230, 0.11);
  overflow: hidden;
}

.bar span {
  display: block;
  width: var(--value);
  height: 100%;
  background: linear-gradient(90deg, var(--sand), var(--bronze));
  transition: width 480ms ease;
}

.concept small {
  display: block;
  margin-top: 10px;
  color: var(--soft);
}

.colorway-panel {
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid var(--line);
  border-top: 0;
  padding: 28px;
  background: rgba(244, 239, 230, 0.035);
}

.colorway-panel > div:first-child {
  max-width: 470px;
}

.swatches button {
  position: relative;
  min-width: 150px;
  min-height: 48px;
  padding: 0 18px 0 46px;
  color: var(--ivory);
  border: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.swatches button:hover,
.swatches button.is-selected {
  border-color: var(--sand);
  background: rgba(208, 173, 115, 0.1);
  transform: translateY(-1px);
}

.swatches button::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--swatch);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.confirmation {
  width: 100%;
  color: var(--sand);
  margin: 0;
}

.presale-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(24px, 4vw, 58px);
  margin-top: 34px;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(208, 173, 115, 0.36);
  background:
    linear-gradient(135deg, rgba(208, 173, 115, 0.1), rgba(244, 239, 230, 0.025) 45%, rgba(155, 90, 47, 0.08)),
    rgba(244, 239, 230, 0.035);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.presale-panel:not(.is-unlocked) {
  opacity: 0.72;
}

.presale-copy h3 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.8vw, 5.8rem);
  font-weight: 500;
  line-height: 0.92;
  margin-bottom: 18px;
}

.presale-copy p:not(.kicker),
.presale-status {
  color: var(--soft);
  line-height: 1.65;
}

.presale-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 26px 0 8px;
}

.presale-price .was {
  color: rgba(244, 239, 230, 0.48);
  text-decoration: line-through;
  font-size: 1.1rem;
}

.presale-price strong {
  color: var(--sand);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: 0.8;
}

.presale-price span:last-child {
  color: var(--ivory);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.presale-form {
  align-content: end;
}

.presale-form label {
  display: grid;
  gap: 8px;
  flex: 1 1 150px;
}

.presale-form label.full {
  flex-basis: 100%;
}

.presale-form label span {
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.presale-form input[readonly] {
  color: var(--sand);
}

.presale-form button {
  flex: 1 1 230px;
}

.presale-form.is-complete button {
  background: rgba(208, 173, 115, 0.16);
  color: var(--sand);
  border-color: rgba(208, 173, 115, 0.44);
}

.presale-status {
  flex-basis: 100%;
  margin: 0;
}

.honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.access-form.is-complete input {
  border-color: rgba(208, 173, 115, 0.4);
  background: rgba(208, 173, 115, 0.06);
}

.drop {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
}

.detail-study {
  padding-top: 0;
}

.tech-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
}

.tech-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.tech-meta div {
  padding: 14px 16px;
  background: rgba(244, 239, 230, 0.04);
}

.tech-meta dt {
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
}

.tech-meta dd {
  margin: 6px 0 0;
  color: var(--ivory);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.detail-study img {
  width: min(1320px, 100%);
  margin: 36px auto 0;
  border: 1px solid var(--line);
  filter: saturate(0.92) contrast(1.04) brightness(0.92);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.product-stage {
  position: relative;
  isolation: isolate;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 12% 6%;
  z-index: -1;
  background: radial-gradient(ellipse, rgba(208, 173, 115, 0.16), transparent 62%);
  filter: blur(18px);
}

.product-stage img {
  width: 100%;
  filter: drop-shadow(0 34px 80px rgba(0, 0, 0, 0.62));
}

.quality-seal {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(208, 173, 115, 0.72);
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  margin: 34px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--soft);
}

.quality-seal strong {
  font-family: var(--serif);
  font-size: 2.3rem;
  letter-spacing: 0;
  line-height: 0.9;
}

.quality-seal span {
  font-size: 0.66rem;
}

.spec-grid span {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  flex: 1 1 210px;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}

.museum-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15);
}

figcaption {
  margin-top: 12px;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
}

.notes-panel {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}

.archive {
  background:
    linear-gradient(rgba(3, 3, 2, 0.88), rgba(3, 3, 2, 0.96)),
    url("assets/optimized/hero.jpg") center / cover;
}

.archive-table {
  border-block: 1px solid var(--line);
}

.archive-table div {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.6fr 1.2fr 0.7fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.archive-table div:last-child {
  border-bottom: 0;
}

.archive-table div:first-child {
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
}

.archive-table span {
  color: var(--soft);
}

.archive-table .retired {
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

@keyframes cinematic-drift {
  from {
    transform: scale(1.04) translate3d(-0.4%, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(0.4%, -0.8%, 0);
  }
}

@keyframes process-pulse {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.04);
  }
}

@keyframes ticker-drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-42px, 0, 0);
  }
}

:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
  }

  .site-nav {
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 22px;
  }

  .site-nav a {
    min-width: max-content;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-features {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .vote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .drop,
  .museum-grid,
  .artist-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 16px;
    gap: 10px;
    grid-template-columns: 1fr auto;
  }

  .brand-mark span,
  .header-tools {
    display: inline-flex;
  }

  .brand-mark {
    min-width: 0;
    font-size: 0.84rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
  }

  .site-nav span {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 138px 18px 24px;
  }

  .hero-image {
    width: 112%;
    opacity: 0.7;
    object-position: 70% center;
  }

  h1 {
    font-size: clamp(3.65rem, 18vw, 6.2rem);
  }

  .kicker {
    letter-spacing: 0.22em;
    font-size: 0.72rem;
  }

  .vertical-note {
    display: none;
  }

  .hero-content {
    padding-bottom: 2vh;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .countdown {
    gap: 12px;
    align-items: flex-start;
  }

  .countdown strong {
    font-size: 1.5rem;
  }

  .countdown-label {
    flex-basis: 100%;
  }

  .hero-features,
  .vote-grid {
    grid-template-columns: 1fr;
  }

  .hero-features {
    margin-top: 24px;
    gap: 16px;
    padding-top: 16px;
  }

  .ticker {
    gap: 30px;
  }

  .section-band {
    padding: 74px 18px;
  }

  h2 {
    font-size: clamp(3rem, 17vw, 5.8rem);
  }

  .artist-copy,
  .notes-panel {
    border-left: 0;
    padding-left: 0;
  }

  .concept {
    min-height: auto;
  }

  .concept img {
    min-height: 360px;
  }

  .colorway-panel,
  .swatches button,
  .access-form label,
  .access-form .button,
  .presale-form label,
  .presale-form .button {
    width: 100%;
    max-width: none;
  }

  .presale-panel {
    grid-template-columns: 1fr;
  }

  .archive-table {
    display: grid;
    gap: 18px;
    border: 0;
  }

  .archive-table div {
    grid-template-columns: 1fr;
    gap: 7px;
    border: 1px solid var(--line);
    padding: 18px;
    background: rgba(244, 239, 230, 0.035);
  }

  .archive-table div:first-child {
    display: none;
  }

  .tech-heading,
  .tech-meta {
    grid-template-columns: 1fr;
  }

  .tech-meta {
    width: 100%;
  }
}

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