/* ── Brand palette ── orange primary, brown + grey secondary */
:root {
  --vic-orange: #ef2807;
  --vic-orange-light: #ff4f35;
  --vic-orange-deep: #c41f06;

  --vic-brown: #4a2f1e;
  --vic-brown-mid: #7a4f30;
  --vic-brown-light: #a97a52;

  --vic-grey-dark: #1e1e1e;
  --vic-grey: #8f8f8f;
  --vic-grey-light: #d8d8d8;
}

::selection {
  background: var(--vic-orange);
  color: #fff;
}

::-moz-selection {
  background: var(--vic-orange);
  color: #fff;
}

/* Lato everywhere by default; Oswald only for hero heading */
body,
button,
input,
textarea,
select,
.page-top-menu .menu a,
nav.navigation-menu,
nav.navigation-menu a,
.center-block-menu,
.social-icons,
.social-icons a,
.social-icons li,
.social-icons li span,
.social-icons li a:hover,
.social-icons li a:visited,
.social-icons li a:active,
.social-icons li a:focus,
.section-header,
.menu,
.menu a {
  font-family: 'Lato', sans-serif !important;
}

.hero-heading,
.hero-heading.hero-heading-true-bold-1,
.hero-heading.hero-heading-true-bold-2 {
  font-family: 'Oswald', sans-serif !important;
}

/* YouTube hero background — cover like HTML5 <video> */
.hero-youtube-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-youtube-bg iframe,
.hero-youtube-bg > div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  min-width: 177.77vh; /* 16:9 */
  transform: translate(-50%, -50%);
  border: 0;
}

/* Match progress ring duration to per-slide autoplay (set via --hero-autoplay-ms) */
.slider-progress-bar.slider-active .circle {
  -webkit-transition: linear var(--hero-autoplay-ms, 5000ms) stroke-dashoffset !important;
  transition: linear var(--hero-autoplay-ms, 5000ms) stroke-dashoffset !important;
}

/* Hero images — anchor to top so heads/faces stay in frame */
#page-home .swiper-slide-inner-bg {
  background-position: center top;
  background-repeat: no-repeat;
}

/* The theme's round-menu wrapper is an invisible full-width bar across the
   top at z-index 1001 — it would swallow hover/clicks on the menu below it.
   Only the toggle itself needs to catch pointer events. */
.round-menu-wrapper {
  pointer-events: none;
}

.round-menu {
  pointer-events: auto;
}

/* Brand left, links centred in the bar */
.page-top-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 100px 0;
  pointer-events: none;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

