:root {
  --reveal-size: 320px;
  --mx: 50%;
  --my: 50%;
  --red: #e60000;
  --red-glow: #ff1a1a;
  --bg: #000;
  --fg: #fff;
  --muted: rgba(255,255,255,.6);
  --line: rgba(255,255,255,.12);
  --card: rgba(255,255,255,.04);
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-x: none;
}

body { min-height: 100vh; }

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

a { color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }

.only-mobile { display: none; }
@media (max-width: 768px) {
  .only-mobile { display: inline; }
  .only-desktop { display: none; }
}

/* ===== TOPNAV ===== */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(0.6rem, 1.6vw, 1rem) clamp(1rem, 4vw, 2rem);
  background: linear-gradient(180deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 60%, transparent 100%);
  backdrop-filter: blur(8px) saturate(1.4);
  -webkit-backdrop-filter: blur(8px) saturate(1.4);
  transition: background .3s ease, transform .35s ease;
}
.topnav.is-scrolled {
  background: rgba(0,0,0,.85);
  border-bottom: 1px solid var(--line);
}
.topnav__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform .25s ease, filter .25s ease;
}
.topnav__logo img {
  height: clamp(46px, 7vh, 68px);
  width: auto;
  filter: drop-shadow(0 0 12px rgba(230, 0, 0, 0.35));
}
.topnav__logo:hover { transform: scale(1.04); }
.topnav__logo:hover img { filter: drop-shadow(0 0 18px rgba(230, 0, 0, 0.6)); }
@media (max-width: 640px) {
  .topnav__logo img { height: 38px; }
}
.topnav__menu {
  display: flex; gap: clamp(0.6rem, 2vw, 1.8rem);
}
.topnav__link {
  text-decoration: none;
  color: var(--fg);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 0.5rem 0;
  position: relative;
  opacity: 0.85;
  transition: opacity .2s ease;
}
.topnav__link:hover { opacity: 1; }
.topnav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .25s ease;
}
.topnav__link:hover::after { width: 100%; }
.topnav__link--accent { color: var(--red-glow); }

.topnav__cart {
  position: relative;
  background: rgba(230,0,0,.12);
  border: 1px solid var(--red);
  color: var(--fg);
  width: 42px; height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.topnav__cart:hover { background: rgba(230,0,0,.25); transform: scale(1.05); }
.topnav__cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--red);
  color: #fff;
  min-width: 20px; height: 20px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 0 6px;
}
.topnav__cart-count.is-zero { display: none; }

@media (max-width: 640px) {
  .topnav__menu { gap: 0.75rem; }
  .topnav__link { font-size: 0.7rem; letter-spacing: 0.1em; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  background: #000;
  /* Slight color treatment — keeps band readable but unmistakably a video */
  filter: contrast(1.05) saturate(1.05) brightness(0.85);
}

.hero__mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: block;
}

.hero__grunge {
  position: absolute;
  inset: 0;
  background-image: url("assets/grunge-texture.jpg");
  background-image: image-set(
    url("assets/grunge-texture.webp") type("image/webp"),
    url("assets/grunge-texture.jpg") type("image/jpeg")
  );
  background-size: cover;
  background-position: center;
  z-index: 2;
  opacity: 0.25;
  animation: grungeShift 40s ease-in-out infinite alternate;
  mix-blend-mode: multiply;
  pointer-events: none;
}
@keyframes grungeShift {
  0%   { transform: scale(1.0) translate(0, 0); }
  50%  { transform: scale(1.05) translate(-2%, 1%); }
  100% { transform: scale(1.08) translate(2%, -1%); }
}

.hero__scanlines {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.05;
  background-image: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 2px,
    rgba(0,0,0,0.6) 2px,
    rgba(0,0,0,0.6) 3px
  );
  mix-blend-mode: multiply;
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0.88) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.7 0'/></filter><rect width='220' height='220' filter='url(%23n)'/></svg>");
}

.hero__content {
  position: relative;
  z-index: 7;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  gap: clamp(1rem, 3vh, 2rem);
  pointer-events: none;
}
.hero__content > * { pointer-events: auto; }

