@font-face {
  font-family: "Wagon Display";
  src: url("assets/fonts/Wagon-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Wagon Display";
  src: url("assets/fonts/Wagon-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}



:root {
  --bg: #f7f7f5;
  --bg-soft: #ffffff;
  --surface: rgba(0, 0, 0, 0.03);
  --surface-strong: rgba(0, 0, 0, 0.05);
  --text: #0f0f10;
  --muted: rgba(15, 15, 16, 0.68);
  --line: rgba(15, 15, 16, 0.08);
  --line-strong: rgba(15, 15, 16, 0.16);
  --accent: #ff2d55;
  --accent-glow: rgba(255, 45, 85, 0.28);
  --header-bg: rgba(255, 255, 255, 0.66);
  --header-bg-scrolled: rgba(255, 255, 255, 0.88);
  --shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --max-width: 1440px;
  --section-pad: clamp(72px, 10vw, 132px);
  --radius-pill: 999px;
}




* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: var(--header-bg-scrolled);
  box-shadow: var(--shadow);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.header-inner {
  width: min(calc(100% - 32px), var(--max-width));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.site-logo {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-logo:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.desktop-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-link,
.mobile-nav-link {
  position: relative;
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.18s ease, text-shadow 0.18s ease;
  transform-origin: center;
}

.nav-link:hover,
.mobile-nav-link:hover,
.nav-link.is-active,
.mobile-nav-link.is-active {
  color: var(--accent);
  text-shadow: 0 0 14px var(--accent-glow);
}

.nav-link:hover,
.mobile-nav-link:hover {
  animation: iconShakeFast 0.18s linear infinite;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.social-icons,
.mobile-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: color 0.18s ease, filter 0.18s ease;
  transform-origin: center;
}

.social-link svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.social-link:hover {
  color: var(--accent);
  filter: drop-shadow(0 0 10px rgba(255, 45, 85, 0.24));
  animation: iconShakeFast 0.18s linear infinite;
}

@keyframes iconShakeFast {
  0% { transform: rotate(0deg) translateX(0); }
  20% { transform: rotate(-6deg) translateX(-1px); }
  40% { transform: rotate(6deg) translateX(1px); }
  60% { transform: rotate(-5deg) translateX(-1px); }
  80% { transform: rotate(5deg) translateX(1px); }
  100% { transform: rotate(0deg) translateX(0); }
}

.menu-toggle {
  justify-self: end;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-toggle:hover {
  border-color: var(--accent);
  background: rgba(255, 45, 85, 0.08);
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 0 20px rgba(255, 45, 85, 0.18);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
    background: var(--text);
  transition: transform 0.28s ease, opacity 0.28s ease, background 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-menu-panel {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateY(-18px);
  transition: transform 0.35s var(--ease);
}
.mobile-menu.is-open .mobile-menu-panel {
  transform: translateY(0);
}

.mobile-nav {
  display: grid;
  gap: 24px;
  text-align: center;
}

.mobile-nav-link {
  font-size: clamp(1.7rem, 7vw, 2.6rem);
  letter-spacing: -0.02em;
}

.mobile-socials {
  gap: 18px;
}

.mobile-socials .social-link {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  display: grid;
  place-items: center;
}

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

.hero-media {
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  will-change: transform, opacity;
}

.hero-overlay {
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 28%, rgba(0, 0, 0, 0.34) 66%, rgba(0, 0, 0, 0.52) 100%),
    radial-gradient(circle at center, rgba(255, 45, 85, 0.1), transparent 42%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), 1120px);
  padding-top: 110px;
  text-align: center;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.hero-subtitle {
  width: min(100%, 760px);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.6;
  font-weight: 500;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 32px rgba(255, 45, 85, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 16px 40px rgba(255, 45, 85, 0.34), 0 0 26px rgba(255, 45, 85, 0.22);
  background: #ff4268;
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 26px rgba(255, 45, 85, 0.14);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  transform: rotate(45deg);
  animation: floatArrow 1.8s ease-in-out infinite;
}

@keyframes floatArrow {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.8; }
  50% { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

.section {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.section-inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.section-heading-wrap {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

.section-title {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.tour-card {
  padding: clamp(26px, 4vw, 38px);
  border-radius: 28px;
  background: linear-gradient(180deg, var(--surface-strong), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.tour-copy {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #050505;
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 16px 42px rgba(0,0,0,0.28);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-list {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  overflow: hidden;
}

.video-item {
  width: 100%;
  min-height: 74px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.video-item:last-child {
  border-bottom: 0;
}

.video-item::after {
  content: "↗";
  color: inherit;
  font-size: 1rem;
  opacity: 0.72;
}

.video-item:hover,
.video-item.is-active {
  background: rgba(255, 45, 85, 0.08);
  color: var(--accent);
  box-shadow: inset 3px 0 0 var(--accent);
}

.video-item:hover {
  transform: translateX(3px);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    border: 1px solid rgba(0, 0, 0, 0.12);
  }

  .hero {
    min-height: max(100vh, 760px);
  }

  .tour-card,
  .video-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

  .tour-card {
    justify-content: stretch;
  }
}

@media (max-width: 768px) {
  .header-inner,
  .section-inner,
  .hero-content {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-header {
    background: rgba(10, 10, 10, 0.62);
  }

  .site-logo {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
  }

  .hero {
    min-height: max(100vh, 700px);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
  }

  .tour-card {
    gap: 18px;
  }

  .video-item {
    min-height: 68px;
    padding: 0 18px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 72px;
  }

  .hero-title {
    font-size: clamp(3.3rem, 16vw, 5.3rem);
  }

  .section {
    padding: 72px 0;
  }

  .section-title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .tour-card,
  .video-frame,
  .video-list {
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


.section-inner-narrow {
  max-width: 860px;
  text-align: center;
}

.section-kicker-centered,
.section-title-centered {
  text-align: center;
}

.tour-section {
  background: #0a0a0a;
  padding: clamp(110px, 12vw, 170px) 0;
}

.tour-message {
  width: min(100%, 780px);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.9;
  font-weight: 500;
}

.tour-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.video-section {
  background: #0a0a0a;
  padding: clamp(110px, 12vw, 170px) 0;
}

.video-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

.video-card {
  display: block;
  color: #fff;
  transition: transform 0.3s var(--ease);
}

.video-card:hover {
  transform: translateY(-6px);
}

.video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease), opacity 0.45s var(--ease);
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 45, 85, 0.92);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 36px rgba(255, 45, 85, 0.26), 0 0 22px rgba(255, 45, 85, 0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease;
}

.video-play svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 2px;
}

.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 18px 42px rgba(255, 45, 85, 0.34), 0 0 28px rgba(255, 45, 85, 0.22);
}

.video-card-title {
  margin: 16px 4px 0;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: left;
}

.site-footer {
  background: #050505;
  padding: 44px 0 54px;
}

.footer-inner {
  width: min(calc(100% - 24px), 900px);
  margin: 0 auto;
  text-align: center;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-socials .social-link {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-socials .social-link:hover {
  color: var(--accent);
  filter: drop-shadow(0 0 10px rgba(255, 45, 85, 0.38));
}

.footer-copy {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.82rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

@media (max-width: 960px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .tour-section,
  .video-section {
    padding: 88px 0;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .video-thumb {
    border-radius: 18px;
  }

  .video-play {
    width: 62px;
    height: 62px;
  }

  .video-card-title {
    margin-top: 14px;
    font-size: 0.94rem;
  }
}

.tour-section {
  background: #0a0a0a;
  padding: clamp(110px, 12vw, 170px) 0;
}

.tour-intro {
  width: min(100%, 760px);
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.85;
  text-align: center;
}

.tour-list {
  margin-top: 46px;
  display: grid;
  gap: 18px;
}

.tour-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 24px 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 12px 30px rgba(0,0,0,0.18);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.tour-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 85, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 18px 40px rgba(0,0,0,0.24),
    0 0 24px rgba(255,45,85,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022));
}

.tour-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.tour-date-month {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.tour-date-day {
  margin-top: 4px;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #fff;
}

.tour-date-year {
  margin-top: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}

.tour-details {
  min-width: 0;
}

.tour-city {
  margin: 0;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}

.tour-venue {
  margin: 7px 0 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255,255,255,0.84);
}

.tour-meta {
  margin: 8px 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.56);
}

.tour-actions-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tour-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease;
}

.tour-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.tour-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 26px rgba(255,45,85,0.22);
}

.tour-btn-primary:hover {
  background: #ff4268;
  box-shadow:
    0 16px 38px rgba(255,45,85,0.3),
    0 0 24px rgba(255,45,85,0.2);
}

.tour-btn-secondary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

.tour-btn-secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 22px rgba(255,45,85,0.12);
}

@media (max-width: 960px) {
  .tour-item {
    grid-template-columns: 100px minmax(0, 1fr);
    align-items: start;
  }

  .tour-actions-wrap {
    grid-column: 1 / -1;
    padding-top: 6px;
  }
}

@media (max-width: 640px) {
  .tour-section {
    padding: 88px 0;
  }

  .tour-list {
    gap: 14px;
  }

  .tour-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
    border-radius: 20px;
  }

  .tour-date {
    min-height: 96px;
    border-radius: 16px;
  }

  .tour-date-day {
    font-size: 2rem;
  }

  .tour-actions-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tour-btn {
    width: 100%;
    min-width: 0;
  }
}

.section-intro {
  width: min(100%, 780px);
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.85;
  text-align: center;
}

/* CREDITS */
.credits-section {
  background: #0a0a0a;
  padding: clamp(110px, 12vw, 170px) 0;
}

.credits-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.credit-card {
  padding: 28px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 12px 30px rgba(0,0,0,0.18);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.credit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 85, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 18px 40px rgba(0,0,0,0.24),
    0 0 24px rgba(255,45,85,0.08);
}

.credit-role {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.credit-name {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}

.credit-text {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.66);
  font-size: 0.96rem;
  line-height: 1.75;
}

/* LISTEN */
.listen-section {
  background: #0a0a0a;
  padding: clamp(110px, 12vw, 170px) 0;
}

.listen-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.listen-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 12px 30px rgba(0,0,0,0.18);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.listen-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 85, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 18px 40px rgba(0,0,0,0.24),
    0 0 24px rgba(255,45,85,0.08);
}

.listen-card-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.listen-card:hover .listen-card-icon {
  background: rgba(255, 45, 85, 0.08);
  border-color: rgba(255, 45, 85, 0.28);
  transform: scale(1.04);
}

.listen-card-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.listen-card-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}

.listen-card-text {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.66);
  font-size: 0.96rem;
  line-height: 1.75;
}

/* SHOP */
.shop-section {
  background: #0a0a0a;
  padding: clamp(110px, 12vw, 170px) 0;
}

.shop-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.shop-card {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 12px 30px rgba(0,0,0,0.18);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 85, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 18px 40px rgba(0,0,0,0.24),
    0 0 24px rgba(255,45,85,0.08);
}

.shop-image {
  aspect-ratio: 4 / 4.3;
  overflow: hidden;
  background: #111;
}

.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease), filter 0.45s var(--ease);
}

.shop-card:hover .shop-image img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

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

.shop-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}

.shop-text {
  margin: 10px 0 18px;
  color: rgba(255,255,255,0.66);
  font-size: 0.96rem;
  line-height: 1.75;
}

.shop-bottom-action {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

@media (max-width: 960px) {
  .credits-grid,
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .credits-section,
  .listen-section,
  .shop-section {
    padding: 88px 0;
  }

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

  .credit-card,
  .listen-card,
  .shop-card {
    border-radius: 20px;
  }

  .shop-card-body {
    padding: 20px;
  }
}

.site-logo,
.hero-title,
.section-title,
.tour-city,
.credit-name,
.listen-card-title,
.shop-title {
  font-family: "Wagon Display", "Times New Roman", serif;
}

.site-logo {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-title {
  margin: 0;
  font-size: clamp(3.8rem, 10vw, 9rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #fff;
}

.section-title {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: none;
  color: var(--text);
}

.hero-subtitle {
  width: min(100%, 780px);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.65;
  font-weight: 500;
}

.hero-subtitle-animated {
  display: flex;
  flex-direction: column;
  gap: 0.18em;
  align-items: center;
}

.hero-subtitle-animated span {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  animation: subtitleReveal 0.85s var(--ease) forwards;
}

.hero-subtitle-animated span:nth-child(1) {
  animation-delay: 0.25s;
}

.hero-subtitle-animated span:nth-child(2) {
  animation-delay: 0.48s;
}

.hero-subtitle-animated span:nth-child(3) {
  animation-delay: 0.72s;
}

@keyframes subtitleReveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.section,
.tour-section,
.video-section,
.credits-section,
.listen-section,
.shop-section {
  background: var(--bg);
}

.tour-item,
.credit-card,
.listen-card,
.shop-card,
.video-thumb {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,250,250,0.92));
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.75),
    0 12px 28px rgba(0,0,0,0.06);
}

.tour-venue,
.video-card-title,
.credit-name,
.listen-card-title,
.shop-title,
.tour-city {
  color: var(--text);
}

.tour-meta,
.credit-text,
.listen-card-text,
.shop-text,
.tour-message,
.section-intro {
  color: var(--muted);
}

.video-card-title {
  color: var(--text);
}

.video-thumb {
  background: #ececec;
}

.shop-image {
  background: #efefef;
}
.site-scroll-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.site-scroll-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  will-change: transform, opacity;
}

.site-scroll-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.90) 0%,
      rgba(255, 255, 255, 0.66) 24%,
      rgba(255, 255, 255, 0.58) 50%,
      rgba(255, 255, 255, 0.50) 76%,
      rgba(255, 255, 255, 0.42) 100%
    ),
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.20) 0%,
      rgba(255, 255, 255, 0.10) 45%,
      rgba(255, 255, 255, 0.03) 75%,
      transparent 100%
    );
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.tour-section,
.video-section,
.credits-section,
.listen-section,
.shop-section,
.site-footer {
  position: relative;
  z-index: 1;
}

