/* ========================================
   saukrates / soxxshop
   Brand palette pulled from the supplied
   campaign assets only. No invention.
   ======================================== */

:root {
  --bg:        #0d0c0b;
  --bg-2:      #161311;
  --burgundy:  #5b1a20;
  --burgundy2: #3d1015;
  --cream:     #ebe1c4;
  --cream-d:   #c8bda0;
  --red:       #a82731;
  --red-bright:#c43846;
  --olive:     #535a37;
  --white-w:   #f3ecd9;
  --line:      rgba(235,225,196,0.16);
  --line-2:    rgba(235,225,196,0.32);

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, system-ui, sans-serif;

  --maxw: 1280px;
}

/* reset */
*,*::before,*::after { box-sizing:border-box; }
html,body { margin:0; padding:0; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
button { font: inherit; color:inherit; background:none; border:0; cursor:pointer; }
input, textarea {
  font: inherit; color: var(--cream);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: .65rem .8rem;
  width: 100%;
  outline: none;
}
input:focus, textarea:focus { border-color: var(--cream-d); }

/* ========== TOP BAR ========== */
.bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,12,11,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.bar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .9rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.brand-name sup { font-size:.45em; opacity:.7; vertical-align:super; }
.bar-nav {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
}
.bar-nav a {
  font-size: .78rem;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--cream-d);
  transition: color .2s;
}
.bar-nav a:hover { color: var(--cream); }
.bag-btn {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  letter-spacing: .22em;
  font-weight: 600;
  padding: .55rem .85rem;
  border: 1px solid var(--line-2);
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.bag-btn:hover {
  border-color: var(--cream);
  box-shadow: 0 0 0 1px var(--cream), 0 0 24px rgba(235,225,196,0.25);
}
.bag-count {
  display: inline-grid; place-items:center;
  min-width: 1.4rem; height: 1.4rem;
  background: var(--red);
  color: var(--cream);
  font-size: .7rem;
  border-radius: 999px;
  padding: 0 .4rem;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  background: var(--bg-2);
}
.hero-stage { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
}
.slide.on { opacity: 1; pointer-events:auto; }
.slide img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: brightness(.78) saturate(1.05);
}
.slide::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(13,12,11,.85) 0%, rgba(13,12,11,.30) 55%, rgba(13,12,11,.05) 100%),
    linear-gradient(180deg, rgba(13,12,11,0) 60%, rgba(13,12,11,.95) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}
.kicker {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--cream-d);
  margin: 0 0 1rem;
  letter-spacing: .02em;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 7.5vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 2.2rem;
  color: var(--cream);
}
.red { color: var(--red-bright); }
.cream { color: var(--cream); }

.hero-dots {
  position: absolute;
  bottom: 1.6rem;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: .55rem;
  z-index: 3;
}
.hero-dots button {
  width: 28px; height: 3px;
  background: rgba(235,225,196,0.28);
  transition: background .25s;
}
.hero-dots button.on { background: var(--cream); }

/* ========== GLOW BUTTON ========== */
.btn {
  display: inline-block;
  padding: .95rem 1.6rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .26em;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--cream);
  position: relative;
  isolation: isolate;
  transition: color .25s, transform .25s;
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.6,.05,.05,1);
  z-index: -1;
}
.btn:hover { color: var(--burgundy2); }
.btn:hover::before { transform: scaleX(1); }
.btn.glow {
  box-shadow:
    0 0 0 1px rgba(235,225,196,0.0),
    0 0 22px rgba(235,225,196,0.18);
  animation: pulseGlow 3s ease-in-out infinite;
}
.btn.glow:hover {
  box-shadow:
    0 0 0 1px rgba(235,225,196,0.55),
    0 0 36px rgba(235,225,196,0.55);
}
.btn.big { padding: 1.1rem 1.8rem; width: 100%; }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(235,225,196,0), 0 0 18px rgba(235,225,196,0.14); }
  50%      { box-shadow: 0 0 0 1px rgba(235,225,196,0.25), 0 0 32px rgba(235,225,196,0.32); }
}

