/** Shopify CDN: Minification failed

Line 2089:0 Unexpected "}"

**/
:root {
  --bg: oklch(0.13 0.012 60);
  --bg-2: oklch(0.17 0.014 55);
  --bg-3: oklch(0.22 0.016 50);
  --line: oklch(0.30 0.014 60 / .55);
  --fg: oklch(0.94 0.010 80);
  --fg-2: oklch(0.78 0.012 75);
  --fg-mute: oklch(0.58 0.012 70);
  --accent: oklch(0.78 0.15 55);
  /* dusk amber */
  --accent-2: oklch(0.88 0.10 80);
  --grain-opacity: .055;
  --contour-opacity: .055;

  --display: "Rugen Expanded", "Syne", ui-sans-serif, system-ui, sans-serif;
  --body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1480px;
  --pad-x: clamp(28px, 5vw, 64px);
}

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

html,
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto
}

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

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

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

::selection {
  background: var(--accent);
  color: #1a1409
}

/* ── ARTWORK SKIN ────────────────────────────────────────────────── */
/* Layer 1: faint warm vignette gradient */
/* Layer 2: topographic contour SVG */
/* Layer 3: film grain SVG noise */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

body::before {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, oklch(0.30 0.05 55 / .35), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 110%, oklch(0.20 0.04 40 / .45), transparent 60%);
  mix-blend-mode: screen;
}

body::after {
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0.9 0'/></filter><rect width='160' height='160' filter='url(%23n)' opacity='0.85'/></svg>");
  opacity: var(--grain-opacity);
  mix-blend-mode: overlay;
}

/* Contour SVG sits as a CSS background on a stable wrapper */
.skin {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1200' height='800' viewBox='0 0 1200 800'><g fill='none' stroke='%23ffeacc' stroke-width='0.6' opacity='0.55'><path d='M0,540 Q150,520 300,560 T600,540 T900,560 T1200,545'/><path d='M0,580 Q150,560 300,600 T600,580 T900,600 T1200,585'/><path d='M0,620 Q150,600 300,640 T600,620 T900,640 T1200,625'/><path d='M0,500 Q150,480 300,520 T600,500 T900,520 T1200,505'/><path d='M0,460 Q150,440 300,480 T600,460 T900,480 T1200,465'/><path d='M0,420 Q150,400 300,440 T600,420 T900,440 T1200,425'/><path d='M0,380 Q150,360 300,400 T600,380 T900,400 T1200,385'/><path d='M0,340 Q150,320 300,360 T600,340 T900,360 T1200,345'/><path d='M0,300 Q150,280 300,320 T600,300 T900,320 T1200,305'/><path d='M0,260 Q150,240 300,280 T600,260 T900,280 T1200,265'/><path d='M0,220 Q150,200 300,240 T600,220 T900,240 T1200,225'/><path d='M0,660 Q150,640 300,680 T600,660 T900,680 T1200,665'/><path d='M0,700 Q150,680 300,720 T600,700 T900,720 T1200,705'/></g></svg>");
  background-size: 1200px 800px;
  opacity: var(--contour-opacity);
  mix-blend-mode: screen;
}

/* ── TYPE ────────────────────────────────────────────────────────── */
.display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.92
}

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

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  display: inline-block
}

/* ── LAYOUT PRIMS ────────────────────────────────────────────────── */
main {
  position: relative;
  z-index: 2
}

section {
  position: relative;
  z-index: 2
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x)
}