.tour-section,
.video-section,
.credits-section,
.listen-section,
.shop-section {
  background: transparent;
}

.site-footer {
  background: transparent;
}

.tour-item,
.credit-card,
.listen-card,
.shop-card,
.video-thumb {
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 10px 24px rgba(0, 0, 0, 0.07);
}

.section-title,
.tour-city,
.credit-name,
.listen-card-title,
.shop-title,
.video-card-title,
.tour-venue {
  color: #111111;
}

.section-intro,
.tour-intro,
.tour-message,
.credit-text,
.listen-card-text,
.shop-text,
.tour-meta,
.footer-copy {
  color: rgba(15, 15, 16, 0.72);
}

.section-kicker,
.credit-role,
.tour-date-month {
  color: var(--accent);
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 44px 0 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.footer-inner {
  width: min(calc(100% - 24px), 900px);
  margin: 0 auto;
  text-align: center;
  padding-top: 10px;
}

/* =========================
   LISTEN PAGE
========================= */

.subpage-body {
  background: #ffffff;
}

.subpage-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.subpage-hero-media,
.subpage-hero-video,
.subpage-hero-overlay {
  position: absolute;
  inset: 0;
}

.subpage-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.subpage-hero-overlay {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.28) 30%, rgba(0,0,0,0.28) 72%, rgba(0,0,0,0.48) 100%),
    radial-gradient(circle at center, rgba(255,45,85,0.10), transparent 44%);
  z-index: 1;
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), 1040px);
  padding-top: 120px;
  text-align: center;
}

.subpage-title {
  margin: 0;
  font-size: clamp(3.3rem, 9vw, 8rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: #fff;
}

.subpage-subtitle {
  width: min(100%, 760px);
  margin: 24px auto 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.9vw, 1.34rem);
  line-height: 1.7;
  font-weight: 500;
}

.listen-page .section,
.listen-page .listen-section,
.listen-page .listen-feature,
.listen-page .listen-embed {
  background: transparent;
}

.listen-feature,
.listen-section,
.listen-embed {
  position: relative;
  z-index: 2;
}

.featured-release-card {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 18px 44px rgba(0,0,0,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.featured-release-cover {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  aspect-ratio: 1 / 1;
}

.featured-release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.featured-release-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #fff;
}

.featured-release-text {
  margin: 16px 0 0;
  max-width: 700px;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.85;
}

.featured-release-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.listen-grid-expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.listen-card {
  min-height: 200px;
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.listen-card-icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 45, 85, 0.12);
  border: 1px solid rgba(255, 45, 85, 0.16);
  box-shadow: 0 10px 24px rgba(255,45,85,0.12);
}

.listen-card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--accent);
}

.listen-card-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.listen-card-title {
  margin: 2px 0 0;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}

.listen-card-text {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.66);
  font-size: 0.96rem;
  line-height: 1.75;
}

.listen-card-cta {
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.listen-card:hover .listen-card-cta {
  text-shadow: 0 0 14px var(--accent-glow);
}

.listen-embed-wrap {
  margin-top: 46px;
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 18px 44px rgba(0,0,0,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.listen-embed-wrap iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 18px;
  background: #111;
}

/* keep text white over the video sections */
.listen-page .section-kicker,
.listen-page .section-title,
.listen-page .section-intro {
  color: #fff;
}

.listen-page .section-intro {
  color: rgba(255,255,255,0.72);
}

/* optional page-specific hero feel */
.listen-hero .hero-kicker {
  color: rgba(255,255,255,0.78);
}

/* responsive */
@media (max-width: 1100px) {
  .listen-grid-expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-release-card {
    grid-template-columns: 300px minmax(0, 1fr);
  }
}

@media (max-width: 820px) {
  .featured-release-card {
    grid-template-columns: 1fr;
  }

  .featured-release-cover {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }

  .featured-release-copy {
    text-align: center;
  }

  .featured-release-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .subpage-hero-content,
  .section-inner {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .listen-grid-expanded {
    grid-template-columns: 1fr;
  }

  .featured-release-card,
  .listen-embed-wrap {
    border-radius: 22px;
  }

  .listen-card {
    min-height: unset;
  }

  .listen-embed-wrap iframe {
    min-height: 360px;
  }
}

/* =========================
   VIDEO PAGE
========================= */

.video-page {
  background: #ffffff;
}

.video-page .section,
.video-page .video-feature,
.video-page .video-library {
  position: relative;
  z-index: 2;
  background: transparent;
}

.video-hero .hero-kicker {
  color: rgba(255,255,255,0.8);
}

.video-feature .section-kicker,
.video-feature .section-title,
.video-library .section-kicker,
.video-library .section-title {
  color: #111111;
}

.video-feature .section-intro,
.video-library .section-intro {
  color: rgba(15, 15, 16, 0.72);
}

.featured-video-card {
  position: relative;
  margin-top: 44px;
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 26px;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 10px 24px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.35s var(--ease);
}

.featured-video-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 22px 42px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 45, 85, 0.18);
}

.featured-video-art {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,0.3);
}