.page-top-brand {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
  text-decoration: none;
  line-height: 0;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.page-top-brand:hover,
.page-top-brand.active {
  filter: drop-shadow(0 0 8px rgba(239, 40, 7, 0.55));
  opacity: 0.95;
}

.page-top-menu .menu {
  grid-column: 2;
  justify-self: center;
}

/* Translucent bar once the page scrolls, so content passes under it */
.page-top-menu.is-scrolled {
  padding: 18px 100px 18px;
  background-color: rgba(0, 0, 0, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
}

/* Without backdrop-filter a lighter tint would leave text unreadable */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .page-top-menu.is-scrolled {
    background-color: rgba(0, 0, 0, 0.9);
  }
}

@media only screen and (max-width: 1200px) {
  .page-top-menu,
  .page-top-menu.is-scrolled {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.page-top-menu .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 28px;
  pointer-events: auto;
}

.page-top-menu .menu li {
  display: inline-block;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.page-top-menu .menu a {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.page-top-menu .menu a:hover,
.page-top-menu .menu a.active {
  color: var(--vic-orange);
}

/* The two menus are mutually exclusive: inline bar on desktop, round toggle
   and slide-out panel on mobile. Dropping the panel from desktop also keeps
   its links out of the tab order. */
@media only screen and (max-width: 768px) {
  .page-top-menu {
    display: none;
  }
}

@media only screen and (min-width: 769px) {
  .round-menu-wrapper,
  .panel-from-right,
  .panel-overlay-from-left {
    display: none;
  }
}

/* Hero controls — one horizontal row: play/pause | mute | prev/next */
.swiper-slide-controls-play-pause {
  left: 50px;
  bottom: 50px;
}

.swiper-slide-controls-audio-mute {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 50px;
  left: 110px;
  bottom: 50px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: #fff;
  font-size: 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s ease-out;
}

.swiper-slide-controls-audio-mute .circle-svg {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-slide-controls-audio-mute .slider-on-off-switch {
  position: relative;
  width: 50px;
  text-align: center;
  z-index: 1;
}

/* Muted state pulses so the silence reads as intentional, not broken */
.swiper-slide-controls-audio-mute.is-muted {
  opacity: 0.85;
  animation: heroAudioMutedPulse 2.4s ease-in-out infinite;
}

@keyframes heroAudioMutedPulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .swiper-slide-controls-audio-mute.is-muted {
    animation: none;
    opacity: 0.85;
  }
}

.hero-slider-bg-controls {
  left: 170px;
  bottom: 50px;
}

@media only screen and (max-width: 768px) {
  .swiper-slide-controls-play-pause {
    left: 30px;
    bottom: 30px;
  }

  .swiper-slide-controls-audio-mute {
    left: 90px;
    bottom: 30px;
  }

  .hero-slider-bg-controls {
    left: 150px;
    bottom: 30px;
  }
}

/* ─────────────────────────────────────────────
   Brand accents on themed chrome
   ───────────────────────────────────────────── */

.slider-progress-bar .circle {
  stroke: var(--vic-orange);
}

.scroll-line::before {
  background-color: var(--vic-orange);
}

.round-menu .dot-1,
.round-menu .dot-2,
.round-menu .dot-3,
.round-menu.direction .dot-1,
.round-menu.direction .dot-2,
.round-menu.direction .dot-3 {
  background: var(--vic-orange);
}

.swiper-slide-controls-audio-mute:not(.is-muted) {
  color: var(--vic-orange);
}

.swiper-slide-controls-audio-mute:not(.is-muted) .circle {
  stroke: var(--vic-orange);
}

/* ─────────────────────────────────────────────
   Nav links — equalizer bars dance on hover
   ───────────────────────────────────────────── */

.nav-link-eq {
  position: relative;
  display: inline-block;
}

.nav-link-label {
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-link-eq:hover .nav-link-label {
  transform: translateY(-2px);
}

.nav-eq {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: clamp(2px, 0.08em, 4px);
  /* Clamped so the same markup fits the 13px top bar and the 55px panel menu */
  height: clamp(6px, 0.5em, 14px);
  margin-top: clamp(3px, 0.18em, 8px);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.nav-eq-bar {
  display: block;
  width: clamp(2px, 0.1em, 3px);
  height: 100%;
  background: var(--vic-orange);
  border-radius: 1px;
  transform: scaleY(0.18);
  transform-origin: bottom;
}

.nav-link-eq:hover .nav-eq,
.nav-link-eq:focus-visible .nav-eq,
.nav-link-eq.active .nav-eq {
  opacity: 1;
}

.nav-link-eq:hover .nav-eq-bar,
.nav-link-eq:focus-visible .nav-eq-bar,
.nav-link-eq.active .nav-eq-bar {
  animation: vicEqBar 0.9s ease-in-out infinite;
}

/* Staggered timings keep the bars from moving as one block */
.nav-eq-bar:nth-child(1) {
  animation-duration: 0.72s;
  animation-delay: -0.15s;
}
.nav-eq-bar:nth-child(2) {
  animation-duration: 1.04s;
  animation-delay: -0.42s;
}
.nav-eq-bar:nth-child(3) {
  animation-duration: 0.62s;
}
.nav-eq-bar:nth-child(4) {
  animation-duration: 1.18s;
  animation-delay: -0.28s;
}
.nav-eq-bar:nth-child(5) {
  animation-duration: 0.86s;
  animation-delay: -0.6s;
}

@keyframes vicEqBar {
  0%,
  100% {
    transform: scaleY(0.18);
  }
  50% {
    transform: scaleY(1);
  }
}

/* Panel menu links need a positioning context for the bars */
nav.navigation-menu .menu a.nav-link-eq {
  display: inline-block;
}

nav.navigation-menu .menu a.nav-link-eq:hover {
  color: var(--vic-orange);
}

/* ─────────────────────────────────────────────
   Social links — beat pulse + sound-wave ripples
   ───────────────────────────────────────────── */

.social-icons-music li {
  display: inline-block;
  margin: 0 14px;
}

.social-icons-music li a.social-music-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--vic-grey-light);
  transition: color 0.3s ease;
}

.social-icons-music li a.social-music-link:hover {
  color: var(--vic-orange);
}

/* Theme colors/pads `.social-icons li span` directly — take it back */
.social-icons-music li a.social-music-link span {
  color: inherit;
  padding: 0;
}

.social-icons-music li span.social-music-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4em;
  height: 1.4em;
  font-size: 15px;
}

.social-music-icon i {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-style: normal;
  transition: transform 0.3s ease;
}

.social-music-link:hover .social-music-icon i {
  animation: vicBeat 0.58s ease-in-out infinite;
}

/* Two rings expanding outward read as sound waves */
.social-music-icon::before,
.social-music-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid var(--vic-orange);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  pointer-events: none;
}

.social-music-link:hover .social-music-icon::before {
  animation: vicRipple 1.4s ease-out infinite;
}

.social-music-link:hover .social-music-icon::after {
  animation: vicRipple 1.4s ease-out 0.7s infinite;
}

.social-icons-music li span.social-music-label {
  position: relative;
}

.social-music-label::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--vic-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.social-music-link:hover .social-music-label::after {
  transform: scaleX(1);
}

/* A note drifts up out of the icon */
.social-music-link::after {
  content: '\266A';
  position: absolute;
  left: 0.7em;
  top: 0;
  font-size: 0.9em;
  color: var(--vic-orange-light);
  opacity: 0;
  pointer-events: none;
}

.social-music-link:hover::after {
  animation: vicNoteFloat 1.5s ease-out infinite;
}

@keyframes vicBeat {
  0%,
  100% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.3);
  }
  40% {
    transform: scale(1.02);
  }
  60% {
    transform: scale(1.16);
  }
}

