/* ============================================================
   NEGRESCO — Furelise merch demo
   Concept: a grand hotel gone feral. Hotel signage, room
   numbers, a concierge cart, and a TV that only plays Fury.
   ============================================================ */

:root {
  --ink: #0c0a09;
  --tar: #16120f;
  --panel: #1c1713;
  --line: #2c251d;
  --bone: #e7e0d2;
  --smoke: #8a8172;
  --oxide: #c6301c;
  --display: "Archivo", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --arabic: "Amiri", serif;
  --gutter: clamp(16px, 4vw, 48px);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--display);
  font-weight: 400;
  font-stretch: 100%;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 2000;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(8) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  25% { transform: translate(-2%,3%); }
  50% { transform: translate(3%,-2%); }
  75% { transform: translate(-3%,-3%); }
}

::selection { background: var(--oxide); color: var(--bone); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible { outline: 2px solid var(--oxide); outline-offset: 3px; }

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

.display {
  font-family: var(--display);
  font-stretch: 62.5%;
  font-weight: 900;
  text-transform: uppercase;
  line-height: .82;
  letter-spacing: -.01em;
}

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.arabic {
  font-family: var(--arabic);
  direction: rtl;
}

/* ============================================================
   TICKER
   ============================================================ */

.ticker {
  border-bottom: 1px solid var(--line);
  background: var(--tar);
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
}
.ticker__track {
  display: inline-block;
  animation: ticker 32s linear infinite;
}
.ticker span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--smoke);
  padding: 0 2.2em;
}
.ticker b { color: var(--oxide); font-weight: 500; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   HEADER
   ============================================================ */

.site-head {
  position: sticky;
  top: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  backdrop-filter: blur(10px);
}

.wordmark {
  font-stretch: 62.5%;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: .02em;
}
.wordmark em { font-style: normal; color: var(--oxide); }

.site-nav { display: flex; gap: 28px; justify-content: center; }
.site-nav a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--smoke);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s;
}
.site-nav a:hover { color: var(--bone); }
.site-nav a[aria-current="page"] { color: var(--bone); border-bottom-color: var(--oxide); }

.head-right { display: flex; justify-content: flex-end; }
.cart-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 8px 14px;
  transition: border-color .2s, background .2s;
}
.cart-btn:hover { border-color: var(--smoke); }
.cart-btn .count {
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--oxide);
  color: var(--bone);
  font-size: 10px;
  border-radius: 999px;
}

/* ============================================================
   HERO — the lobby
   ============================================================ */

.hero {
  position: relative;
  padding: clamp(40px, 8vh, 90px) var(--gutter) 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--smoke);
  margin-bottom: 26px;
}
.hero__eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--oxide); }

.hero__title {
  font-size: clamp(64px, 14.5vw, 220px);
  color: var(--bone);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: inline-block; transform: translateY(110%); animation: riseUp .9s cubic-bezier(.16,1,.3,1) forwards; }
.hero__title .line:nth-child(2) > span { animation-delay: .12s; }
.hero__title .line em { font-style: normal; color: transparent; -webkit-text-stroke: 2px var(--bone); }
@keyframes riseUp { to { transform: translateY(0); } }

.hero__sub {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 26px;
}
.hero__sub .arabic { font-size: clamp(20px, 3vw, 32px); color: var(--smoke); }

.hero__meta { display: flex; gap: 34px; color: var(--smoke); }
.hero__meta b { color: var(--bone); font-weight: 500; }

.hero__strip {
  position: relative;
  height: clamp(200px, 34vh, 340px);
  margin: 0 calc(var(--gutter) * -1);
  border-top: 1px solid var(--line);
}
.hero__strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.05);
}
.hero__strip::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, transparent 30%, transparent 75%, var(--ink) 100%);
}

.hero__plaque {
  position: absolute;
  right: var(--gutter);
  bottom: 24px;
  z-index: 5;
  border: 1px solid var(--line);
  background: var(--tar);
  padding: 14px 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--smoke);
  line-height: 2;
}
.hero__plaque b { color: var(--oxide); font-weight: 500; }