.featured-video-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.featured-video-card:hover .featured-video-art img {
  transform: scale(1.05);
}

.featured-video-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.08) 35%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0.08) 65%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 1s var(--ease);
}

.featured-video-card:hover .featured-video-shine {
  transform: translateX(120%);
}

.video-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.featured-video-title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #111111;
}

.featured-video-text {
  margin: 14px 0 0;
  max-width: 680px;
  color: rgba(15, 15, 16, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.featured-video-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.featured-video-play {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.video-play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.85);
  animation: videoPulse 2.4s ease-in-out infinite;
}

.video-play-core {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.video-play-core svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
  margin-left: 3px;
}

.featured-video-card:hover .video-play-core {
  transform: scale(1.08);
  background: #ffffff;
}

@keyframes videoPulse {
  0% { transform: scale(0.88); opacity: 0.85; }
  70% { transform: scale(1.16); opacity: 0; }
  100% { transform: scale(1.16); opacity: 0; }
}

.video-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.video-page-card {
  transform-origin: center;
}

.video-page-trigger {
  width: 100%;
  padding: 0;
  text-align: left;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 10px 24px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.3s var(--ease);
}

.video-page-trigger:hover {
  transform: translateY(-8px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 24px 42px rgba(0,0,0,0.12);
  border-color: rgba(255, 45, 85, 0.18);
}

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255,255,255,0.2);
}

.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.4s var(--ease);
}

.video-page-trigger:hover .video-thumb-wrap img {
  transform: scale(1.07);
  filter: saturate(1.04);
}

.video-overlay-play {
  position: absolute;
  inset: auto auto 18px 18px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 20px rgba(0,0,0,0.14);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.video-overlay-play svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  margin-left: 3px;
}

.video-page-trigger:hover .video-overlay-play {
  transform: scale(1.08);
  background: #ffffff;
}

.video-page-card-body {
  padding: 22px 22px 24px;
}

.video-chip {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.video-page-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111111;
}

.video-page-text {
  margin: 12px 0 0;
  color: rgba(15, 15, 16, 0.72);
  font-size: 0.96rem;
  line-height: 1.75;
}

/* modal */
body.video-modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s var(--ease), visibility 0.32s var(--ease);
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 10, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.video-modal-dialog {
  position: relative;
  width: min(calc(100% - 28px), 1120px);
  margin: min(7vh, 50px) auto 0;
  padding: 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 28px 80px rgba(0,0,0,0.25);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.38s var(--ease);
}

.video-modal.is-open .video-modal-dialog {
  transform: translateY(0) scale(1);
}

.video-modal-head {
  padding: 6px 8px 18px;
}

.video-modal-kicker {
  margin: 0 0 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.video-modal-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: #111111;
}

.video-modal-frame-wrap {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-modal-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(15,15,16,0.08);
  transition: transform 0.25s ease, background 0.25s ease;
}

.video-modal-close:hover {
  transform: rotate(90deg);
  background: rgba(255,45,85,0.12);
}

.video-modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #111111;
  border-radius: 999px;
}

.video-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.video-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* responsive */
@media (max-width: 1100px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-video-card {
    grid-template-columns: 1fr;
  }

  .featured-video-play {
    right: 22px;
    bottom: 22px;
  }
}

@media (max-width: 720px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .featured-video-card,
  .video-page-trigger,
  .video-modal-dialog {
    border-radius: 24px;
  }

  .featured-video-actions {
    flex-direction: column;
  }

  .featured-video-actions .btn {
    width: 100%;
  }

  .video-modal-dialog {
    padding: 16px;
    margin-top: 38px;
  }

  .video-modal-close {
    width: 46px;
    height: 46px;
    top: 10px;
    right: 10px;
  }
}

/* =========================
   TOUR PAGE
========================= */

.tour-page {
  background: #ffffff;
}

.tour-page .section,
.tour-page-section,
.tour-cta-section {
  position: relative;
  z-index: 2;
  background: transparent;
}

.tour-hero .hero-kicker {
  color: rgba(255,255,255,0.82);
}

.tour-page .section-kicker,
.tour-page .section-title {
  color: #111111;
}

.tour-page .section-intro {
  color: rgba(15, 15, 16, 0.72);
}

.tour-page-list {
  margin-top: 44px;
  display: grid;
  gap: 18px;
}

.tour-page-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 14px 34px rgba(0,0,0,0.08);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.3s var(--ease);
}

.tour-page-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 85, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 24px 44px rgba(0,0,0,0.12);
}

.tour-page-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,0.18) 38%,
    rgba(255,255,255,0.46) 50%,
    rgba(255,255,255,0.18) 62%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 1s var(--ease);
  pointer-events: none;
}

.tour-page-item:hover::after {
  transform: translateX(120%);
}

.tour-page-date {
  display: grid;
  place-items: center;
  align-self: stretch;
  padding: 14px 10px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(245,245,245,0.7));
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 10px 24px rgba(0,0,0,0.05);
}

.tour-page-month,
.tour-page-year {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.tour-page-day {
  display: block;
  margin: 4px 0;
  font-family: "Wagon Display", "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  color: #111111;
}

.tour-page-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 22px;
  align-items: center;
}

.tour-page-city {
  margin: 0;
  font-family: "Wagon Display", "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #111111;
}

.tour-page-venue {
  margin: 10px 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(15,15,16,0.86);
}

.tour-page-meta {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tour-page-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.05);
  color: rgba(15,15,16,0.7);
  font-size: 0.84rem;
  font-weight: 700;
}

.tour-page-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

.status-live {
  background: rgba(31, 186, 102, 0.1);
  color: #11814a;
  border: 1px solid rgba(31, 186, 102, 0.16);
}

.status-live .status-dot {
  background: #1fba66;
}

.status-low {
  background: rgba(255, 159, 10, 0.12);
  color: #b56b00;
  border: 1px solid rgba(255, 159, 10, 0.2);
}

.status-low .status-dot {
  background: #ff9f0a;
}

.status-soon {
  background: rgba(255, 45, 85, 0.1);
  color: #d11d47;
  border: 1px solid rgba(255, 45, 85, 0.16);
}

.status-soon .status-dot {
  background: var(--accent);
}

@keyframes statusPulse {
  0% { transform: scale(0.9); opacity: 0.75; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.75; }
}

.tour-page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tour-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.tour-btn:hover {
  transform: translateY(-2px);
}

.tour-btn-primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(255, 45, 85, 0.18);
}

.tour-btn-primary:hover {
  box-shadow: 0 20px 34px rgba(255, 45, 85, 0.24);
}

.tour-btn-secondary {
  color: #111111;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.08);
}

.tour-cta-card {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 14px 36px rgba(0,0,0,0.08);
}

.tour-cta-text {
  max-width: 760px;
}

.tour-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .tour-page-main {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .tour-page-status,
  .tour-page-actions {
    justify-self: start;
  }

  .tour-cta-card {
    grid-template-columns: 1fr;
  }

  .tour-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .tour-page-item {
    grid-template-columns: 1fr;
  }

  .tour-page-date {
    grid-template-columns: repeat(3, auto);
    display: grid;
    gap: 10px;
    justify-content: start;
    align-items: end;
    padding: 16px 18px;
  }

  .tour-page-day {
    font-size: 2.2rem;
    margin: 0;
  }

  .tour-page-actions {
    width: 100%;
    gap: 10px;
  }

  .tour-btn {
    width: 100%;
  }

  .tour-cta-card {
    padding: 24px;
    border-radius: 24px;
  }
}

/* =========================
   CREDITS PAGE
========================= */

.credits-page {
  background: #ffffff;
}

.credits-page .section,
.credits-band,
.credits-page-section,
.credits-roles-section,
.credits-selected-section,
.credits-contact-section {
  position: relative;
  z-index: 2;
  background: transparent;
}

.credits-hero .hero-kicker {
  color: rgba(255,255,255,0.82);
}

/* hero system for subpages */
.subpage-body {
  background: #ffffff;
}

.subpage-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.subpage-hero-media,
.subpage-hero-video,
.subpage-hero-overlay {
  position: absolute;
  inset: 0;
}

.subpage-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.subpage-hero-overlay {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.12) 28%, rgba(0,0,0,0.34) 68%, rgba(0,0,0,0.54) 100%),
    radial-gradient(circle at center, rgba(255,45,85,0.10), transparent 42%);
  z-index: 1;
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), 1120px);
  padding-top: 120px;
  text-align: center;
}

.subpage-title {
  margin: 0;
  font-family: "Wagon Display", "Times New Roman", serif;
  font-size: clamp(3.8rem, 10vw, 8.6rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #fff;
}

.subpage-subtitle {
  width: min(100%, 760px);
  margin: 24px auto 0;
  color: rgba(255,255,255,0.84);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.75;
  font-weight: 500;
}

/* band */
.credits-band-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.credits-band-card {
  position: relative;
  padding: 26px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255,255,255,0.44);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 14px 32px rgba(0,0,0,0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.credits-band-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.76),
    0 22px 40px rgba(0,0,0,0.12);
}

.credits-band-number {
  display: block;
  margin-bottom: 10px;
  font-family: "Wagon Display", "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
  color: #111111;
}