.hero__logo {
  width: clamp(280px, 42vw, 560px);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(230, 0, 0, 0.5));
  user-select: none;
  -webkit-user-drag: none;
}

.hero__tag {
  font-size: 0.85rem;
  letter-spacing: 0.45em;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
}

.hero__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== Hero play button (central) ===== */
.hero__play {
  --size: clamp(96px, 11vw, 140px);
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  margin: 0.5rem auto 0.25rem;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), filter .25s ease;
  background: radial-gradient(circle at 50% 50%, rgba(230,0,0,0.32) 0%, rgba(230,0,0,0.12) 60%, transparent 70%);
  backdrop-filter: blur(2px);
}
.hero__play:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 28px rgba(230, 0, 0, 0.7));
}
.hero__play-ring {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  color: #fff;
}
.hero__play-ring-anim {
  stroke-dasharray: 88 352;
  stroke-dashoffset: 0;
  animation: playRing 6s linear infinite;
  transform-origin: 60px 60px;
  color: var(--red);
}
@keyframes playRing {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -352; }
}
.hero__play-icon {
  width: 38%;
  height: auto;
  transform: translateX(8%);
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}
.hero__play-label {
  position: absolute;
  bottom: calc(-1.5rem - 6px);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,.85);
}
@media (max-width: 640px) {
  .hero__play-label { font-size: 0.62rem; letter-spacing: 0.28em; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .3s ease;
  font-family: inherit;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 26px rgba(230,0,0,.4);
}
.btn--primary:hover { background: var(--red-glow); transform: translateY(-2px); box-shadow: 0 12px 34px rgba(230,0,0,.6); }

.btn--cta {
  background: var(--red);
  color: #fff;
  padding: 1.1rem 2rem;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  box-shadow: 0 10px 36px rgba(230,0,0,.5);
  width: 100%;
  justify-content: center;
}
.btn--cta:hover { background: var(--red-glow); transform: translateY(-2px); box-shadow: 0 14px 42px rgba(230,0,0,.7); }
.btn--cta:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

.btn--ghost {
  background: rgba(0,0,0,.5);
  border-color: rgba(255,255,255,.2);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--red); background: rgba(230,0,0,.12); transform: translateY(-2px); }

.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.75rem; }

/* ===== SECTIONS ===== */
section { padding: clamp(4rem, 10vh, 8rem) 0; position: relative; }

.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vh, 4rem);
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--red-glow);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--red);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}
.section-title .accent { color: var(--red); }
.section-sub {
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  max-width: 60ch;
  margin-inline: auto;
}

/* ===== DROP ===== */
.drop {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(230,0,0,.15) 0%, transparent 50%),
    #0a0a0a;
  border-top: 1px solid var(--line);
}

.drop__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .drop__grid { grid-template-columns: 1fr; } }

.drop__gallery { display: flex; flex-direction: column; gap: 1rem; }
.drop__main {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.drop__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}
.drop__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--red);
  color: #fff;
  padding: 0.4rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-radius: 999px;
  z-index: 3;
}
.drop__mono {
  position: absolute;
  bottom: 0.8rem; right: 0.8rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  z-index: 3;
  filter: drop-shadow(0 4px 14px rgba(230, 0, 0, 0.6));
  pointer-events: none;
  opacity: 0.95;
  transition: transform .35s ease;
}
.drop__main:hover .drop__mono { transform: rotate(15deg) scale(1.05); }
.drop__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
.drop__thumb {
  background: none;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  padding: 0;
  transition: border-color .2s ease, transform .2s ease;
}
.drop__thumb img { width: 100%; height: 100%; object-fit: cover; }
.drop__thumb:hover { transform: scale(1.04); }
.drop__thumb.is-active { border-color: var(--red); }

.drop__buy { position: sticky; top: 90px; }
@media (max-width: 900px) { .drop__buy { position: static; } }

.drop__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.drop__items {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.drop__items li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.95rem;
}
.drop__items li::before {
  content: "▶";
  color: var(--red);
  font-size: 0.7rem;
}
.drop__items .bonus {
  color: var(--red-glow);
  font-weight: 600;
}

