/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #f8f7f4;
  --ink:         #0f0f0f;
  --blue:        #4cb3ff;
  --pink:        #f07090;
  --yellow:      #f5d86e;
  --green:       #4ade80;
  --muted:       rgba(15,15,15,0.45);
  --border:      rgba(15,15,15,0.1);
  --radius:      18px;
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --cur-default: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='24' viewBox='0 0 20 24'%3E%3Cpath d='M3,1 L3,19 L7,14.5 L10.5,22 L13.5,20.5 L10,13 L16,13 Z' fill='white' stroke='%230f0f0f' stroke-width='1.8' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") 3 1;
  --cur-pointer: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='24' viewBox='0 0 20 24'%3E%3Cpath d='M3,1 L3,19 L7,14.5 L10.5,22 L13.5,20.5 L10,13 L16,13 Z' fill='%234cb3ff' stroke='%230f0f0f' stroke-width='1.8' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") 3 1;
  --cur-cart:    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='24' viewBox='0 0 20 24'%3E%3Cpath d='M3,1 L3,19 L7,14.5 L10.5,22 L13.5,20.5 L10,13 L16,13 Z' fill='%23f07090' stroke='%230f0f0f' stroke-width='1.8' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") 3 1;
  --cur-music:   url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='24' viewBox='0 0 20 24'%3E%3Cpath d='M3,1 L3,19 L7,14.5 L10.5,22 L13.5,20.5 L10,13 L16,13 Z' fill='%23f5d86e' stroke='%230f0f0f' stroke-width='1.8' stroke-linejoin='round' stroke-linecap='round'/%3E%3C/svg%3E") 3 1;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--ink); overflow-x: hidden; }
a    { color: inherit; text-decoration: none; }
button { border: none; }

/* ============================================================
   GRAIN
   ============================================================ */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px;
  mix-blend-mode: multiply;
}

/* ============================================================
   NAV
   ============================================================ */
.nav-wrapper {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav-wrapper.scrolled {
  background: rgba(248,247,244,0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.logo-circle {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--ink); display: inline-block;
  transition: background 0.2s;
}
.nav-logo:hover .logo-circle { background: var(--blue); border-color: var(--blue); }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 13px; text-transform: lowercase;
  font-family: var(--font-head); font-weight: 500;
  position: relative; opacity: 0.7; transition: opacity 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--blue); transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-lang {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-family: var(--font-head); font-weight: 600;
}
.lang-btn { opacity: 0.4; transition: opacity 0.2s; }
.lang-btn:hover, .lang-active { opacity: 1; }
.lang-sep { opacity: 0.3; margin: 0 2px; }

.cart-nav-btn {
  display: flex; align-items: center; gap: 6px;
  background: none; border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 999px;
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  transition: border-color 0.2s;
}
.cart-nav-btn:hover { border-color: var(--blue); }
.cart-count {
  background: var(--blue); color: #fff;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 10px; font-weight: 700;
  align-items: center; justify-content: center; display: none;
}

/* White nav on dark-hero pages */
[data-nav="light"] .nav-wrapper:not(.scrolled) .nav-links a,
[data-nav="light"] .nav-wrapper:not(.scrolled) .nav-logo,
[data-nav="light"] .nav-wrapper:not(.scrolled) .nav-lang { color: rgba(248,247,244,0.85); }
[data-nav="light"] .nav-wrapper:not(.scrolled) .logo-circle { border-color: rgba(248,247,244,0.6); }
[data-nav="light"] .nav-wrapper:not(.scrolled) .cart-nav-btn { border-color: rgba(248,247,244,0.25); color: rgba(248,247,244,0.85); }
[data-nav="light"] .nav-wrapper:not(.scrolled) .nav-links a::after { background: #fff; }

/* ============================================================
   BLOBS
   ============================================================ */
.blob {
  position: absolute; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.18; pointer-events: none;
  animation: blobMorph 14s ease-in-out infinite;
  filter: blur(60px);
}
.blob-blue   { background: var(--blue);   width: 55vmax; height: 55vmax; top: -20%; left: -10%; }
.blob-pink   { background: var(--pink);   width: 45vmax; height: 45vmax; top: 10%; right: -15%; animation-delay: -5s; }
.blob-yellow { background: var(--yellow); width: 40vmax; height: 40vmax; bottom: -10%; left: 30%; animation-delay: -9s; }
.blob-small  { width: 30vmax; height: 30vmax; opacity: 0.14; filter: blur(40px); }
@keyframes blobMorph {
  0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0,0); }
  25%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translate(2%,3%); }
  50%      { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; transform: translate(-2%,1%); }
  75%      { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; transform: translate(1%,-2%); }
}

/* ============================================================
   MARQUEE  (warm gold theme — used everywhere)
   ============================================================ */