/* ── NAV ────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: oklch(0.13 0.012 60 / .68);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px
}

.brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase
}

.brand .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-2px);
  margin: 0 2px
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: 14px;
  flex: 1
}

.nav-links a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 6px 0;
  position: relative
}

.nav-links a:hover {
  color: var(--fg)
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--accent);
  transition: right .35s ease
}

.nav-links a:hover::after {
  right: 0
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  transition: all .25s ease
}

.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.nav-cta .pulse {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2s infinite
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 oklch(0.78 0.15 55 / .6)
  }

  70% {
    box-shadow: 0 0 0 8px oklch(0.78 0.15 55 / 0)
  }

  100% {
    box-shadow: 0 0 0 0 oklch(0.78 0.15 55 / 0)
  }
}

/* ── MOBILE NAV ─────────────────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 7px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0
}

.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.mobile-nav {
  max-height: 0;
  overflow: hidden;
  background: oklch(0.10 0.012 60 / .98);
  border-top: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 var(--pad-x);
  transition: max-height 0.35s ease, padding 0.35s ease, border-color 0.2s ease
}

.mobile-nav.open {
  max-height: 420px;
  padding: 20px var(--pad-x) 28px;
  border-color: var(--line)
}

.mobile-nav a:not(.nav-cta) {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: block
}

.mobile-nav a:not(.nav-cta):hover {
  color: var(--fg)
}

.mobile-nav .nav-cta {
  margin-top: 20px;
  align-self: flex-start
}

@media (max-width: 680px) {

  .nav-links,
  .nav-cta:not(.mobile-cta) {
    display: none
  }

  .nav-burger {
    display: flex
  }

  .nav-cart {
    margin-left: auto
  }
}

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  display: block;
  position: relative;
  height: min(92vh, 880px);
  min-height: 600px;
  overflow: hidden;
  background: var(--bg-2);
  cursor: pointer
}

.hero-media {
  position: absolute;
  inset: 0
}

.hero-media video,
.hero-media img,
.hero-media .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media .placeholder {
  background:
    radial-gradient(ellipse 60% 50% at 50% 38%, oklch(0.45 0.10 50) 0%, transparent 55%),
    linear-gradient(to bottom, oklch(0.22 0.04 55) 0%, oklch(0.10 0.02 50) 100%);
  position: relative;
  overflow: hidden;
}

/* animated subtle "video loop" feel: drifting light bands */
.hero-media .placeholder::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 30% 20% at 30% 40%, oklch(0.65 0.14 50 / .35), transparent 70%),
    radial-gradient(ellipse 25% 18% at 70% 55%, oklch(0.55 0.12 30 / .30), transparent 70%);
  filter: blur(20px);
  animation: drift 18s ease-in-out infinite alternate;
}

.hero-media .placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(180deg, transparent 0 2px, oklch(0 0 0 / .06) 2px 3px);
  mix-blend-mode: multiply;
}

@keyframes drift {
  0% {
    transform: translate(-3%, -2%) scale(1.05)
  }

  100% {
    transform: translate(4%, 3%) scale(1.12)
  }
}

/* gradient scrim for legibility */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 40%, oklch(0.10 0.02 50 / .85) 100%),
    linear-gradient(to right, oklch(0.10 0.02 50 / .35) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 var(--pad-x) clamp(40px, 7vh, 80px);
  pointer-events: none
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--fg-2)
}

.hero-meta .tag {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: oklch(0.13 0.012 60 / .5);
  backdrop-filter: blur(8px)
}

.hero-meta .tag.accent {
  border-color: var(--accent);
  color: var(--accent)
}

.hero-title {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.025em;
  font-size: clamp(56px, 10.5vw, 178px);
  text-transform: uppercase;
  max-width: 14ch;
  margin-bottom: 24px
}

.hero-title .it {
  font-style: italic;
  font-weight: 500;
  color: var(--fg-2)
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  pointer-events: auto;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase
}

.hero-cta .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--fg);
  border-radius: 50%;
  transition: all .35s ease
}

.hero:hover .hero-cta .arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1409;
  transform: translateX(4px)
}

.hero-corner {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none
}

.hero-corner .mono {
  color: var(--fg-2)
}

.hero-corner .live {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.hero-corner .live::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ff5252;
  border-radius: 50%;
  animation: pulse 1.6s infinite
}

/* corner crosshair marks */
.corner-marks {
  position: absolute;
  inset: 14px;
  pointer-events: none
}

.corner-marks::before,
.corner-marks::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--fg-2);
  opacity: .55
}

.corner-marks::before {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0
}

.corner-marks::after {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0
}

/* ── BAND/MARQUEE ──────────────────────────────────────────────── */
.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: oklch(0.10 0.012 60 / .4);
  height: 64px
}

.marquee {
  display: flex;
  gap: 72px;
  padding: 0;
  height: 100%;
  align-items: center;
  animation: marq 38s linear infinite;
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-2)
}

.marquee .star {
  color: var(--accent);
  margin: 0 26px;
  display: inline-block;
  transform: translateY(-1px);
  width: 28px;
  flex-shrink: 0
}