/* ========== SECTION HEADER ========== */
.section-head {
  text-align: center;
  padding: 5rem 1.5rem 2.4rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--cream);
}
.section-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream-d);
  margin-top: .5rem;
  font-size: 1.05rem;
}
.logo-mark {
  display: inline-block;
  width: 96px;
  height: auto;
  margin-bottom: 1.2rem;
  border: 0;
  outline: 0;
  background: transparent;
}

/* ========== SHOP GRID ========== */
.shop { padding-bottom: 4rem; }
.grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  position: relative;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.card:hover { transform: translateY(-4px); }
.card-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .4s;
}
.card:hover .card-img-wrap img {
  transform: scale(1.05);
  filter: brightness(1.05);
}
.card-img-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 50% 100%, rgba(168,39,49,0) 60%, rgba(168,39,49,0.18) 100%);
  opacity: 0;
  transition: opacity .35s;
}
.card:hover .card-img-wrap::after { opacity: 1; }
.card-meta {
  padding: 1rem .25rem .25rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.card-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--cream);
}
.card-name small {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .22em;
  color: var(--cream-d);
  margin-top: .25rem;
}
.card-price {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  color: var(--cream);
}
.swatches {
  display: flex;
  gap: .4rem;
  margin-top: .7rem;
  padding-left: .25rem;
}
.swatch {
  width: 18px; height: 18px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.swatch:hover { transform: scale(1.15); }
.swatch.on {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--cream);
}
.sw-burgundy { background: var(--burgundy); }
.sw-red      { background: var(--red); }
.sw-olive    { background: var(--olive); }
.sw-cream    { background: var(--cream); }

/* ========== TAPES PLAYER ========== */
.tapes {
  background:
    radial-gradient(60% 60% at 30% 30%, rgba(91,26,32,0.35) 0%, rgba(13,12,11,0) 70%),
    var(--bg);
  padding-bottom: 6rem;
}
.player {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}
.player-art {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg-2);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px var(--line);
  max-height: 620px;
}
.art-img { width:100%; height:100%; object-fit: cover; }
.art-overlay {
  position: absolute;
  inset: 0;
  padding: 1.6rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(13,12,11,0) 40%, rgba(13,12,11,.85) 100%);
  pointer-events: none;
}
.art-kicker {
  font-size: .72rem;
  letter-spacing: .26em;
  color: var(--cream);
  margin: 0 0 .6rem;
  font-weight: 600;
}
.art-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0;
}
.art-circa {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream-d);
  margin: .4rem 0 0;
  font-size: 1rem;
}