.credits-band-label {
  margin: 0;
  color: rgba(15,15,16,0.72);
  line-height: 1.75;
  font-size: 0.98rem;
}

/* shared text */
.credits-page .section-kicker,
.credits-page .section-title {
  color: #111111;
}

.credits-page .section-intro,
.credits-page .credit-text {
  color: rgba(15,15,16,0.72);
}

.credits-intro {
  width: min(100%, 820px);
  margin-left: auto;
  margin-right: auto;
}

/* credits cards */
.credits-page-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.credit-card-premium {
  position: relative;
  min-height: 240px;
  padding: 26px;
  border-radius: 24px;
  overflow: hidden;
  transition:
    transform 0.38s var(--ease),
    box-shadow 0.38s var(--ease),
    border-color 0.3s var(--ease);
}

.credit-card-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.12) 38%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0.12) 62%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 1s var(--ease);
  pointer-events: none;
}

.credit-card-premium:hover {
  transform: translateY(-8px);
  border-color: rgba(255,45,85,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.76),
    0 24px 42px rgba(0,0,0,0.12);
}

.credit-card-premium:hover::before {
  transform: translateX(120%);
}

.credit-role {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.credit-name {
  margin: 0;
  font-family: "Wagon Display", "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #111111;
}

.credit-text {
  margin: 14px 0 0;
  line-height: 1.8;
  font-size: 0.98rem;
}

/* role panels */
.credits-roles-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.credits-role-panel {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 12px 28px rgba(0,0,0,0.07);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.credits-role-panel:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.78),
    0 20px 36px rgba(0,0,0,0.11);
}

.credits-role-title {
  margin: 0 0 16px;
  font-family: "Wagon Display", "Times New Roman", serif;
  font-size: 1.6rem;
  color: #111111;
}

.credits-role-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.credits-role-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(15,15,16,0.74);
  font-weight: 600;
}

.credits-role-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(255,45,85,0.22);
}

/* project cards */
.credits-project-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.credits-project-card {
  position: relative;
  padding: 26px;
  min-height: 230px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,250,250,0.92));
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.84),
    0 10px 24px rgba(0,0,0,0.07);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.credits-project-card:hover {
  transform: translateY(-8px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.88),
    0 22px 38px rgba(0,0,0,0.12);
}

.credits-project-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,45,85,0.08);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credits-project-title {
  margin: 18px 0 0;
  font-family: "Wagon Display", "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  line-height: 0.98;
  color: #111111;
}

.credits-project-text {
  margin: 14px 0 0;
  color: rgba(15,15,16,0.72);
  line-height: 1.8;
}

/* contact card */
.credits-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 14px 36px rgba(0,0,0,0.08);
}

.credits-contact-text {
  max-width: 760px;
}

.credits-contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* responsive */
@media (max-width: 1100px) {
  .credits-page-grid,
  .credits-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credits-roles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credits-band-grid,
  .credits-contact-card {
    grid-template-columns: 1fr;
  }

  .credits-contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .credits-page-grid,
  .credits-project-grid,
  .credits-roles-grid {
    grid-template-columns: 1fr;
  }

  .credit-card-premium,
  .credits-role-panel,
  .credits-project-card,
  .credits-contact-card,
  .credits-band-card {
    border-radius: 22px;
  }

  .credits-contact-actions {
    flex-direction: column;
  }

  .credits-contact-actions .btn {
    width: 100%;
  }

  .subpage-hero-content,
  .section-inner {
    width: min(calc(100% - 24px), var(--max-width));
  }
}

/* =========================
   SHOP PAGE
========================= */

.shop-page {
  background: #ffffff;
}

.shop-page .section,
.shop-filter-section,
.shop-checkout-section {
  position: relative;
  z-index: 2;
  background: transparent;
}

.shop-hero .hero-kicker {
  color: rgba(255,255,255,0.82);
}

.shop-page .section-kicker,
.shop-page .section-title {
  color: #111111;
}

.shop-page .section-intro {
  color: rgba(15,15,16,0.72);
}

.shop-intro {
  width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
}

/* cart button in header */
.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-right: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 10px 22px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cart-toggle:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.76),
    0 16px 28px rgba(0,0,0,0.12);
}

.cart-toggle-icon {
  font-size: 1.05rem;
}

.cart-toggle-count {
  position: absolute;
  top: -6px;
  right: -2px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

/* filter */
.shop-filter-bar {
  margin: 34px auto 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.shop-filter-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(0,0,0,0.08);
  color: #111111;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.shop-filter-btn:hover,
.shop-filter-btn.is-active {
  transform: translateY(-2px);
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(255,45,85,0.18);
}

/* grid */
.shop-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.shop-card {
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 14px 34px rgba(0,0,0,0.08);
  transition:
    transform 0.38s var(--ease),
    box-shadow 0.38s var(--ease),
    border-color 0.3s var(--ease);
}

.shop-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,45,85,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.78),
    0 24px 42px rgba(0,0,0,0.12);
}

.shop-card-image-wrap {
  position: relative;
  aspect-ratio: 4 / 4;
  overflow: hidden;
  background: rgba(255,255,255,0.4);
}

.shop-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.shop-card:hover .shop-card-image {
  transform: scale(1.06);
}

.shop-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17,17,17,0.75);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-card-body {
  padding: 22px;
}

.shop-card-title {
  margin: 0;
  font-family: "Wagon Display", "Times New Roman", serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 0.98;
  color: #111111;
}

.shop-card-text {
  margin: 12px 0 0;
  color: rgba(15,15,16,0.72);
  line-height: 1.75;
  min-height: 52px;
}

.shop-card-bottom {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.shop-price {
  font-size: 1rem;
  font-weight: 900;
  color: #111111;
}

.shop-add-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 24px rgba(255,45,85,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shop-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(255,45,85,0.24);
}

/* checkout card */
.shop-checkout-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 14px 36px rgba(0,0,0,0.08);
}

.shop-checkout-text {
  max-width: 760px;
}

.shop-checkout-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* cart drawer */
body.cart-open,
body.checkout-open,
body.success-open {
  overflow: hidden;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.cart-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,7,10,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 470px);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.95);
  box-shadow: -20px 0 50px rgba(0,0,0,0.18);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.cart-drawer.is-open .cart-drawer-panel {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 22px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.cart-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.cart-title {
  margin: 0;
  font-family: "Wagon Display", "Times New Roman", serif;
  font-size: 2rem;
  line-height: 0.95;
  color: #111111;
}

.cart-close,
.checkout-close {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15,15,16,0.08);
}

.cart-close span,
.checkout-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #111111;
  border-radius: 999px;
}

.cart-close span:first-child,
.checkout-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cart-close span:last-child,
.checkout-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
}

.cart-empty {
  display: grid;
  place-items: center;
  min-height: 180px;
  color: rgba(15,15,16,0.64);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.cart-item-image-wrap {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.48);
}

.cart-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #111111;
}

.cart-item-price {
  margin: 8px 0 0;
  color: rgba(15,15,16,0.72);
}

.cart-item-controls {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,15,16,0.06);
}

.cart-qty-controls button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  font-weight: 800;
}

.cart-remove-btn {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.cart-footer {
  padding: 20px 22px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.96);
}

.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: rgba(15,15,16,0.78);
}

.cart-row strong {
  color: #111111;
}

.cart-total-row {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 1rem;
}

.cart-footer-actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

/* =========================
   CHECKOUT MODAL FIX
========================= */

.checkout-modal,
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.checkout-modal.is-open,
.success-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.checkout-backdrop,
.success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,7,10,0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.checkout-modal {
  overflow-y: auto;
  padding: 20px;
}

.checkout-dialog {
  position: relative;
  width: min(100%, 1120px);
  max-height: calc(100vh - 40px);
  margin: 0 auto;
  padding: 22px;
  border-radius: 30px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 28px 80px rgba(0,0,0,0.24);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  top: 50%;
  transform: translateY(-50%);
}

.checkout-head {
  padding: 6px 4px 18px;
  flex-shrink: 0;
}

.checkout-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.checkout-title {
  margin: 0;
  font-family: "Wagon Display", "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 0.95;
  color: #111111;
}

.checkout-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  min-height: 0;
  flex: 1;
  overflow: hidden;
}

.checkout-order-summary,
.checkout-form {
  padding: 20px;
  border-radius: 24px;
  background: rgba(250,250,250,0.95);
  border: 1px solid rgba(0,0,0,0.05);
  min-height: 0;
  overflow-y: auto;
}

.checkout-block-title {
  margin: 0 0 18px;
  font-size: 1rem;
  font-weight: 900;
  color: #111111;
}

.checkout-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.checkout-item h4 {
  margin: 0;
  font-size: 0.98rem;
  color: #111111;
}

.checkout-item p {
  margin: 6px 0 0;
  color: rgba(15,15,16,0.66);
}

.checkout-summary-totals {
  margin-top: 18px;
}

.checkout-field {
  margin-top: 14px;
}

.checkout-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #111111;
}

.checkout-field input,
.checkout-field textarea,
.checkout-field select {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.08);
  background: #ffffff;
  color: #111111;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}

.checkout-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.checkout-note {
  margin-top: 16px;
  color: rgba(15,15,16,0.64);
  font-size: 0.9rem;
  line-height: 1.7;
}

.checkout-empty {
  color: rgba(15,15,16,0.64);
}
/* success */
.success-dialog {
  position: relative;
  width: min(calc(100% - 28px), 480px);
  margin: 18vh auto 0;
  padding: 30px;
  text-align: center;
  border-radius: 28px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 28px 80px rgba(0,0,0,0.24);
}