@keyframes marq {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@media (max-width: 680px) {
  .marquee {
    animation-duration: 14s
  }
}

/* ── SECTIONS ──────────────────────────────────────────────────── */
section.block {
  padding: clamp(60px, 9vw, 120px) 0
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap
}

.section-title {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-size: clamp(36px, 5.4vw, 80px);
  text-transform: uppercase;
  max-width: 18ch
}

.section-sub {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  max-width: 32ch
}

@media (max-width: 680px) {
  .hero {
    height: min(72vh, 880px);
    min-height: 420px
  }

  .hero-title {
    font-size: clamp(46px, 10.5vw, 178px)
  }

  .mv {
    height: clamp(260px, 48vh, 480px)
  }
}

/* ── MUSIC VIDEO STRIP ─────────────────────────────────────────── */
.mv {
  display: block;
  position: relative;
  height: clamp(440px, 65vh, 720px);
  overflow: hidden;
  cursor: pointer;
  background: #000
}

.mv-media {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.mv-media .placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  background:
    radial-gradient(ellipse 50% 80% at 30% 50%, oklch(0.30 0.10 250 / .55), transparent 60%),
    radial-gradient(ellipse 50% 70% at 75% 60%, oklch(0.32 0.12 30 / .55), transparent 60%),
    linear-gradient(135deg, oklch(0.12 0.02 280) 0%, oklch(0.08 0.02 30) 100%);
}

.mv-media .placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 3px, oklch(0 0 0 / .12) 3px 4px);
}

.mv-media .placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, oklch(0 0 0 / .55) 100%);
}

.mv-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, oklch(0 0 0 / .7) 0%, transparent 60%)
}

.mv-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 var(--pad-x) clamp(36px, 5vw, 64px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  pointer-events: none
}

.mv-info .mv-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px
}

.mv-info .mv-eyebrow .now {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent)
}

.mv-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 88px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em
}

.mv-meta {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-top: 14px
}

.mv-play {
  display: flex;
  align-items: center;
  gap: 18px;
  pointer-events: auto
}

.mv-play .ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid var(--fg);
  display: grid;
  place-items: center;
  transition: all .35s ease
}

.mv:hover .mv-play .ring {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1409;
  transform: scale(1.05)
}

.mv-play .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.5
}

.mv-controls {
  position: absolute;
  top: 20px;
  right: 24px;
  display: flex;
  gap: 8px;
  pointer-events: auto
}

.mv-controls button {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--fg-2);
  background: oklch(0.10 0.012 60 / .4);
  backdrop-filter: blur(8px);
  transition: all .2s ease
}

.mv-controls button:hover {
  color: var(--fg);
  border-color: var(--fg-2)
}

/* ── TOUR ───────────────────────────────────────────────────────── */
/* (rows now rendered by Bandsintown widget — see .bit-* overrides below) */

/* ── PRODUCT GRID ──────────────────────────────────────────────── */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px
}

@media (max-width: 1100px) {
  .products {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width: 760px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
  }
}

.prod {
  position: relative;
  cursor: pointer
}

.prod-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line)
}

.prod-media .frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease
}

.prod-media .frame.active {
  opacity: 1
}

.prod-media .placeholder-art {
  width: 100%;
  height: 100%;
  position: relative
}

.prod-media .placeholder-art .lbl {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(0.94 0 0 / .55);
  padding: 4px 8px;
  background: oklch(0 0 0 / .35);
  backdrop-filter: blur(6px)
}

.prod-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  gap: 4px;
  justify-content: center;
  padding: 0 12px;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none
}

.prod:hover .prod-dots {
  opacity: 1
}

.prod-dots span {
  flex: 1;
  height: 2px;
  background: oklch(0.94 0 0 / .25);
  max-width: 36px;
  overflow: hidden;
  position: relative
}

.prod-dots span.active {
  background: oklch(0.94 0 0 / .85)
}

.prod-info {
  padding: 14px 2px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px
}

.prod-name {
  font-weight: 600;
  font-size: 15px
}

.prod-cat {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 4px
}

.prod-price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg)
}

.prod-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--accent);
  color: #1a1409;
  z-index: 2
}

.prod-tag.dim {
  background: oklch(0.94 0 0 / .85);
  color: #1a1409
}

