/* =========================
   Variables
========================= */
:root {
  --font-family: "Inter", sans-serif;
  --font-display: "Unbounded", "Inter", sans-serif;

  --color-bg: #0a0a0a;
  --color-bg-alt: #141414;
  --color-bg-raised: #1c1c1c;
  --color-fg: #efe9db;
  --color-fg-dim: #a9a398;
  --color-accent: #34a9d8;
  --color-accent-dim: #1f6f8f;
  --color-line: #2a2a2a;
}

/* =========================
   Branded Page Transitions
   (cross-document View Transitions — progressive enhancement,
   no-op in browsers that don't support it)
========================= */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: viewFadeOut 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

::view-transition-new(root) {
  animation: viewFadeIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes viewFadeOut {
  to { opacity: 0; transform: scale(0.985); }
}

@keyframes viewFadeIn {
  from { opacity: 0; transform: scale(1.015); }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) {
    animation: none !important;
  }
}

/* =========================
   Reset & Base Styles
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-weight: 400;
  background: var(--color-bg);
  color: var(--color-fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

main > section:not(.hero),
main > div {
  width: 100%;
  margin-bottom: 40px;
}

footer {
  text-align: center;
}
footer a {
  text-decoration: none;
  color: var(--color-fg);
}
footer a:hover {
  text-decoration: underline;
  color: var(--color-accent);
}
.copyright {
  font-size: 12px;
  margin: 50px auto;
  color: var(--color-fg-dim);
}
.footer-privacy-link {
  font-size: 11px;
  margin-bottom: 10px;
}
.footer-privacy-link a {
  color: var(--color-fg-dim);
}

/* =========================
   Cookie Consent Banner
========================= */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 9999;
  background: var(--color-bg-raised);
  color: var(--color-fg);
  border-top: 1px solid var(--color-line);
  padding: 20px 16px;
  text-align: center;
  font-family: var(--font-family);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
  display: none;
}
#cookie-banner p {
  max-width: 640px;
  margin: 0 auto 14px;
  color: var(--color-fg-dim);
  line-height: 1.5;
  text-align: center;
}
#cookie-banner a {
  color: var(--color-accent);
}
#cookie-banner a:hover {
  color: var(--color-accent-dim);
}
#cookie-banner .cb-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}
#cookie-banner button {
  appearance: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 11px 27px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
#cookie-banner #cookie-accept {
  border: none;
  background-color: var(--color-accent);
  color: #050505;
  box-shadow: 0 6px 20px rgba(52, 169, 216, 0.22);
}
#cookie-banner #cookie-accept:hover {
  background-color: var(--color-fg);
  box-shadow: 0 10px 28px rgba(52, 169, 216, 0.3);
}
#cookie-banner #cookie-reject {
  border: 1px solid var(--color-fg);
  background: transparent;
  color: var(--color-fg);
}
#cookie-banner #cookie-reject:hover {
  background: var(--color-fg);
  color: var(--color-bg);
}
@media (max-width: 480px) {
  #cookie-banner {
    padding: 16px 12px;
  }
  #cookie-banner button {
    width: 100%;
  }
}
.page-title {
  margin-bottom: 100px;
}

h2 {
  font-family: var(--font-display);
  font-size: 3.4rem;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.05;
  text-transform: uppercase;
}
h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 20px;
  margin-top: 0;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
}

.hero-logo img,
.nav-logo img,
.mobile-menu-logo img,
.footer-logo img {
  border-radius: 0;
}
.bio {
  text-align: left !important;
  width: 100% !important;
  color: var(--color-fg-dim);
}
.bio strong {
  color: var(--color-fg);
}
.legal-content {
  max-width: 900px;
}
.legal-content a {
  color: var(--color-accent);
}
.legal-content a:hover {
  color: var(--color-accent-dim);
}
.legal-content h3 {
  margin-top: 50px;
}
.legal-content ul.bio {
  padding-left: 22px;
}
.legal-content ul.bio li {
  margin-bottom: 10px;
}
.legal-table-wrap {
  overflow-x: auto;
  margin: 20px 0 30px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  color: var(--color-fg-dim);
}
.legal-table th,
.legal-table td {
  text-align: left;
  vertical-align: top;
  padding: 12px;
  border: 1px solid var(--color-line);
}
.legal-table th {
  color: var(--color-fg);
  font-family: var(--font-display);
  font-weight: 700;
}
a {
  transition: all 0.3s ease;
}

