@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400&display=swap");

/* ------------------------------------------------------------------
   Design tokens — lifted from truealias.grok.me
------------------------------------------------------------------ */
:root {
  --fg: #141414;
  --fg-muted: #5c5a56;
  --fg-subtle: #8a8680;
  --bg: #f4f1ec;
  --bg-elevated: #fffcf7;
  --bg-subtle: #e9e4dc;
  --border: #d9d3c9;
  --border-strong: #b8b0a4;
  --ring: #2a2a2a;

  --font-display: "Newsreader", "Times New Roman", Georgia, serif;
  --font-sans: "Instrument Sans", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  /* clear the sticky tab bar when jumping to a section */
  scroll-padding-top: 3.75rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

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

.shell {
  margin-inline: auto;
  max-width: 72rem;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .shell {
    padding-inline: 2rem;
  }
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  margin: 0.6rem 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.section-head p {
  margin: 0.9rem 0 0;
  max-width: 34rem;
  color: var(--fg-muted);
  font-size: 0.95rem;
}

@media (min-width: 640px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .section-head p {
    margin-top: 0.75rem;
  }
}

.count-pill {
  flex: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* ------------------------------------------------------------------
   Hero — structure + styling mirrored from the reference banner
------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  background: var(--fg);
  color: var(--bg-elevated);
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .hero {
    min-height: 90svh;
  }
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media video {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  /* portrait footage in a landscape frame — bias the crop up so the
     silhouette reads instead of a mid-body crop */
  object-position: 50% 22%;
  /* footage is shot on a bright studio cyc — pull it down so the
     reference scrims land at the same contrast as the original */
  filter: brightness(0.58) contrast(1.04) saturate(0.94);
}

.hero__media::after,
.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero__media::before {
  background: linear-gradient(
    to top,
    var(--fg) 0%,
    rgba(20, 20, 20, 0.45) 50%,
    rgba(20, 20, 20, 0.25) 100%
  );
}

.hero__media::after {
  background: linear-gradient(
    to right,
    rgba(20, 20, 20, 0.5) 0%,
    transparent 50%,
    rgba(20, 20, 20, 0.3) 100%
  );
}

.hero__bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1rem 0;
}

@media (min-width: 640px) {
  .hero__bar {
    padding: 1.75rem 2rem 0;
  }
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.02em;
  flex: none;
}

.hero__brand-name {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  line-height: 1;
}

.hero__brand-sub {
  margin: 0.25rem 0 0;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.6);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.glass-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 252, 247, 0.25);
  background: rgba(255, 252, 247, 0.1);
  color: var(--bg-elevated);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 0.2s var(--ease);
}

.glass-btn:hover {
  background: rgba(255, 252, 247, 0.2);
}

.glass-btn--icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
}

.glass-btn--pill {
  border-radius: 999px;
  padding: 0.5rem 0.875rem;
  font-size: 12px;
  font-weight: 500;
}

.glass-btn svg {
  width: 1rem;
  height: 1rem;
}

.hero__body {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 6rem 1.5rem 7rem;
  min-height: 75svh;
}

@media (min-width: 640px) {
  .hero__body {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 8rem;
  }
}

.hero__kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.7);
}

.hero h1 {
  margin: 1rem 0 0;
  max-width: 48rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 8vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.hero__lede {
  margin: 1.25rem 0 0;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 252, 247, 0.75);
}