@keyframes vicRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.3);
    opacity: 0;
  }
}

@keyframes vicNoteFloat {
  0% {
    opacity: 0;
    transform: translate(-50%, 4px) rotate(-10deg) scale(0.7);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -26px) rotate(14deg) scale(1.05);
  }
}

/* ─────────────────────────────────────────────
   Split page — 30% artwork panel / 70% content
   ───────────────────────────────────────────── */

.split-page {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  background: #000;
}

/* Sticky so the artwork holds while a long content panel scrolls past it */
.split-page-visual {
  position: sticky;
  top: 0;
  align-self: flex-start;
  flex: 0 0 30%;
  max-width: 30%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.split-page-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.split-page-visual-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px 24px;
  text-align: center;
}

/* Hero wordmark is sized for a full viewport — rein it in for a 30% column */
.split-page-visual .hero-heading.split-page-wordmark.brand-logo-wrap {
  font-size: 0;
  line-height: 0;
  margin: 0;
}

.split-page-wordmark-link {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.split-page-wordmark-link:hover,
.split-page-wordmark-link:focus-visible {
  opacity: 0.9;
  filter: drop-shadow(0 0 12px rgba(239, 40, 7, 0.45));
}

/* Brand logo — replaces outlined V.I.C text wordmark */
.brand-logo {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.brand-logo-wrap.hero-heading {
  font-size: 0;
  line-height: 0;
  margin: 0 auto;
  -webkit-text-stroke: 0;
  text-stroke: 0;
}

.brand-logo-hero {
  width: clamp(160px, 22vw, 340px);
  margin: 0 auto;
}

.brand-logo-split {
  width: clamp(88px, 10vw, 140px);
  margin: 0 auto;
}

.brand-logo-nav {
  height: 32px;
  width: auto;
}

@media only screen and (max-width: 768px) {
  .brand-logo-nav {
    height: 28px;
  }

  .brand-logo-hero {
    width: clamp(140px, 42vw, 220px);
  }
}

.split-page-content {
  flex: 1 1 70%;
  display: flex;
  flex-direction: column;
  background: #000;
  padding: 120px 40px 36px;
}

/* Body centres in the leftover space; footer stays pinned below it */
.split-page-content-body {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 0 40px;
}

.split-page-footer {
  width: 100%;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.split-page-footer p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a6a6a;
}

/* Fullscreen home — fixed to the viewport, centred over the hero */
.split-page-footer-home {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px 16px;
  border-top: none;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.split-page-footer-home p {
  margin: 0 auto;
  max-width: min(920px, 100%);
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
}

@media only screen and (max-width: 768px) {
  .split-page-footer-home {
    padding: 10px 16px 14px;
  }

  .split-page-footer-home p {
    font-size: 9px;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
}

@media only screen and (max-width: 900px) {
  .split-page {
    flex-direction: column;
  }

  .split-page-visual {
    position: relative;
    flex: 0 0 auto;
    max-width: none;
    height: auto;
    min-height: 42vh;
  }

  .split-page-content {
    flex: 1 1 auto;
    padding: 70px 24px;
  }
}

/* ── Shared page panel ── */

.page-panel {
  width: 100%;
  max-width: 720px;
  text-align: left;
}

.page-panel-wide {
  max-width: 900px;
}

.page-lead {
  max-width: 60ch;
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--vic-grey);
}

.page-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--vic-orange);
}

/* Small live equalizer marking the release as active */
.page-eyebrow-eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.page-eyebrow-eq span {
  display: block;
  width: 2px;
  height: 100%;
  background: var(--vic-orange);
  transform: scaleY(0.2);
  transform-origin: bottom;
  animation: vicEqBar 0.9s ease-in-out infinite;
}

.page-eyebrow-eq span:nth-child(1) {
  animation-duration: 0.74s;
  animation-delay: -0.2s;
}
.page-eyebrow-eq span:nth-child(2) {
  animation-duration: 1.1s;
  animation-delay: -0.48s;
}
.page-eyebrow-eq span:nth-child(3) {
  animation-duration: 0.62s;
}

/* Theme centers every h2 and gives it auto margins — override both */
.page-title {
  margin: 0;
  text-align: left;
  font-family: 'Oswald', sans-serif !important;
  font-size: clamp(44px, 6.4vw, 104px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.album-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vic-grey);
}

.album-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--vic-brown-light);
}