.drop__price {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.drop__price-strike {
  font-size: 0.9rem;
  color: var(--muted);
}
.drop__price-strike s { color: rgba(255,255,255,.45); }
.drop__price-tier {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 540px) { .drop__price-tier { grid-template-columns: 1fr; } }
.tier {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.tier--hot {
  background: linear-gradient(135deg, rgba(230,0,0,.18) 0%, rgba(230,0,0,.06) 100%);
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(230,0,0,.25);
}
.tier__label { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--muted); text-transform: uppercase; }
.tier--hot .tier__label { color: var(--red-glow); font-weight: 600; }
.tier__value { font-size: 1.6rem; font-weight: 800; letter-spacing: 0.02em; }
.tier__meta { font-size: 0.8rem; color: var(--muted); }
.tier--hot .tier__meta strong { color: var(--red-glow); }

.drop__size-label, .drop__form-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.size-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.size-chip {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 0.7rem 1rem;
  min-width: 52px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all .18s ease;
  font-family: inherit;
}
.size-chip:hover { border-color: rgba(255,255,255,.4); transform: translateY(-1px); }
.size-chip.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 4px 14px rgba(230,0,0,.4);
}

.drop__pay {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
.drop__pay strong { color: var(--fg); }

/* ===== EXTRAS ===== */
.drop__extras {
  margin-top: clamp(3rem, 6vh, 5rem);
  padding-top: clamp(2rem, 5vh, 3rem);
  border-top: 1px solid var(--line);
}
.drop__extras-title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}
.drop__extras-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.5rem 0 2rem;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.extra-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color .2s ease, transform .2s ease;
}
.extra-card:hover { border-color: var(--red); transform: translateY(-3px); }
.extra-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  background: #111;
}
.extra-card h4 { font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 700; }
.extra-price { font-size: 1.15rem; font-weight: 700; }
.extra-price small { display: block; font-size: 0.75rem; color: var(--muted); font-weight: 400; margin-top: 0.2rem; }

/* ===== MUSIC ===== */
.music { background: #050505; border-top: 1px solid var(--line); }
.music__player {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: linear-gradient(135deg, rgba(230,0,0,.08) 0%, transparent 50%), var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 640px) { .music__player { grid-template-columns: 1fr; text-align: center; } }
.music__art {
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(230,0,0,.3);
}
.music__art img { width: 100%; height: 100%; object-fit: cover; }
.music__title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: 0.04em; }
.music__artist { color: var(--muted); margin-bottom: 1.2rem; letter-spacing: 0.3em; font-size: 0.75rem; }
.music__controls { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
@media (max-width: 640px) { .music__controls { justify-content: center; } }

.play-btn {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--red);
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(230,0,0,.45);
  transition: transform .2s ease, background .2s ease;
}
.play-btn:hover { background: var(--red-glow); transform: scale(1.06); }

.music__streams { margin-top: 1.2rem; display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; }
@media (max-width: 640px) { .music__streams { justify-content: center; } }
.music__streams a {
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.music__streams a:hover { color: var(--fg); border-color: var(--red); }

/* ===== VIDEO ===== */
.video { background: #080808; }
.video__card {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  max-width: 1000px;
  margin: 0 auto;
  text-decoration: none;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.video__card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .3s ease; }
.video__card:hover img { transform: scale(1.04); filter: brightness(0.85); }
.video__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.6) 100%);
}
.video__play {
  background: none; border: none; padding: 0;
  cursor: pointer;
  transition: transform .25s ease;
}
.video__card:hover .video__play { transform: scale(1.1); }
.video__label {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  text-transform: uppercase;
}