/* liner notes column */
.liner-head { border-bottom: 1px solid var(--line); padding-bottom: 1rem; margin-bottom: .25rem; }
.liner-stamp {
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--cream-d);
  margin: 0;
  font-weight: 600;
}
.liner-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -0.01em;
  margin: .4rem 0 .25rem;
  color: var(--cream);
}
.liner-meta {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream-d);
  margin: 0;
  font-size: .95rem;
}
.liner-foot {
  font-size: .78rem;
  color: var(--cream-d);
  font-style: italic;
  font-family: var(--serif);
  text-align: center;
  margin: .25rem 0 0;
}
.player-deck {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.now-playing {}
.np-label {
  font-size: .72rem;
  letter-spacing: .28em;
  color: var(--cream-d);
  margin: 0;
}
.np-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.9rem;
  margin: .3rem 0 0;
  color: var(--cream);
}
.np-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream-d);
  margin: .25rem 0 0;
}
.player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: .25rem;
}
.pc-btn {
  width: 52px; height: 52px;
  display: inline-grid; place-items: center;
  border: 1px solid var(--line-2);
  font-size: .9rem;
  color: var(--cream);
  transition: border-color .2s, box-shadow .25s, transform .15s;
}
.pc-btn:hover { border-color: var(--cream); }
.pc-btn:active { transform: scale(.95); }
.pc-btn.play {
  width: 64px; height: 64px;
  background: var(--cream);
  color: var(--burgundy2);
  font-size: 1.05rem;
  border: 1px solid var(--cream);
}
.pc-btn[disabled] { opacity: .35; cursor: not-allowed; }
.seek {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .8rem;
  align-items: center;
  font-size: .78rem;
  color: var(--cream-d);
  font-variant-numeric: tabular-nums;
}
#seek-bar {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: rgba(235,225,196,.18);
  outline: none;
  cursor: pointer;
}
#seek-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  background: var(--cream);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(235,225,196,.55);
}
#seek-bar::-moz-range-thumb {
  width: 14px; height: 14px;
  background: var(--cream);
  border-radius: 999px;
  border: 0;
}
.tracklist {
  list-style: none;
  margin: .5rem 0 .25rem;
  padding: 0;
  border-top: 1px solid var(--line);
  max-height: 320px;
  overflow-y: auto;
}
.tr {
  display: grid;
  grid-template-columns: 1.8rem 1fr auto auto;
  gap: .8rem;
  align-items: center;
  padding: .7rem .35rem;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
  transition: background .2s;
}
.tr.empty { color: var(--cream-d); font-style: italic; }
.tr:hover { background: rgba(235,225,196,0.04); }
.tr.now { color: var(--cream); background: rgba(168,39,49,0.08); }
.tr.now .tr-num { color: var(--red-bright); }
.tr-num {
  font-family: var(--serif);
  color: var(--cream-d);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.tr-title {
  color: var(--cream);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.02rem;
}
.tr.empty .tr-title { color: var(--cream-d); cursor: default; font-size: .9rem; }
.tr-time {
  font-size: .78rem;
  color: var(--cream-d);
  font-variant-numeric: tabular-nums;
}
.tr-buy {
  font-size: .68rem;
  letter-spacing: .18em;
  font-weight: 700;
  padding: .35rem .55rem;
  border: 1px solid var(--line-2);
  color: var(--cream-d);
  transition: border-color .2s, color .2s, background .2s;
}
.tr-buy:hover {
  border-color: var(--cream);
  color: var(--bg);
  background: var(--cream);
}
.tr.empty .tr-buy {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ========== POPUP AD ========== */
.adpop {
  position: fixed;
  top: 86px;
  right: 1.4rem;
  width: 116px;
  z-index: 60;
  background: rgba(91, 26, 32, 0.94);
  border: 1px solid var(--cream-d);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(0,0,0,.6);
  padding: .45rem 1.1rem .42rem .5rem;
  transform: translateX(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .35s;
  text-decoration: none;
  color: var(--cream);
  display: block;
}
.adpop.on { transform: translateX(0); opacity: 1; pointer-events: auto; }
.adpop .ap-kicker {
  font-size: .5rem;
  letter-spacing: .22em;
  color: var(--cream-d);
  font-weight: 700;
  margin: 0 0 .35rem;
}
.adpop .ap-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: .82rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 .35rem;
  color: var(--cream);
}
.adpop .ap-desc {
  font-size: .62rem;
  color: var(--cream-d);
  line-height: 1.3;
  margin: 0 0 .35rem;
}
.adpop .ap-cta {
  font-size: .52rem;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--red-bright);
}
.adpop:hover .ap-cta { color: var(--cream); }
.adpop-x {
  position: absolute;
  top: .35rem; right: .4rem;
  width: 26px; height: 26px;
  display: inline-grid; place-items: center;
  background: transparent;
  border: 0;
  color: var(--cream-d);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color .2s;
}
.adpop-x:hover { color: var(--cream); }
@media (max-width: 640px) {
  .adpop { right: .4rem; width: calc(100vw - .8rem); max-width: 134px; }
}

/* ========== CAMPAIGN GRID ========== */
.campaign { padding-bottom: 6rem; }
.campaign-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 980px) {
  .campaign-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .campaign-grid { grid-template-columns: 1fr; }
}
.cg-tile {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  cursor: zoom-in;
  transition: transform .35s, box-shadow .35s;
  padding: 0;
  border: 0;
  display: block;
}
.cg-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.55), 0 0 0 1px rgba(235,225,196,.18);
}
.cg-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3/4;
  transition: transform .8s;
}
.cg-tile:hover img { transform: scale(1.04); }
.cg-label {
  position: absolute;
  left: .8rem; bottom: .8rem;
  font: 700 11px/1 var(--font-display, system-ui);
  letter-spacing: .14em;
  color: var(--cream);
  background: rgba(0,0,0,.55);
  padding: .45rem .6rem;
  border: 1px solid rgba(235,225,196,.22);
  pointer-events: none;
  text-transform: uppercase;
}
.cg-badge {
  position: absolute;
  top: .7rem; right: .7rem;
  font: 700 12px/1 var(--font-display, system-ui);
  color: var(--cream);
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(235,225,196,.3);
  padding: .35rem .5rem;
  border-radius: 999px;
  pointer-events: none;
}