/* =========================
   Scroll Reveal
========================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================
   Animated Shape System
   (motif pulled from the Proxy / Mess I Made / Loving Wrong cover art)
========================= */
.global-shape-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.parallax-shape {
  position: absolute;
  will-change: transform;
}

.shape {
  position: absolute;
  opacity: 0;
  will-change: transform, opacity;
}

.shape.circle {
  border-radius: 50%;
}

.shape.diamond {
  transform: rotate(45deg);
}

.shape.triangle {
  width: 0 !important;
  height: 0 !important;
  border-radius: 0;
  background: transparent !important;
}
.shape.triangle.cream {
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-bottom: 48px solid var(--color-fg);
}
.shape.triangle.cyan {
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-bottom: 48px solid var(--color-accent);
}

.shape.cream {
  background: var(--color-fg);
}
.shape.cyan {
  background: var(--color-accent);
}

@keyframes shapeFadeA {
  0%, 100% { opacity: 0; }
  15% { opacity: 0.9; }
  50% { opacity: 0.5; }
  85% { opacity: 0.9; }
}
@keyframes shapeFadeB {
  0%, 100% { opacity: 0; }
  20% { opacity: 0.7; }
  55% { opacity: 0.3; }
  80% { opacity: 0.7; }
}
@keyframes shapeFloatA {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(6deg); }
}
@keyframes shapeFloatDiamond {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(53deg) translateY(-20px); }
}
@keyframes shapeFloatTriangle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(-8deg); }
}

@media (prefers-reduced-motion: reduce) {
  .shape {
    animation: none !important;
    opacity: 0.5;
  }
}

/* =========================
   Film Grain Overlay
========================= */
.grain-overlay {
  position: fixed;
  inset: -100px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
  animation: grainShift 1s steps(6) infinite;
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  16% { transform: translate(-4%, 3%); }
  33% { transform: translate(3%, -6%); }
  50% { transform: translate(-6%, 4%); }
  66% { transform: translate(5%, 2%); }
  83% { transform: translate(-2%, -4%); }
  100% { transform: translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .grain-overlay {
    animation: none;
  }
}

/* =========================
   Branded Intro
========================= */
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  transition: opacity 0.6s ease;
}

.site-intro--hide {
  opacity: 0;
  pointer-events: none;
}

.site-intro-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-intro-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
}