/* ── INNER CIRCLE ──────────────────────────────────────────────── */
.ic {
  position: relative;
  padding: clamp(72px, 10vw, 140px) 0;
  overflow: hidden;
  background: linear-gradient(to bottom, transparent, oklch(0.10 0.012 50 / .8) 30%, oklch(0.10 0.012 50 / .8))
}

.ic-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center
}

@media (max-width: 900px) {
  .ic-inner {
    grid-template-columns: 1fr
  }
}

.ic-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(42px, 6.4vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.02em
}

.ic-title .it {
  font-style: italic;
  font-weight: 500;
  color: var(--fg-2)
}

.ic-blurb {
  margin-top: 22px;
  max-width: 48ch;
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.6
}

.ic-perks {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ic-perks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-2)
}

.ic-perks li .pip {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex: 0 0 auto
}

.ic-form {
  padding: 28px;
  border: 1px solid var(--line);
  background: oklch(0.13 0.012 60 / .55);
  backdrop-filter: blur(10px)
}

.ic-form .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 14px
}

.ic-form input {
  display: block;
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font: 500 18px var(--body);
  color: var(--fg);
  outline: none;
  transition: border .25s
}

.ic-form input:focus {
  border-bottom-color: var(--accent)
}

.ic-form input::placeholder {
  color: oklch(0.55 0.010 70)
}

.ic-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 12px
}

.ic-form .submit {
  margin-top: 24px;
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: #1a1409;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .25s
}

.ic-form .submit:hover {
  background: var(--accent-2)
}

.ic-fine {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute)
}

/* ── CONTACT FORM ───────────────────────────────────────────────── */
.contact-about {
  max-width: 700px;
  margin-bottom: 0
}

.contact-about p {
  color: var(--fg-2);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px
}

.contact-booking {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px
}

.contact-booking a {
  font-family: var(--mono);
  font-size: 17px;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none
}

.contact-booking a:hover {
  text-decoration: underline
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  max-width: 700px
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.field-group--full {
  grid-column: 1 / -1
}

.field-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute)
}

.field-input {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--fg);
  font-family: var(--body);
  font-size: 16px;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s
}

.field-input:focus {
  border-color: var(--accent)
}

.field-input::placeholder {
  color: var(--fg-mute)
}

.field-textarea {
  resize: vertical;
  min-height: 140px
}

.contact-success {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.1em
}

.contact-error {
  color: oklch(0.75 0.18 30);
  font-size: 14px;
  margin-bottom: 16px
}

@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr
  }
}

/* ── FOOTER ────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 120px
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px
}

@media (max-width:900px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr
  }
}

.foot-brand-img {
  width: clamp(270px, 42vw, 630px);
  height: auto;
  opacity: 0.9
}

.foot-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-top: 18px
}

.foot-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 18px;
  font-weight: 400
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.foot-col a {
  font-size: 14px;
  color: var(--fg-2);
  transition: color .2s
}

.foot-col a:hover {
  color: var(--accent)
}

.foot-bottom {
  border-top: 1px solid var(--line);
  margin-top: 64px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute)
}

/* ── PERSISTENT INNER CIRCLE BAR ──────────────────────────────── */
.ic-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  max-width: 720px;
  margin: 0 auto;
  background: oklch(0.13 0.012 60 / .82);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 40px oklch(0 0 0 / .35);
  transition: opacity .35s, transform .35s;
}

.ic-bar.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px)
}

.ic-bar .pip {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  flex: 0 0 auto
}

.ic-bar .txt {
  flex: 1;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.ic-bar .txt b {
  color: var(--fg);
  font-weight: 600
}

.ic-bar .join {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap
}

.ic-bar .join:hover {
  color: var(--accent-2)
}

.ic-bar .x {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--fg-mute);
  font-size: 14px;
  flex: 0 0 auto
}

.ic-bar .x:hover {
  color: var(--fg)
}

/* ── GLITCH BUTTON ─────────────────────────────────────────────── */
/* Reusable .glitch class. Put data-text="LABEL" on the element. */
.glitch {
  position: relative;
  display: inline-block
}

.glitch .layer {
  display: inline-block
}

.glitch[data-active="1"] .layer {
  animation: glitch-shake .4s steps(2) infinite
}

.glitch[data-active="1"]::before,
.glitch[data-active="1"]::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  text-shadow: none;
  color: inherit;
}