/* ── Buttons ── */

.album-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.btn-vic {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 40px;
  border: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease,
    transform 0.3s ease;
}

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

.btn-vic i {
  font-size: 16px;
  font-style: normal;
}

.btn-vic-primary,
.btn-vic-primary:visited {
  background: var(--vic-orange);
  color: #fff;
}

.btn-vic-primary:hover,
.btn-vic-primary:focus {
  background: var(--vic-orange-deep);
  color: #fff;
}

.btn-vic-ghost,
.btn-vic-ghost:visited {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--vic-grey-light);
}

.btn-vic-ghost:hover,
.btn-vic-ghost:focus {
  border-color: var(--vic-orange);
  color: var(--vic-orange);
}

/* ── Spotify players ── */

.album-player {
  margin: 42px 0 0;
}

.album-player-frame {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 12px;
  /* Spotify paints its own dark chrome; this covers the load-in gap */
  background: #121212;
}

.album-listen {
  margin: 44px 0 0;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.album-listen-label {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--vic-grey);
}

/* ── Tour dates ── */

.tour-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}

.tour-row {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px 20px 22px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
}

.tour-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Orange marker wipes in from the left on hover */
.tour-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--vic-orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.tour-row:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.tour-row:hover::before {
  transform: scaleY(1);
}

.tour-row-date {
  text-align: center;
}

.tour-row-day {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.tour-row-month {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vic-orange);
}

.tour-row-city {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

.tour-row-flag {
  margin-right: 9px;
  font-size: 17px;
}

.tour-row-venue {
  margin: 7px 0 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--vic-grey-light);
}

.tour-row-notes {
  margin: 5px 0 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #6f6f6f;
}

.tour-row-cta {
  padding: 11px 22px;
  white-space: nowrap;
}

.tour-row-soldout {
  padding: 11px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6f6f6f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  white-space: nowrap;
}

.tour-empty {
  margin-top: 34px;
}

.tour-row:hover .tour-row-cta {
  border-color: var(--vic-orange);
  color: var(--vic-orange);
}

@media only screen and (max-width: 600px) {
  .tour-row {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .tour-row-cta {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }
}

/* ── Podcast ── */

.podcast-player {
  margin: 38px 0 0;
}

.podcast-player-frame {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: #121212;
}

.podcast-section-label {
  margin: 48px 0 20px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--vic-grey);
  text-align: left;
}