/* ============================================================
   SECTION HEADS
   ============================================================ */

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 54px var(--gutter) 28px;
}
.section-head h2 { font-size: clamp(34px, 5.5vw, 72px); }
.section-head .mono { color: var(--smoke); }

/* ============================================================
   BOUTIQUE GRID — rooms
   ============================================================ */

.rooms {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
}

.room {
  position: relative;
  grid-column: span 2;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.room:nth-child(1), .room:nth-child(2) { grid-column: span 3; }

.room__media { position: relative; overflow: hidden; aspect-ratio: 4 / 4.6; background: var(--tar); }
.room:nth-child(-n+2) .room__media { aspect-ratio: 16 / 12.2; }
.room__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1), filter .4s;
  filter: saturate(.85);
}
.room:hover .room__media img { transform: scale(1.045); filter: saturate(1); }

.room__tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 6px 10px;
}
.room:hover .room__tag { animation: flicker .5s steps(2) 1; }
@keyframes flicker { 0%,100% { opacity: 1; } 33% { opacity: .3; } 66% { opacity: .8; } }

.room__badge {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--oxide);
  border: 1px solid var(--oxide);
  padding: 6px 10px;
  background: var(--ink);
}

.room__info {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 16px;
  padding: 16px;
  margin-top: auto;
}
.room__name {
  font-stretch: 70%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1;
}
.room__type { grid-column: 1; color: var(--smoke); margin-top: 6px; }
.room__price {
  grid-row: 1 / 3;
  grid-column: 2;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--bone);
  white-space: nowrap;
}

/* register card — the 6th cell links to the TV */
.room--register {
  background: var(--tar);
  justify-content: space-between;
  padding: 20px;
  min-height: 260px;
}
.room--register .arabic { font-size: 26px; color: var(--smoke); }
.room--register h3 { font-stretch: 70%; font-weight: 800; text-transform: uppercase; font-size: clamp(20px, 2vw, 30px); line-height: .95; }
.room--register .go {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--oxide);
  margin-top: 18px;
}
.room--register:hover .go { text-decoration: underline; text-underline-offset: 4px; }

/* ============================================================
   PRODUCT PAGE — the room
   ============================================================ */

.pdp {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  min-height: calc(100vh - 120px);
}

.pdp__media { border-right: 1px solid var(--line); background: var(--tar); position: relative; }
.pdp__media img { width: 100%; height: 100%; object-fit: cover; position: sticky; top: 0; max-height: 100vh; }

.pdp__body { padding: clamp(28px, 4vw, 56px); display: flex; flex-direction: column; gap: 26px; }

.crumbs { display: flex; gap: 8px; color: var(--smoke); }
.crumbs a:hover { color: var(--bone); }

.pdp__title { font-size: clamp(40px, 5vw, 76px); }
.pdp__price { font-family: var(--mono); font-size: 16px; color: var(--bone); }
.pdp__price s { color: var(--smoke); margin-left: 10px; }

.pdp__desc { color: var(--smoke); max-width: 46ch; }
.pdp__desc .arabic { display: block; margin-top: 10px; font-size: 18px; }

.spec { border-top: 1px solid var(--line); }
.spec dl { display: grid; grid-template-columns: 130px 1fr; }
.spec dt, .spec dd { padding: 10px 0; border-bottom: 1px solid var(--line); }
.spec dt { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--smoke); align-self: center; }
.spec dd { font-size: 14px; }

.sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.size {
  min-width: 52px;
  padding: 12px 0;
  text-align: center;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  transition: border-color .15s, background .15s;
}
.size:hover { border-color: var(--smoke); }
.size.on { border-color: var(--bone); background: var(--bone); color: var(--ink); }

.add-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  background: var(--bone);
  color: var(--ink);
  font-stretch: 70%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 18px;
  transition: background .2s;
}
.add-btn:hover { background: var(--oxide); color: var(--bone); }
.add-btn .mono { letter-spacing: .2em; }