.hero__cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero__cta {
    flex-direction: row;
    align-items: center;
    width: auto;
  }
  .hero__kicker,
  .hero h1,
  .hero__lede {
    text-wrap: balance;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  min-width: 11rem;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.btn--solid {
  background: var(--bg-elevated);
  color: var(--fg);
  font-weight: 600;
}

.btn--solid:hover {
  background: var(--bg);
}

.btn--ghost {
  border: 1px solid rgba(255, 252, 247, 0.35);
  color: var(--bg-elevated);
  font-weight: 500;
}

.btn--ghost:hover {
  background: rgba(255, 252, 247, 0.1);
}

.hero__ticker {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 10;
  border-top: 1px solid rgba(255, 252, 247, 0.15);
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__ticker div {
  margin-inline: auto;
  max-width: 72rem;
  padding: 0.75rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.7);
}

.hero__ticker .is-wide {
  display: none;
}

@media (min-width: 640px) {
  .hero__ticker div {
    padding-inline: 2rem;
  }
  .hero__ticker .is-wide {
    display: inline;
  }
}

/* ------------------------------------------------------------------
   Sticky tabs
------------------------------------------------------------------ */
.tabs {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 241, 236, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.tabs__inner {
  margin-inline: auto;
  max-width: 72rem;
  padding: 0 1rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) {
  .tabs__inner {
    padding-inline: 2rem;
  }
}

.tabs__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tabs__mark {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  line-height: 1;
  letter-spacing: 0;
  flex: none;
}

.tabs__word {
  display: none;
}

@media (min-width: 420px) {
  .tabs__word {
    display: inline;
  }
}

.tabs__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}

/* room for the shop dropdown — overflow clipping would swallow it */
@media (min-width: 640px) {
  .tabs__list {
    overflow: visible;
  }
}

.tabs__list::-webkit-scrollbar {
  display: none;
}

.tab {
  position: relative;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.tab:hover {
  color: var(--fg);
  background: var(--bg-subtle);
}

.tab.is-active {
  background: var(--fg);
  color: var(--bg-elevated);
}

/* ------------------------------------------------------------------
   Shop
------------------------------------------------------------------ */
.section {
  padding: 4.5rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 6rem 0;
  }
}

.section--elevated {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.filters__label {
  margin-right: 0.35rem;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

.chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: all 0.2s var(--ease);
}

.chip:hover {
  border-color: var(--border-strong);
  color: var(--fg);
}

.chip.is-active {
  background: var(--fg);
  border-color: var(--fg);
  color: var(--bg-elevated);
}

.group {
  margin-bottom: 4rem;
}

.group:last-child {
  margin-bottom: 0;
}

.group__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.group__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
}

.group__count {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1.25rem 1rem;
}

.card {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}

.card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0.25rem;
  background: var(--bg-subtle);
  box-shadow: inset 0 0 0 1px rgba(20, 20, 20, 0.08);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.7s var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.04);
}

.card__swatchfield {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  /* a touch of depth so a flat colorway field still reads as a garment tile */
  background: radial-gradient(
    120% 90% at 50% 12%,
    rgba(255, 255, 255, 0.14),
    transparent 62%
  );
}

.card__swatchfield span {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 8ch;
  /* colour is set per-card from the colorway's luminance */
  color: rgba(255, 252, 247, 0.9);
}

.card__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--bg-elevated);
  padding: 0.3rem 0.65rem;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card__body {
  padding-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.card__name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card__price {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}

.card__desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--fg-muted);
}

.card__colors {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.swatch {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.15);
  flex: none;
}

.card__colors small {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

/* ------------------------------------------------------------------
   Full-bleed video panels
------------------------------------------------------------------ */
.panel {
  position: relative;
  min-height: 85svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--fg);
  color: var(--bg-elevated);
}

.panel__media {
  position: absolute;
  inset: 0;
  clip-path: inset(0);
}

.panel__media video {
  position: fixed;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  filter: brightness(0.72) saturate(0.95);
}

@supports not (clip-path: inset(0)) {
  .panel__media video {
    position: absolute;
  }
}

.panel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 20, 20, 0.78) 0%,
    rgba(20, 20, 20, 0.42) 55%,
    rgba(20, 20, 20, 0.2) 100%
  );
}

.panel__inner {
  position: relative;
  z-index: 2;
  margin-inline: auto;
  max-width: 72rem;
  width: 100%;
  padding: 5rem 1.5rem;
}

@media (min-width: 640px) {
  .panel__inner {
    padding-inline: 2rem;
  }
}

.panel__inner .eyebrow {
  color: rgba(255, 252, 247, 0.7);
}

