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

:root {
  --ink: #111110;
  --paper: #ffffff;
  --grey: #8a8a88;
  --hair: #ececea;
  --lime: #c0ff72;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }

.sec { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; color: var(--grey); }
.dot { color: var(--lime); }

/* ---------- header (inner pages): signature left, links right ---------- */
.hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
  background: #fff;
}
.hdr__logo img {
  width: clamp(92px, 13vw, 140px);
  height: auto;
  display: block;
}
.hdr__nav { display: flex; gap: 26px; }
.hdr__nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.15s;
}
.hdr__nav a:hover { color: #8c8c8c; }
@media (max-width: 700px) {
  .hdr { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 24px; }
}

/* ---------- landing: giant signature + rail ---------- */
.land {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 40px 6vw;
  gap: 40px;
  background: #fff;
}
.land__sig {
  width: min(72vw, 900px);
  max-height: 60vh;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0.6;
}
.land__rail {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  white-space: nowrap;
}
.land__rail a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.15s;
}
.land__rail a:hover { color: #8c8c8c; }
@media (max-width: 700px) {
  .land { min-height: 88vh; flex-direction: column; align-items: flex-start; padding: 48px 24px; gap: 30px; }
  .land__sig { width: 84vw; }
  .land__rail { flex-direction: row; flex-wrap: wrap; gap: 12px 20px; align-items: flex-start; }
  .hero .hero__stack { height: 62vh; }
  .col-sec { padding: 14px 10px 0; }
  .watch-grid { padding: 28px 20px 56px; }
  .pd__root { padding: 30px 16px 60px; }
  .shop { padding: 36px 0 0; }
}

/* ---------- collage ---------- */
.col-sec { padding: 20px 14px 0; }
.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 88px;
  grid-auto-flow: dense;
  gap: 8px;
}
@media (max-width: 700px) {
  .collage { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 70px; gap: 5px; }
}
.col__tile {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
  border: 0;
  transform: rotate(var(--r, 0deg));
  transition: transform 0.3s ease, opacity 0.3s;
}
.col__tile:hover { transform: rotate(0deg) scale(1.02); }
.col__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s, transform 0.5s ease;
}
.col__tile:hover img { opacity: 0.85; transform: scale(1.04); }
.col__tile--sig { background: #000; }
.col__tile--sig img {
  position: absolute;
  inset: 0;
  width: 70%;
  height: 70%;
  margin: auto;
  object-fit: contain;
  filter: invert(1);
}
.col__tile--text {
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
  background: var(--ink);
  color: #fff;
}
.col__tile--text span {
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.col__tile--emph { background: var(--lime); color: #000; }
.col__tile--emph span { color: #000; }

/* ---------- hero (rotating) ---------- */
.hero { position: relative; background: #000; }
.hero__stack {
  position: relative;
  width: 100%;
  height: clamp(420px, 74vh, 760px);
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
}
.hero__img.is-on { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .hero__img { transition: none; }
}

.hero__cta {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  padding: 13px 34px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}
.hero__cta:hover { background: transparent; color: var(--lime); }

/* display type over the hero */
.hero--display .hero__stack { height: clamp(520px, 84vh, 840px); }
.hero__type {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  pointer-events: none;
}
.hero__big {
  font-size: clamp(38px, 11vw, 130px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.65);
}
.hero__big .splash { color: var(--lime); font-size: 0.5em; vertical-align: middle; }
.hero__sub {
  margin-top: 18px;
  font-size: clamp(11px, 1.6vw, 15px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}
.hero__tag {
  position: absolute;
  z-index: 3;
  top: 18px; right: 18px;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

/* marquee bands */
.band {
  overflow: hidden;
  border-bottom: 1px solid var(--hair);
  background: #fff;
}
.band__track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: band-scroll 30s linear infinite;
}
.band:hover .band__track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .band__track { animation: none; } }
.band__track span {
  font-size: clamp(13px, 1.8vw, 18px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  padding: 14px 0;
}
@keyframes band-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.band--a { background: var(--ink); }
.band--a .band__track span { color: #fff; }

/* ---------- shop ---------- */
.shop { padding: 56px 0 0; }
.shop__head { padding: 0 20px 26px; }
.shop__meta { margin-top: 8px; color: var(--grey); font-size: 11px; letter-spacing: 0.08em; }

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0;
  row-gap: 44px;
}
@media (min-width: 760px)  { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1180px) { .grid { grid-template-columns: repeat(4, 1fr); } }

.item { display: flex; flex-direction: column; padding-bottom: 4px; }
.item__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.item__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6%;
  transition: opacity 0.2s linear;
}
.item__media img.back { opacity: 0; }
.item.has-back:hover .item__media img.back { opacity: 1; }
.item.has-back:hover .item__media img.front { opacity: 0; }
.item.sold .item__media img { opacity: 0.32; }

.item__row { display: flex; justify-content: space-between; gap: 10px; padding: 0 16px; }
.item__name { font-weight: 500; }
.item__code { color: var(--grey); font-size: 10.5px; letter-spacing: 0.06em; margin-top: 3px; line-height: 1.4; }
.item__price { white-space: nowrap; font-weight: 500; }
.item.sold .item__price { color: var(--grey); text-decoration: line-through; }

.item__sizes { display: flex; flex-wrap: wrap; gap: 12px; padding: 12px 16px 0; }
.item__sizes button {
  font: inherit;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 0;
  color: var(--grey);
  cursor: pointer;
  letter-spacing: 0.06em;
}
.item__sizes button:hover { color: var(--ink); }
.item__sizes button.on { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

.item__buy {
  margin: 14px 16px 0;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  padding: 11px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.item__buy:hover { background: var(--paper); color: var(--ink); }
.item__buy:disabled {
  background: transparent;
  color: var(--grey);
  border-color: var(--hair);
  cursor: not-allowed;
}

/* ---------- editorial strip (rotating) ---------- */
.strip { display: grid; grid-template-columns: 1fr; }
@media (min-width: 700px) { .strip { grid-template-columns: repeat(3, 1fr); } }
.strip__slot { position: relative; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; background: #f2f2f0; }
.strip__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.strip__img.is-on { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .strip__img { transition: none; } }

/* ---------- info ---------- */
.info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 56px 20px;
}
@media (min-width: 700px) { .info { grid-template-columns: repeat(3, 1fr); } }
.info h3 { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; margin-bottom: 10px; }
.info p { color: var(--grey); }
.info a:hover { color: var(--ink); }

/* ---------- watch page: full-screen rotator ---------- */
.stage {
  position: relative;
  width: 100%;
  height: calc(100vh - 126px); /* viewport minus header */
  background: #000;
  overflow: hidden;
}
.stage__fill {
  position: absolute;
  inset: 0;
}
.stage__fill #player,
.stage__fill iframe#player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* cover the stage at 16:9 no matter the viewport shape */
  width: max(100%, calc((100vh - 126px) * 1.7778));
  height: max(100vh, calc(100vw * 0.5625));
  border: 0;
}
@media (max-width: 700px) {
  .stage { height: calc(100vh - 130px); }
  .stage__fill #player,
  .stage__fill iframe#player {
    width: max(100%, calc((100vh - 130px) * 1.7778));
    height: max(100%, calc(100vw * 0.5625));
  }
}

.stage__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
  color: #fff;
  z-index: 2;
  pointer-events: none;
}
.stage__index {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
}
.stage__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- footer: outline wordmark + listen ---------- */
.cv { background: #000; color: #fff; padding: 26px 20px 22px; overflow: hidden; }

.cv__mark {
  font-size: clamp(46px, 13vw, 200px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
  user-select: none;
}
.cv__mark span { color: transparent; -webkit-text-stroke: 1.5px var(--lime); }
.cv:hover .cv__mark { color: rgba(255, 255, 255, 0.06); }
.cv:hover .cv__mark span { color: var(--lime); }

.cv__listen {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.cv__lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.cv__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.cv__rail a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.15s;
}
.cv__rail a:hover { color: var(--lime); }

/* ---------- product page ---------- */
.pd__root { min-height: 60vh; padding: 44px 20px 90px; }
.pd__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .pd__wrap { grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: start; }
}

.pd__stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.pd__stage { position: relative; background: #ffffff; border: 1px solid var(--hair); aspect-ratio: 1 / 1; overflow: hidden; }
.pd__stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5%;
}
.pd__main-label {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--grey);
  background: #fff;
  padding: 4px 8px;
  border: 1px solid var(--hair);
}

.pd__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.pd__thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid var(--hair);
  opacity: 0.7;
  transition: opacity 0.15s, border-color 0.15s;
}
.pd__thumbs img:hover { opacity: 1; }
.pd__thumbs img.on { opacity: 1; border-color: var(--ink); }

.pd__code { color: var(--grey); font-size: 11px; letter-spacing: 0.1em; margin-bottom: 10px; }
.pd__name { font-size: clamp(22px, 4vw, 34px); font-weight: 500; letter-spacing: 0.01em; line-height: 1.1; }
.pd__price { margin-top: 10px; font-weight: 500; }

.pd__story {
  margin-top: 22px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  max-width: 52ch;
}
.pd__specs {
  list-style: none;
  margin-top: 26px;
  border-top: 1px solid var(--hair);
}
.pd__spec {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--hair);
  font-size: 12px;
}
.pd__spec-k { color: var(--grey); }
.pd__spec-v { font-weight: 500; }

.pd__fit { margin-top: 14px; color: var(--grey); font-size: 11px; letter-spacing: 0.05em; }

.pd__sizes { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.pd__sizes button {
  font: inherit;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--hair);
  padding: 8px 14px;
  color: var(--grey);
  cursor: pointer;
  letter-spacing: 0.06em;
}
.pd__sizes button:hover { color: var(--ink); border-color: var(--ink); }
.pd__sizes button.on { background: var(--ink); color: #fff; border-color: var(--ink); }

.pd__buy { width: 100%; margin: 0; margin-top: 22px; }
.pd__missing { color: var(--grey); }
.pd__back { color: var(--lime); }
.pd__back:hover { opacity: 0.7; }

.cv__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}
.cv__tag { color: rgba(255, 255, 255, 0.45); transition: color 0.15s; }
.cv__tag:hover { color: var(--lime); }