.success-dialog h3 {
  margin: 0;
  font-family: "Wagon Display", "Times New Roman", serif;
  font-size: 2rem;
  color: #111111;
}

.success-dialog p {
  margin: 14px 0 24px;
  color: rgba(15,15,16,0.72);
  line-height: 1.8;
}

/* responsive */
@media (max-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-grid,
  .shop-checkout-card {
    grid-template-columns: 1fr;
  }

  .shop-checkout-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .cart-toggle {
    margin-right: 8px;
  }

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

  .shop-card-bottom,
  .checkout-actions,
  .shop-checkout-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-add-btn,
  .checkout-actions .btn,
  .shop-checkout-actions .btn {
    width: 100%;
  }

  .checkout-dialog {
    width: min(calc(100% - 18px), 1120px);
    padding: 14px;
    margin-top: 18px;
    border-radius: 22px;
  }

  .checkout-order-summary,
  .checkout-form,
  .shop-checkout-card {
    border-radius: 20px;
  }

  .checkout-order-summary,
.checkout-form,
.checkout-modal {
  -webkit-overflow-scrolling: touch;
}

  .cart-drawer-panel {
    width: 100%;
  }
}

/* =========================
   INDEX VIDEO SECTION
========================= */

.index-video-section {
  position: relative;
  z-index: 2;
  background: transparent;
}

.video-section-intro {
  width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
}

.index-video-layout {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.index-video-player-wrap,
.index-video-sidebar {
  min-width: 0;
}

.index-video-player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 18px 40px rgba(0,0,0,0.10);
}

.index-video-player-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.index-video-sidebar {
  display: grid;
  gap: 14px;
  max-height: 720px;
  overflow-y: auto;
  padding-right: 4px;
  -webkit-overflow-scrolling: touch;
}

.index-video-card {
  width: 100%;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 22px;
  text-align: left;
  background: rgba(255,255,255,0.50);
  border: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 12px 28px rgba(0,0,0,0.08);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.index-video-card:hover,
.index-video-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(255,45,85,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.78),
    0 18px 34px rgba(0,0,0,0.12);
}

.index-video-thumb {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,0.3);
}

.index-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.index-video-card:hover .index-video-thumb img,
.index-video-card.is-active .index-video-thumb img {
  transform: scale(1.05);
}

.index-video-meta {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.index-video-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.index-video-name {
  display: block;
  font-family: "Wagon Display", "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: #111111;
}

@media (max-width: 1100px) {
  .index-video-layout {
    grid-template-columns: 1fr;
  }

  .index-video-sidebar {
    max-height: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .index-video-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .index-video-sidebar {
    grid-template-columns: 1fr;
  }

  .index-video-card {
    grid-template-columns: 100px minmax(0, 1fr);
    border-radius: 18px;
  }

  .index-video-player-shell {
    border-radius: 22px;
  }
}


/* =========================
   REENIE BEANIE ACCENTS
========================= */

:root {
  --font-accent-hand: "Reenie Beanie", cursive;
}

/* hero handwritten accents */
.hero-handwritten {
  font-family: var(--font-accent-hand);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  opacity: 0.95;
  pointer-events: none;
}

.hero-handwritten-top {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  transform: rotate(-3deg);
}

.hero-handwritten-bottom {
  margin: 18px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  color: rgba(255, 255, 255, 0.92);
  transform: rotate(2deg);
}

/* section handwritten tags */
.section-handwritten {
  margin: -2px 0 10px;
  text-align: center;
  font-family: var(--font-accent-hand);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 0.9;
  color: var(--accent);
  transform: rotate(-2deg);
  opacity: 0.95;
}

/* video area */
.index-video-handwritten {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-accent-hand);
  font-size: 1.35rem;
  line-height: 0.9;
  color: var(--accent);
  transform: rotate(-3deg);
  opacity: 0.88;
}

/* credits */
.credit-handwritten {
  display: inline-block;
  margin: 2px 0 10px;
  font-family: var(--font-accent-hand);
  font-size: 1.3rem;
  line-height: 0.9;
  color: var(--accent);
  transform: rotate(-2deg);
  opacity: 0.85;
}

/* shop */
.shop-handwritten {
  margin: 8px 0 6px;
  font-family: var(--font-accent-hand);
  font-size: 1.35rem;
  line-height: 0.9;
  color: var(--accent);
  transform: rotate(-2deg);
  opacity: 0.88;
}

/* listen */
.listen-handwritten {
  margin: 6px 0 4px;
  font-family: var(--font-accent-hand);
  font-size: 1.3rem;
  line-height: 0.9;
  color: var(--accent);
  transform: rotate(-2deg);
  opacity: 0.88;
}

/* optional motion */
.hero-handwritten-top,
.hero-handwritten-bottom,
.section-handwritten {
  animation: handwrittenFloat 4.5s ease-in-out infinite;
}

@keyframes handwrittenFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -5px;
  }
}

/* keep it controlled on smaller screens */
@media (max-width: 680px) {
  .hero-handwritten-top {
    margin-bottom: 8px;
  }

  .hero-handwritten-bottom {
    margin-top: 12px;
  }

  .section-handwritten {
    margin-bottom: 8px;
  }
}

:root {
  --accent-green: #1db954;
}

/* Reenie Beanie accents */
.hero-handwritten {
  font-family: "Reenie Beanie", cursive;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--accent-green);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  opacity: 0.95;
  pointer-events: none;
}

.hero-handwritten-top {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  transform: rotate(-3deg);
}

.hero-handwritten-bottom {
  margin: 18px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  color: var(--accent-green);
  transform: rotate(2deg);
}

.section-handwritten {
  margin: -2px 0 10px;
  text-align: center;
  font-family: "Reenie Beanie", cursive;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 0.9;
  color: var(--accent-green);
  transform: rotate(-2deg);
  opacity: 0.95;
}

.index-video-handwritten {
  display: inline-block;
  margin-top: 4px;
  font-family: "Reenie Beanie", cursive;
  font-size: 1.35rem;
  line-height: 0.9;
  color: var(--accent-green);
  transform: rotate(-3deg);
  opacity: 0.88;
}

.credit-handwritten {
  display: inline-block;
  margin: 2px 0 10px;
  font-family: "Reenie Beanie", cursive;
  font-size: 1.3rem;
  line-height: 0.9;
  color: var(--accent-green);
  transform: rotate(-2deg);
  opacity: 0.85;
}

.listen-handwritten {
  margin: 6px 0 4px;
  font-family: "Reenie Beanie", cursive;
  font-size: 1.3rem;
  line-height: 0.9;
  color: var(--accent-green);
  transform: rotate(-2deg);
  opacity: 0.88;
}

.shop-handwritten {
  margin: 8px 0 6px;
  font-family: "Reenie Beanie", cursive;
  font-size: 1.35rem;
  line-height: 0.9;
  color: var(--accent-green);
  transform: rotate(-2deg);
  opacity: 0.88;
}


/* Reenie Beanie accents on listen page */
.listen-handwritten {
  font-family: "Reenie Beanie", cursive;
  font-weight: 400;
  line-height: 0.9;
  color: var(--accent-green);
  opacity: 0.95;
}

.listen-handwritten-hero {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  transform: rotate(-3deg);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.listen-handwritten-section {
  margin: -4px 0 10px;
  text-align: center;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  transform: rotate(-2deg);
}

.listen-handwritten-card {
  margin: 6px 0 4px;
  font-size: 1.3rem;
  transform: rotate(-2deg);
  opacity: 0.9;
}

/* optional subtle motion */
.listen-handwritten-hero,
.listen-handwritten-section {
  animation: listenHandFloat 4.5s ease-in-out infinite;
}

@keyframes listenHandFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-4px) rotate(-2deg);
  }
}

:root {
  --accent-green-bright: #16a34a;
  --accent-green-deep: #14532d;
}

.listen-handwritten-hero {
  color: var(--accent-green-bright);
}

.listen-handwritten-section,
.listen-handwritten-card {
  color: var(--accent-green-deep);
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}

.listen-handwritten-section,
.listen-handwritten-card {
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}


:root {
  --accent-green-bright: #16a34a;
  --accent-green-deep: #14532d;
  --text-dark: #111111;
  --text-muted: rgba(15, 15, 16, 0.72);
  --text-soft: rgba(15, 15, 16, 0.62);
}

/* handwritten font colors */
.listen-handwritten {
  font-family: "Reenie Beanie", cursive;
  font-weight: 400;
  line-height: 0.9;
  opacity: 0.95;
}