.panel h2 {
  margin: 1rem 0 0;
  max-width: 20ch;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 6.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.panel p {
  margin: 1.25rem 0 0;
  max-width: 30rem;
  color: rgba(255, 252, 247, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

.panel__meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.6);
}

/* ------------------------------------------------------------------
   Scroll-scrub spin section
------------------------------------------------------------------ */
.spin {
  position: relative;
  background: var(--fg);
  color: var(--bg-elevated);
}

.spin__track {
  height: 320svh;
  position: relative;
}

.spin__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Soft bloom of the active frame behind the letterbox so the stage never
   reads as a flat black bar. The image is swapped with the selected look. */
.spin__stage {
  --spin-bloom: url("media/scrub/skirt.jpg");
}

.spin__stage::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: var(--spin-bloom) center / cover no-repeat;
  filter: blur(80px) brightness(0.45) saturate(0.7);
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.spin__video {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  /* contain, not cover — the whole turn has to stay in frame */
  object-fit: contain;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.spin__video.is-active {
  opacity: 1;
}

.spin__vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(20, 20, 20, 0.8) 0%,
      rgba(20, 20, 20, 0.5) 24%,
      rgba(20, 20, 20, 0.16) 42%,
      transparent 58%
    ),
    linear-gradient(to top, var(--fg) 0%, rgba(20, 20, 20, 0.2) 22%, transparent 40%);
  pointer-events: none;
}

@media (min-width: 860px) {
  /* Box the clip into a fixed right-hand column so every look lands in the
     same frame regardless of its source aspect, and never crowds the copy. */
  .spin__video {
    /* explicit width: on a replaced element, `width: auto` with left+right
       resolves to the video's intrinsic width, not the gap between them */
    inset: 0 auto 0 44%;
    width: 52%;
    height: 100%;
    object-position: center;
  }

  .spin__vignette {
    background: linear-gradient(
        to right,
        rgba(20, 20, 20, 0.9) 0%,
        rgba(20, 20, 20, 0.55) 26%,
        transparent 46%
      ),
      linear-gradient(to top, var(--fg) 0%, transparent 30%);
  }
}

.spin__copy {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding: 3.75rem 1.5rem 0;
  align-self: flex-start;
  /* copy sits over live footage — keep it readable on every frame */
  text-shadow: 0 1px 28px rgba(20, 20, 20, 0.9), 0 1px 4px rgba(20, 20, 20, 0.55);
}

@media (min-width: 640px) {
  .spin__copy {
    padding-inline: 2rem;
  }
}

@media (min-width: 860px) {
  /* copy hugs the top; the picker stack fills everything beneath it */
  .spin__copy {
    align-self: stretch;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 4.25rem;
    /* keep the stack clear of the scrub HUD along the bottom */
    padding-bottom: 6.5rem;
  }
  .spin__copy > * {
    max-width: 20rem;
  }
}

.spin__copy h2 {
  margin: 0.9rem 0 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: -0.025em;
}

.spin__copy .eyebrow {
  color: rgba(255, 252, 247, 0.7);
}

.spin__copy p {
  margin: 1rem 0 0;
  /* keeps the eyebrow and note inside the copy column, clear of the clip */
  max-width: 20rem;
  color: rgba(255, 252, 247, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ---- look picker: three thumbnails in an even row ------------------ */
.spin__picker {
  margin-top: 2rem;
  display: flex;
  gap: 0.9rem;
}

/* desktop: stack the previews vertically and let them absorb the full
   height of the pane under the copy */
@media (min-width: 860px) {
  .spin__picker {
    flex: 1;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
}

.spin__thumb {
  position: relative;
  flex: none;
  width: 6rem;
  aspect-ratio: 3 / 4;
  padding: 0;
  border-radius: 0.45rem;
  overflow: hidden;
  background: rgba(255, 252, 247, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 252, 247, 0.3),
    0 14px 28px -14px rgba(0, 0, 0, 0.8);
  text-shadow: none;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.spin__thumb:hover,
.spin__thumb:focus-visible {
  transform: translateY(-0.3rem);
}

.spin__thumb.is-active {
  transform: translateY(-0.45rem);
}

@media (min-width: 640px) {
  .spin__thumb {
    width: 7rem;
  }
}

@media (min-width: 860px) {
  .spin__thumb {
    width: 100%;
    max-width: 13rem;
    aspect-ratio: auto;
    flex: 1 1 0;
    min-height: 0;
  }
  .spin__thumb:hover,
  .spin__thumb:focus-visible {
    transform: translateX(0.35rem);
  }
  .spin__thumb.is-active {
    transform: translateX(0.5rem);
  }
}

.spin__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0.55;
  transition: opacity 0.25s var(--ease);
}

.spin__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 20, 20, 0.92) 0%,
    rgba(20, 20, 20, 0.15) 55%,
    transparent 100%
  );
}