/* ===== TOUR ===== */
.tour { background: #0a0a0a; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.tour__mono {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(400px, 60vw, 700px);
  height: auto;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
.tour > .container { position: relative; z-index: 1; }
.tour__list { list-style: none; max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.tour__item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  transition: border-color .2s ease;
}
.tour__item:hover { border-color: var(--red); }
.tour__date {
  display: flex; flex-direction: column;
  align-items: center;
  padding: 0.6rem;
  background: rgba(230,0,0,.1);
  border-radius: 10px;
}
.tour__day { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.tour__month { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--muted); }
.tour__item h3 { font-size: 1.05rem; }
.tour__item p { color: var(--muted); font-size: 0.85rem; margin-top: 0.2rem; }
.tour__item--soon .tour__date { background: rgba(255,255,255,.05); }

@media (max-width: 540px) {
  .tour__item { grid-template-columns: 60px 1fr; gap: 0.8rem; }
  .tour__item .btn { grid-column: 1 / -1; justify-self: stretch; justify-content: center; }
  .tour__day { font-size: 1.4rem; }
}

/* ===== FOOTER ===== */
.footer { background: #000; border-top: 1px solid var(--line); padding: clamp(2rem, 5vh, 3rem) 0; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__logo { opacity: 0.7; height: 40px; width: auto; }
.footer__social { display: flex; gap: 1rem; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all .2s ease;
}
.footer__social a:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.footer__copy { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.1em; }
@media (max-width: 540px) { .footer__inner { justify-content: center; text-align: center; } }

/* ===== CART DRAWER ===== */
.cart {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  visibility: hidden;
}
.cart.is-open { visibility: visible; pointer-events: auto; }
.cart__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .3s ease;
}
.cart.is-open .cart__overlay { opacity: 1; }
.cart__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(440px, 100vw);
  height: 100%;
  background: #0a0a0a;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,.2,.2,1);
  overflow-y: auto;
}
.cart.is-open .cart__panel { transform: translateX(0); }

.cart__head {
  position: sticky; top: 0;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--line);
  z-index: 2;
}
.cart__head h3 { font-size: 0.95rem; letter-spacing: 0.25em; font-weight: 700; }
.cart__close {
  background: none;
  border: none;
  color: var(--fg);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 36px; height: 36px;
  border-radius: 999px;
  transition: background .2s ease;
}
.cart__close:hover { background: rgba(255,255,255,.1); }

.cart__items { padding: 1.2rem 1.5rem; flex: 1; }
.cart__empty { color: var(--muted); text-align: center; padding: 2rem 1rem; font-size: 0.9rem; }
.cart__item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 0.8rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart__item img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; background: #111; }
.cart__item h5 { font-size: 0.9rem; font-weight: 600; }
.cart__item-meta { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }
.cart__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 0.4rem;
}
.cart__qty button {
  width: 28px; height: 28px;
  background: none; border: none;
  color: var(--fg);
  cursor: pointer;
  font-size: 1.1rem;
}
.cart__qty button:hover { background: rgba(255,255,255,.08); }
.cart__qty span { padding: 0 0.6rem; font-size: 0.85rem; min-width: 28px; text-align: center; }
.cart__remove {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
}
.cart__remove:hover { color: var(--red); }
.cart__item-price { font-weight: 700; font-size: 0.95rem; }

.cart__totals { padding: 1rem 1.5rem; border-top: 1px solid var(--line); background: rgba(255,255,255,.02); }
.cart__row { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 700; }
.cart__note { font-size: 0.75rem; color: var(--muted); margin-top: 0.4rem; }

.cart__form { padding: 1.5rem; display: grid; gap: 0.8rem; border-top: 1px solid var(--line); }
.cart__form-title { font-size: 0.8rem; letter-spacing: 0.25em; margin-bottom: 0.5rem; }
.cart__form label {
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  gap: 0.3rem;
  text-transform: uppercase;
}
.cart__form input,
.cart__form select {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--fg);
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  letter-spacing: normal;
  text-transform: none;
}
.cart__form input:focus,
.cart__form select:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(230,0,0,.05);
}
.cart__form-row { display: grid; grid-template-columns: 1fr 70px 100px; gap: 0.5rem; }
.cart__form-col--sm input { padding-inline: 0.5rem; }
.cart__submit { margin-top: 0.5rem; }
.cart__legal { font-size: 0.7rem; color: var(--muted); text-align: center; }

@media (max-width: 540px) {
  .cart__form-row { grid-template-columns: 1fr 70px; }
  .cart__form-row .cart__form-col:nth-child(3) { grid-column: 1 / -1; }
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #fff;
  color: #000;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  z-index: 2000;
  box-shadow: 0 12px 40px rgba(230,0,0,.4);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 768px) {
  .hero__logo { width: clamp(220px, 70vw, 380px); }
}

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