/** Shopify CDN: Minification failed

Line 317:2 Unexpected "}"

**/

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

  :root {
    --cream: #f0ebe0;
    --black: #0a0a0a;
    --red: #c8372d;
    --amber: #d4870a;
    --offwhite: #e8e2d4;
    --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--cream);
    font-family: 'Barlow Condensed', sans-serif;
    overflow-x: hidden;
    cursor: crosshair;
  }

  /* ─── NAV ─── */
  nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 40px;
    mix-blend-mode: normal;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.2s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--red);
    transition: width 0.25s;
  }

  .nav-links a:hover { opacity: 1; color: #fff; }
  .nav-links a:hover::after { width: 100%; }

  .nav-right a {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    border: 1px solid rgba(240,235,224,0.4);
    padding: 7px 16px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .nav-right a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
  }

  /* ─── HERO ─── */
  .hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
  }

  .hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; background-attachment:fixed; z-index:0; }

  @keyframes slowzoom {
    from { transform: scale(1.03); }
    to { transform: scale(1.08) translateY(-1%); }
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(10,10,10,0.25) 0%,
      rgba(10,10,10,0.0) 30%,
      rgba(10,10,10,0.0) 50%,
      rgba(10,10,10,0.65) 80%,
      rgba(10,10,10,0.92) 100%
    );
  }

  /* grain overlay */
  .hero-grain {
    position: absolute;
    inset: 0;
    background-image: var(--grain);
    opacity: 0.045;
    pointer-events: none;
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    width: 100%;
    margin-top: -52vh;
  }

  .hero-logo {
    width: min(480px, 72vw);
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 32px rgba(0,0,0,0.7));
    animation: logofade 1.2s ease both;
  }

  @keyframes logofade {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-album-title {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(240,235,224,0.6);
    margin-bottom: 32px;
    animation: logofade 1.4s ease both;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: logofade 1.6s ease both;
  }

  .btn {
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 34px;
    transition: all 0.22s;
    position: relative;
    overflow: hidden;
  }

  .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-101%);
    transition: transform 0.25s;
  }

  .btn:hover::before { transform: translateX(0); }
  .btn span { position: relative; z-index: 1; }

  .btn-primary {
    background: var(--red);
    color: #fff;
    border: 2px solid var(--red);
  }
  .btn-primary::before { background: #a02820; }
  .btn-primary:hover { border-color: #a02820; }

  .btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
  }
  .btn-secondary::before { background: var(--cream); }
  .btn-secondary:hover { color: var(--black); }

  /* ─── TICKER ─── */
  .ticker {
    background: var(--red);
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    position: relative;
    z-index: 20;
  }

  .ticker-inner {
    display: inline-flex;
    animation: ticker 28s linear infinite;
  }

  .ticker-inner span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    letter-spacing: 0.18em;
    color: #fff;
    padding: 0 30px;
  }

  .ticker-inner span.dot {
    color: rgba(255,255,255,0.5);
    padding: 0;
  }

  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── ABOUT ─── */
  section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    display: block;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--cream);
    margin-bottom: 28px;
  }

  .about-headline em {
    color: var(--red);
    font-style: normal;
  }

  .about-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(240,235,224,0.75);
    font-weight: 300;
    max-width: 480px;
  }