.spin__thumb:hover img,
.spin__thumb:focus-visible img {
  opacity: 0.8;
}

.spin__thumb:focus-visible {
  outline: 2px solid var(--bg-elevated);
  outline-offset: 2px;
}

.spin__thumb.is-active {
  box-shadow: inset 0 0 0 2px var(--bg-elevated),
    0 22px 40px -16px rgba(0, 0, 0, 0.9);
}

.spin__thumb.is-active img {
  opacity: 1;
}

.spin__thumb-index {
  position: absolute;
  top: 0.5rem;
  left: 0.55rem;
  z-index: 2;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255, 252, 247, 0.55);
}

.spin__thumb.is-active .spin__thumb-index {
  color: var(--bg-elevated);
}

.spin__thumb-label {
  position: absolute;
  inset-inline: 0;
  bottom: 0.55rem;
  z-index: 2;
  padding-inline: 0.5rem;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.85);
  line-height: 1.2;
}

.spin__hud {
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2.25rem;
  width: min(26rem, calc(100% - 3rem));
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
}

.spin__scale {
  width: 100%;
  height: 2px;
  background: rgba(255, 252, 247, 0.22);
  position: relative;
  overflow: hidden;
}

.spin__scale i {
  position: absolute;
  inset: 0 auto 0 0;
  display: block;
  width: 0%;
  background: var(--bg-elevated);
}

.spin__readout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.62);
  font-variant-numeric: tabular-nums;
}

.spin__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.spin__hint::before {
  content: "";
  width: 1px;
  height: 1.15rem;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 252, 247, 0.75)
  );
  animation: drip 1.9s var(--ease) infinite;
}

@keyframes drip {
  0% {
    transform: translateY(-0.4rem);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateY(0.5rem);
    opacity: 0;
  }
}

/* ------------------------------------------------------------------
   Campaigns
------------------------------------------------------------------ */
.section--dark {
  background: var(--fg);
  color: var(--bg-elevated);
}

.section--dark .eyebrow,
.section--dark .group__count {
  color: rgba(255, 252, 247, 0.6);
}

.section--dark .section-head p {
  color: rgba(255, 252, 247, 0.72);
}

.section--dark .count-pill {
  border-color: rgba(255, 252, 247, 0.25);
  color: rgba(255, 252, 247, 0.7);
}

.ads {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .ads {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .ads {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ad {
  position: relative;
  border-radius: 0.35rem;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 15;
}

.ad video {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.ad__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 20, 20, 0.92) 0%,
    rgba(20, 20, 20, 0.35) 45%,
    rgba(20, 20, 20, 0.05) 100%
  );
  pointer-events: none;
}

.ad__index {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.85);
}

.ad__state {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ad__state::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}

.ad__foot {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ad__foot h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ad__kind {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.6);
}

.ad__foot p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 252, 247, 0.72);
}

.ad__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.mini-btn {
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--bg-elevated);
  color: var(--fg);
  transition: opacity 0.2s var(--ease);
}

.mini-btn:hover {
  opacity: 0.82;
}

.mini-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 252, 247, 0.35);
  color: var(--bg-elevated);
  font-weight: 500;
}