.marquee-wrap {
  overflow: hidden; padding: 10px 0;
  background: #f5c842; color: #1a0800;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.marquee-track {
  display: inline-flex; gap: 16px; width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase; white-space: nowrap;
}
.marquee-dot { color: #7c3a00; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 999px;
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: lowercase;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  border: none; cursor: pointer;
}
.btn:hover    { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.btn-primary  { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--blue); }
.btn-ghost    { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-white    { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--blue); color: #fff; }
.btn-sm       { padding: 7px 16px; font-size: 11px; }

@keyframes btnPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(0.88); }
  70%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.btn-pop { animation: btnPop 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards; }

/* ============================================================
   SHARED SECTION PRIMITIVES
   ============================================================ */
.section { padding: 80px 40px; position: relative; z-index: 1; }
.section-dark { background: var(--ink); color: var(--bg); }
.section-dark .section-sub,
.section-dark .show-city,
.section-dark .show-month { opacity: 0.5; }
.section-dark .section-link { color: var(--blue); }
.section-dark .show-row { border-bottom-color: rgba(255,255,255,0.08); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.section-title  { font-family: var(--font-head); font-size: clamp(36px,5vw,64px); font-weight: 800; line-height: 1; text-transform: lowercase; }
.section-sub    { font-size: 14px; opacity: 0.5; margin-top: 8px; max-width: 400px; }
.section-link   { font-family: var(--font-head); font-size: 13px; font-weight: 600; opacity: 0.6; transition: opacity 0.2s; white-space: nowrap; }
.section-link:hover { opacity: 1; }
.subsection-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.4; margin-bottom: 20px; display: block; }

.section-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: #888; margin-bottom: 16px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0;
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.7); opacity: 0.4; }
}

/* ============================================================
   PAGE HERO (generic)
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  padding: 140px 40px 80px;
  min-height: 40vh; display: flex; flex-direction: column; justify-content: flex-end;
}
.page-title { font-family: var(--font-head); font-size: clamp(48px,7vw,100px); font-weight: 800; text-transform: lowercase; line-height: 0.95; margin-bottom: 16px; }
.page-sub   { font-size: 16px; opacity: 0.55; max-width: 480px; }

/* ============================================================
   SHOWS
   ============================================================ */
.shows-list { display: flex; flex-direction: column; }
.show-row {
  display: flex; align-items: center; gap: 32px;
  padding: 22px 0; border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
}
.show-row:hover { padding-left: 12px; }
.show-date  { display: flex; flex-direction: column; align-items: center; min-width: 48px; }
.show-day   { font-family: var(--font-head); font-size: 28px; font-weight: 800; line-height: 1; }
.show-month { font-size: 10px; letter-spacing: 0.2em; font-weight: 600; opacity: 0.5; }
.show-info  { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.show-venue { font-family: var(--font-head); font-size: 18px; font-weight: 700; }
.show-city  { font-size: 13px; opacity: 0.55; }
.show-tag-wrap { display: flex; align-items: center; gap: 12px; }
.show-tag      { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; padding: 4px 10px; border-radius: 999px; }
.upcoming-tag  { background: var(--blue); color: #fff; }
.past-tag      { border: 1px solid var(--border); opacity: 0.5; }
.show-upcoming .show-venue { color: var(--blue); }
.show-ticket-price { font-family: var(--font-head); font-size: 14px; font-weight: 800; white-space: nowrap; }
.show-tickets-left { font-size: 11px; opacity: 0.5; text-align: right; margin-top: 2px; }

/* Shows page hero with video */
.shows-page-hero {
  position: relative; overflow: hidden;
  min-height: 62vh; display: flex; align-items: flex-end;
  padding: 140px 40px 64px;
}
.hero-bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; pointer-events: none;
}
.shows-page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.30) 40%, rgba(0,0,0,0.75) 100%);
}
.shows-page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(135deg, rgba(76,179,255,0.12) 0%, transparent 50%, rgba(240,112,144,0.10) 100%);
  pointer-events: none;
}
.shows-page-hero .hero-line {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--pink), transparent);
}
.shows-hero-content { position: relative; z-index: 4; }
.shows-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 16px;
}
.shows-page-hero .page-title { color: #fff; margin-bottom: 12px; }
.shows-page-hero .page-sub   { color: rgba(255,255,255,0.6); }

/* ============================================================
   JOURNAL
   ============================================================ */
.posts-grid      { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
.posts-grid-full { grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); }
.post-card {
  padding: 28px; border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); border-color: var(--blue); }
.post-tag   { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); }
.post-date  { font-size: 12px; opacity: 0.4; }
.post-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; line-height: 1.25; }
.post-body  { font-size: 14px; line-height: 1.65; opacity: 0.6; }
.post-link  { font-size: 13px; font-family: var(--font-head); font-weight: 600; color: var(--blue); margin-top: auto; }

/* ============================================================
   ABOUT (about.html page)
   ============================================================ */
