:root {
  --bg: #000000;
  --bg-2: #000000;
  --bg-3: #000000;
  --panel: #050505;
  --panel-alt: #111111;
  --ink: #ffffff;
  --muted: #dcdcdc;
  --line: #1c1c1c;
  --accent: #ffffff;
  --ticket-yellow: #ffd700;
  --radius: 12px;
  --gap: 24px;
  --max-width: 1385px;
  --page-padding: clamp(18px, 4vw, 32px);
  --nav-bleed: 22px;
  --nav-safe-gap: 12px;
}

@font-face {
  font-family: "Fixture Ultra";
  src: url("../fonts/FixtureUltra-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Dico Slab";
  src: url("../fonts/DicoSlab-BoldItalic-1.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}


html {
  overscroll-behavior: none;
}

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

body {
  margin: 0;
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  font-size: 16px;
  background: var(--bg);
  overscroll-behavior: none;
  font-synthesis: none;
  font-style: normal;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fixture Ultra", "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h2 {
  letter-spacing: 0.1em;
}

.section-title {
  font-size: 28px;
  letter-spacing: 0.1em;
  font-weight: 900;
  text-transform: uppercase;
}

p {
  margin: 0;
  line-height: 1.5;
  color: var(--muted);
}

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

[hidden] {
  display: none !important;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 11, 15, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.top-bar .container {
  position: relative;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

.top-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: nowrap;
}

.logo-box {
  justify-self: start;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  font-family: "Fixture Ultra", "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.utility-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.icon-link {
  display: inline-flex;
  width: auto;
  height: 26px;
}

.icon-link img {
  display: block;
  height: 100%;
  width: auto;
}

.main-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: "Fixture Ultra", "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  white-space: nowrap;
  min-width: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-transform: uppercase;
}

.divider {
  color: var(--line);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  transform: none;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background-color: transparent;
  background-image: url("../images/icons/icon-menu.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px 26px;
  filter: brightness(0) invert(1);
  color: transparent;
  text-indent: 120%;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  appearance: none;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  grid-template-areas:
    "hero tour"
    "news tour";
  gap: 24px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.hero-block {
  grid-area: hero;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.album-hero {
  border: 0;
  border-radius: 16px;
  background: transparent;
  overflow: hidden;
  flex: 0 0 88%;
  display: block;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 1 / 1;
}

.album-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-1.312%, -12px);
}

.album-subtitle {
  margin-top: 2px;
  font-family: "Fixture Ultra", "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 20px;
  text-transform: uppercase;
}

.album-subtitle span {
  display: block;
}

.news-stack {
  grid-area: news;
  width: 100%;
  align-self: stretch;
}

.landing-grid-shell .panel-surface {
  height: 100%;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.tour-column {
  position: relative;
  grid-area: tour;
  width: 100%;
  justify-self: stretch;
  max-width: none;
}

@media (min-width: 1101px) {
  /* Lift hero + tour columns on desktop so visual tops align */
  .landing-grid .hero-block,
  .landing-grid .tour-column {
    margin-top: -12px;
  }

  .landing-grid .tour-list .tour-row:first-child {
    padding-top: 12px;
  }
}

.tour-card {
  position: static;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tour-card-header {
  display: none;
}

.tour-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.tour-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  color: #f7f7f7;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.tour-row .tour-details {
  flex: 1;
}

.ticket-link {
  color: var(--ticket-yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-style: normal;
  font-weight: 700;
}

.ghost-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  cursor: pointer;
}

.layout-no-tour .landing-grid {
  grid-template-columns: 1fr;
  grid-template-areas:
    "hero"
    "news";
}

.layout-no-tour .tour-column {
  display: none;
}

.shop-disabled #shop[hidden],
.layout-no-tour #tour[hidden] {
  display: none !important;
}

.panel {
  padding: 64px 0 88px;
  border-top: 1px solid var(--line);
  background: var(--panel-alt);
}

.panel > .container {
  position: relative;
  padding-top: 20px;
  padding-bottom: 28px;
}

.panel > .container::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  pointer-events: none;
}

.landing-grid-shell > .container::before {
  display: none;
}

.panel-surface {
  position: relative;
  margin: 0;
  padding: 32px 28px 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  width: 100%;
}

.panel:nth-of-type(even) {
  background: var(--panel);
}

.panel.landing-grid-shell {
  background-color: transparent;
  border-top: 0;
}

.landing-grid-shell {
  position: relative;
  padding: 118px 0 80px;
  margin-top: -68px;
  isolation: isolate;
  min-height: 100vh;
}

.landing-grid-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  z-index: -1;
}

.landing-grid-shell > .container {
  padding-top: 10px;
  padding-bottom: 20px;
}

.landing-grid-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

#music > .container {
  padding-top: 36px;
  padding-bottom: 36px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--gap);
}

.social-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  margin-top: 18px;
}
.social-strip .icon-link img {
  height: 32px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 28px 24px;
  background: var(--panel);
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  align-items: stretch;
  gap: 20px;
  min-height: 180px;
}