.mini-btn--ghost:hover {
  background: rgba(255, 252, 247, 0.12);
  opacity: 1;
}

/* ------------------------------------------------------------------
   About
------------------------------------------------------------------ */
.about-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
  }
}

.about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 0 0 1.75rem;
}

.about-body p {
  margin: 0 0 1.15rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 38rem;
}

.pull {
  margin: 2.25rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--fg);
  max-width: 38rem;
}

.pull cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

.tenets {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.tenet {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

.tenet span {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--fg-subtle);
  padding-top: 0.2rem;
  font-variant-numeric: tabular-nums;
}

.tenet h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.tenet p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--fg-muted);
}

/* ------------------------------------------------------------------
   Footer
------------------------------------------------------------------ */
.footer {
  background: var(--fg);
  color: rgba(255, 252, 247, 0.7);
  padding: 3.5rem 0 2.5rem;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 252, 247, 0.15);
}

@media (min-width: 640px) {
  .footer__top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.footer__word {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--bg-elevated);
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer__links a:hover {
  color: var(--bg-elevated);
}

.footer__base {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.5);
}

/* ------------------------------------------------------------------
   Reveal + motion prefs
------------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .spin__track {
    height: auto;
  }
  .spin__stage {
    position: relative;
    height: 80svh;
  }
  /* nothing to scrub when the clip just plays — the readout would lie */
  .spin__hud {
    display: none;
  }
  .card__media img {
    transition: none;
  }
}

/* ------------------------------------------------------------------
   Site header (all pages) — brand, shop dropdown, page links, bag
------------------------------------------------------------------ */
.tabs__spacer {
  flex: 1;
}

.dropdown {
  position: relative;
}

.dropdown__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.dropdown__btn::after {
  content: "";
  width: 0.45em;
  height: 0.45em;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s var(--ease);
}

.dropdown.is-open .dropdown__btn::after {
  transform: rotate(-135deg) translateY(-1px);
}

.dropdown__menu {
  /* small screens: the nav list scrolls (and clips), so pin the menu just
     under the sticky bar instead of under the button */
  position: fixed;
  top: 4.1rem;
  left: 50%;
  transform: translateX(-50%) translateY(-0.35rem);
  min-width: 9.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 18px 40px -18px rgba(20, 20, 20, 0.35);
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease),
    visibility 0.18s;
  z-index: 60;
}

.dropdown.is-open .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 640px) {
  .dropdown__menu {
    position: absolute;
    top: calc(100% + 0.5rem);
  }
}

.dropdown__menu a {
  padding: 0.55rem 0.8rem;
  border-radius: 0.3rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.dropdown__menu a:hover {
  background: var(--bg-subtle);
  color: var(--fg);
}

.dropdown__menu a small {
  display: block;
  margin-top: 0.15rem;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--fg-subtle);
}

.bag-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.bag-btn:hover {
  border-color: var(--border-strong);
  background: var(--bg-subtle);
}

.bag-btn svg {
  width: 0.95rem;
  height: 0.95rem;
}

.bag-btn [data-bag-count] {
  min-width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg-elevated);
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0.25rem;
}

.bag-btn [data-bag-count].is-empty {
  display: none;
}

/* tight screens: icon-only bag, tighter tabs, so everything stays on-bar */
@media (max-width: 560px) {
  .tabs__inner {
    padding-inline: 0.6rem;
    gap: 0.4rem;
  }
  .tab {
    padding: 0.5rem 0.45rem;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .bag-btn {
    padding: 0.4rem 0.5rem;
  }
  .bag-btn .bag-btn__word {
    display: none;
  }
}

/* ------------------------------------------------------------------
   Bag slide-out
------------------------------------------------------------------ */
.bagscrim {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
  z-index: 90;
}

.bagpanel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(24rem, 100%);
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  z-index: 95;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
}

body.bag-open .bagscrim {
  opacity: 1;
  visibility: visible;
}

body.bag-open .bagpanel {
  transform: none;
}