.about-section  { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-p        { font-size: 17px; line-height: 1.8; margin-bottom: 20px; opacity: 0.8; }
.about-credits  { margin-top: 36px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.about-credits a { color: var(--blue); }
.members-list   { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.member         { display: flex; flex-direction: column; gap: 3px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.member-name    { font-family: var(--font-head); font-size: 18px; font-weight: 700; }
.member-role    { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.4; }

/* About hero */
.about-hero { min-height: 100vh; justify-content: flex-end; }
.about-hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 20px;
  padding-bottom: 20px;
}
.about-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.about-hero-sub {
  font-family: var(--font-head); font-size: 18px; font-weight: 400;
  color: rgba(255,255,255,0.55); letter-spacing: 0.05em;
}
.about-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.about-scroll-hint {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 8px; margin-top: 32px;
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

/* Story section */
.about-story-section { padding-top: 80px; }
.about-story-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}
.about-story-title {
  font-family: var(--font-head); font-size: clamp(36px,4.5vw,60px);
  font-weight: 800; line-height: 1; position: sticky; top: 120px;
}
.story-italic { font-style: italic; font-weight: 400; opacity: 0.5; }
.about-meta-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.meta-chip {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  padding: 5px 14px; border-radius: 999px;
  border: 1px solid var(--border); background: transparent;
  letter-spacing: 0.05em;
}

/* Members grid */
.about-members-section { padding-top: 80px; }
.members-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); overflow: hidden;
}
.member-card {
  position: relative; background: var(--ink);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 6px;
  transition: background 0.25s;
}
.member-card:hover { background: #161616; }
.member-card-art {
  grid-column: 1 / -1; flex-direction: row; align-items: flex-start; gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.member-card-art .member-card-role-icon { font-size: 36px; flex-shrink: 0; }
.member-card-art .member-card-name  { font-size: 20px; }
.member-card-role-icon { font-size: 24px; margin-bottom: 4px; }
.member-card-name {
  font-family: var(--font-head); font-size: 15px; font-weight: 800;
  color: #fff; line-height: 1.2;
}
.member-card-role {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 2px;
}
.member-card-note { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.5; }
.member-card-founder { background: #0d0d0d; }
.member-founder-badge {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--font-head); font-size: 9px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--yellow); color: var(--ink);
  padding: 3px 8px; border-radius: 999px;
}

/* Songs */
.about-music-section { padding-top: 80px; }
.songs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
.song-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.song-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); border-color: var(--song-color); }
.song-card-visual { position: relative; aspect-ratio: 16/9; background: #111; }
.song-card-visual iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.song-card-info { padding: 24px; background: var(--song-color-light); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.song-number { font-family: var(--font-head); font-size: 11px; font-weight: 800; letter-spacing: 0.3em; color: var(--song-color); text-transform: uppercase; }
.song-title { font-family: var(--font-head); font-size: 26px; font-weight: 800; line-height: 1; }
.song-title-en { font-weight: 400; font-style: italic; opacity: 0.45; font-size: 20px; }
.song-desc { font-size: 13px; line-height: 1.6; opacity: 0.6; }
.song-links { display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap; }
.song-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.song-link:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.song-link-spotify { background: #1DB954; color: #fff; }
.song-link-yt      { background: #FF0000; color: #fff; }
.album-teaser {
  margin-top: 32px; padding: 20px 28px;
  border: 1px dashed var(--border); border-radius: var(--radius);
  display: flex; align-items: center; gap: 16px;
  font-size: 14px; opacity: 0.6; font-family: var(--font-head);
}
.album-teaser-badge {
  font-size: 9px; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; background: var(--yellow); color: var(--ink);
  padding: 4px 10px; border-radius: 999px; flex-shrink: 0;
}

/* Contact */
.about-contact-section { padding-top: 80px; padding-bottom: 80px; }
.about-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-contact-links { display: flex; flex-direction: column; gap: 2px; }
.contact-link {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #fff; transition: padding-left 0.2s;
}
.contact-link:hover { padding-left: 8px; }
.contact-link-icon  { font-size: 24px; flex-shrink: 0; }
.contact-link-label { font-size: 11px; opacity: 0.4; letter-spacing: 0.15em; text-transform: uppercase; display: block; margin-bottom: 3px; font-family: var(--font-head); }
.contact-link-handle { font-family: var(--font-head); font-size: 18px; font-weight: 800; display: block; }
.contact-link-arrow { margin-left: auto; font-size: 20px; opacity: 0.3; transition: opacity 0.2s, transform 0.2s; }
.contact-link:hover .contact-link-arrow { opacity: 1; transform: translateX(4px); }

/* ============================================================
   MERCH PAGE HERO  (warm golden theme — definitive version)
   ============================================================ */
.merch-page-hero {
  position: relative; overflow: hidden;
  padding: 120px 40px 80px;
  background: linear-gradient(135deg,
    #1a0800 0%, #2d1200 25%, #7c3a00 55%, #c97b00 80%, #f5c842 100%
  );
  display: flex; flex-direction: column; align-items: flex-start; gap: 40px;
}
.merch-page-hero .blob-blue { background: radial-gradient(circle, rgba(245,180,30,0.35) 0%, transparent 70%); }
.merch-page-hero .blob-pink { background: radial-gradient(circle, rgba(200,80,0,0.3) 0%, transparent 70%); }

.merch-hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: #f5c842;
  font-family: var(--font-head);
}
.merch-hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900; line-height: 0.9; margin: 0;
  color: #fff; text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.mht-line   { display: block; }
.mht-italic { font-style: italic; color: #f5c842; }
.merch-hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.75);
  max-width: 480px; line-height: 1.6; margin: 0;
}
.merch-hero-stats {
  display: flex; align-items: center; gap: 24px;
  background: rgba(0,0,0,0.35); backdrop-filter: blur(12px);
  border: 1px solid rgba(245,200,66,0.2);
  border-radius: 14px; padding: 16px 28px;
}
.mhs-item { display: flex; flex-direction: column; gap: 2px; }
.mhs-num  { display: block; font-size: 1.6rem; font-weight: 900; color: #f5c842; line-height: 1; }
.mhs-lbl  { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.mhs-sep  { width: 1px; height: 36px; background: rgba(245,200,66,0.25); }

/* ============================================================
   SHOP SECTION
   ============================================================ */
.shop-section { padding: 0 40px 80px; }
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 24px;
  border-bottom: 1px solid var(--border); margin-bottom: 32px;
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
}
.shop-toolbar-count { opacity: 0.4; letter-spacing: 0.1em; text-transform: uppercase; }
.shop-toolbar-note  { color: #c97b00; font-weight: 700; letter-spacing: 0.05em; }

/* ============================================================
   PRODUCT GRID & TILES
   ============================================================ */
.product-grid-new {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.ptile {
  display: flex; flex-direction: column;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); background: var(--bg);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s;
}
.ptile:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
.ptile-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; background: #ece9e3; }
.ptile-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.ptile:hover .ptile-img { transform: scale(1.06); }
.ptile-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 52px; }
.ptile-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; }
.ptile-badge  {
  font-family: var(--font-head); font-size: 9px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.ptile-badge-limited { background: var(--ink); color: var(--bg); }
.ptile-badge-fire    { background: var(--pink); color: #fff; animation: badgePulse 2s ease-in-out infinite; }
@keyframes badgePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }

.ptile-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.78);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 28px;
  opacity: 0; transition: opacity 0.3s ease;
}
.ptile:hover .ptile-overlay { opacity: 1; }
.ptile-overlay-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.ptile-overlay-eyebrow {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.ptile-size-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.ptile-size {
  font-family: var(--font-head); font-size: 12px; font-weight: 800;
  padding: 8px 16px; border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent; color: #fff;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  letter-spacing: 0.05em;
}
.ptile-size:hover { background: #fff; color: var(--ink); border-color: #fff; transform: scale(1.08); }
.ptile-overlay-hint { font-size: 11px; color: rgba(255,255,255,0.35); font-family: var(--font-head); }
.ptile-soldout {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(248,247,244,0.6);
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7;
}

/* Size wrap + dims (under size buttons in overlay) */
.ptile-size-wrap  { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.ptile-size-dims  { font-size: 0.6rem; color: rgba(255,255,255,0.6); letter-spacing: 0.02em; }
.ptile-size-legend { font-size: 0.65rem; color: rgba(255,255,255,0.45); margin-top: 4px; }
.ptile-size-onebig { width: 100%; padding: 10px 20px; font-size: 0.9rem; }

.ptile-info { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 10px; }
.ptile-info-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.ptile-name-wrap { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.ptile-name { font-family: var(--font-head); font-size: 14px; font-weight: 800; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ptile-desc { font-size: 11px; opacity: 0.4; line-height: 1.4; }
.ptile-price-wrap { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; }
.ptile-eur { font-family: var(--font-head); font-size: 17px; font-weight: 800; line-height: 1; }
.ptile-bgn { font-size: 10px; opacity: 0.38; margin-top: 2px; }
.ptile-stock-wrap { display: flex; align-items: center; gap: 10px; }
.ptile-stock-bar  { flex: 1; height: 3px; border-radius: 999px; background: rgba(15,15,15,0.08); overflow: hidden; }
.ptile-stock-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--pink)); transition: width 0.8s ease; }
.ptile-stock-txt  { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.45; white-space: nowrap; }

/* ============================================================
   WHY-BUY STRIP
   ============================================================ */
.why-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border);
  background: var(--ink); color: var(--bg);
}
.why-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 36px 24px; gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.why-item:last-child { border-right: none; }
.why-item:hover { background: rgba(76,179,255,0.08); }
.why-icon  { font-size: 28px; }
.why-item strong { font-family: var(--font-head); font-size: 13px; font-weight: 800; letter-spacing: 0.05em; }
.why-item span   { font-size: 12px; opacity: 0.45; line-height: 1.5; }

/* ============================================================
   SHIPPING STRIP
   ============================================================ */
.shipping-strip { border-top: 1px solid var(--border); padding: 40px; }
.shipping-grid  { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; max-width: 860px; margin: 0 auto; }
.shipping-item  { display: flex; align-items: center; gap: 12px; }
.shipping-icon  { font-size: 24px; flex-shrink: 0; }
.shipping-item h4 { font-family: var(--font-head); font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.shipping-item p  { font-size: 11px; opacity: 0.5; }
.shipping-divider { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   SIZE GUIDE TABLE
   ============================================================ */
.size-guide-section { max-width: 700px; margin: 60px auto; padding: 0 20px; text-align: center; }
.size-guide-title { font-size: 1.4rem; margin-bottom: 6px; }
.size-guide-sub   { color: #888; font-size: 0.9rem; margin-bottom: 20px; }
.size-guide-table-wrap { overflow-x: auto; }
.size-guide-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.size-guide-table th,
.size-guide-table td { border: 1px solid #e0e0e0; padding: 10px 14px; text-align: center; }
.size-guide-table thead { background: #2d1200; color: #f5c842; font-weight: 700; }
.size-guide-table tbody tr:nth-child(even) { background: #fafafa; }
.size-guide-note { font-size: 0.8rem; color: #888; margin-top: 14px; line-height: 1.6; }

/* ============================================================
   TOAST
   ============================================================ */
.merch-toast {
  position: fixed; bottom: 24px; left: 24px; z-index: 9000;
  display: flex; align-items: center; gap: 12px;
  background: var(--ink); color: var(--bg);
  padding: 14px 18px 14px 16px; border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  max-width: 320px; min-width: 240px;
  transform: translateY(20px) translateX(-10px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.merch-toast.toast-show { opacity: 1; transform: translateY(0) translateX(0); pointer-events: all; }
.toast-avatar { font-size: 26px; flex-shrink: 0; }
.toast-body   { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.toast-name   { font-family: var(--font-head); font-size: 12px; font-weight: 800; }
.toast-msg    { font-size: 12px; opacity: 0.6; line-height: 1.4; }
.toast-close  {
  background: none; border: none; color: rgba(255,255,255,0.35);
  font-size: 18px; line-height: 1; padding: 0 0 0 4px; flex-shrink: 0;
  transition: color 0.2s;
}
.toast-close:hover { color: #fff; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(15,15,15,0.4);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px,100vw); background: var(--bg);
  z-index: 101; transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  border-left: 1px solid var(--border);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid var(--border);
}
.cart-title { font-family: var(--font-head); font-size: 20px; font-weight: 800; }
.cart-close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: none;
  font-size: 20px; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cart-close:hover { background: var(--ink); color: var(--bg); }
.cart-body  { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-empty { font-size: 14px; opacity: 0.4; font-family: var(--font-head); }

/* Cart item (rich version with qty controls) */
.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid #f0f0f0;
}
.cart-item-img   { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; flex-shrink: 0; background: #f0efec; }
.cart-item-info  { flex: 1; min-width: 0; }
.cart-item-name  { font-family: var(--font-head); font-size: 14px; font-weight: 700; margin: 0 0 2px; }
.cart-item-meta  { font-size: 12px; opacity: 0.5; margin: 0; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--blue); margin: 4px 0 0; }
.cart-item-controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.cart-qty-btn {
  width: 28px; height: 28px; border: 1px solid #ddd; border-radius: 6px;
  background: #fff; font-size: 1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.15s;
}
.cart-qty-btn:hover { background: #f0f0f0; }
.cart-qty-num { min-width: 20px; text-align: center; font-weight: 700; font-size: 0.9rem; }
.cart-remove {
  background: none; border: none; font-size: 1rem;
  cursor: pointer; opacity: 0.3; transition: opacity 0.15s; padding: 2px;
}
.cart-remove:hover { opacity: 1; }
.cart-footer {
  padding: 20px 28px 32px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
}
.cart-total-row { display: flex; justify-content: space-between; font-family: var(--font-head); font-size: 16px; font-weight: 700; }
.cart-checkout-btn { width: 100%; justify-content: center; }

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-section { max-width: 960px; margin: 0 auto; }
.checkout-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.checkout-summary { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); height: fit-content; }
.summary-row       { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.summary-total-row { display: flex; justify-content: space-between; padding-top: 14px; font-family: var(--font-head); font-size: 16px; font-weight: 800; }
.checkout-trust    { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.trust-item        { display: flex; gap: 10px; font-size: 12px; opacity: 0.6; align-items: center; }
.checkout-pay      { display: flex; flex-direction: column; gap: 16px; }
.checkout-pay-desc { font-size: 14px; line-height: 1.7; opacity: 0.6; }
.checkout-warning  { font-size: 13px; color: var(--pink); padding: 12px; border: 1px solid var(--pink); border-radius: 12px; }
.checkout-submit   { justify-content: center; padding: 16px 32px; font-size: 15px; }

/* ============================================================
   ORDER CONFIRMATION
   ============================================================ */
.confirm-hero {
  position: relative; overflow: hidden; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 40px 80px;
}
.confirm-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 28px; max-width: 680px;
}
.confirm-icon  { font-size: 72px; animation: float 4s ease-in-out infinite; }
.confirm-title { font-family: var(--font-head); font-size: clamp(42px,7vw,90px); font-weight: 800; line-height: 0.95; text-transform: lowercase; }
.confirm-sub   { font-size: 17px; line-height: 1.7; opacity: 0.65; max-width: 500px; }
.confirm-steps {
  display: flex; align-items: center;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 32px;
  width: 100%; flex-wrap: wrap; justify-content: center;
}
.confirm-step { display: flex; align-items: flex-start; gap: 14px; flex: 1; min-width: 160px; }
.cs-num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
}
.confirm-step h4  { font-family: var(--font-head); font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.confirm-step p   { font-size: 12px; opacity: 0.5; line-height: 1.5; }
.confirm-step-line { width: 40px; height: 1px; background: var(--border); flex-shrink: 0; margin: 16px 8px 0; }
.confirm-actions  { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Ticket grid on confirmation */
.confirm-tickets { margin: 40px 0; text-align: left; }
.confirm-tickets h3 { font-size: 1.3rem; margin-bottom: 6px; }
.confirm-tickets-sub { color: #888; font-size: 0.9rem; margin-bottom: 20px; }
.ticket-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.ticket-card { border: 1px solid #e0e0e0; border-radius: 10px; overflow: hidden; width: 280px; background: #fff; }
.ticket-img  { width: 100%; display: block; }
.ticket-card-meta { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; }
.ticket-num { font-weight: 700; font-size: 0.9rem; }

/* ============================================================
   ADMIN
   ============================================================ */
.admin-wrap     { max-width: 1100px; margin: 0 auto; padding: 100px 40px 60px; }
.admin-header   { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.admin-title    { font-family: var(--font-head); font-size: 32px; font-weight: 800; }
.admin-nav      { display: flex; gap: 12px; flex-wrap: wrap; }
.admin-nav a    { font-family: var(--font-head); font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 999px; border: 1px solid var(--border); opacity: 0.6; transition: opacity 0.2s, border-color 0.2s; }
.admin-nav a:hover, .admin-nav a.active { opacity: 1; border-color: var(--blue); }
.admin-card     { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.admin-table    { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.4; padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border); }
.admin-table td { padding: 12px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; }
.admin-form     { display: flex; flex-direction: column; gap: 16px; }
.admin-field    { display: flex; flex-direction: column; gap: 6px; }
.admin-field label { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.5; font-family: var(--font-head); }
.admin-field input,
.admin-field textarea,
.admin-field select { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 12px; font-family: var(--font-body); font-size: 14px; background: var(--bg); transition: border-color 0.2s; resize: none; }
.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus { border-color: var(--blue); outline: none; }
.admin-stats     { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 40px; }
.admin-stat-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; }
.admin-stat-num  { font-family: var(--font-head); font-size: 32px; font-weight: 800; line-height: 1; }
.admin-stat-lbl  { font-size: 11px; opacity: 0.45; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.badge-paid      { background: rgba(74,222,128,0.15); color: #166534; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.badge-pending   { background: rgba(245,216,110,0.2); color: #854d0e; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer  { background: var(--ink); color: var(--bg); padding: 60px 40px 40px; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .logo-circle { border-color: rgba(255,255,255,0.3); }
.footer-name  { font-family: var(--font-head); font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; opacity: 0.5; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }
.footer-copy p { font-size: 12px; opacity: 0.35; line-height: 1.7; }
.footer-cred   { font-size: 11px !important; }

/* ============================================================
   PAGE TRANSITION OVERLAY
   ============================================================ */
.pto {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--ink); opacity: 1;
  pointer-events: none;
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.pto.pto-visible { opacity: 0; }

/* ============================================================
   MUSIC BUTTON
   ============================================================ */
.music-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  display: flex; align-items: center; gap: 8px;
  background: rgba(15,15,15,0.92); color: var(--bg);
  padding: 10px 18px 10px 14px; border-radius: 999px;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(12px); user-select: none;
}
.music-btn.music-btn-visible { opacity: 1; transform: translateY(0); }
.music-btn:hover { background: rgba(30,30,30,0.98); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.music-btn.music-on { background: var(--blue); color: #fff; border-color: transparent; box-shadow: 0 8px 32px rgba(76,179,255,0.35); }
.music-btn-icon  { font-size: 15px; line-height: 1; }
.music-btn-label { white-space: nowrap; }
@keyframes musicBtnPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(76,179,255,0.5); }
  50%      { box-shadow: 0 0 0 10px rgba(76,179,255,0); }
}
.music-btn.music-btn-pulse { animation: musicBtnPulse 1.8s ease 3; }

/* ============================================================
   ANIMATIONS & REVEALS
   ============================================================ */
.reveal, .reveal-up, .reveal-right {
  opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal       { transform: translateY(20px); }
.reveal-up    { transform: translateY(40px); }
.reveal-right { transform: translateX(40px); }
.revealed     { opacity: 1 !important; transform: none !important; }

@keyframes float {
  0%,100% { transform: translateY(0px) rotate(-1deg); }
  50%      { transform: translateY(-18px) rotate(1deg); }
}
.floating { animation: float 6s ease-in-out infinite; }

/* ============================================================
   EMPTY STATES
   ============================================================ */
.empty-state { font-size: 14px; opacity: 0.5; padding: 40px 0; font-family: var(--font-head); }
.empty-state code { font-size: 12px; opacity: 0.7; display: block; margin-top: 8px; }
.shop-empty, .merch-empty {
  text-align: center; padding: 80px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.shop-empty-icon { font-size: 56px; }
.shop-empty h3, .merch-empty h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800; }
.shop-empty p, .merch-empty p   { font-size: 14px; opacity: 0.5; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
@media (pointer: fine) {
  *, *::before, *::after { cursor: var(--cur-default), auto !important; }
  a, button, [role="button"], label, select,
  .btn, .nav-logo, .lang-btn, .cart-nav-btn, .nav-links a { cursor: var(--cur-pointer), pointer !important; }
  .add-to-cart-btn, .ptile-size, .size-chip, .cart-checkout-btn, .mc-btn { cursor: var(--cur-cart), pointer !important; }
  #musicBtn { cursor: var(--cur-music), pointer !important; }
  input, textarea, [contenteditable] { cursor: text !important; }
}

/* ============================================================
   HOME PAGE
   ============================================================ */

/* Hero — full-screen video background */
.home-hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden; background: #0a0a0a;
}
.hero-video-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
  background: #0a0a0a;
}
/* Force YouTube iframe to cover the viewport */
.hero-video-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  pointer-events: none;
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,
    rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 40px; max-width: 700px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 900; line-height: 0.88;
  color: #fff; margin: 0 0 24px;
  text-shadow: 0 4px 60px rgba(0,0,0,0.5);
}
.ht-line   { display: block; }
.ht-italic { font-style: italic; color: #f5c842; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  max-width: 420px; line-height: 1.6; margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-social-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45); transition: color 0.2s;
}
.hero-social-link:hover { color: #fff; }
.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 40px; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.hero-scroll-hint span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scroll-line 2s ease infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* About strip */
.about-strip { background: #f9f6f0; padding: 80px 40px; }
.about-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-strip-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: #0a0a0a; line-height: 1.1; margin: 0 0 20px;
}
.about-strip-title em { font-style: italic; color: #c97b00; }
.about-strip-body  { font-size: 1rem; line-height: 1.7; color: #444; margin-bottom: 28px; }
.about-strip-btns  { display: flex; gap: 12px; flex-wrap: wrap; }
.about-strip-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ast-item {
  background: #fff; border-radius: 16px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.ast-num { font-size: 2.2rem; font-weight: 900; color: #0a0a0a; line-height: 1; }
.ast-lbl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #aaa; }

/* Team section */
.team-section { background: #0a0a0a; padding: 80px 40px; }
.team-inner   { max-width: 1200px; margin: 0 auto; }
.team-header  { margin-bottom: 48px; }
.team-title   { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: #fff; margin: 8px 0 0; }
.team-group   { margin-bottom: 52px; }
.team-group-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: #f5c842;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(245,200,66,0.2);
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.team-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 16px 18px;
  text-decoration: none; color: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
}
.team-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(245,200,66,0.3); transform: translateY(-2px); }
.team-card-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #2d1200, #f5c842);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.team-card-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.team-card-info strong { font-size: 0.88rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.team-card-info span   { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
.team-handle { color: rgba(245,200,66,0.7) !important; font-size: 0.68rem !important; }
.team-ig { color: rgba(255,255,255,0.2); font-size: 1rem; position: absolute; top: 12px; right: 14px; transition: color 0.2s; }
.team-card:hover .team-ig { color: #f5c842; }

/* Home shows */
.home-shows { background: #f9f6f0; padding: 70px 40px; }
.home-shows-inner { max-width: 800px; margin: 0 auto; }
.home-shows-head  { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.home-show-row    { display: flex; align-items: center; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.hsr-date  { display: flex; flex-direction: column; align-items: center; min-width: 44px; }
.hsr-day   { font-size: 1.6rem; font-weight: 900; color: #0a0a0a; line-height: 1; }
.hsr-mon   { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; color: #888; }
.hsr-info  { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.hsr-title { font-size: 1rem; font-weight: 700; color: #0a0a0a; }
.hsr-venue { font-size: 0.78rem; color: #888; }
.hsr-free  { font-size: 0.75rem; color: #c97b00; font-weight: 700; }
.hsr-soldout { font-size: 0.75rem; color: var(--pink); font-weight: 700; }

/* Home merch CTA */
.home-merch-cta {
  background: linear-gradient(135deg, #1a0800 0%, #2d1200 40%, #7c3a00 75%, #f5c842 100%);
  padding: 80px 40px;
}
.hmc-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hmc-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: #fff; line-height: 1.1; margin: 8px 0 16px; }
.hmc-title em { font-style: italic; color: #f5c842; }
.hmc-sub { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 28px; }
.hmc-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hmc-badge { background: rgba(0,0,0,0.3); border: 1px solid rgba(245,200,66,0.15); border-radius: 12px; padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.hmc-badge-icon { font-size: 1.5rem; }
.hmc-badge strong { font-size: 0.85rem; color: #fff; }

/* Home journal */
.home-journal { background: #fff; padding: 70px 40px; }
.home-journal-inner { max-width: 1000px; margin: 0 auto; }
.hj-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.hj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hj-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid #eee; text-decoration: none; color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.hj-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.hj-card-body    { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.hj-card-date    { font-size: 0.7rem; color: #aaa; letter-spacing: 0.08em; }
.hj-card-title   { font-size: 1rem; font-weight: 700; color: #0a0a0a; }
.hj-card-excerpt { font-size: 0.85rem; color: #666; line-height: 1.5; flex: 1; }
.hj-card-tag     { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #c97b00; }
.hj-card-cta     { font-size: 0.78rem; font-weight: 700; color: #c97b00; }

/* Instagram CTA */
.ig-cta { background: #0a0a0a; padding: 80px 40px; text-align: center; }
.ig-cta-inner { max-width: 500px; margin: 0 auto; }
.ig-cta-icon  { font-size: 2.5rem; display: block; margin-bottom: 16px; }
.ig-cta-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: #fff; margin: 0 0 16px; }
.ig-cta-sub   { font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 28px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .product-grid-new { grid-template-columns: repeat(2,1fr); }
  .admin-stats      { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 1000px) {
  .members-grid { grid-template-columns: repeat(2,1fr); }
  .songs-grid   { grid-template-columns: 1fr; }
  .why-strip    { grid-template-columns: repeat(2,1fr); }
  .why-item:nth-child(2) { border-right: none; }
}
@media (max-width: 900px) {
  .about-section { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; gap: 32px; }
  .nav-links     { display: none; }
  .checkout-grid { grid-template-columns: 1fr; }
  .confirm-steps { flex-direction: column; align-items: flex-start; }
  .confirm-step-line { width: 1px; height: 24px; margin: 0 0 0 15px; }
}
@media (max-width: 768px) {
  .about-strip-inner, .hmc-inner { grid-template-columns: 1fr; }
  .hj-grid    { grid-template-columns: 1fr; }
  .team-grid  { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 0 20px; }
  .about-strip, .team-section,
  .home-shows, .home-merch-cta,
  .home-journal, .ig-cta { padding: 60px 20px; }
  .about-story-grid   { grid-template-columns: 1fr; gap: 32px; }
  .about-story-title  { position: static; }
  .about-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-hero { min-height: 80vh; }
}
@media (max-width: 640px) {
  .shop-section     { padding: 0 16px 60px; }
  .merch-page-hero  { padding: 100px 20px 48px; }
  .product-grid-new { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .ptile-overlay    { display: none; }
  .why-strip        { grid-template-columns: 1fr; }
  .why-item         { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 24px 20px; }
  .merch-toast      { left: 12px; right: 12px; bottom: 16px; max-width: none; }
}
@media (max-width: 600px) {
  .section, .page-hero { padding: 60px 20px; }
  .nav-wrapper    { padding: 16px 20px; }
  .show-row       { gap: 16px; }
  .shipping-grid  { flex-direction: column; gap: 20px; }
  .shipping-divider { display: none; }
  .admin-stats    { grid-template-columns: 1fr 1fr; }
  .confirm-hero   { padding: 100px 20px 60px; }
  .music-btn      { bottom: 16px; right: 16px; padding: 10px 12px; }
  .music-btn-label { display: none; }
}
@media (max-width: 540px) {
  .members-grid { grid-template-columns: 1fr 1fr; }
  .member-card-art { flex-direction: column; }
}
@media (max-width: 480px) {
  .team-grid    { grid-template-columns: 1fr; }
  .hmc-badges   { grid-template-columns: 1fr; }
}