.glitch[data-active="1"]::before {
  color: oklch(0.78 0.18 25);
  transform: translate(calc(var(--gx, 1px) * -1), 0);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  animation: glitch-shift-1 .35s steps(2) infinite;
}

.glitch[data-active="1"]::after {
  color: oklch(0.78 0.18 220);
  transform: translate(var(--gx, 1px), 0);
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  animation: glitch-shift-2 .35s steps(2) infinite;
}

@keyframes glitch-shift-1 {

  0%,
  100% {
    transform: translate(-1px, 0)
  }

  25% {
    transform: translate(-3px, 1px)
  }

  50% {
    transform: translate(-2px, -1px)
  }

  75% {
    transform: translate(-3px, 0)
  }
}

@keyframes glitch-shift-2 {

  0%,
  100% {
    transform: translate(1px, 0)
  }

  25% {
    transform: translate(3px, -1px)
  }

  50% {
    transform: translate(2px, 1px)
  }

  75% {
    transform: translate(3px, 0)
  }
}

@keyframes glitch-shake {

  0%,
  100% {
    transform: translate(0, 0)
  }

  25% {
    transform: translate(0.5px, -0.5px)
  }

  50% {
    transform: translate(-0.5px, 0.5px)
  }

  75% {
    transform: translate(0.5px, 0.5px)
  }
}

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all .25s ease;
  color: var(--fg)
}

.btn:hover {
  border-color: var(--fg)
}

.btn.solid {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1409
}

.btn.solid:hover {
  background: var(--accent-2);
  border-color: var(--accent-2)
}

.btn.ghost {
  border-color: var(--line)
}

.btn .arr {
  display: inline-block;
  transition: transform .25s
}

.btn:hover .arr {
  transform: translateX(3px)
}

/* ── PLACEHOLDER ART ──────────────────────────────────────────── */
/* Themed striped placeholder for product imagery. */
.ph {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden
}

.ph .stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(var(--ph-angle, 135deg),
      var(--ph-a, oklch(0.20 0.02 50)) 0,
      var(--ph-a, oklch(0.20 0.02 50)) 14px,
      var(--ph-b, oklch(0.16 0.02 50)) 14px,
      var(--ph-b, oklch(0.16 0.02 50)) 28px)
}

.ph.amber .stripes {
  --ph-a: oklch(0.40 0.10 55);
  --ph-b: oklch(0.32 0.08 55)
}

.ph.cool .stripes {
  --ph-a: oklch(0.25 0.05 250);
  --ph-b: oklch(0.18 0.03 250)
}

.ph.bone .stripes {
  --ph-a: oklch(0.85 0.02 80);
  --ph-b: oklch(0.78 0.02 80)
}

.ph.smoke .stripes {
  --ph-a: oklch(0.28 0.02 60);
  --ph-b: oklch(0.22 0.02 60)
}

.ph .gloss {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, oklch(1 0 0 / .14), transparent 50%)
}

.ph .lbl {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(0.94 0 0 / .65);
  padding: 5px 9px;
  background: oklch(0 0 0 / .45);
  backdrop-filter: blur(6px);
  border: 1px solid oklch(1 0 0 / .1)
}

/* ── LATEST RELEASE ROW ───────────────────────────────────────── */
.release {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center
}

@media (max-width: 900px) {
  .release {
    grid-template-columns: 1fr
  }
}

.release-cover {
  aspect-ratio: 1/1;
  max-width: 520px;
  width: 100%;
  border: 1px solid var(--line)
}

.release h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 18px
}

.release p {
  color: var(--fg-2);
  font-size: 16px;
  line-height: 1.65;
  max-width: 54ch;
  margin-bottom: 28px
}

.release .stream {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

/* ── UTIL ─────────────────────────────────────────────────────── */
.row-flex {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
  border: 0
}


/* === Shopify additions === */
/* Shopify-only additions (appended to ported theme.css). */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #1a1409;
  padding: 8px 14px;
  z-index: 1000;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase
}

.skip-link:focus {
  left: 8px;
  top: 8px
}

.brand-logo {
  max-height: 48px;
  width: auto
}

.nav-cart {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 6px
}

.nav-cart:hover {
  color: var(--fg)
}

.nav-cart .count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #1a1409;
  font-size: 10px;
  font-weight: 600
}