body.bag-open {
  overflow: hidden;
}

.bagpanel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.bagpanel__title {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.bagpanel__close {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--fg-muted);
  padding: 0.25rem 0.5rem;
}

.bagpanel__close:hover {
  color: var(--fg);
}

.bagpanel__items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bagpanel__empty {
  margin: 3rem 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--fg-muted);
}

.bagline {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 0.85rem;
  align-items: start;
}

.bagline img {
  width: 4rem;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0.25rem;
  border: 1px solid var(--border);
}

.bagline__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.bagline__body > a {
  font-weight: 600;
  line-height: 1.3;
}

.bagline__body > a:hover {
  text-decoration: underline;
}

.bagline__color {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

.bagline__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.35rem;
}

.bagline__qty {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.bagline__qty button {
  width: 1.6rem;
  height: 1.6rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.bagline__qty button:hover {
  color: var(--fg);
}

.bagline__qty b {
  min-width: 1.1rem;
  text-align: center;
  font-size: 0.8rem;
}

.bagline__remove {
  font-size: 1.1rem;
  color: var(--fg-subtle);
  padding: 0 0.25rem;
}

.bagline__remove:hover {
  color: var(--fg);
}

.bagpanel__foot {
  border-top: 1px solid var(--border);
  padding: 1.1rem 1.25rem 1.35rem;
}

.bagpanel__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.bagpanel__total b {
  font-size: 1.15rem;
}

.bagpanel__checkout {
  width: 100%;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg-elevated);
  padding: 0.85rem 1rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
}

.bagpanel__checkout:hover {
  opacity: 1;
}

/* ------------------------------------------------------------------
   Shop page
------------------------------------------------------------------ */
.page-hero {
  padding: 4.5rem 0 0;
}

.page-hero .eyebrow {
  color: var(--fg-subtle);
}

.page-hero h1 {
  margin: 0.6rem 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.page-hero p {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: var(--fg-muted);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 2rem 1.25rem;
}

.lookcard {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.lookcard__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0.3rem;
  background: var(--bg-subtle);
  box-shadow: inset 0 0 0 1px rgba(20, 20, 20, 0.07);
}

.lookcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.lookcard:hover .lookcard__media img {
  transform: scale(1.045);
}

.lookcard__pages {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--bg-elevated);
  padding: 0.3rem 0.65rem;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lookcard .card__tag {
  z-index: 2;
}

.lookcard__body {
  padding-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lookcard__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}

.lookcard__name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.lookcard__price {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------------------
   Product page
------------------------------------------------------------------ */
.product {
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem 0 5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .product {
    grid-template-columns: 1.25fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.pager {
  position: relative;
  border-radius: 0.4rem;
  overflow: hidden;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
}

.pager__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pager__frame.is-portrait {
  aspect-ratio: 3 / 4;
}

.pager__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pager__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px -12px rgba(20, 20, 20, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s var(--ease), opacity 0.2s var(--ease);
}

.pager__arrow:hover {
  background: var(--bg-elevated);
}

.pager__arrow[disabled] {
  opacity: 0.35;
  cursor: default;
}

.pager__arrow--prev {
  left: 0.85rem;
}

.pager__arrow--next {
  right: 0.85rem;
}

.pager__arrow svg {
  width: 1.1rem;
  height: 1.1rem;
}

.pager__meta {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.55), transparent);
  color: var(--bg-elevated);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pager__dots {
  display: flex;
  gap: 0.35rem;
}

.pager__dots i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.45);
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.pager__dots i.is-on {
  background: var(--bg-elevated);
  transform: scale(1.2);
}

.pinfo .eyebrow {
  color: var(--fg-subtle);
}

.pinfo h1 {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.pinfo__price {
  margin: 0.9rem 0 0;
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
}

.pinfo__desc {
  margin: 1.1rem 0 0;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 30rem;
}

.pinfo__label {
  margin: 2rem 0 0.75rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

.pinfo__label b {
  color: var(--fg);
  font-weight: 600;
}

.colorlist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.colorchip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.85rem 0.45rem 0.5rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.colorchip .swatch {
  width: 1.05rem;
  height: 1.05rem;
}

.colorchip:hover {
  border-color: var(--border-strong);
}

.colorchip.is-active {
  border-color: var(--fg);
  background: var(--bg-elevated);
  box-shadow: inset 0 0 0 1px var(--fg);
}

.pinfo__add {
  margin-top: 2rem;
  width: 100%;
  max-width: 24rem;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg-elevated);
  padding: 1rem 1.5rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: opacity 0.2s var(--ease), transform 0.15s var(--ease);
}

.pinfo__add:hover {
  opacity: 0.88;
}

.pinfo__add:active {
  transform: scale(0.985);
}

.pinfo__back {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.pinfo__back:hover {
  color: var(--fg);
}

.crumbs {
  padding-top: 1.5rem;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  display: flex;
  gap: 0.5rem;
}

.crumbs a:hover {
  color: var(--fg);
}

/* ------------------------------------------------------------------
   Homepage still-campaign section
------------------------------------------------------------------ */
.stillad {
  padding: 5rem 0 5.5rem;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stillad__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.stillad__tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.35rem;
  aspect-ratio: var(--tile-aspect, 2 / 3);
  background: var(--bg-elevated);
  box-shadow: inset 0 0 0 1px rgba(20, 20, 20, 0.08);
}

@media (min-width: 860px) {
  /* columns proportional to each tile's aspect (1.27 / 0.75 / 0.5), so
     the three different framings all resolve to the same row height */
  .stillad__grid {
    grid-template-columns: 1.27fr 0.75fr 0.5fr;
    align-items: stretch;
  }
}

.stillad__tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease);
}

.stillad__tile:hover img {
  transform: scale(1.035);
}

.stillad__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 17, 15, 0.72) 0%,
    rgba(20, 17, 15, 0.12) 38%,
    transparent 60%
  );
}