.pdp__note { color: var(--smoke); font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }

.pdp__others { padding-bottom: 0; }

/* ============================================================
   NEGRESCO TV — about page
   ============================================================ */

.tv-hall {
  padding: clamp(30px, 6vh, 64px) var(--gutter);
  border-bottom: 1px solid var(--line);
}

.tv-hall__head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.tv-hall__head h1 { font-size: clamp(44px, 8vw, 130px); }
.tv-hall__head h1 em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px var(--bone); }
.tv-hall__head .arabic { font-size: clamp(18px, 2.4vw, 28px); color: var(--smoke); }

/* ---------- shared: TV static ---------- */

.static {
  position: absolute; inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: .9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23s)'/%3E%3C/svg%3E");
  background-size: 120px;
  animation: staticJump .14s steps(2) infinite;
  transition: opacity .2s;
}
@keyframes staticJump {
  0% { background-position: 0 0; }
  50% { background-position: 60px 30px; }
  100% { background-position: -40px -60px; }
}

/* ---------- one TV, proper size, the songs are the channels ---------- */

.tv-solo {
  max-width: 780px;
  margin: 0 auto;
}

.tv-solo__set {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #221c16, #14100c 60%);
  padding: clamp(12px, 2vw, 20px);
}

.tv-solo__screen {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(0,0,0,.85);
}

/* chromeless: player oversized so YouTube's title bar and watermark
   are cropped outside the visible tube */
.tv-solo__screen iframe,
.mini-tv__screen iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 190%; height: 142%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

/* scanlines + tube vignette */
.tv-solo__screen::after,
.mini-tv__screen::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 5;
  pointer-events: none;
  border-radius: inherit;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,.16) 0 1px, transparent 1px 3px),
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,.55) 100%);
}

/* CRT power-on line */
.tv-solo__screen::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 6;
  background: #fff;
  transform: scaleY(.008);
  pointer-events: none;
  animation: boot .9s ease-out .3s forwards;
}
@keyframes boot {
  0% { transform: scaleY(.008); opacity: 1; }
  45% { transform: scaleY(.008); opacity: 1; }
  85% { transform: scaleY(1); opacity: .5; }
  100% { transform: scaleY(1); opacity: 0; visibility: hidden; }
}

/* static shows only while flipping channels */
.tv-solo__screen .static { opacity: 0; }
.tv-solo.switching .static { opacity: .9; }

.onair {
  position: absolute;
  top: 10px; right: 12px;
  z-index: 6;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--oxide);
  text-shadow: 0 0 10px rgba(198,48,28,.8);
  animation: blinkLed 1.2s steps(1) infinite;
  pointer-events: none;
}
@keyframes blinkLed { 50% { opacity: .35; } }

/* click-for-sound chip */
.sound-chip {
  position: absolute;
  left: 50%; bottom: 12px;
  transform: translateX(-50%);
  z-index: 30;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(12,10,9,.85);
  border: 1px solid var(--line);
  padding: 9px 14px;
  white-space: nowrap;
  animation: chipPulse 1.6s ease-in-out infinite;
  pointer-events: none;
}
.sound-chip.gone { display: none; }
@keyframes chipPulse { 50% { border-color: var(--oxide); } }

.tv-solo__plate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
}
.tv-solo__plate .now {
  font-stretch: 70%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1;
}
.tv-solo__btns { display: flex; gap: 8px; }
.ctrl-btn {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--smoke);
  border: 1px solid var(--line);
  padding: 8px 12px;
  transition: color .2s, border-color .2s;
}
.ctrl-btn:hover { color: var(--bone); border-color: var(--smoke); }

/* the channels are the songs */
.tracks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-top: 0;
  max-width: 780px;
  margin: 0 auto;
}
.track {
  padding: 15px 10px;
  text-align: center;
  border-right: 1px solid var(--line);
  font-stretch: 70%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(14px, 1.6vw, 19px);
  line-height: 1;
  transition: background .2s;
}
.track:last-child { border-right: 0; }
.track:hover { background: var(--tar); }
.track.on { background: var(--bone); color: var(--ink); }