/* ========== DRAWER (BAG) ========== */
.scrim {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  z-index: 80;
}
.scrim.on { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 92vw);
  height: 100dvh;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  z-index: 90;
  display: flex;
  flex-direction: column;
}
.drawer.on { transform: translateX(0); }
.drawer-head {
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-head h3 {
  font-size: .82rem;
  letter-spacing: .28em;
  margin: 0;
  font-weight: 700;
}
.x {
  width: 36px; height: 36px;
  display: inline-grid; place-items: center;
  font-size: 1.4rem;
  color: var(--cream);
  border: 1px solid var(--line);
}
.x:hover { border-color: var(--cream); }
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.4rem;
}
.drawer-foot {
  padding: 1rem 1.4rem 1.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.drawer-foot label {
  display: block;
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--cream-d);
}
.drawer-foot label > input,
.drawer-foot label > textarea {
  margin-top: .35rem;
}
.note { font-size: .8rem; color: var(--cream-d); margin: 0; line-height: 1.45; }

/* bag items */
.bag-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: .9rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.bag-item img {
  width: 70px; height: 90px;
  object-fit: cover;
}
.bag-item-info { font-size: .9rem; }
.bag-item-info strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
}
.bag-item-info small {
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--cream-d);
}
.bag-item-rm {
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--cream-d);
}
.bag-item-rm:hover { color: var(--red-bright); }
.bag-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--cream-d);
  font-style: italic;
  font-family: var(--serif);
}

/* ========== MODAL (PRODUCT DETAIL) ========== */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  background: rgba(13,12,11,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  overflow-y: auto;
}
.modal.on { opacity: 1; pointer-events: auto; }
.modal-x {
  position: fixed;
  top: 1.2rem; right: 1.2rem;
  z-index: 101;
}
.modal-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 3rem;
  align-items: start;
}
.m-gallery {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.m-main {
  aspect-ratio: 3/4;
  background: var(--bg-2);
  overflow: hidden;
}
.m-main img { width:100%; height:100%; object-fit:cover; }
.m-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
}
.m-thumbs img {
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: pointer;
  opacity: .55;
  transition: opacity .25s, transform .25s;
}
.m-thumbs img:hover { opacity: 1; transform: scale(1.02); }
.m-thumbs img.on { opacity: 1; outline: 1px solid var(--cream); }

.m-info { padding: .5rem 0; }
.m-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2.4rem;
  margin: 0;
  letter-spacing: -0.01em;
}
.m-name small {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .75rem;
  letter-spacing: .25em;
  color: var(--cream-d);
  margin-top: .4rem;
}
.m-price {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1rem 0 1.6rem;
}
.m-row {
  margin: 1.4rem 0;
}
.m-row > p {
  font-size: .72rem;
  letter-spacing: .25em;
  color: var(--cream-d);
  margin: 0 0 .55rem;
  font-weight: 600;
}
.m-row .swatches { padding-left: 0; }
.size-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.size-btn {
  min-width: 48px;
  padding: .55rem .85rem;
  border: 1px solid var(--line-2);
  font-size: .85rem;
  letter-spacing: .15em;
  color: var(--cream);
  transition: border-color .2s, color .2s, background .2s;
}
.size-btn:hover { border-color: var(--cream); }
.size-btn.on {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--burgundy2);
}
.m-bullets {
  list-style: none;
  margin: 2rem 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
}
.m-bullets li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: start;
}
.m-bullets b {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .22em;
  color: var(--cream);
  text-transform: uppercase;
  display: block;
  margin-bottom: .25rem;
}
.m-bullets span {
  font-size: .9rem;
  color: var(--cream-d);
  line-height: 1.5;
}
.m-bullets em {
  font-style: normal;
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border: 1px solid var(--line-2);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream-d);
}