.card .badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel-alt);
  overflow: hidden;
  transform: translate(-35%, -35%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.card .badge img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: invert(0.05) brightness(1.4);
}

.thumb {
  border: 1px solid var(--line);
  border-radius: 10px;
  min-height: 130px;
  align-self: stretch;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 100%;
}

.card-date {
  display: inline-flex;
  justify-content: flex-end;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  align-self: flex-end;
}

.music-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.player {
  margin-top: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  min-height: 80px;
}

.play-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
}

.progress {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: var(--accent);
  opacity: 0.65;
}

.time {
  color: var(--muted);
  font-size: 12px;
}

.video-stack {
  display: grid;
  gap: 18px;
}

.video {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  border-radius: inherit;
}

.spotify-embed {
  --spotify-embed-height: 80px;
  margin-top: 16px;
  position: relative;
  height: var(--spotify-embed-height);
}

.spotify-cover,
.spotify-frame-wrap {
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}

.spotify-cover {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  height: 100%;
  box-sizing: border-box;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.spotify-cover-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spotify-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.spotify-title {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.spotify-hint {
  font-size: 12px;
  color: var(--muted);
}

.spotify-frame-wrap {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.spotify-embed:hover .spotify-cover {
  opacity: 0;
  transform: translateY(-6px);
}

.spotify-embed:hover .spotify-frame-wrap {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.spotify-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.shop-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: auto repeat(3, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.product {
  --carousel-slide-offset: 0px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--panel);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.product.is-updating {
  animation: shopCardSwap 0.45s ease forwards;
}

.product.is-updating .product-thumb {
  animation: shopThumbFade 0.5s ease forwards;
}

.product-thumb {
  flex: 1;
  border-radius: calc(var(--radius) - 6px);
  border: 1px dashed var(--line);
  min-height: 190px;
  background: rgba(255, 255, 255, 0.04);
}

.product-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-tag {
  align-self: flex-start;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-title {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.product-desc {
  font-size: 14px;
}

.product-price {
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@keyframes shopCardSwap {
  from {
    opacity: 0;
    transform: translate3d(var(--carousel-slide-offset), 0, 0) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes shopThumbFade {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}

.arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
}

.shop-foot {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 2.4fr auto;
  gap: 18px;
  align-items: center;
}

.cta {
  border: 1px solid var(--accent);
  padding: 16px 18px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  justify-self: end;
}

.about-text {
  margin-top: 16px;
  max-width: 1180px;
}

.about-text-only .about-text {
  max-width: 920px;
  margin-top: 12px;
}

.about-text-only .about-scroll {
  display: none;
}

.about-scroll {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
}

.about-scroll::-webkit-scrollbar {
  height: 10px;
}

.about-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 999px;
}

.about-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  min-width: 280px;
  flex: 1 0 clamp(320px, 32vw, 420px);
  scroll-snap-align: start;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.about-card-art {
  flex: 1;
  width: 100%;
  border-radius: calc(var(--radius) - 4px);
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.about-card-label {
  margin: 12px 16px 16px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--panel);
  padding: 48px 0 56px;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-grid::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 auto;
  left: 50%;
  width: 1px;
  background: var(--line);
  transform: translateX(-50%);
  opacity: 0.7;
  pointer-events: none;
}

.footer-block h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: "Fixture Ultra", "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 900;
}

.footer-block:first-child {
  display: flex;
  flex-direction: column;
}

.footer-block:first-child .social-strip {
  margin-top: auto;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 6px;
}

.footer-links a {
  color: var(--ticket-yellow);
  font-style: italic;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
}

.placeholder {
  position: relative;
  border: 1px dashed var(--line);
  background: var(--panel);
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translate(-50%, -6px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@media (max-width: 1100px) {
  .top-bar .container {
    padding-inline: 22px;
  }

  .top-grid {
    gap: 12px;
  }

  .main-nav {
    gap: 10px;
  }

  .landing-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "tour"
      "news";
  }

  .news-stack {
    margin-top: 0;
  }

  .tour-card {
    position: static;
  }

  .tour-column {
    max-width: none;
    justify-self: stretch;
    margin-right: 0;
    padding-right: 0;
  }

  .tour-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .music-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-grid .arrow:first-child,
  .shop-grid .arrow:last-child {
    display: none;
  }

  .shop-foot {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1040px) {
  .top-grid {
    justify-content: flex-start;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .utility-icons {
    justify-content: flex-start;
  }

  .main-nav {
    grid-column: 1 / -1;
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    margin: 0;
    padding: 18px calc(var(--top-bar-gutter, 24px) + 10px) 14px calc(var(--top-bar-gutter, 24px) + 10px);
    width: min(calc(100% + (var(--nav-bleed) * 2)), calc(100vw - var(--nav-safe-gap)));
    max-width: calc(100vw - var(--nav-safe-gap));
    transform: translate(-50%, 0);
    background: rgba(11, 11, 15, 0.95);
    border: 1px solid var(--line);
    border-radius: 0 0 12px 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    animation: dropdownFade 0.2s ease forwards;
    transform-origin: top;
  }

  .top-bar.is-nav-open .main-nav {
    display: flex;
  }

  .main-nav .divider {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 18px;
  }

  .top-bar .container {
    --top-bar-gutter: 22px;
    padding-inline: var(--top-bar-gutter);
  }

  .top-grid {
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    padding: 10px 0;
  }

  .utility-icons {
    justify-content: flex-start;
    gap: 12px;
    flex: 0 0 auto;
  }

  .utility-icons .icon-link {
    height: 32px;
    display: inline-flex;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 44px;
    height: 44px;
    background-size: 26px 26px;
  }

  .utility-icons .icon-link img {
    height: 28px;
  }

  .main-nav {
    grid-column: 1 / -1;
    position: absolute;
    top: 100%;
    left: 50%;
    right: auto;
    margin: 0;
    padding: 18px calc(var(--top-bar-gutter, 24px) + 10px) 14px calc(var(--top-bar-gutter, 24px) + 10px);
    width: min(calc(100% + (var(--nav-bleed) * 2)), calc(100vw - var(--nav-safe-gap)));
    max-width: calc(100vw - var(--nav-safe-gap));
    transform: translate(-50%, 0);
    background: rgba(11, 11, 15, 0.95);
    border: 1px solid var(--line);
    border-radius: 0 0 12px 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    animation: dropdownFade 0.2s ease forwards;
    transform-origin: top;
  }

  .top-bar.is-nav-open .main-nav {
    display: flex;
  }

  .main-nav .divider {
    display: none;
  }

  .logo-box {
    font-size: 0.92rem;
    letter-spacing: 0.05em;
    transform: scale(0.94);
    transform-origin: left center;
  }

  .landing-grid-shell {
    padding: 100px 0 60px;
    --mobile-wallpaper-offset: clamp(360px, 72vw, 520px);
  }

  .landing-grid-shell::after {
    inset: var(--mobile-wallpaper-offset) 0 0 0;
    background-position: center top;
    background-size: cover;
  }

  .landing-grid-shell::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.4) 55%, rgba(0, 0, 0, 0.25) 100%);
  }

  .tour-row {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .tour-row .tour-details {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .tour-row:hover .tour-details {
    white-space: normal;
    overflow: visible;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .card {
    grid-template-columns: minmax(120px, 30vw) 1fr;
    gap: 14px;
    padding: 32px 18px 18px;
  }

  .thumb {
    min-height: 100px;
  }

  .shop-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid::before {
    display: none;
  }

  .footer-block:first-child {
    border-bottom: 1px solid var(--line);
    padding-bottom: 18px;
    margin-bottom: 18px;
  }

  .footer-block:first-child .social-strip {
    margin-top: 18px;
  }
}

@media (max-width: 480px) {
  :root {
    --page-padding: clamp(14px, 5vw, 18px);
    --nav-bleed: 12px;
    --nav-safe-gap: 8px;
  }

  body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 var(--page-padding);
  }

  .top-bar .container {
    --top-bar-gutter: 16px;
    padding-inline: var(--top-bar-gutter);
  }

  .top-grid {
    gap: 10px;
    padding: 10px 0;
  }

  .logo-box {
    font-size: 0.88rem;
    letter-spacing: 0.045em;
    transform: scale(0.9);
    transform-origin: left center;
  }

  .utility-icons {
    gap: 10px;
  }

  .utility-icons .icon-link {
    height: 30px;
    display: inline-flex;
    align-items: center;
  }

  .utility-icons .icon-link img {
    height: 24px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    background-size: 26px 26px;
  }

  .main-nav {
    padding: 14px calc(var(--top-bar-gutter, 16px) + 8px) 12px calc(var(--top-bar-gutter, 16px) + 8px);
    gap: 10px;
    border-radius: 0 0 10px 10px;
  }

  .landing-grid-shell {
    padding: 92px 0 54px;
    --mobile-wallpaper-offset: clamp(240px, 70vw, 360px);
    overflow: hidden;
  }

  .landing-grid-shell::after {
    inset: 0;
    background-position: center;
    background-size: cover;
  }

  .panel {
    padding: 52px 0 72px;
  }

  .panel > .container {
    padding-top: 14px;
    padding-bottom: 18px;
  }

  .panel-surface {
    padding: 24px 18px 18px;
  }

  .album-hero {
    width: 100%;
    max-width: min(520px, 100%);
    flex: 0 0 auto;
    margin-inline: auto;
  }

  .album-art {
    transform: translateY(-8px);
  }

  .album-subtitle {
    font-size: 18px;
    letter-spacing: 0.05em;
  }

  .tour-row {
    padding: 16px 0;
    font-size: 18px;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
  }

  .card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 16px 16px;
  }

  .card .badge {
    width: 44px;
    height: 44px;
  }

  .thumb {
    min-height: 120px;
  }

  .card-body {
    gap: 12px;
  }

  .card-date {
    font-size: 12px;
  }

  .shop-grid {
    gap: 14px;
  }

  .product {
    padding: 14px;
  }

  .product-thumb {
    min-height: 150px;
  }

  .about-scroll {
    gap: 12px;
  }

  .about-card {
    min-width: 240px;
    flex: 1 0 clamp(240px, 68vw, 340px);
  }

  .tour-row .tour-details {
    white-space: normal;
  }

  .ticket-link {
    flex-shrink: 0;
  }
}
/* Dynamic Navigation Condensing */
.top-bar.is-nav-condensed .top-grid {
  justify-content: space-between;
}

.top-bar.is-nav-condensed .nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.top-bar.is-nav-condensed .main-nav {
  grid-column: 1 / -1;
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  margin: 0;
  padding: 18px calc(var(--top-bar-gutter, 24px) + 10px) 14px calc(var(--top-bar-gutter, 24px) + 10px);
  width: min(calc(100% + (var(--nav-bleed) * 2)), calc(100vw - var(--nav-safe-gap)));
  max-width: calc(100vw - var(--nav-safe-gap));
  transform: translate(-50%, 0);
  background: rgba(11, 11, 15, 0.95);
  border: 1px solid var(--line);
  border-radius: 0 0 12px 12px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  animation: dropdownFade 0.2s ease forwards;
  transform-origin: top;
}

.top-bar.is-nav-condensed.is-nav-open .main-nav {
  display: flex;
}

/* Contact Bar in Footer */
.contact-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
}

.contact-details a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: var(--ink);
}

.social-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-group .icon-link img {
  height: 32px;
  width: auto;
  display: block;
}