.episode-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.episode-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.episode-card-link:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(239, 40, 7, 0.5);
  transform: translateY(-3px);
}

.episode-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6f6f6f;
}

.episode-card-duration::before {
  content: '·';
  margin-right: 10px;
}

.episode-card-title {
  margin: 12px 0 0;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  transition: color 0.3s ease;
}

.episode-card-link:hover .episode-card-title {
  color: var(--vic-orange);
}

.episode-card-text {
  margin: 11px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--vic-grey);
}

.episode-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vic-orange);
}

.episode-card-cta i {
  font-style: normal;
}

/* ── Contact ── */

.contact-list {
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.contact-item {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  transition: border-color 0.3s ease;
}

.contact-item:hover {
  border-color: rgba(239, 40, 7, 0.5);
}

.contact-item-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #6f6f6f;
}

.contact-item-value,
.contact-item-value:visited {
  display: inline-block;
  margin-top: 10px;
  font-size: 15px;
  color: var(--vic-grey-light);
  text-decoration: none;
  word-break: break-word;
  transition: color 0.3s ease;
}

.contact-item-value:hover {
  color: var(--vic-orange);
}

.contact-bio {
  margin-top: 12px;
  padding-left: 20px;
  border-left: 2px solid var(--vic-brown-mid);
}

.contact-bio-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--vic-grey);
}

/* ── Coming soon panel ── */

.coming-soon {
  max-width: 640px;
  text-align: center;
}

.coming-soon-eyebrow {
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--vic-orange);
}

.coming-soon-title {
  margin: 0;
  text-align: center;
  font-family: 'Oswald', sans-serif !important;
  font-size: clamp(52px, 8vw, 132px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.coming-soon-title-lead,
.coming-soon-title-accent {
  display: block;
}

.coming-soon-title-lead {
  color: var(--vic-grey-light);
}

.coming-soon-title-accent {
  color: var(--vic-orange);
}

/* Outline the first word where the browser can, matching the hero treatment */
@supports ((text-stroke: 1px #d8d8d8) or (-webkit-text-stroke: 1px #d8d8d8)) {
  .coming-soon-title-lead {
    color: transparent;
    -webkit-text-stroke: 1px var(--vic-grey-light);
    text-stroke: 1px var(--vic-grey-light);
  }
}

.coming-soon-note {
  max-width: 46ch;
  margin: 30px auto 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--vic-grey);
}

.coming-soon-eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 30px;
  margin-top: 38px;
}

.coming-soon-eq-bar {
  display: block;
  width: 3px;
  height: 100%;
  background: var(--vic-orange);
  border-radius: 1px;
  transform: scaleY(0.18);
  transform-origin: bottom;
  animation: vicEqBar 0.9s ease-in-out infinite;
}

.coming-soon-eq-bar:nth-child(1) {
  animation-duration: 0.78s;
  animation-delay: -0.2s;
}
.coming-soon-eq-bar:nth-child(2) {
  animation-duration: 1.12s;
  animation-delay: -0.5s;
}
.coming-soon-eq-bar:nth-child(3) {
  animation-duration: 0.64s;
}
.coming-soon-eq-bar:nth-child(4) {
  animation-duration: 1.26s;
  animation-delay: -0.34s;
}
.coming-soon-eq-bar:nth-child(5) {
  animation-duration: 0.88s;
  animation-delay: -0.66s;
}
.coming-soon-eq-bar:nth-child(6) {
  animation-duration: 1.02s;
  animation-delay: -0.12s;
}
.coming-soon-eq-bar:nth-child(7) {
  animation-duration: 0.72s;
  animation-delay: -0.44s;
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-eq-bar {
    animation: none;
    transform: scaleY(0.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-link-eq:hover .nav-eq-bar,
  .nav-link-eq:focus-visible .nav-eq-bar,
  .nav-link-eq.active .nav-eq-bar,
  .social-music-link:hover .social-music-icon i,
  .social-music-link:hover .social-music-icon::before,
  .social-music-link:hover .social-music-icon::after,
  .social-music-link:hover::after {
    animation: none;
  }

  .nav-link-eq:hover .nav-eq-bar,
  .nav-link-eq.active .nav-eq-bar {
    transform: scaleY(0.6);
  }
}