/* ========== MINI PLAYER ========== */
.mini {
  position: fixed;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 65;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .55rem .65rem .55rem .55rem;
  background: rgba(91, 26, 32, 0.94);
  border: 1px solid var(--cream-d);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 36px rgba(0,0,0,.55), 0 0 22px rgba(235,225,196,.18);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .3s;
  max-width: min(440px, calc(100vw - 2rem));
}
.mini.on { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mini-play {
  width: 44px; height: 44px;
  display: inline-grid; place-items: center;
  border: 1px solid var(--cream);
  background: var(--cream);
  color: var(--burgundy2);
  font-size: 1rem;
  flex: 0 0 auto;
  font-weight: 700;
}
.mini-play:hover { box-shadow: 0 0 18px rgba(235,225,196,.55); }
.mini-mute, .mini-x {
  width: 36px; height: 36px;
  display: inline-grid; place-items: center;
  border: 1px solid rgba(235,225,196,.4);
  background: transparent;
  color: var(--cream);
  font-size: .95rem;
  flex: 0 0 auto;
  transition: border-color .2s, background .2s, color .2s;
}
.mini-mute:hover, .mini-x:hover { border-color: var(--cream); background: var(--cream); color: var(--burgundy2); }
.mini-x { font-size: 1.3rem; line-height: 1; }
.mini-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 auto;
  width: 110px;
}
.mini-label {
  font-size: .62rem;
  letter-spacing: .26em;
  color: var(--cream-d);
  font-weight: 700;
}
.mini-title {
  font-family: var(--serif);
  font-size: .98rem;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-vol {
  -webkit-appearance: none;
  appearance: none;
  width: 90px;
  height: 3px;
  background: rgba(235,225,196,.35);
  outline: none;
  cursor: pointer;
  border-radius: 2px;
  flex: 0 0 auto;
}
.mini-vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  background: var(--cream);
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(235,225,196,.55);
}
.mini-vol::-moz-range-thumb {
  width: 14px; height: 14px;
  background: var(--cream);
  border-radius: 999px;
  border: 0;
}
@media (max-width: 640px) {
  .mini { left: .6rem; bottom: .6rem; gap: .5rem; padding: .45rem; }
  .mini-vol { width: 60px; }
  .mini-info { width: 90px; }
}

/* ========== LIGHTBOX ========== */
/* While lightbox is open, hide bottom-fixed chrome so the round
   nav buttons aren't sliced by the player bar / chat fab / ad pop. */
body.lb-open .mini,
body.lb-open .chat-fab,
body.lb-open .adpop { display: none !important; }

.lightbox {
  position: fixed; inset: 0;
  z-index: 110;
  background: #000;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  padding: 3.5rem 1.5rem;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pinch-zoom pan-x pan-y;
}
.lightbox.on { opacity: 1; pointer-events: auto; }
.lightbox img {
  width: auto;
  height: auto;
  max-width: min(560px, 92vw);
  max-height: 80vh;
  object-fit: contain;
  margin: auto;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
  cursor: zoom-in;
  transition: max-width .25s ease, max-height .25s ease;
  touch-action: pinch-zoom;
}
.lightbox img.zoomed {
  max-width: none;
  max-height: none;
  cursor: zoom-out;
}
@media (max-width: 720px) {
  .lightbox { padding: 2.75rem 1rem; }
  .lightbox img { max-width: 94vw; max-height: 76vh; }
}
.m-main img { cursor: zoom-in; }
.lightbox-x {
  position: fixed;
  top: 1.2rem; right: 1.2rem;
  z-index: 111;
}
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 111;
  background: rgba(0,0,0,.55);
  color: var(--cream);
  border: 1px solid rgba(235,225,196,.25);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.lightbox-nav:hover { background: rgba(0,0,0,.85); border-color: rgba(235,225,196,.55); }