.ic-success {
  margin-bottom: 14px;
  padding: 12px 14px;
  background: oklch(0.78 0.15 55 / .14);
  color: var(--accent);
  border: 1px solid var(--accent);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase
}

.ic-error {
  margin-bottom: 14px;
  padding: 12px 14px;
  background: oklch(0.50 0.15 25 / .14);
  color: #ff8a7a;
  border: 1px solid #ff8a7a;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase
}

/* Product gallery on PDP — make image fill frame */
.prod-img,
.product-gallery .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.product-gallery {
  aspect-ratio: 1/1
}

/* Hero video sizing parity with .placeholder */
.hero-video,
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.mv-media video,
.mv-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

/* YouTube iframe backgrounds (hero + music-video strip) */
.hero-yt,
.mv-yt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  pointer-events: none
}

/* Marquee stardagger separator image */
.star-img {
  height: 56px;
  width: 100%;
  object-fit: contain;
  vertical-align: middle;
  opacity: .85
}

/* Footer social / streaming links */
.foot-social {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  margin-top: 24px
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-2);
  transition: color .2s
}

.social-link:hover {
  color: var(--accent)
}

.social-link svg {
  flex-shrink: 0
}

/* Frame container needs to fill prod-media */
.prod-media .frame {
  position: absolute;
  inset: 0
}

.prod-media .frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

/* Tour section — widget supplies its own bottom spacing */
.section-tour section.block {
  padding-bottom: 0;
}

/* Merch section — sits directly after the tour widget */
.section-featured-products section.block {
  padding-top: clamp(32px, 4vw, 48px);
}

/* Kill widget's own internal bottom whitespace */
.tour-widget .bit-widget-container,
.tour-widget .bit-widget {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.tour-widget {
  overflow-x: hidden;
}
.tour-widget .bit-play-my-city-wrapper {
  margin-bottom: 0 !important;
}

/* ── BANDSINTOWN WIDGET ──────────────────────────────────────────── */
.tour-widget .bit-widget-container,
.tour-widget .bit-widget {
  font-family: var(--body) !important;
  background: transparent !important;
  color: var(--fg) !important;
}

/* Follow section — eyebrow style */
.tour-widget .bit-follow-section-wrapper {
  border-bottom: 1px solid var(--line) !important;
  padding: 24px 0 !important;
  margin-bottom: 0 !important;
}
.tour-widget .bit-follow-section-heading-text {
  font-family: var(--mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--fg-mute) !important;
}
.tour-widget .bit-follow-section-cta.bit-button {
  font-family: var(--mono) !important;
  font-size: 10px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  background: transparent !important;
  color: var(--fg) !important;
  border: 1px solid var(--line) !important;
  border-radius: 2px !important;
  padding: 8px 20px !important;
  transition: background .25s, color .25s !important;
}
.tour-widget .bit-follow-section-cta.bit-button:hover {
  background: var(--fg) !important;
  color: var(--bg) !important;
}

/* Upcoming / Near Me nav tabs */
.tour-widget .bit-nav-bar-container {
  border-bottom: 1px solid var(--line) !important;
  padding-bottom: 0 !important;
}
.tour-widget .bit-show-upcoming,
.tour-widget .bit-show-local,
.tour-widget .bit-clickable-nav-link {
  font-family: var(--mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--fg-mute) !important;
  background: transparent !important;
  padding: 10px 0 !important;
  border-bottom: 2px solid transparent !important;
  transition: color .25s !important;
}
.tour-widget .bit-show-upcoming.selected,
.tour-widget .bit-show-local.selected,
.tour-widget .bit-clickable-nav-link.selected {
  color: var(--fg) !important;
  border-bottom-color: var(--accent) !important;
}
.tour-widget .bit-event-toggle-separator {
  color: var(--line) !important;
}

/* Desktop column layout — date | venue | city | buttons */
@media (min-width: 681px) {
  .tour-widget .bit-mobile-date-and-share-wrapper,
  .tour-widget .bit-desktop-social-share-button,
  .tour-widget .bit-location-under-desktop { display: none !important; }

  /* Unwrap inner .bit-details so its children (date-wrapper + location)
     participate directly in the parent grid alongside .bit-titleWrapper */
  .tour-widget .bit-details-inner-wrapper > .bit-details {
    display: contents !important;
  }

  .tour-widget .bit-details-inner-wrapper {
    flex: 1 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    align-items: center !important;
    gap: 24px !important;
  }

  .tour-widget .bit-date-wrapper    { grid-column: 1 !important; grid-row: 1 !important; min-width: 0 !important; }
  .tour-widget .bit-titleWrapper    { grid-column: 2 !important; grid-row: 1 !important; }
  .tour-widget .bit-details-inner-wrapper > .bit-details > .bit-location,
  .tour-widget .bit-details-inner-wrapper .bit-location { grid-column: 3 !important; grid-row: 1 !important; }
}

/* Event rows — match .tour-row */
.tour-widget .bit-event {
  border-bottom: 1px solid var(--line) !important;
  padding: 22px 0 !important;
  background: transparent !important;
  position: relative !important;
  transition: background .25s ease !important;
}
.tour-widget .bit-event::before {
  content: "" !important;
  position: absolute !important;
  left: -100vw !important;
  right: 100% !important;
  top: 0 !important;
  bottom: 0 !important;
  background: oklch(0.78 0.15 55 / .04) !important;
  transition: right .5s ease !important;
  pointer-events: none !important;
}
.tour-widget .bit-event:hover {
  background: oklch(0.13 0.012 60 / .8) !important;
}
.tour-widget .bit-event:hover::before {
  right: -100vw !important;
}
.tour-widget .bit-details.bit-event-buttons {
  flex-shrink: 0 !important;
  min-width: 290px !important;
}


/* Date — match .tour-date */
.tour-widget .bit-date {
  font-family: var(--display) !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  letter-spacing: -0.01em !important;
  color: var(--fg) !important;
}

/* Time — match .tour-date small; font-size:0 on container hides the "@" text node */
.tour-widget .bit-startTime-container {
  font-size: 0 !important;
  display: block !important;
}
.tour-widget .bit-startTime {
  font-family: var(--mono) !important;
  font-size: 10px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--fg-mute) !important;
  font-weight: 400 !important;
  display: inline !important;
}