.site-intro-shape.circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: introShapeCircle 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.site-intro-shape.diamond {
  width: 20px;
  height: 20px;
  background: var(--color-fg);
  animation: introShapeDiamond 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.site-intro-shape.triangle {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid var(--color-accent);
  animation: introShapeTriangle 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes introShapeCircle {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  35% { opacity: 0.9; }
  100% { opacity: 0; transform: translate(calc(-50% - 140px), calc(-50% - 70px)) scale(1); }
}

@keyframes introShapeDiamond {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(45deg) scale(0.4); }
  35% { opacity: 0.9; }
  100% { opacity: 0; transform: translate(calc(-50% + 150px), calc(-50% - 40px)) rotate(45deg) scale(1); }
}

@keyframes introShapeTriangle {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  35% { opacity: 0.9; }
  100% { opacity: 0; transform: translate(calc(-50% + 60px), calc(-50% + 130px)) scale(1); }
}

.site-intro-logo {
  position: relative;
  z-index: 2;
  width: 220px;
  max-width: 55vw;
  height: auto;
  border-radius: 0;
  opacity: 0;
  transform: scale(0.82);
  animation: introLogoIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

@keyframes introLogoIn {
  0% { opacity: 0; transform: scale(0.82); }
  100% { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .site-intro-logo,
  .site-intro-shape {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* =========================
   Header & Navigation
========================= */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 10;
  pointer-events: none;
  transition: background-color 0.3s ease;
}

header .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 76px;
  max-width: 100%;
  padding: 0 20px;
}

header .nav-logo,
header .hamburger,
header .nav-menu a {
  pointer-events: auto;
}

header .nav-menu.active {
  pointer-events: auto;
}

/* Inverted (cream) header on internal pages */
header.header--light {
  background: var(--color-fg);
}

header.header--light .container {
  height: 108px;
}

header.header--light .nav-logo img {
  max-width: 340px;
}

@media (max-width: 768px) {
  header.header--light .container {
    height: 88px;
  }

  header.header--light .nav-logo img {
    max-width: 220px;
  }
}

header.header--light .nav-menu ul li a {
  color: var(--color-bg);
}

header.header--light .nav-menu ul li a:hover,
header.header--light .nav-menu ul li a:focus {
  color: var(--color-accent-dim);
}

header.header--light .hamburger span {
  background: var(--color-bg);
}

header.header--light .hamburger.active span {
  background: var(--color-fg);
}

/* The fullscreen mobile nav overlay is always black, regardless of header--light */
header.header--light .nav-menu.active ul li a {
  color: var(--color-fg);
}

header.header--light .nav-menu.active ul li a:hover,
header.header--light .nav-menu.active ul li a:focus {
  color: var(--color-accent);
}

/* Persistent nav logo (internal pages) */
.nav-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.nav-logo img {
  max-width: 130px;
  height: auto;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-logo:hover img,
.nav-logo:focus img {
  transform: scale(1.06);
  opacity: 0.85;
}

/* Navigation */
.nav-menu {
  width: 100%;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  justify-content: flex-end;
}

.nav-menu ul li a {
  color: var(--color-fg);
  text-decoration: none;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  padding: 8px 0;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav-menu ul li a:hover,
.nav-menu ul li a:focus {
  color: var(--color-accent);
  opacity: 1;
  outline: none;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 35px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--color-fg);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger active (cross) state */
.hamburger.active span {
  background: var(--color-fg);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu logo inside nav */
.nav-menu .mobile-menu-logo {
  margin-bottom: 40px;
  text-align: left;
  padding: 20px;
}

.nav-menu .mobile-menu-logo img {
  max-width: 190px;
  height: auto;
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* On interior pages the persistent header logo underneath runs bigger — match it */
header.header--light .nav-menu .mobile-menu-logo img {
  max-width: 220px;
}

.nav-menu .mobile-menu-logo a:hover img,
.nav-menu .mobile-menu-logo a:focus img {
  transform: scale(1.05);
  opacity: 0.85;
}
.mobile-menu-logo {
  display: none;
}
/* =========================
   Hero Section
========================= */
.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-fg);
  text-align: center;
  padding: 0 20px;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: transform;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.8s ease;
  will-change: transform;
}

.hero-bg-img.loaded {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.1) 30%, rgba(10, 10, 10, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 20;
  display: block;
}

.hero-logo img {
  max-width: 400px;
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-logo:hover img,
.hero-logo:focus img {
  transform: scale(1.05);
  opacity: 0.85;
}

.hero.bg-loaded {
  /* background image applied inline by JS */
}

.hero-badge {
  position: relative;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 60px;
  padding: 10px 22px;
  border: 1px solid var(--color-fg);
  border-radius: 10px;
  background: var(--color-bg);
  color: var(--color-fg);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.hero-badge:hover,
.hero-badge:focus {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-3px);
}

/* =========================
   Page Banner (internal pages)
========================= */
.page-banner {
  position: relative;
  overflow: hidden;
  background: transparent;
  min-height: 260px;
  padding-top: 158px;
}

@media (max-width: 768px) {
  .page-banner {
    min-height: 104px;
    padding-top: 0;
  }
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: shapeFadeA 2.4s ease-in-out infinite;
}

.hero-badge-chevron {
  display: inline-block;
  animation: badgeChevronBounce 1.6s ease-in-out infinite;
}

@keyframes badgeChevronBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* =========================
   Buttons
========================= */
.btn {
  position: relative;
  background-color: var(--color-accent);
  color: #050505;
  border: none;
  padding: 13px 32px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(52, 169, 216, 0.22);
  transition: transform 0.15s ease-out, box-shadow 0.3s ease, background-color 0.3s ease;
  transform: translate(var(--mx, 0px), var(--my, 0px)) scale(var(--btn-scale, 1));
  display: inline-block;
}

.btn:hover,
.btn:focus {
  background-color: var(--color-fg);
  box-shadow: 0 10px 28px rgba(52, 169, 216, 0.3);
  --btn-scale: 1.035;
  outline: none;
}

.btn:active {
  --btn-scale: 0.97;
}

/* =========================
   EP Feature Section (homepage)
========================= */
.ep-feature {
  position: relative;
  max-width: 1160px;
  margin: 0 auto 60px auto;
  padding: 80px 40px;
  background: var(--color-bg-alt);
  border-radius: 10px;
  overflow: hidden;
}

.ep-feature-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ep-cover {
  width: 100%;
  max-width: 280px;
  margin-bottom: 36px;
}

.ep-cover img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.ep-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
}

.ep-eyebrow {
  display: block;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.ep-info h2 {
  font-size: 4.5rem;
  margin-bottom: 16px;
}

.ep-info p {
  color: var(--color-fg-dim);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.ep-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ep-actions-secondary {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary--large {
  padding: 16px 40px;
  font-size: 1.15rem;
}

@media (max-width: 768px) {
  .ep-feature {
    padding: 50px 24px;
  }
  .ep-info h2 {
    font-size: 3rem;
  }
}

/* =========================
   Tour Dates Section
========================= */
.tour-dates {
  max-width: 1160px;
  margin: 60px auto 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.seated-events-table {
  text-align: left;
}

.seated-follow-box {
  display: none;
}

.seated-follow-box-top {
}

.home .seated-event-row:nth-child(n + 6) {
  display: none;
}

.seated-events-table > div:last-child {
  text-align: center !important;
  margin: 2em 0 !important;
}

.seated-event-date-cell {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 900 !important;
  color: var(--color-accent) !important;
}

.seated-event-venue-name {
  text-transform: capitalize;
  font-size: 36px;
  font-weight: 900 !important;
  line-height: 36px;
  color: var(--color-fg) !important;
}

.seated-event-venue-location {
  text-transform: uppercase;
  font-size: 16px;
  color: var(--color-fg-dim) !important;
}

.seated-event-details-cell {
  color: var(--color-fg-dim) !important;
  font-size: 14px;
  margin-top: 10px;
}

.seated-event-link1,
.seated-event-link1:visited,
.seated-event-link1:hover,
.seated-event-link2,
.seated-event-link2:visited,
.seated-event-link2:hover {
  background: var(--color-accent) !important;
  font-style: normal;
  font-weight: 700;
  font-size: 14px !important;
  text-transform: uppercase;
  padding: 10px 5px !important;
  text-decoration: none;
  border: 0 !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px rgba(52, 169, 216, 0.22) !important;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease, background 0.3s ease !important;
  color: #050505 !important;
}

.seated-event-link1:hover,
.seated-event-link2:hover {
  opacity: 1;
  color: var(--color-bg) !important;
  background: var(--color-fg) !important;
  border: 1px solid var(--color-fg) !important;
  box-shadow: 0 10px 28px rgba(52, 169, 216, 0.3) !important;
  transform: translateY(-2px) scale(1.03);
  cursor: pointer !important;
}

.seated-event-row {
  border-bottom: 1px solid var(--color-line) !important;
  border-left: 6px solid transparent !important;
  border-right: 6px solid transparent !important;
  padding: 30px 32px !important;
  background-color: rgba(52, 169, 216, 0) !important;
  transition: background-color 0.4s ease-in-out, border-left-color 0.4s ease-in-out, border-right-color 0.4s ease-in-out !important;
}

.seated-event-row:hover {
  background-color: rgba(52, 169, 216, 0.12) !important;
  border-left-color: var(--color-accent) !important;
  border-right-color: var(--color-accent) !important;
}

.seated-events-table {
  border-top: none !important;
}

.seated-event-row:first-child {
  border-top: 1px solid var(--color-line) !important;
}
.home .seated-event-row:nth-child(n + 6) {
  display: none;
}

/* =========================
   Videos Section
========================= */
.video-list {
  width: 100%;
  text-align: left;
}

.video-card--featured {
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}

.video-card--featured .video-title {
  font-size: 1.6rem;
}

.video-list--home {
  text-align: center;
  max-width: 1160px;
  margin: 100px auto 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.video-list--home .video-title {
  text-align: center;
}

.video-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  box-sizing: border-box;
  gap: 36px 24px;
}

.video-card {
  display: flex;
  flex-direction: column;
}

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

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background: var(--color-bg-alt);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.4s ease;
}

.video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.video-thumb:hover img {
  transform: scale(1.05);
}

.video-thumb:hover::after {
  background: rgba(0, 0, 0, 0.35);
}

.video-play-icon {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-icon svg {
  width: 56px;
  height: 56px;
  padding: 14px;
  box-sizing: border-box;
  color: #050505;
  background: var(--color-accent);
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.video-thumb:hover .video-play-icon svg {
  transform: scale(1.1);
  background: var(--color-fg);
}

.video-title {
  margin-top: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-fg);
}

/* =========================
   Back to Top
========================= */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 500;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: #050505;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(52, 169, 216, 0.28);
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus {
  background-color: var(--color-fg);
  box-shadow: 0 10px 26px rgba(52, 169, 216, 0.36);
  transform: translateY(-3px) scale(1.03);
  outline: none;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: opacity 0.3s ease;
    transform: none;
  }

  .back-to-top.visible {
    transform: none;
  }
}

/* =========================
   Video Lightbox
========================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.9);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(1280px, calc(85vh * 16 / 9));
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-fg);
  background: transparent;
  color: var(--color-fg);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-close:focus {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #050505;
  outline: none;
}

.lightbox-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

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

@media (max-width: 600px) {
  .lightbox-close {
    top: -44px;
  }
}

/* =========================
   Music Section
========================= */

.music {
  display: flex;
  margin-bottom: 50px;
}

.image-section {
  flex: 1;
  position: relative;
}

.content-section {
  flex: 1;
  text-align: left;
  padding: 20px 20px 20px 40px;
  color: var(--color-fg-dim);
}

.content-section h3 {
  color: var(--color-fg);
}

.music .btn {
  margin: 14px 0 18px 0;
}

.spotify-embed {
  margin: 6px 0 24px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.spotify-embed iframe {
  display: block;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .music {
    flex-direction: column;
  }

  .content-section {
    padding-left: 0;
  }
}

/* =========================
   Contact Section
========================= */

.contact-list {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  padding: 32px 16px;
  border-bottom: 1px dashed var(--color-line);
  margin-bottom: 0;
}

.contact-list .contact-card:first-child {
  border-top: 1px dashed var(--color-line);
}

.contact-card-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-body {
  width: 100%;
  min-width: 0;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 1.5rem;
}

.contact-card p {
  margin: 0 0 6px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-fg);
}

.contact-card p.contact-person-gap {
  margin-top: 20px;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-fg);
  text-decoration: none;
  font-weight: 600;
}

.contact-card a .link-icon {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: var(--color-accent);
}

.contact-card a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .contact-card {
    gap: 16px;
    padding: 24px 8px;
  }
  .contact-card-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
  .contact-card-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* =========================
   Footer Logo
========================= */
.footer-logo {
  display: flex;
  justify-content: center;
  margin: 100px auto 0 auto;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo a:hover img,
.footer-logo a:focus img {
  transform: scale(1.05);
  opacity: 0.85;
}

/* =========================
   Social Icons
========================= */
.social-icons {
  margin: 30px auto 0 auto;
  display: flex;
  justify-content: center;
  text-align: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: var(--color-bg-alt);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  margin: 6px;
}

.social-icons a img {
  width: 38px;
  height: 38px;
  border-radius: 0;
}

.social-icons a:hover,
.social-icons a:focus {
  border-color: var(--color-accent);
  background: var(--color-bg-raised);
  transform: translateY(-3px);
}

/* =========================
   Newsletter Redesign
========================= */
.newsletter-redesign {
  position: relative;
  overflow: hidden;
  max-width: 1160px;
  width: calc(100% - 40px);
  margin: 60px auto 0 auto;
  padding: 90px 40px;
  background: var(--color-bg-alt);
  border-radius: 10px;
  text-align: center;
}

.newsletter-redesign-inner {
  position: relative;
  z-index: 2;
}

.newsletter-redesign-inner h2 {
  font-size: 3.2rem;
  margin: 12px 0 16px;
}

.newsletter-redesign-copy {
  color: var(--color-fg-dim);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 48px auto;
}

.nl2-form {
  display: flex;
  align-items: stretch;
  gap: 8px;
  max-width: 820px;
  margin: 0 auto;
  padding: 8px;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: 10px;
}

.nl2-fields {
  display: flex;
  flex: 1;
  min-width: 0;
}

.nl2-field {
  position: relative;
  flex: 1;
  min-width: 0;
  border-right: 1px solid var(--color-line);
}

.nl2-field:last-child {
  border-right: none;
}

.nl2-field--wide {
  flex: 1.5;
}

.nl2-input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 14px 18px;
  color: var(--color-fg);
  font-family: inherit;
  font-size: 0.95rem;
}

.nl2-input::placeholder {
  color: var(--color-fg-dim);
}

.nl2-input:focus {
  outline: none;
  background: var(--color-bg-alt);
  border-radius: 10px;
}

.nl2-input.error {
  color: #e5484d;
}

.nl2-error {
  position: absolute;
  top: 100%;
  left: 18px;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #e5484d;
  white-space: nowrap;
}

.nl2-submit {
  flex: 0 0 auto;
  border-radius: 10px;
  padding: 14px 36px;
  white-space: nowrap;
}

.nl2-message {
  margin-top: 28px;
  font-weight: 600;
  font-size: 1rem;
}

.nl2-message--error {
  color: #e5484d;
}

@media (max-width: 900px) {
  .newsletter-redesign {
    padding: 60px 24px;
  }

  .newsletter-redesign-inner h2 {
    font-size: 2.2rem;
  }

  .nl2-form {
    flex-direction: column;
    border-radius: 10px;
    padding: 16px;
  }

  .nl2-fields {
    flex-direction: column;
    gap: 4px;
  }

  .nl2-field {
    border-right: none;
    border-bottom: 1px solid var(--color-line);
  }

  .nl2-field:last-child {
    border-bottom: none;
  }

  .nl2-error {
    position: static;
    margin-top: 2px;
    margin-bottom: 6px;
    white-space: normal;
  }

  .nl2-submit {
    margin-top: 8px;
    border-radius: 10px;
  }
}

/* =========================
   Buttons Primary (form submit)
========================= */
.btn-primary {
  position: relative;
  background-color: var(--color-accent);
  color: #050505;
  border: none;
  padding: 11px 27px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: normal;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(52, 169, 216, 0.22);
  transition: transform 0.15s ease-out, box-shadow 0.3s ease, background-color 0.3s ease;
  transform: translate(var(--mx, 0px), var(--my, 0px)) scale(var(--btn-scale, 1));
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--color-fg);
  box-shadow: 0 10px 28px rgba(52, 169, 216, 0.3);
  --btn-scale: 1.035;
  outline: none;
}

.btn-primary:active {
  --btn-scale: 0.97;
}

/* =========================
   Responsive Styles
========================= */

/* Navigation & Hamburger */
@media (max-width: 768px) {
  h2 {
    font-size: 2.4rem;
  }

  .hero-logo img {
    max-width: 190px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--color-bg);
    color: var(--color-fg);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu ul {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    gap: 0;
  }

  .nav-menu ul li a {
    display: block;
    padding: 20px;
    font-size: 1.75rem;
    color: var(--color-fg);
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
  }
  .mobile-menu-logo {
    display: block;
  }
  .hamburger {
    display: flex;
  }

  .hero {
    height: calc(182px + 75vw);
    z-index: 1;
  }

  .hero-bg-img {
    top: 150px;
    height: calc(100% - 150px);
    object-fit: contain;
  }

  .hero-badge {
    display: none;
  }

  .newsletter-redesign {
    padding: 50px 24px;
  }
}