.lightbox-nav.prev { left: 1rem; }
.lightbox-nav.next { right: 1rem; }
.lightbox-foot {
  position: fixed;
  left: 0; right: 0; top: 1.2rem;
  z-index: 111;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  font: 700 11px/1 var(--font-display, system-ui);
  letter-spacing: .14em;
  color: var(--cream);
  pointer-events: none;
  text-transform: uppercase;
  padding: 0 4rem; /* clear space for close × at top-right */
}
.lightbox-cap {
  background: rgba(0,0,0,.6);
  padding: .5rem .8rem;
  border: 1px solid rgba(235,225,196,.2);
}
.lightbox-count {
  background: rgba(0,0,0,.6);
  padding: .5rem .8rem;
  border: 1px solid rgba(235,225,196,.2);
  opacity: .85;
}
@media (max-width: 720px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 20px; }
  .lightbox-nav.prev { left: .5rem; }
  .lightbox-nav.next { right: .5rem; }
  .lightbox-foot { top: .8rem; gap: .5rem; padding: 0 3rem; }
}

/* ========== CHAT ========== */
.chat-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.2rem;
  background: var(--red);
  color: var(--cream);
  font-size: .76rem;
  letter-spacing: .26em;
  font-weight: 700;
  border: 1px solid var(--red-bright);
  box-shadow: 0 8px 30px rgba(168,39,49,.55), 0 0 0 1px rgba(196,56,70,.0);
  animation: pulseRed 2.6s ease-in-out infinite;
  transition: transform .2s;
}
.chat-fab:hover { transform: translateY(-2px); }
.chat-fab .dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--cream);
  box-shadow: 0 0 10px var(--cream);
}
@keyframes pulseRed {
  0%,100% { box-shadow: 0 8px 30px rgba(168,39,49,.45), 0 0 0 0 rgba(196,56,70,.55); }
  50%     { box-shadow: 0 8px 36px rgba(168,39,49,.65), 0 0 0 9px rgba(196,56,70,0); }
}
.chat {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: min(380px, 92vw);
  height: min(560px, 78vh);
  background: var(--bg-2);
  border: 1px solid var(--line);
  z-index: 71;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s, opacity .3s;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}
.chat.on { transform: translateY(0) scale(1); opacity: 1; pointer-events:auto; }
.chat-head {
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
}
.chat-brand sup { font-size: .5em; opacity:.6; }
.chat-log {
  list-style: none;
  margin: 0;
  padding: 1rem;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.msg {
  max-width: 80%;
  padding: .7rem .95rem;
  font-size: .9rem;
  line-height: 1.45;
  border: 1px solid var(--line);
}
.msg.bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.03);
}
.msg.you {
  align-self: flex-end;
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--cream);
}
.chat-quick {
  padding: 0 1rem .7rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.chat-quick button {
  font-size: .7rem;
  letter-spacing: .14em;
  padding: .45rem .65rem;
  border: 1px solid var(--line-2);
  color: var(--cream-d);
  transition: border-color .2s, color .2s;
}
.chat-quick button:hover { border-color: var(--cream); color: var(--cream); }
.chat-form {
  padding: .8rem 1rem 1rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .55rem;
}
.chat-form input { padding: .65rem .8rem; }
.chat-send {
  width: 44px; height: 44px;
  background: var(--cream);
  color: var(--burgundy2);
  font-size: 1.1rem;
  display: inline-grid;
  place-items: center;
}

/* ========== FOOTER ========== */
.foot {
  border-top: 1px solid var(--line);
  padding: 2rem 1.5rem 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  font-size: .82rem;
  letter-spacing: .14em;
  color: var(--cream-d);
}
.foot-mark {
  display: inline-block;
  width: 56px;
  height: auto;
  border: 0;
  outline: 0;
  background: transparent;
}
.foot-url {
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--cream);
}
.foot-tag { font-style: italic; font-family: var(--serif); }
.foot-power {
  flex-basis: 100%;
  text-align: center;
  font-size: .72rem;
  letter-spacing: .26em;
  color: var(--cream-d);
  margin-top: .5rem;
  text-transform: uppercase;
  transition: color .2s;
}
.foot-power strong { color: var(--cream); font-weight: 700; letter-spacing: .14em; }
.foot-power:hover { color: var(--cream); }