/* ---------- mini TV: follows the visitor on every page ---------- */

.mini-tv {
  position: fixed;
  left: 14px; bottom: 14px;
  z-index: 800;
  width: 224px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #221c16, #14100c 60%);
  padding: 8px;
  box-shadow: 0 14px 44px rgba(0,0,0,.55);
}
.mini-tv.off { display: none; }

.mini-tv__screen {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
}
.mini-tv.switching .static { opacity: .9; }
.mini-tv .static { opacity: 0; }

.mini-tv__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 7px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--smoke);
}
.mini-tv__bar .ch { color: var(--oxide); }
.mini-tv__bar a:hover { color: var(--bone); }
.mini-tv__bar button { font: inherit; letter-spacing: inherit; text-transform: inherit; color: var(--smoke); padding: 2px 4px; }
.mini-tv__bar button:hover { color: var(--bone); }

.mini-tv-restore {
  position: fixed;
  left: 14px; bottom: 14px;
  z-index: 800;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  border: 1px solid var(--line);
  background: var(--tar);
  color: var(--smoke);
  padding: 9px 12px;
}
.mini-tv-restore:hover { color: var(--bone); border-color: var(--smoke); }
.mini-tv-restore.off { display: none; }

/* ---------- register (bio) ---------- */

.register { border-bottom: 1px solid var(--line); }

.register__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-top: 1px solid var(--line);
}
.register__story { padding: clamp(28px, 4vw, 56px); border-right: 1px solid var(--line); }
.register__story h2 { font-size: clamp(34px, 4.5vw, 64px); margin-bottom: 24px; }
.register__story p { color: var(--smoke); max-width: 52ch; margin-bottom: 1.2em; }
.register__story p b { color: var(--bone); font-weight: 500; }
.register__story .arabic { font-size: 19px; color: var(--bone); }

.ledger { display: flex; flex-direction: column; }
.ledger__row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: baseline;
  gap: 18px;
  padding: 18px clamp(20px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
  transition: background .2s, padding-left .2s;
}
.ledger__row:hover { background: var(--tar); }
.ledger__row:last-child { border-bottom: 0; }
.ledger__row .year { font-family: var(--mono); font-size: 12px; color: var(--oxide); }
.ledger__row .what { font-stretch: 70%; font-weight: 800; text-transform: uppercase; font-size: clamp(18px, 2vw, 28px); line-height: 1; }
.ledger__row .kind { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--smoke); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.stat { padding: 26px var(--gutter); border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .n { font-stretch: 62.5%; font-weight: 900; font-size: clamp(38px, 6vw, 84px); line-height: 1; }
.stat .l { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--smoke); margin-top: 8px; display: block; }

.crowd {
  position: relative;
  height: clamp(260px, 55vh, 520px);
  overflow: hidden;
}
.crowd img { width: 100%; height: 100%; object-fit: cover; }
.crowd::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink), transparent 35%, transparent 70%, var(--ink));
}
.crowd .display {
  position: absolute;
  inset: auto var(--gutter) 26px;
  z-index: 3;
  font-size: clamp(30px, 6vw, 90px);
  color: var(--bone);
}

/* ============================================================
   CART DRAWER — the concierge
   ============================================================ */

.veil {
  position: fixed; inset: 0;
  background: rgba(5,4,3,.6);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.veil.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--tar);
  border-left: 1px solid var(--line);
  z-index: 960;
  transform: translateX(102%);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.drawer__head h3 { font-stretch: 70%; font-weight: 800; text-transform: uppercase; font-size: 20px; }
.drawer__close { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--smoke); }
.drawer__close:hover { color: var(--bone); }