.listen-handwritten-hero {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  transform: rotate(-3deg);
  color: var(--accent-green-bright);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.listen-handwritten-section {
  margin: -4px 0 10px;
  text-align: center;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  transform: rotate(-2deg);
  color: var(--accent-green-deep);
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}

.listen-handwritten-card {
  margin: 6px 0 4px;
  font-size: 1.3rem;
  transform: rotate(-2deg);
  opacity: 0.95;
  color: var(--accent-green-deep);
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}

/* section text on white backgrounds */
.listen-page .section-kicker,
.listen-page .section-title {
  color: var(--text-dark);
}

.listen-page .section-intro {
  color: var(--text-muted);
}

/* featured release text */
.featured-release-title {
  color: var(--text-dark);
}

.featured-release-text {
  color: var(--text-muted);
}

/* platform cards */
.listen-card-title {
  color: var(--text-dark);
}

.listen-card-text {
  color: var(--text-muted);
}

.listen-card-cta {
  color: var(--accent-green-deep);
}

/* if your listen cards still feel too washed out */
.listen-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* embed section text */
.listen-embed .section-title,
.listen-embed .section-kicker {
  color: var(--text-dark);
}

.listen-embed .section-intro {
  color: var(--text-muted);
}

:root {
  --accent-green-bright: #16a34a;
  --accent-green-deep: #14532d;
  --tour-text-dark: #111111;
  --tour-text-muted: rgba(15, 15, 16, 0.72);
  --tour-text-soft: rgba(15, 15, 16, 0.62);
}

/* =========================
   TOUR FONT ENHANCEMENTS
========================= */

.tour-handwritten {
  font-family: "Reenie Beanie", cursive;
  font-weight: 400;
  line-height: 0.9;
  opacity: 0.95;
}

.tour-handwritten-hero {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  transform: rotate(-3deg);
  color: var(--accent-green-bright);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.tour-handwritten-section {
  margin: -4px 0 10px;
  text-align: center;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  transform: rotate(-2deg);
  color: var(--accent-green-deep);
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}

.tour-card-handwritten {
  display: inline-block;
  margin: 0 0 8px;
  font-family: "Reenie Beanie", cursive;
  font-size: 1.35rem;
  line-height: 0.9;
  color: var(--accent-green-deep);
  transform: rotate(-2deg);
  opacity: 0.95;
}

/* readable text on white sections */
.tour-page .section-kicker,
.tour-page .section-title,
.tour-page-city,
.tour-page-venue {
  color: var(--tour-text-dark);
}

.tour-page .section-intro,
.tour-cta-text,
.tour-page-meta span {
  color: var(--tour-text-muted);
}

/* card polish */
.tour-page-item {
  overflow: hidden;
}

.tour-page-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.10) 38%,
    rgba(255,255,255,0.34) 50%,
    rgba(255,255,255,0.10) 62%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 1s var(--ease);
  pointer-events: none;
}

.tour-page-item:hover::before {
  transform: translateX(120%);
}

.tour-page-city {
  margin-top: 2px;
}

.tour-page-venue {
  color: rgba(15,15,16,0.82);
}

.tour-page-meta span {
  background: rgba(255,255,255,0.82);
}

.tour-page-date {
  position: relative;
}

.tour-page-date::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  border: 1px solid rgba(22, 163, 74, 0.08);
  pointer-events: none;
}

/* CTA polish */
.tour-cta-card {
  position: relative;
  overflow: hidden;
}

.tour-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(22,163,74,0.08), transparent 34%);
  pointer-events: none;
}

/* subtle motion */
.tour-handwritten-hero,
.tour-handwritten-section {
  animation: tourHandFloat 4.5s ease-in-out infinite;
}

@keyframes tourHandFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-4px) rotate(-2deg);
  }
}

@media (max-width: 760px) {
  .tour-card-handwritten {
    font-size: 1.2rem;
  }

  .tour-handwritten-section {
    margin-bottom: 8px;
  }
}

:root {
  --accent-green-bright: #16a34a;
  --accent-green-deep: #14532d;
  --video-text-dark: #111111;
  --video-text-muted: rgba(15, 15, 16, 0.72);
  --video-text-soft: rgba(15, 15, 16, 0.62);
}

/* =========================
   VIDEO PAGE ENHANCEMENTS
========================= */

.video-handwritten {
  font-family: "Reenie Beanie", cursive;
  font-weight: 400;
  line-height: 0.9;
  opacity: 0.95;
}

.video-handwritten-hero {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  transform: rotate(-3deg);
  color: var(--accent-green-bright);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.video-handwritten-section {
  margin: -4px 0 10px;
  text-align: center;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  transform: rotate(-2deg);
  color: var(--accent-green-deep);
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}

.video-card-handwritten {
  display: inline-block;
  margin: 4px 0 8px;
  font-family: "Reenie Beanie", cursive;
  font-size: 1.32rem;
  line-height: 0.9;
  color: var(--accent-green-deep);
  transform: rotate(-2deg);
  opacity: 0.95;
}

/* readable text on white sections */
.video-page .section-kicker,
.video-page .section-title,
.featured-video-title,
.video-page-title,
.video-modal-title {
  color: var(--video-text-dark);
}

.video-page .section-intro,
.featured-video-text,
.video-page-text,
.video-modal-kicker {
  color: var(--video-text-muted);
}

/* cards */
.featured-video-card,
.video-page-trigger {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.video-page-card-body,
.featured-video-copy {
  position: relative;
  z-index: 2;
}

.video-page-trigger:hover,
.featured-video-card:hover {
  border-color: rgba(22, 163, 74, 0.14);
}

.video-chip,
.video-label {
  color: var(--accent-green-deep);
}

/* popup fix */
.video-modal {
  padding: 24px;
  overflow-y: auto;
}

.video-modal-dialog {
  width: min(100%, 980px);
  max-height: calc(100vh - 48px);
  margin: 0 auto;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 28px 80px rgba(0,0,0,0.25);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.38s var(--ease);
  overflow: hidden;
}

.video-modal.is-open .video-modal-dialog {
  transform: translateY(0) scale(1);
}

.video-modal-head {
  padding: 6px 10px 16px;
}

.video-modal-kicker {
  margin: 0 0 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-green-deep);
}

.video-modal-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.video-modal-frame-wrap {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16 / 9;
  background: #000000;
  max-height: calc(100vh - 180px);
}

.video-modal-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15,15,16,0.08);
  transition: transform 0.25s ease, background 0.25s ease;
  z-index: 4;
}

.video-modal-close:hover {
  transform: rotate(90deg);
  background: rgba(22,163,74,0.10);
}

.video-modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #111111;
  border-radius: 999px;
}

.video-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.video-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* better pc balance */
@media (min-width: 1280px) {
  .video-modal-dialog {
    width: min(100%, 920px);
  }
}

/* responsive */
@media (max-width: 1100px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-video-card {
    grid-template-columns: 1fr;
  }

  .featured-video-play {
    right: 22px;
    bottom: 22px;
  }

  .video-modal-dialog {
    width: min(100%, 920px);
    max-height: calc(100vh - 32px);
  }
}

@media (max-width: 720px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .featured-video-card,
  .video-page-trigger,
  .video-modal-dialog {
    border-radius: 24px;
  }

  .featured-video-actions {
    flex-direction: column;
  }

  .featured-video-actions .btn {
    width: 100%;
  }

  .video-modal {
    padding: 10px;
  }

  .video-modal-dialog {
    width: 100%;
    padding: 14px;
    margin-top: 0;
    max-height: calc(100vh - 20px);
    border-radius: 22px;
  }

  .video-modal-head {
    padding: 6px 6px 12px;
  }

  .video-modal-frame-wrap {
    max-height: none;
  }

  .video-modal-close {
    width: 44px;
    height: 44px;
    top: 10px;
    right: 10px;
  }
}

:root {
  --credits-green-bright: #16a34a;
  --credits-green-deep: #14532d;
  --credits-text-dark: #111111;
  --credits-text-muted: rgba(15, 15, 16, 0.72);
  --credits-text-soft: rgba(15, 15, 16, 0.62);
}

/* =========================
   CREDITS PAGE ENHANCEMENTS
========================= */

.credits-handwritten {
  font-family: "Reenie Beanie", cursive;
  font-weight: 400;
  line-height: 0.9;
  opacity: 0.95;
}

.credits-handwritten-hero {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  transform: rotate(-3deg);
  color: var(--credits-green-bright);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.credits-handwritten-section {
  margin: -4px 0 10px;
  text-align: center;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  transform: rotate(-2deg);
  color: var(--credits-green-deep);
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}

.credits-handwritten-left {
  text-align: left;
}

.credit-handwritten {
  display: inline-block;
  margin: 2px 0 10px;
  font-family: "Reenie Beanie", cursive;
  font-size: 1.3rem;
  line-height: 0.9;
  color: var(--credits-green-deep);
  transform: rotate(-2deg);
  opacity: 0.9;
}

/* make white section text readable and premium */
.credits-page .section-kicker,
.credits-page .section-title,
.credit-name,
.credits-role-title,
.credits-project-title {
  color: var(--credits-text-dark);
}

.credits-page .section-intro,
.credit-text,
.credits-band-label,
.credits-project-text,
.credits-contact-text {
  color: var(--credits-text-muted);
}

/* better core cards */
.credit-card-premium {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255,255,255,0.42);
}

.credit-card-premium:hover {
  border-color: rgba(22,163,74,0.14);
}

/* better section rhythm */
.credits-intro {
  width: min(100%, 860px);
  margin-left: auto;
  margin-right: auto;
}

/* overview cards */
.credits-band-card {
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.42);
}

.credits-band-number {
  color: var(--credits-text-dark);
}

.credits-band-card:hover {
  transform: translateY(-6px);
}

/* roles */
.credits-role-panel {
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(255,255,255,0.42);
}

.credits-role-title {
  margin-bottom: 18px;
}

.credits-role-list li {
  color: var(--credits-text-muted);
}

.credits-role-list li::before {
  background: var(--credits-green-deep);
  box-shadow: 0 0 14px rgba(22,163,74,0.20);
}

/* projects */
.credits-project-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0,0,0,0.05);
}

.credits-project-tag {
  background: rgba(22,163,74,0.08);
  color: var(--credits-green-deep);
}