/* ========== RESPONSIVE ========== */
@media (max-width: 820px) {
  .bar-inner { grid-template-columns: auto 1fr auto; }
  .bar-nav { display: none; }
  .player { grid-template-columns: 1fr; gap: 1.5rem; }
  .modal-inner { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 4rem; }
  .m-name { font-size: 1.9rem; }
  .hero-copy { padding-top: 6rem; }
  .chat { right: .5rem; bottom: .5rem; width: calc(100vw - 1rem); height: 80vh; }
  .chat-fab { right: .9rem; bottom: .9rem; }
}

/* ========== BRAND MARK + MOVEMENT (added 2026-04-30) ========== */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.brand-mark {
  width: 28px;
  height: auto;
  border-radius: 3px;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
@media (max-width: 720px) {
  .brand-mark { width: 24px; }
}
.brand:hover .brand-mark {
  transform: rotate(-4deg);
}

/* Foot mark gentle drift */
@keyframes drift {
  0%,100% { transform: translateY(0) rotate(0); }
  50%     { transform: translateY(-3px) rotate(-2deg); }
}
.foot-mark { animation: drift 6s ease-in-out infinite; }

/* Section title underline grow */
.section-title { position: relative; }
.section-title::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--cream);
  margin: .85rem auto 0;
  animation: lineGrow 1.1s cubic-bezier(.2,.8,.2,1) forwards .15s;
}
@keyframes lineGrow { to { width: 80px; } }

/* Cards rise on appearance */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.grid .card {
  animation: rise .55s cubic-bezier(.2,.8,.2,1) backwards;
}
.grid .card:nth-child(1) { animation-delay: .04s; }
.grid .card:nth-child(2) { animation-delay: .12s; }
.grid .card:nth-child(3) { animation-delay: .20s; }
.grid .card:nth-child(4) { animation-delay: .28s; }
.grid .card:nth-child(5) { animation-delay: .36s; }
.grid .card:nth-child(n+6) { animation-delay: .44s; }

/* Card price gets a hover pop */
.card:hover .card-price {
  transform: scale(1.08);
  color: var(--red-bright);
}
.card-price {
  transition: transform .25s, color .25s;
  display: inline-block;
}

/* Swatch ring breathe on the active one */
@keyframes breathe {
  0%,100% { box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--cream), 0 0 0 4px rgba(235,225,196,.15); }
  50%     { box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--cream), 0 0 0 8px rgba(235,225,196,.05); }
}
.swatch.on { animation: breathe 2.6s ease-in-out infinite; }

/* Hero ken-burns push */
@keyframes kenburns {
  0%   { transform: scale(1.05) translateX(0); }
  100% { transform: scale(1.18) translateX(-1.5%); }
}
.slide.on img { animation: kenburns 22s ease-out forwards; }

/* Glow button pulse on hover */
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(168,39,49,.55); }
  70%  { box-shadow: 0 0 0 14px rgba(168,39,49,0); }
  100% { box-shadow: 0 0 0 0 rgba(168,39,49,0); }
}
.btn.glow:hover { animation: pulseRing 1.5s ease-out infinite; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .grid .card,
  .foot-mark,
  .slide.on img,
  .section-title::after,
  .swatch.on,
  .btn.glow:hover { animation: none !important; }
  .brand-mark { transition: none; }
}