.stillad__label {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.1rem 1.2rem 1.15rem;
  color: var(--bg-elevated);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stillad__label small {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.65);
}

.stillad__label i {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.75);
  opacity: 0;
  transform: translateY(0.25rem);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.stillad__tile:hover .stillad__label i,
.stillad__tile:focus-visible .stillad__label i {
  opacity: 1;
  transform: none;
}


/* ------------------------------------------------------------------
   Colorways — display only, on shop cards and product pages.
   These are information, not controls: nothing here may look or feel
   tappable, so pointer/selection/tap-highlight are all switched off.
------------------------------------------------------------------ */
.colorlines,
.colorline,
.colorlist {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.colorlines,
.colorlist {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.6rem;
}

.colorline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--fg-muted);
}

.colorline__dot {
  flex: none;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(20, 20, 20, 0.22);
}

.colorline__name {
  letter-spacing: 0.01em;
}

/* the product page runs the same rows a touch larger */
.colorlist {
  gap: 0.45rem;
}

.colorlist .colorline {
  font-size: 0.88rem;
  color: var(--fg);
}

.colorlist .colorline__dot {
  width: 0.9rem;
  height: 0.9rem;
}

/* ------------------------------------------------------------------
   Spin pane — mobile look navigation
   Under 860px the thumbnail rail is hidden and replaced by arrows,
   the look name, and a 01 / 03 counter.
------------------------------------------------------------------ */
.spin__nav {
  display: none;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.spin__nav-btn {
  flex: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-elevated);
  background: rgba(255, 252, 247, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 252, 247, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.2s var(--ease);
}

.spin__nav-btn:hover,
.spin__nav-btn:active {
  background: rgba(255, 252, 247, 0.2);
}

.spin__nav-btn svg {
  width: 1.05rem;
  height: 1.05rem;
}

.spin__nav-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 8rem;
}

.spin__nav-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-elevated);
}

.spin__nav-count {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255, 252, 247, 0.6);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 859px) {
  .spin__picker {
    display: none;
  }
  .spin__nav {
    display: flex;
  }
}