/* contact block */
.credits-contact-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.42);
}

.credits-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(22,163,74,0.08), transparent 34%);
  pointer-events: none;
}

/* section accents */
.credit-role {
  color: var(--credits-green-deep);
}

.credits-band-card,
.credit-card-premium,
.credits-role-panel,
.credits-project-card,
.credits-contact-card {
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.3s var(--ease);
}

.credits-band-card:hover,
.credits-role-panel:hover,
.credits-project-card:hover,
.credits-contact-card:hover {
  transform: translateY(-6px);
}

/* subtle handwritten motion */
.credits-handwritten-hero,
.credits-handwritten-section {
  animation: creditsHandFloat 4.5s ease-in-out infinite;
}

@keyframes creditsHandFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-4px) rotate(-2deg);
  }
}

@media (max-width: 720px) {
  .credit-handwritten {
    font-size: 1.15rem;
  }

  .credits-handwritten-section {
    margin-bottom: 8px;
  }
}

/* =========================
   LISTEN PLATFORM UPGRADE
========================= */

.listen-grid-premium {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.listen-card-premium {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 14px 34px rgba(0,0,0,0.08);
  transition:
    transform 0.38s var(--ease),
    box-shadow 0.38s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.listen-card-premium:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 163, 74, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.86),
    0 24px 44px rgba(0,0,0,0.12);
  background: rgba(255, 255, 255, 0.92);
}

.listen-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.12) 38%,
    rgba(255,255,255,0.42) 50%,
    rgba(255,255,255,0.12) 62%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 1s var(--ease);
  pointer-events: none;
}

.listen-card-premium:hover .listen-card-shine {
  transform: translateX(120%);
}

.listen-card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.listen-card-copy {
  min-width: 0;
}

.listen-card-premium .listen-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.12);
  box-shadow: 0 10px 22px rgba(22, 163, 74, 0.10);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease);
}

.listen-card-premium .listen-card-icon svg {
  width: 30px;
  height: 30px;
  fill: #14532d;
  transition: transform 0.35s var(--ease);
}

.listen-card-premium:hover .listen-card-icon {
  transform: translateY(-4px) scale(1.04);
  background: rgba(22, 163, 74, 0.12);
  box-shadow: 0 16px 28px rgba(22, 163, 74, 0.14);
}

.listen-card-premium:hover .listen-card-icon svg {
  transform: scale(1.08);
}

.listen-card-premium .listen-card-title {
  color: #111111;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 0.95;
}

.listen-card-premium .listen-card-text {
  margin: 18px 0 0;
  color: rgba(15, 15, 16, 0.72);
  line-height: 1.8;
}

.listen-card-bottom {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.listen-card-premium .listen-card-cta {
  color: #14532d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.listen-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.08);
  color: #14532d;
  font-size: 1.05rem;
  font-weight: 800;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.listen-card-premium:hover .listen-card-arrow {
  transform: translateX(6px);
  background: rgba(22, 163, 74, 0.14);
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.14);
}

/* stronger overall section polish */
.listen-section .section-intro {
  width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
}

/* featured release buttons polish */
.featured-release-actions .btn {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.featured-release-actions .btn:hover {
  transform: translateY(-2px);
}

/* embed section polish */
.listen-embed-wrap {
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.listen-embed-wrap:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 24px 42px rgba(0,0,0,0.18);
}

@media (max-width: 980px) {
  .listen-grid-premium {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .listen-card-premium {
    min-height: unset;
    padding: 20px;
    border-radius: 22px;
  }

  .listen-card-bottom {
    padding-top: 18px;
  }

  .listen-card-arrow {
    width: 38px;
    height: 38px;
  }
}

.listen-grid-premium {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.listen-card-premium {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 14px 34px rgba(0,0,0,0.08);
  transition:
    transform 0.38s var(--ease),
    box-shadow 0.38s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.listen-card-premium:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 163, 74, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.86),
    0 24px 44px rgba(0,0,0,0.12);
  background: rgba(255, 255, 255, 0.92);
}

.listen-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.12) 38%,
    rgba(255,255,255,0.42) 50%,
    rgba(255,255,255,0.12) 62%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 1s var(--ease);
  pointer-events: none;
}

.listen-card-premium:hover .listen-card-shine {
  transform: translateX(120%);
}

.listen-card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.listen-card-copy {
  min-width: 0;
}

.listen-card-premium .listen-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.12);
  box-shadow: 0 10px 22px rgba(22, 163, 74, 0.10);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease);
}

.listen-card-premium .listen-card-icon svg {
  width: 30px;
  height: 30px;
  fill: #14532d;
  transition: transform 0.35s var(--ease);
}

.listen-card-premium:hover .listen-card-icon {
  transform: translateY(-4px) scale(1.04);
  background: rgba(22, 163, 74, 0.12);
  box-shadow: 0 16px 28px rgba(22, 163, 74, 0.14);
}

.listen-card-premium:hover .listen-card-icon svg {
  transform: scale(1.08);
}

.listen-album-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.08);
  color: #14532d;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.listen-card-premium .listen-card-title {
  color: #111111;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 0.95;
}

.listen-card-premium .listen-card-text {
  margin: 18px 0 0;
  color: rgba(15, 15, 16, 0.72);
  line-height: 1.8;
}

.listen-card-bottom {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.listen-card-premium .listen-card-cta {
  color: #14532d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.listen-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.08);
  color: #14532d;
  font-size: 1.05rem;
  font-weight: 800;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.listen-card-premium:hover .listen-card-arrow {
  transform: translateX(6px);
  background: rgba(22, 163, 74, 0.14);
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.14);
}

@media (max-width: 980px) {
  .listen-grid-premium {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .listen-card-premium {
    min-height: unset;
    padding: 20px;
    border-radius: 22px;
  }

  .listen-card-bottom {
    padding-top: 18px;
  }

  .listen-card-arrow {
    width: 38px;
    height: 38px;
  }
}

.listen-grid-premium {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.listen-card-premium {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 14px 34px rgba(0,0,0,0.08);
  transition:
    transform 0.38s var(--ease),
    box-shadow 0.38s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.listen-card-premium:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 163, 74, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.86),
    0 24px 44px rgba(0,0,0,0.12);
  background: rgba(255, 255, 255, 0.92);
}

.listen-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.12) 38%,
    rgba(255,255,255,0.42) 50%,
    rgba(255,255,255,0.12) 62%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 1s var(--ease);
  pointer-events: none;
}

.listen-card-premium:hover .listen-card-shine {
  transform: translateX(120%);
}

.listen-card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.listen-card-copy {
  min-width: 0;
}

.listen-card-premium .listen-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.12);
  box-shadow: 0 10px 22px rgba(22, 163, 74, 0.10);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease);
}

.listen-card-premium .listen-card-icon svg {
  width: 30px;
  height: 30px;
  fill: #14532d;
  transition: transform 0.35s var(--ease);
}

.listen-card-premium:hover .listen-card-icon {
  transform: translateY(-4px) scale(1.04);
  background: rgba(22, 163, 74, 0.12);
  box-shadow: 0 16px 28px rgba(22, 163, 74, 0.14);
}

.listen-card-premium:hover .listen-card-icon svg {
  transform: scale(1.08);
}

.listen-album-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.08);
  color: #14532d;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.listen-card-premium .listen-card-title {
  color: #111111;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 0.95;
}

.listen-card-premium .listen-card-text {
  margin: 18px 0 0;
  color: rgba(15, 15, 16, 0.72);
  line-height: 1.8;
}

.listen-card-bottom {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.listen-card-premium .listen-card-cta {
  color: #14532d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.listen-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.08);
  color: #14532d;
  font-size: 1.05rem;
  font-weight: 800;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.listen-card-premium:hover .listen-card-arrow {
  transform: translateX(6px);
  background: rgba(22, 163, 74, 0.14);
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.14);
}

@media (max-width: 980px) {
  .listen-grid-premium {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .listen-card-premium {
    min-height: unset;
    padding: 20px;
    border-radius: 22px;
  }

  .listen-card-bottom {
    padding-top: 18px;
  }

  .listen-card-arrow {
    width: 38px;
    height: 38px;
  }
}

/* =========================
   LISTEN ALBUM SECTION
========================= */

.album-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.album-card {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.82),
    0 14px 34px rgba(0,0,0,0.08);
  text-decoration: none;
  transition:
    transform 0.38s var(--ease),
    box-shadow 0.38s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.album-card:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 163, 74, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.86),
    0 24px 44px rgba(0,0,0,0.12);
  background: rgba(255, 255, 255, 0.94);
}

.album-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.10) 38%,
    rgba(255,255,255,0.36) 50%,
    rgba(255,255,255,0.10) 62%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 1s var(--ease);
  pointer-events: none;
  z-index: 2;
}

.album-card:hover .album-card-shine {
  transform: translateX(120%);
}

.album-cover-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(255,255,255,0.4);
}

.album-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease), filter 0.35s var(--ease);
}

.album-card:hover .album-cover {
  transform: scale(1.05);
  filter: saturate(1.04);
}

.album-card-body {
  position: relative;
  z-index: 3;
  padding: 22px;
}

.album-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.08);
  color: #14532d;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.album-title {
  margin: 0;
  font-family: "Wagon Display", "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
  line-height: 0.95;
  color: #111111;
}

.album-handwritten {
  margin: 6px 0 8px;
  font-size: 1.3rem;
  transform: rotate(-2deg);
  color: #14532d;
  opacity: 0.95;
}