/* Venue — match .tour-venue */
.tour-widget .bit-venue {
  font-weight: 600 !important;
  font-size: 18px !important;
  color: var(--fg) !important;
}

/* Location — match .tour-city */
.tour-widget .bit-location,
.tour-widget .bit-location-under-desktop {
  font-family: var(--mono) !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--fg-2) !important;
  padding-left: 0 !important;
}

/* All buttons — shared base */
.tour-widget .bit-button {
  font-family: var(--mono) !important;
  font-size: 10px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
  transition: background .25s, color .25s, border-color .25s !important;
}

/* RSVP — ghost */
.tour-widget .bit-rsvp {
  background: transparent !important;
  color: var(--fg) !important;
  border: 1px solid var(--line) !important;
}
.tour-widget .bit-rsvp:hover {
  background: var(--fg) !important;
  color: var(--bg) !important;
  border-color: var(--fg) !important;
}

/* Tickets */
.tour-widget .bit-button-type-tickets {
  background: rgba(74,74,74,1) !important;
  color: var(--fg) !important;
  border: none !important;
}
.tour-widget .bit-button-type-tickets:hover {
  background: var(--fg) !important;
  color: var(--bg) !important;
}

/* Notify Me — ghost, muted */
.tour-widget .bit-button-type-notify-me {
  background: transparent !important;
  color: var(--fg-mute) !important;
  border: 1px solid var(--line) !important;
}
.tour-widget .bit-button-type-notify-me:hover {
  background: var(--fg) !important;
  color: var(--bg) !important;
  border-color: var(--fg) !important;
}

/* Play My City */
.tour-widget .bit-play-my-city-wrapper {
  border-top: 1px solid var(--line) !important;
  padding: 24px 0 !important;
}
.tour-widget .bit-play-my-city-heading-text {
  font-family: var(--mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--fg-mute) !important;
}
.tour-widget .bit-play-my-city-cta.bit-button {
  background: transparent !important;
  color: var(--fg) !important;
  border: 1px solid var(--line) !important;
  border-radius: 2px !important;
}
.tour-widget .bit-play-my-city-cta.bit-button:hover {
  background: var(--fg) !important;
  color: var(--bg) !important;
}
}