.about-gallery {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
.gallery-tile { overflow: hidden; }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile-1 {
  grid-column: 1; grid-row: 1 / 3;
  transform: rotate(-1.5deg);
  box-shadow: 4px 6px 20px rgba(0,0,0,0.5);
}
.tile-2 {
  grid-column: 2; grid-row: 1;
  transform: rotate(2deg) translateY(-6px);
  box-shadow: 4px 6px 20px rgba(0,0,0,0.5);
}
.tile-3 {
  grid-column: 2; grid-row: 2;
  transform: rotate(-1deg) translateY(4px);
  box-shadow: 4px 6px 20px rgba(0,0,0,0.5);
}
  }

  /* ─── SHOWS ─── */
  .shows-section {
    background: #111;
    max-width: 100%;
    padding: 100px 0;
  }

  .shows-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .shows-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
  }

  .shows-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    letter-spacing: 0.03em;
    line-height: 1;
  }

  .show-row {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
    border-top: 1px solid rgba(240,235,224,0.12);
    transition: background 0.2s;
    cursor: pointer;
  }

  .show-row:last-child { border-bottom: 1px solid rgba(240,235,224,0.12); }

  .show-row:hover { background: rgba(200,55,45,0.06); }

  .show-date {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.06em;
    color: var(--red);
    line-height: 1;
  }

  .show-date-sub {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(240,235,224,0.4);
    text-transform: uppercase;
    margin-top: 2px;
  }

  .show-venue {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--cream);
  }

  .show-location {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 0.06em;
    color: rgba(240,235,224,0.5);
    text-transform: uppercase;
    margin-top: 2px;
  }

  .show-tag {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(200,55,45,0.5);
    color: var(--red);
    padding: 4px 10px;
  }

  .show-ticket {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    border: 1px solid rgba(240,235,224,0.3);
    padding: 9px 18px;
    transition: all 0.2s;
  }
  .show-ticket:hover { background: var(--red); border-color: var(--red); }

  /* ─── MUSIC ─── */
  .music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 40px;
  }

  .release-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
  }

  .release-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(0.5);
    transition: transform 0.5s, filter 0.4s;
  }

  .release-card:hover .release-card-img {
    transform: scale(1.06);
    filter: grayscale(0);
  }

  .release-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 24px;
  }

  .release-card:hover .release-card-overlay { opacity: 1; }

  .release-info-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.06em;
    color: #fff;
    display: block;
  }

  .release-info-year {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
  }

  /* ─── STORE ─── */
  .store-section {
    background: #0d0d0d;
    max-width: 100%;
    padding: 100px 0;
    border-top: 1px solid rgba(240,235,224,0.07);
  }

  .store-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .store-card {
    background: #161616;
    border: 1px solid rgba(240,235,224,0.08);
    transition: border-color 0.25s, transform 0.3s;
    cursor: pointer;
  }

  .store-card:hover {
    border-color: rgba(200,55,45,0.5);
    transform: translateY(-4px);
  }

  .store-card-img {
    width: 100%;
    aspect-ratio: 1;
    background: #1e1e1e;
    overflow: hidden;
    position: relative;
  }

  .store-card-img-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
    filter: grayscale(0.2);
  }

  .store-card:hover .store-card-img-inner {
    transform: scale(1.04);
  }

  .store-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    padding: 5px 10px;
  }

  .store-card-body {
    padding: 20px 22px 24px;
  }

  .store-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.06em;
    color: var(--cream);
    margin-bottom: 4px;
  }

  .store-card-sub {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(240,235,224,0.4);
    margin-bottom: 16px;
  }

  .store-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .store-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 0.04em;
    color: var(--cream);
  }

  .store-btn {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    border: 1px solid rgba(240,235,224,0.3);
    padding: 8px 16px;
    transition: all 0.2s;
  }

  .store-btn:hover {
    background: var(--red);
    border-color: var(--red);
  }

  /* ─── FOOTER ─── */
  footer {
    background: #050505;
    border-top: 1px solid rgba(240,235,224,0.08);
    padding: 60px 40px 40px;
    max-width: 100%;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .footer-logo {
    width: 160px;
    filter: invert(0) brightness(0.85);
  }

  .footer-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: rgba(240,235,224,0.35);
    margin-top: 12px;
    text-transform: uppercase;
  }

  .footer-col-title {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    letter-spacing: 0.06em;
    color: rgba(240,235,224,0.55);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--cream); }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(240,235,224,0.07);
  }

  .footer-copy {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(240,235,224,0.25);
    text-transform: uppercase;
  }

  .social-row {
    display: flex;
    gap: 20px;
  }

  .social-row a {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(240,235,224,0.35);
    text-decoration: none;
    transition: color 0.2s;
  }
  .social-row a:hover { color: var(--red); }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  @media (max-width: 768px) {
    nav { padding: 18px 20px; }
    .nav-links { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img { clip-path: none; }
    .music-grid { grid-template-columns: repeat(2, 1fr); }
    .show-row { grid-template-columns: 80px 1fr; }
    .show-tag, .show-ticket { display: none; }
    .footer-inner { grid-template-columns: 1fr; }
    section { padding: 60px 20px; }
  }

  /* ─── STORE ─── */
  #store {
    padding: 100px 40px;
    background: #0f0f0f;
  }

  .store-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .store-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 8vw, 96px);
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--cream);
  }

  .store-header p {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: #888;
    margin-top: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .store-item {
    position: relative;
    background: #161616;
    border: 1px solid #222;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: pointer;
  }

  .store-item:hover {
    border-color: var(--red);
    transform: translateY(-4px);
  }

  .store-item-img {
    width: 100%;
    aspect-ratio: 1;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .store-item-img .item-emoji {
    font-size: 64px;
    filter: grayscale(1);
    opacity: 0.4;
    transition: opacity 0.3s, filter 0.3s;
  }

  .store-item:hover .item-emoji {
    opacity: 0.7;
    filter: grayscale(0.3);
  }

  .store-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 8px;
  }

  .store-item-info {
    padding: 16px 18px 20px;
  }

  .store-item-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--cream);
    margin-bottom: 4px;
  }

  .store-item-desc {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    color: #777;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
    line-height: 1.4;
  }

  .store-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .store-item-price {
    font-family: 'Space Mono', monospace;
    font-size: 15px;
    color: var(--cream);
  }

  .store-item-buy {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 6px 12px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .store-item-buy:hover {
    background: var(--red);
    color: #fff;
  }

  .store-cta {
    text-align: center;
    margin-top: 50px;
  }

  .store-cta a {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    text-decoration: none;
    border-bottom: 1px solid #444;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }

  .store-cta a:hover {
    color: var(--cream);
    border-color: var(--cream);
  }

  @media (max-width: 900px) {
    .store-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 480px) {
    .store-grid { grid-template-columns: 1fr; }
    #store { padding: 70px 20px; }
  }

  .release-card { position: relative; }
  .release-card-link {
    position: absolute;
    inset: 0;
    z-index: 10;
  }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #111;
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.video-title {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 10px;
}
/* Enhanced Mobile Garage Image Fix */
@media screen and (max-width: 749px) {
  /* 1. Force the container to be visible and set a height */
  .banner--mobile-bottom:not(.banner--stacked) .banner__media, 
  .banner__media.media {
    display: flex !important;
    position: relative !important;
    height: 40vh !important; /* This makes it take up 40% of the screen height */
    min-height: 300px !important;
  }

  /* 2. Ensure the image actually fills that container */
  .banner__media img {
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  /* 3. Adjust spacing so the text doesn't overlap weirdly */
  .banner__content {
    padding-top: 20px !important;
  }
}