.drawer__list { flex: 1; overflow-y: auto; }
.cart-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-row img { width: 72px; height: 86px; object-fit: cover; }
.cart-row .nm { font-stretch: 70%; font-weight: 800; text-transform: uppercase; font-size: 15px; line-height: 1.05; }
.cart-row .mt { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; color: var(--smoke); margin-top: 6px; }
.cart-row .rm { font-family: var(--mono); font-size: 10px; color: var(--smoke); letter-spacing: .1em; }
.cart-row .rm:hover { color: var(--oxide); }
.cart-row .pr { font-family: var(--mono); font-size: 12px; }

.drawer__empty { padding: 40px 22px; color: var(--smoke); }
.drawer__empty .arabic { display: block; font-size: 22px; margin-bottom: 10px; color: var(--bone); }

.drawer__foot { border-top: 1px solid var(--line); padding: 18px 22px; display: grid; gap: 14px; }
.drawer__total { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 13px; }
.checkout-btn {
  padding: 16px;
  background: var(--bone);
  color: var(--ink);
  font-stretch: 70%;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 16px;
  text-align: center;
  transition: background .2s;
}
.checkout-btn:hover { background: var(--oxide); color: var(--bone); }
.drawer__foot .mono { color: var(--smoke); text-align: center; }

/* demo stamp on checkout */
.stamp-veil {
  position: fixed; inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: rgba(5,4,3,.75);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.stamp-veil.show { opacity: 1; pointer-events: auto; }
.stamp {
  border: 3px solid var(--oxide);
  color: var(--oxide);
  padding: 22px 34px;
  font-stretch: 62.5%;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(28px, 5vw, 54px);
  line-height: 1;
  transform: rotate(-7deg) scale(1.6);
  opacity: 0;
  text-align: center;
}
.stamp small { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .2em; font-weight: 400; margin-top: 12px; }
.stamp-veil.show .stamp { animation: slam .35s cubic-bezier(.34,1.3,.64,1) forwards; }
@keyframes slam { to { transform: rotate(-7deg) scale(1); opacity: 1; } }

/* ============================================================
   FOOTER
   ============================================================ */

.site-foot { border-top: 1px solid var(--line); }
.site-foot__big {
  padding: 44px var(--gutter) 8px;
  font-size: clamp(48px, 11vw, 180px);
  color: var(--tar);
  -webkit-text-stroke: 1px var(--line);
  white-space: nowrap;
  overflow: hidden;
}
.site-foot__row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  justify-content: space-between;
  padding: 20px var(--gutter) 26px;
  color: var(--smoke);
}
.site-foot__row a:hover { color: var(--bone); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .site-head { grid-template-columns: auto 1fr auto; padding: 12px var(--gutter); }
  .site-nav { gap: 16px; justify-content: flex-end; }
  .rooms { grid-template-columns: 1fr 1fr; }
  .room, .room:nth-child(1), .room:nth-child(2) { grid-column: span 1; }
  .room:nth-child(-n+2) .room__media { aspect-ratio: 4 / 4.6; }
  .pdp { grid-template-columns: 1fr; }
  .pdp__media { border-right: 0; border-bottom: 1px solid var(--line); }
  .pdp__media img { position: static; max-height: 70vh; }
  .register__grid { grid-template-columns: 1fr; }
  .register__story { border-right: 0; border-bottom: 1px solid var(--line); }
  .tracks { grid-template-columns: 1fr 1fr; }
  .track { padding: 13px 8px; }
  .track:nth-child(2) { border-right: 0; }
  .track:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .tv-solo__plate { flex-wrap: wrap; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
}

@media (max-width: 560px) {
  .rooms { grid-template-columns: 1fr; }
  .hero__meta { gap: 20px; flex-wrap: wrap; }
  .site-nav { gap: 12px; }
  .site-nav .nav-lobby { display: none; }
  .cart-btn { padding: 7px 10px; gap: 7px; }
  .wordmark { font-size: 17px; }
  .mini-tv { width: 158px; left: 10px; bottom: 10px; }
  .mini-tv__bar .lbl { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .hero__title .line > span { transform: none; }
}