.album-text {
  margin: 0;
  color: rgba(15, 15, 16, 0.72);
  line-height: 1.8;
}

.album-card-bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.album-cta {
  color: #14532d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.album-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.08);
  color: #14532d;
  font-size: 1.05rem;
  font-weight: 800;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.album-card:hover .album-arrow {
  transform: translateX(6px);
  background: rgba(22, 163, 74, 0.14);
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.14);
}

@media (max-width: 980px) {
  .album-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .album-card {
    border-radius: 22px;
  }

  .album-card-body {
    padding: 18px;
  }

  .album-arrow {
    width: 38px;
    height: 38px;
  }
}

/* =========================
   STREAMING PLATFORM STRIP
========================= */

.platform-strip {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;

  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.06);

  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.platform-pill:hover {
  transform: translateY(-3px);
  background: rgba(22,163,74,0.10);
  border-color: rgba(22,163,74,0.18);
  box-shadow: 0 10px 18px rgba(22,163,74,0.12);
  color: #14532d;
}

/* mobile polish */
@media (max-width: 640px) {
  .platform-strip {
    gap: 10px;
  }

  .platform-pill {
    height: 40px;
    padding: 0 14px;
    font-size: 0.75rem;
  }
}

/* =========================
   STREAMING PLATFORM CARDS
========================= */

.platform-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.platform-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 98px;
  padding: 18px 18px 18px 16px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.82),
    0 12px 28px rgba(0,0,0,0.08);
  transition:
    transform 0.32s var(--ease),
    box-shadow 0.32s var(--ease),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease);
}

.platform-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(22, 163, 74, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 22px 40px rgba(0,0,0,0.12);
}

.platform-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.12) 38%,
    rgba(255,255,255,0.38) 50%,
    rgba(255,255,255,0.12) 62%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 1s var(--ease);
  pointer-events: none;
}

.platform-card:hover .platform-card-shine {
  transform: translateX(120%);
}

.platform-logo {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    background 0.28s var(--ease);
}

.platform-logo svg {
  width: 28px;
  height: 28px;
  transition: transform 0.28s var(--ease);
}

.platform-card:hover .platform-logo {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 28px rgba(0,0,0,0.10);
}

.platform-card:hover .platform-logo svg {
  transform: scale(1.08);
}

.platform-card-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.platform-name {
  display: block;
  color: #111111;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.platform-subtitle {
  display: block;
  color: rgba(15, 15, 16, 0.62);
  font-size: 0.82rem;
  font-weight: 600;
}

.platform-arrow {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(22, 163, 74, 0.08);
  color: #14532d;
  font-size: 1rem;
  font-weight: 900;
  transition:
    transform 0.28s var(--ease),
    background 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.platform-card:hover .platform-arrow {
  transform: translateX(5px);
  background: rgba(22, 163, 74, 0.14);
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.12);
}

/* logo colors */
.spotify-logo {
  background: rgba(29, 185, 84, 0.10);
}
.spotify-logo svg {
  fill: #1db954;
}

.apple-logo {
  background: rgba(0, 0, 0, 0.06);
}
.apple-logo svg {
  fill: #111111;
}

.ytm-logo {
  background: rgba(255, 0, 80, 0.10);
}
.ytm-logo svg {
  fill: #ff0050;
}

.youtube-logo {
  background: rgba(255, 0, 0, 0.10);
}
.youtube-logo svg {
  fill: #ff0000;
}

.audiomack-logo {
  background: rgba(255, 179, 0, 0.14);
}
.audiomack-logo svg {
  fill: #f4a300;
}

.boomplay-logo {
  background: rgba(255, 170, 0, 0.12);
}
.boomplay-logo svg {
  fill: #f59e0b;
}

.tidal-logo {
  background: rgba(17, 17, 17, 0.08);
}
.tidal-logo svg {
  fill: #111111;
}

.amazon-logo {
  background: rgba(0, 122, 255, 0.10);
}
.amazon-logo svg {
  fill: #2563eb;
}

.soundcloud-logo {
  background: rgba(255, 85, 0, 0.12);
}
.soundcloud-logo svg {
  fill: #ff5500;
}

.deezer-logo {
  background: rgba(168, 85, 247, 0.12);
}
.deezer-logo svg {
  fill: #7c3aed;
}

@media (max-width: 1100px) {
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    min-height: 88px;
    padding: 16px;
    border-radius: 20px;
  }

  .platform-logo {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .platform-logo svg {
    width: 24px;
    height: 24px;
  }
}

:root {
  --shop-green-bright: #16a34a;
  --shop-green-deep: #14532d;
  --shop-text-dark: #111111;
  --shop-text-muted: rgba(15, 15, 16, 0.72);
  --shop-text-soft: rgba(15, 15, 16, 0.62);
}

/* =========================
   SHOP PAGE ENHANCEMENTS
========================= */

.shop-handwritten {
  font-family: "Reenie Beanie", cursive;
  font-weight: 400;
  line-height: 0.9;
  opacity: 0.95;
}

.shop-handwritten-hero {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  transform: rotate(-3deg);
  color: var(--shop-green-bright);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.shop-handwritten-section {
  margin: -4px 0 10px;
  text-align: center;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  transform: rotate(-2deg);
  color: var(--shop-green-deep);
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}

.shop-handwritten-left {
  text-align: left;
}

.shop-handwritten-card {
  margin: 6px 0 6px;
  font-size: 1.3rem;
  transform: rotate(-2deg);
  color: var(--shop-green-deep);
}

/* section readability */
.shop-page .section-kicker,
.shop-page .section-title,
.shop-card-title,
.checkout-title,
.cart-title {
  color: var(--shop-text-dark);
}

.shop-page .section-intro,
.shop-card-text,
.shop-checkout-text,
.checkout-note {
  color: var(--shop-text-muted);
}

/* stronger product grid feeling */
.shop-grid {
  gap: 26px;
}

/* product cards */
.shop-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.44);
}

.shop-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.10) 38%,
    rgba(255,255,255,0.38) 50%,
    rgba(255,255,255,0.10) 62%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 1s var(--ease);
  pointer-events: none;
  z-index: 1;
}

.shop-card:hover::before {
  transform: translateX(120%);
}

.shop-card:hover {
  transform: translateY(-10px);
  border-color: rgba(22,163,74,0.16);
}

.shop-card-image-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,0.36), rgba(245,245,245,0.22));
}

.shop-card-image {
  transition: transform 0.8s var(--ease), filter 0.35s ease;
}

.shop-card:hover .shop-card-image {
  transform: scale(1.07);
  filter: saturate(1.04);
}

.shop-card-body {
  position: relative;
  z-index: 2;
}

.shop-card-note {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(22,163,74,0.08);
  color: var(--shop-green-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-card-title {
  margin: 0;
}

.shop-price {
  color: var(--shop-text-dark);
  font-size: 1.05rem;
}

.shop-add-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), #ff4d6d);
}

.shop-add-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.18) 45%,
    rgba(255,255,255,0.34) 50%,
    rgba(255,255,255,0.18) 55%,
    transparent 100%
  );
  transform: translateX(-140%);
  transition: transform 0.9s ease;
}

.shop-add-btn:hover::after {
  transform: translateX(140%);
}

.shop-add-btn:hover {
  transform: translateY(-3px);
}

/* filters */
.shop-filter-bar {
  margin-top: 38px;
}

.shop-filter-btn {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,0,0,0.06);
}

.shop-filter-btn:hover,
.shop-filter-btn.is-active {
  background: rgba(22,163,74,0.10);
  color: var(--shop-green-deep);
  border-color: rgba(22,163,74,0.16);
  box-shadow: 0 14px 28px rgba(22,163,74,0.12);
}

/* cart button */
.cart-toggle {
  background: rgba(255,255,255,0.72);
}

.cart-toggle:hover {
  transform: translateY(-3px);
}

.cart-toggle-count {
  background: var(--shop-green-deep);
}

/* checkout card */
.shop-checkout-card {
  position: relative;
  overflow: hidden;
}

.shop-checkout-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(22,163,74,0.08), transparent 34%);
  pointer-events: none;
}

.shop-checkout-actions .btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shop-checkout-actions .btn:hover {
  transform: translateY(-2px);
}

/* cart drawer enhancements */
.cart-drawer-panel {
  background: rgba(255,255,255,0.97);
}

.cart-item {
  transition: transform 0.2s ease;
}

.cart-item:hover {
  transform: translateX(4px);
}

.cart-remove-btn:hover {
  color: #b91c1c;
}

/* checkout */
.checkout-dialog {
  background: rgba(255,255,255,0.97);
}

.checkout-order-summary,
.checkout-form {
  background: rgba(250,250,250,0.98);
}

.checkout-block-title {
  color: var(--shop-text-dark);
}

.checkout-field input:focus,
.checkout-field textarea:focus,
.checkout-field select:focus {
  outline: none;
  border-color: rgba(22,163,74,0.24);
  box-shadow: 0 0 0 4px rgba(22,163,74,0.10);
}

/* subtle motion */
.shop-handwritten-hero,
.shop-handwritten-section {
  animation: shopHandFloat 4.5s ease-in-out infinite;
}

@keyframes shopHandFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-4px) rotate(-2deg);
  }
}

/* mobile */
@media (max-width: 760px) {
  .shop-handwritten-card {
    font-size: 1.15rem;
  }

  .shop-card-note {
    margin-bottom: 10px;
  }
}
