:root {
  --black: #070606;
  --coal: #11100f;
  --charcoal: #1b1715;
  --red: #b41418;
  --red-bright: #e2241f;
  --red-dark: #5d090c;
  --ivory: #eee4d4;
  --muted: #b8aa9a;
  --line: rgba(238, 228, 212, 0.17);
  --max: 1180px;
  --header-h: 82px;
  --shadow-red: 0 0 42px rgba(180, 20, 24, 0.25);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}
body {
  margin: 0;
  color: var(--ivory);
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(140, 14, 18, 0.16),
      transparent 28rem
    ),
    var(--black);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
a {
  color: inherit;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
code {
  font-size: 0.88em;
  color: #d6bbaa;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 10000;
  background: var(--ivory);
  color: var(--black);
  padding: 0.7rem 1rem;
}
.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  z-index: 1000;
  background: linear-gradient(
    to bottom,
    rgba(7, 6, 6, 0.95),
    rgba(7, 6, 6, 0.74)
  );
  border-bottom: 1px solid rgba(238, 228, 212, 0.1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #d9d0c5;
}
.nav-links a::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 100%;
  bottom: -0.55rem;
  background: var(--red-bright);
  transition: right 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  right: 0;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 9px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ivory);
  margin: 5px 0;
  transition:
    transform 0.25s,
    opacity 0.25s;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header-h) + 5rem) 20px 6rem;
  background: linear-gradient(180deg, rgba(7, 6, 6, 0.15), #070606 95%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 55vw;
  height: 120vh;
  top: -15vh;
  border: 2px solid rgba(238, 228, 212, 0.05);
  border-radius: 50%;
  filter: blur(0.2px);
}
.hero::before {
  left: -26vw;
  transform: rotate(-16deg);
}
.hero::after {
  right: -27vw;
  transform: rotate(18deg);
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(96, 8, 10, 0.42),
      transparent 28rem
    ),
    linear-gradient(to bottom, transparent 60%, #070606 96%);
}
.hero-glow {
  position: absolute;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -4;
  opacity: 0.2;
  animation: drift 9s ease-in-out infinite alternate;
}
.hero-glow-one {
  left: 8%;
  top: 22%;
  background: var(--red);
}
.hero-glow-two {
  right: 5%;
  bottom: 12%;
  background: #6f210f;
  animation-delay: -3s;
}
@keyframes drift {
  to {
    transform: translate3d(5rem, -2rem, 0) scale(1.12);
  }
}
.hero-content {
  width: min(840px, 100%);
  text-align: center;
}
.hero-logo {
  width: clamp(150px, 20vw, 245px);
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 1.5rem auto 1.3rem;
  filter: grayscale(1) invert(0.02) contrast(1.15);
  mix-blend-mode: screen;
  opacity: 0.92;
  box-shadow: 0 0 80px rgba(180, 20, 24, 0.14);
}
.eyebrow {
  margin: 0 0 0.85rem;
  color: #d26f67;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.73rem;
  font-weight: 800;
}
h1,
h2,
h3 {
  margin-top: 0;
  line-height: 0.95;
}
h1 {
  margin-bottom: 1.2rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4.2rem, 11vw, 9.7rem);
  letter-spacing: -0.035em;
  text-transform: uppercase;
  font-weight: 900;
  text-shadow: 0 6px 34px rgba(0, 0, 0, 0.55);
}
h1 span {
  color: var(--red-bright);
}
h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
h3 {
  font-size: 1.35rem;
}
.hero-date {
  margin: 0.2rem 0;
  font-weight: 800;
  font-size: clamp(1.15rem, 2.7vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-meta,
.hero-venue {
  color: #cabfb3;
}
.hero-meta {
  font-weight: 800;
  letter-spacing: 0.08em;
}
.hero-meta span {
  color: var(--red-bright);
  padding: 0 0.5rem;
}
.hero-venue {
  margin: 1rem 0 0;
}
.hero-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.button {
  min-width: 180px;
  border: 1px solid transparent;
  padding: 0.95rem 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  font-size: 0.78rem;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: white;
  box-shadow: var(--shadow-red);
}
.button-primary:hover {
  background: #f02d27;
  box-shadow: 0 0 52px rgba(226, 36, 31, 0.36);
}
.button-ghost {
  background: rgba(7, 6, 6, 0.56);
  border-color: rgba(238, 228, 212, 0.45);
}
.button-ghost:hover {
  border-color: var(--red-bright);
  color: white;
}
.producer-line {
  margin-top: 1.8rem;
  color: #9f958a;
  font-size: 0.84rem;
}
.scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  display: grid;
  place-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #8f857b;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.scroll-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--red-bright), transparent);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 3rem;
}
.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
}
.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: end;
}
.split-heading > p {
  margin-bottom: 1rem;
}

.lineup-section {
  border-top: 1px solid var(--line);
}
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.lineup-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 70% 25%,
      rgba(180, 20, 24, 0.16),
      transparent 10rem
    ),
    #0e0c0b;
  overflow: hidden;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.lineup-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 36, 31, 0.65);
}
.lineup-card::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto auto;
  width: 76px;
  height: 92px;
  border-top: 1px solid #5b4d45;
  border-right: 1px solid #5b4d45;
  transform: skew(-14deg);
  opacity: 0.55;
}
.lineup-time {
  color: var(--red-bright);
  font-weight: 900;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}
.lineup-status {
  color: #73685f;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.65rem;
}
.lineup-card h3 {
  margin: 0.5rem 0 0.75rem;
  font-size: 1.7rem;
  text-transform: uppercase;
}
.lineup-card p {
  color: var(--muted);
  margin: 0;
}
.skeleton-card {
  min-height: 200px;
  color: var(--muted);
  justify-content: center;
  align-items: center;
}

.past-events {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: 0;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(76, 8, 10, 0.12),
    transparent
  );
}
.past-events .section-heading {
  padding-right: 20px;
}
.reel {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 6%,
    black 94%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 6%,
    black 94%,
    transparent
  );
}
.reel-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  will-change: transform;
}
.reel-card {
  width: clamp(260px, 32vw, 430px);
  margin: 0;
  flex: none;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #100d0c;
}
.reel-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}
.reel-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.86));
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.68rem;
  font-weight: 800;
}

.invitation {
  padding-top: 2rem;
}
.invitation-panel {
  border: 1px solid rgba(226, 36, 31, 0.45);
  padding: clamp(3rem, 8vw, 7rem) 2rem;
  text-align: center;
  background:
    radial-gradient(
      circle at center,
      rgba(121, 12, 14, 0.34),
      transparent 28rem
    ),
    #0c0909;
  box-shadow: inset 0 0 80px rgba(180, 20, 24, 0.08);
}
.invitation-panel p:not(.eyebrow) {
  color: var(--muted);
}

.contact {
  border-top: 1px solid var(--line);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
}
.contact-facts {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.contact-facts p {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.9rem 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.contact-facts span {
  color: var(--ivory);
  font-weight: 700;
}
.contact-form {
  display: grid;
  gap: 1rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: #d5cabf;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #3b312d;
  background: #0d0b0a;
  color: var(--ivory);
  padding: 0.9rem 1rem;
  outline: none;
  border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--red-bright);
  box-shadow: 0 0 0 2px rgba(226, 36, 31, 0.12);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form .button {
  width: max-content;
}
.honeypot {
  position: absolute !important;
  left: -99999px !important;
}
.form-status {
  min-height: 1.5em;
  margin: 0;
  color: #d6c8bc;
  font-size: 0.88rem;
}
.form-status.error {
  color: #ff8179;
}
.form-status.success {
  color: #d9d59a;
}

.sticky-contact {
  position: fixed;
  z-index: 900;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--red-bright);
  color: white;
  padding: 1rem 0.66rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.64rem;
  font-weight: 900;
  box-shadow: 0 0 32px rgba(226, 36, 31, 0.3);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 20px;
  text-align: center;
  color: var(--muted);
}
.site-footer img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  filter: grayscale(1) contrast(1.15);
}
.footer-small {
  font-size: 0.78rem;
}

.modal {
  width: min(520px, calc(100% - 32px));
  border: 1px solid #5c2824;
  color: var(--ivory);
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(180, 20, 24, 0.22),
      transparent 14rem
    ),
    #100d0c;
  padding: clamp(2rem, 6vw, 3.5rem);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
}
.modal::backdrop {
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}
.modal h2 {
  font-size: clamp(2.6rem, 8vw, 4.5rem);
}
.modal p:not(.eyebrow) {
  color: var(--muted);
}
.modal-close {
  position: absolute;
  right: 1rem;
  top: 0.8rem;
  border: 0;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  :root {
    --header-h: 72px;
  }
  .brand span {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    padding: 2rem;
    background: rgba(7, 6, 6, 0.98);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 1.5rem;
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }
  .nav-links.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 0.88rem;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .split-heading,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .lineup-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .event-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .section,
  .nav-shell {
    width: min(100% - 28px, var(--max));
  }
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Scale the long hero words DOWN with the viewport.
     The previous 19vw rule made them grow too aggressively on phones. */
  h1 {
    font-size: clamp(2.65rem, 11vw, 4rem);
  }
  .hero-title-line {
    max-width: 100%;
    white-space: nowrap;
  }

  .hero-logo {
    width: clamp(118px, 30vw, 150px);
  }
  .hero-actions {
    display: grid;
  }
  .button {
    width: 100%;
  }
  .lineup-grid {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .past-events {
    padding-left: 14px;
  }
  .reel-card {
    width: 78vw;
  }

  /* Keep the fixed contact tab usable without dominating the viewport. */
  .sticky-contact {
    padding: 0.62rem 0.38rem;
    font-size: 0.49rem;
    letter-spacing: 0.08em;
    box-shadow: 0 0 20px rgba(226, 36, 31, 0.24);
  }

  .contact-form .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(2.35rem, 10.5vw, 3rem);
  }
  .hero-date {
    font-size: 1rem;
    letter-spacing: 0.055em;
  }
  .hero-meta {
    font-size: 0.84rem;
    letter-spacing: 0.055em;
  }
  .hero-venue {
    font-size: 0.92rem;
  }

  .sticky-contact {
    padding: 0.52rem 0.3rem;
    font-size: 0.44rem;
    letter-spacing: 0.065em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* V1.1 refinements: optical title centering, statement readability, ticket urgency */
.hero-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}
.hero-title-main {
  color: var(--ivory);
}
.hero-title-accent {
  color: var(--red-bright);
}

/* Desktop-only optical correction.
   The large display face reads right-heavy, so KRAMPUSNACHT is nudged left.
   Tablet/mobile retain the original V1.1 centering. */
@media (min-width: 1100px) {
  .hero-title-main {
    transform: translateX(clamp(-30px, -2vw, -18px));
  }
}

.about-statement {
  display: grid;
  gap: 0.06em;
  line-height: 0.88;
}
.about-statement span {
  display: block;
  white-space: nowrap;
}

.ticket-urgency {
  margin: 1.15rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  max-width: 760px;
  color: #cfc2b6;
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.ticket-urgency strong {
  width: 100%;
  color: var(--ivory);
  font-size: 0.94rem;
  letter-spacing: 0.12em;
}
.ticket-divider {
  color: var(--red-bright);
}

@media (max-width: 580px) {
  .about-statement span {
    white-space: normal;
  }
  .ticket-urgency {
    display: grid;
    gap: 0.35rem;
  }
  .ticket-divider {
    display: none;
  }
}

/* V1.7: Match event-info card vibrancy exactly to the performance cards. */
.event-grid .event-card,
.event-grid .event-card:nth-child(2),
.event-grid .event-card:nth-child(4),
.event-grid .event-card--accent {
  background:
    radial-gradient(
      circle at 70% 25%,
      rgba(180, 20, 24, 0.16),
      transparent 10rem
    ),
    #0e0c0b;
}

/* V1.8 — Featured DJ logos */
.dj-showcase {
  margin-top: clamp(2.25rem, 5vw, 4.5rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
}

.dj-showcase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.dj-showcase-heading h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  text-transform: uppercase;
}

.dj-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.dj-logo-card {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 70% 25%,
      rgba(180, 20, 24, 0.16),
      transparent 10rem
    ),
    #0e0c0b;
  overflow: hidden;
}

.dj-logo-card img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(239, 38, 34, 0.08));
}

/* Clickable dynamic DJ cards */

a.dj-logo-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a.dj-logo-card:hover,
a.dj-logo-card:focus-visible {
  border-color: rgba(226, 36, 31, 0.9);
  transform: translateY(-6px);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(226, 36, 31, 0.12);
}

a.dj-logo-card:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 4px;
}

.dj-skeleton-card {
  color: var(--muted);
}

/* V1.8 — Social + producer footer */
.site-footer {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 7vw, 6rem) max(22px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(180, 20, 24, 0.13),
      transparent 22rem
    ),
    #090706;
}

.footer-social {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.footer-social h2 {
  margin: 0.3rem 0 0.75rem;
  font-size: clamp(2rem, 5vw, 4.4rem);
  text-transform: uppercase;
}

.footer-social > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 1.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.social-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  color: var(--ivory);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(239, 38, 34, 0.7);
  background: rgba(239, 38, 34, 0.09);
  transform: translateY(-2px);
}

/* =========================================================
   SOCIAL MEDIA ICONS
   ========================================================= */

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.social-icon {
  width: 20px;
  height: 20px;

  flex: 0 0 auto;

  color: var(--ivory);

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.social-link:hover .social-icon,
.social-link:focus-visible .social-icon {
  color: var(--red-bright);
  transform: scale(1.1);
}

/* =========================================================
   PRODUCER LOGOS
   ========================================================= */

.producer-footer {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  text-align: center;
}

.producer-footer-label {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.producer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
}

.producer-logos img {
  display: block;
  max-width: min(330px, 36vw);
  max-height: 105px;
  object-fit: contain;
}

.producer-logos img:last-child {
  max-height: 125px;
}

.producer-plus {
  color: var(--red-bright);
  font-size: 1.5rem;
  font-weight: 900;
}

.footer-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  text-align: left;
}

.footer-mark > img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-mark p {
  margin: 0;
}

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

  .dj-logo-card {
    min-height: 170px;
  }

  .dj-logo-card img {
    height: 120px;
  }

  .producer-logos {
    flex-direction: column;
  }

  .producer-logos img {
    max-width: min(360px, 78vw);
    max-height: 100px;
  }

  .producer-plus {
    transform: rotate(90deg);
  }

  .social-links {
    display: grid;
  }

  .social-link {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .footer-mark {
    flex-direction: column;
    text-align: center;
  }
}

/* V2.0 — Production-logo sizing fix.
   The source images had large internal canvas/padding, so the artwork itself
   appeared tiny even when the <img> element was large. Cropped assets plus
   explicit responsive dimensions make the visible logos prominent. */
.producer-logos {
  gap: clamp(2rem, 6vw, 5rem);
}

.producer-logos img {
  width: clamp(280px, 34vw, 500px);
  max-width: 44vw;
  height: 180px;
  max-height: none;
  object-fit: contain;
}

.producer-logos img:last-child {
  width: clamp(220px, 25vw, 360px);
  max-width: 34vw;
  height: 180px;
  max-height: none;
}

@media (max-width: 720px) {
  .producer-logos img,
  .producer-logos img:last-child {
    width: min(82vw, 390px);
    max-width: 82vw;
    height: 125px;
    max-height: none;
  }
}

/* =========================================================
   FINAL LINEUP SYSTEM
   One authoritative ruleset — no stacked version overrides.
   ========================================================= */

.lineup-section {
  border-top: 1px solid var(--line);
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.lineup-card {
  position: relative;
  min-width: 0;
  min-height: 385px;
  display: flex;
  flex-direction: column;
  padding: 0 0 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 70% 25%,
      rgba(180, 20, 24, 0.16),
      transparent 10rem
    ),
    #0e0c0b;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.lineup-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226, 36, 31, 0.65);
}

/* Explicitly remove the old decorative upper-right corner motif. */
.lineup-card::before {
  content: none;
}

/* Shared visual stage for performer photos, band logos, and the surprise placeholder. */
.lineup-photo,
.lineup-logo,
.lineup-placeholder {
  width: 100%;
  height: 255px;
  min-height: 255px;
  max-height: 255px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  box-sizing: border-box;
}

/* Performer photography fills the full media zone. */
.lineup-photo {
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* Katara: preserve the top of the portrait and crop from the bottom as needed. */
.lineup-card:has(img[alt="Katara Fox"]) .lineup-photo {
  object-fit: cover;
  object-position: center top;
}

/* Band logos stay centered and proportionally scaled. */
.lineup-logo {
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 14px;
  background: radial-gradient(
    circle at center,
    rgba(115, 14, 18, 0.24),
    rgba(9, 8, 8, 0.96) 72%
  );
}

/* Surprise performances gets a real media zone, not an empty card.
   app.js should create <div class="lineup-placeholder">?</div>. */
.lineup-placeholder {
  display: grid;
  place-items: center;
  color: rgba(244, 235, 219, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 10vw, 8.5rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(180, 20, 24, 0.28),
    rgba(52, 10, 13, 0.24) 38%,
    rgba(9, 8, 8, 0.96) 75%
  );
}

/* Consistent copy zone: all titles start at exactly the same Y-position. */
.lineup-card h3 {
  width: 100%;
  margin: 0;
  padding: 18px 22px 0;
  box-sizing: border-box;
  color: var(--ivory);
  font-size: 1.65rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.lineup-card p {
  width: 100%;
  margin: 0;
  padding: 9px 22px 0;
  box-sizing: border-box;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Surprise styling stays distinctive without breaking the grid. */
.lineup-card--surprise h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-style: italic;
  line-height: 0.98;
  text-transform: none;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  /* Keep wrapping compatible with older browsers. */
}

.lineup-card--surprise p {
  font-size: 0.92rem;
}

/* These labels are only used for fallback/TBD cards.
   Confirmed media cards do not render them. */
.lineup-time {
  color: var(--red-bright);
  font-weight: 900;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
}

.lineup-status {
  color: #73685f;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.65rem;
}

.skeleton-card {
  min-height: 200px;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  color: var(--muted);
}

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

  .lineup-photo,
  .lineup-logo,
  .lineup-placeholder {
    height: 260px;
    min-height: 260px;
    max-height: 260px;
  }
}

/* Mobile */
@media (max-width: 580px) {
  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .lineup-photo,
  .lineup-logo,
  .lineup-placeholder {
    height: 280px;
    min-height: 280px;
    max-height: 280px;
  }

  .lineup-card--surprise h3 {
    font-size: 1.8rem;
  }
}

/* =========================================================
   LINEUP TOP ALIGNMENT + CAGE COMPOSITION
   ========================================================= */

/* The original base stylesheet used justify-content:flex-end.
   Force every lineup card to begin at the top so there is no empty strip
   above photos/logos. */
#lineup-grid .lineup-card {
  justify-content: flex-start !important;
}

/* Keep all media flush to the top edge of the card. */
#lineup-grid .lineup-photo,
#lineup-grid .lineup-logo,
#lineup-grid .lineup-placeholder {
  margin-top: 0 !important;
}

/* Surprise cage photo:
   - full bleed
   - top/middle composition retained
   - lower-left person cropped out by favoring the upper portion of the photo */
#lineup-grid .lineup-card--surprise .lineup-photo {
  width: 100% !important;
  height: 255px !important;
  min-height: 255px !important;
  max-height: 255px !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center 18% !important;
  filter: saturate(1.06) contrast(1.04) brightness(0.9);
}

/* Once the surprise card has a real photo, suppress the CSS ? placeholder. */
#lineup-grid .lineup-card--surprise:has(.lineup-photo)::before {
  content: none !important;
  display: none !important;
}

/* Keep the surprise title readable and aligned with the other titles. */
#lineup-grid .lineup-card--surprise h3 {
  font-size: clamp(1.45rem, 1.8vw, 1.9rem) !important;
  line-height: 1 !important;
  padding-top: 18px !important;
  overflow-wrap: break-word;
}

/* Responsive cage crop */
@media (max-width: 900px) {
  #lineup-grid .lineup-card--surprise .lineup-photo {
    height: 260px !important;
    min-height: 260px !important;
    max-height: 260px !important;
    object-position: center 16% !important;
  }
}

@media (max-width: 580px) {
  #lineup-grid .lineup-card--surprise .lineup-photo {
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
    object-position: center 14% !important;
  }
}

/* =========================================================
   CLICKABLE PERFORMER / BAND CARDS
   ========================================================= */

a.lineup-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a.lineup-card:hover,
a.lineup-card:focus-visible {
  border-color: rgba(226, 36, 31, 0.9);
  transform: translateY(-6px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(226, 36, 31, 0.12);
}

a.lineup-card:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 4px;
}

/* =========================================================
   CLICKABLE PRODUCTION LOGOS
   ========================================================= */

.producer-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;

  color: inherit;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.producer-logo-link:hover,
.producer-logo-link:focus-visible {
  transform: scale(1.04);
  filter: brightness(1.15) drop-shadow(0 0 18px rgba(226, 36, 31, 0.18));
}

.producer-logo-link:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 6px;
}

/* Move the sizing rules to the clickable wrapper */
.producer-logo-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Desktop sizes */
.producer-logo-link:first-child {
  width: clamp(280px, 34vw, 500px);
  height: 180px;
}

.producer-logo-link:last-child {
  width: clamp(220px, 25vw, 360px);
  height: 180px;
}

/* Mobile */
@media (max-width: 720px) {
  .producer-logo-link:first-child,
  .producer-logo-link:last-child {
    width: min(82vw, 390px);
    height: 125px;
  }
}

/* =========================================================
   UNIFORM STATIONARY SILHOUETTE BACKGROUND
   One image + one overlay for the ENTIRE middle section
   ========================================================= */

.silhouette-background-zone {
  position: relative;
  isolation: isolate;

  /* Image only — overlay is handled separately below */
  background-image: url("/assets/images/Krampus-silhouette.jpg");

  background-size: cover;
  background-position: center 0.5%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ---------------------------------------------------------
   ONE CONTINUOUS DARK OVERLAY
   Covers the entire wrapper from beginning to end
   --------------------------------------------------------- */

.silhouette-background-zone::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 0;
  pointer-events: none;

  /* Adjust this opacity if you want more/less image visible */
  background: rgba(7, 6, 6, 0.5);
}

/* ---------------------------------------------------------
   ALL CONTENT SITS ABOVE THE SINGLE OVERLAY
   --------------------------------------------------------- */

.silhouette-background-zone > * {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------------
   REMOVE SECTION-SPECIFIC BACKGROUNDS
   This is what eliminates the visible horizontal changes
   between Performers, Vendors, Past Events, etc.
   --------------------------------------------------------- */

.silhouette-background-zone > section,
.silhouette-background-zone .section,
.silhouette-background-zone .lineup-section,
.silhouette-background-zone .past-events {
  background: transparent !important;
}

/* Keep cards themselves dark/readable.
   These are individual content elements, not section overlays. */

.silhouette-background-zone .event-card,
.silhouette-background-zone .lineup-card,
.silhouette-background-zone .dj-logo-card,
.silhouette-background-zone .reel-card {
  position: relative;
  z-index: 2;
}

/* ---------------------------------------------------------
   MOBILE
   Fixed backgrounds can stutter on some mobile browsers.
   Same look, but scroll background instead.
   --------------------------------------------------------- */

@media (max-width: 720px) {
  .silhouette-background-zone {
    background-attachment: scroll;
    background-position: center top;
  }
}

/* =========================================================
   VENDORS SECTION
   ========================================================= */

.vendors-section {
  border-top: 1px solid var(--line);
}

/* Three-column layout */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

/* Vendor card */
.vendor-card {
  min-width: 0;
  overflow: hidden;

  border: 1px solid var(--line);

  background:
    radial-gradient(
      circle at 70% 25%,
      rgba(180, 20, 24, 0.16),
      transparent 10rem
    ),
    #0e0c0b;

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

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

  border-color: rgba(226, 36, 31, 0.65);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(226, 36, 31, 0.08);
}

/* =========================================================
   IMAGE / LOGO ZONE
   ========================================================= */

.vendor-media {
  width: 100%;
  height: 275px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px;

  border-bottom: 1px solid var(--line);

  /* Solid black makes black-background logos blend cleanly */
  background: #000;

  overflow: hidden;
}

/* Placeholder typography */
.vendor-media span {
  color: rgba(238, 228, 212, 0.22);

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: clamp(2.7rem, 6vw, 5rem);

  line-height: 1;

  letter-spacing: 0.06em;

  text-transform: uppercase;
}

/* Actual vendor artwork / logo */
.vendor-media img {
  display: block;

  width: 100%;
  height: 100%;

  /* Show the complete artwork without cropping */
  object-fit: contain;
  object-position: center center;

  margin: 0;
  padding: 0;
}

/* =========================================================
   TEXT ZONE
   ========================================================= */

.vendor-copy {
  padding: 18px 22px 22px;
}

.vendor-copy h3 {
  margin: 0 0 0.55rem;

  color: var(--ivory);

  font-size: 1.65rem;
  line-height: 1.05;

  text-transform: uppercase;
}

.vendor-copy p {
  margin: 0;

  color: var(--muted);

  font-size: 0.95rem;
  line-height: 1.45;
}

/* =========================================================
   CLICKABLE VENDOR CARDS
   ========================================================= */

a.vendor-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a.vendor-card:hover,
a.vendor-card:focus-visible {
  border-color: rgba(226, 36, 31, 0.9);

  transform: translateY(-6px);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(226, 36, 31, 0.12);
}

a.vendor-card:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 4px;
}

/* =========================================================
   RESPONSIVE VENDOR GRID
   ========================================================= */

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

  .vendor-media {
    height: 265px;
  }
}

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

  .vendor-media {
    height: 300px;
    padding: 14px;
  }
}

/* =========================================================
   OFFICIAL PHOTOGRAPHER FEATURE
   IMUSTBEDEAD / KRAMPUS PORTRAIT REEL
   ========================================================= */

.photographer-feature {
  position: relative;
}

.photographer-heading {
  max-width: 850px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.photographer-heading h2 {
  margin-bottom: 1.3rem;
}

.photographer-intro {
  max-width: 760px;

  color: var(--muted);

  font-size: clamp(1rem, 1.5vw, 1.12rem);

  line-height: 1.7;
}

.photographer-intro strong {
  color: var(--ivory);
}

/* =========================================================
   PORTRAIT REEL
   ========================================================= */

.portrait-reel {
  width: 100%;
  overflow: hidden;

  padding: 0.5rem 0 1rem;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );

  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}

.portrait-reel-track {
  display: flex;

  width: max-content;

  gap: clamp(0.8rem, 1.5vw, 1.2rem);

  will-change: transform;
}

/* Portrait cards are intentionally vertical */
.portrait-card {
  position: relative;

  flex: none;

  width: clamp(220px, 23vw, 320px);

  margin: 0;

  overflow: hidden;

  border: 1px solid var(--line);

  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(180, 20, 24, 0.16),
      transparent 12rem
    ),
    #0e0c0b;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.portrait-card:hover {
  transform: translateY(-5px);

  border-color: rgba(226, 36, 31, 0.7);
}

.portrait-card img {
  display: block;

  width: 100%;

  aspect-ratio: 4 / 5;

  object-fit: cover;

  filter: saturate(0.85) contrast(1.08);
}

.portrait-card figcaption {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 3rem 1rem 1rem;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));

  color: var(--ivory);

  font-size: 0.68rem;

  font-weight: 800;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}

/* =========================================================
   PHOTOGRAPHER RETURN CALLOUT
   ========================================================= */

.photographer-callout {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: clamp(1rem, 3vw, 2.5rem);

  max-width: 900px;

  margin: clamp(2.5rem, 5vw, 4.5rem) auto 0;

  padding: clamp(1.4rem, 3vw, 2rem);

  border-top: 1px solid var(--line);

  border-bottom: 1px solid var(--line);

  text-align: center;
}

.photographer-callout p {
  margin: 0;
}

.photographer-callout strong {
  display: block;

  margin-bottom: 0.35rem;

  color: var(--ivory);

  font-size: clamp(1rem, 2vw, 1.25rem);

  text-transform: uppercase;

  letter-spacing: 0.06em;
}

.photographer-callout p span {
  color: var(--muted);

  font-family: Georgia, "Times New Roman", serif;

  font-style: italic;

  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.photographer-callout-mark {
  color: var(--red-bright);

  font-size: 1.1rem;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 720px) {
  .portrait-card {
    width: 68vw;

    max-width: 285px;
  }

  .photographer-callout {
    gap: 0.75rem;

    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .photographer-callout-mark {
    display: none;
  }
}

/* =========================================================
   PAST EVENTS REEL
   Match photographer reel containment
   ========================================================= */

.past-events {
  width: min(var(--max), calc(100% - 40px)) !important;
  max-width: var(--max) !important;

  margin-left: auto !important;
  margin-right: auto !important;

  padding-left: 0 !important;
  padding-right: 0 !important;

  overflow: hidden;
}

.past-events .section-heading {
  padding-right: 0 !important;
}

.past-events .reel {
  width: 100%;
  overflow: hidden;
}

/* Make sure the moving track begins at the section's left edge */
.past-events .reel-track {
  margin: 0;
  padding: 0;
}

/* Mobile: match the standard section width */
@media (max-width: 580px) {
  .past-events {
    width: min(100% - 28px, var(--max)) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* =========================================================
   FOOTER V3 — AUTHORITATIVE CENTERED PRODUCER LAYOUT
   Uses unique class names to avoid conflicts with legacy rules.
   ========================================================= */

.producer-stage-v3 {
  width: 100%;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  text-align: center;
}

.producer-label-v3 {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

/*
  Equal left/right columns lock the + to the exact horizontal center
  of the footer regardless of the two logos' different shapes.
*/
.producer-grid-v3 {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(1rem, 3vw, 2.5rem);
}

.producer-link-v3 {
  min-width: 0;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

/* Override the old generic .site-footer img sizing. */
.site-footer .producer-link-v3 img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 170px;
  margin: 0;
  border-radius: 0;
  object-fit: contain;
  filter: none;
}

/* Let the wide Bats artwork use more horizontal room. */
.producer-link-v3--bats {
  justify-self: stretch;
}

.site-footer .producer-link-v3--bats img {
  width: min(100%, 500px);
  max-height: 150px;
}

/* Keep the more square Timeless logo visually balanced. */
.producer-link-v3--timeless {
  justify-self: stretch;
}

.site-footer .producer-link-v3--timeless img {
  width: min(100%, 300px);
  max-height: 180px;
}

.producer-plus-v3 {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  justify-self: center;
  align-self: center;
  margin: 0;
  color: var(--red-bright);
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.producer-link-v3:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 6px;
}

/*
  Event details are centered on the same page axis as the label and +.
  No event logo is rendered here.
*/
.footer-event-v3 {
  width: 100%;
  margin: clamp(2rem, 4vw, 3.25rem) auto 0;
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  color: var(--muted);
  text-align: center;
}

.footer-event-v3 strong,
.footer-event-v3 span {
  display: block;
  width: 100%;
  margin: 0;
  text-align: center;
}

.footer-event-v3 strong {
  color: var(--ivory);
}

/* =========================================================
   PRODUCER LOGOS — INDIVIDUAL SIZING
   ========================================================= */

/* Wide Bats artwork */
.producer-link-v3--bats {
  justify-self: stretch;
}

.site-footer .producer-link-v3--bats img {
  width: min(100%, 500px);
  max-height: 150px;

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

/* Square Timeless artwork */
.producer-link-v3--timeless {
  justify-self: stretch;
}

.site-footer .producer-link-v3--timeless img {
  width: min(100%, 300px);
  max-height: 180px;

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

/* =========================================================
   SAME HOVER EFFECT FOR BOTH LOGOS
   ========================================================= */

.site-footer .producer-link-v3--bats:hover img,
.site-footer .producer-link-v3--bats:focus-visible img,
.site-footer .producer-link-v3--timeless:hover img,
.site-footer .producer-link-v3--timeless:focus-visible img {
  transform: scale(1.035);

  filter: brightness(1.18) drop-shadow(0 0 7px rgba(226, 36, 31, 0.85))
    drop-shadow(0 0 18px rgba(226, 36, 31, 0.55))
    drop-shadow(0 0 30px rgba(180, 20, 24, 0.28));
}

/* =========================================================
   KEYBOARD FOCUS
   ========================================================= */

.producer-link-v3:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 6px;
}

/* =========================================================
   CENTER PLUS SIGN
   ========================================================= */

.producer-plus-v3 {
  width: 64px;
  height: 64px;

  display: grid;
  place-items: center;

  justify-self: center;
  align-self: center;

  margin: 0;

  color: var(--red-bright);

  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;

  text-align: center;
}

/* Tablet / mobile */
@media (max-width: 720px) {
  .producer-grid-v3 {
    width: 100%;
    grid-template-columns: 1fr;
    row-gap: 0.65rem;
  }

  .producer-link-v3 {
    width: 100%;
    height: 120px;
  }

  .site-footer .producer-link-v3--bats img {
    width: min(82vw, 390px);
    max-height: 105px;
  }

  .site-footer .producer-link-v3--timeless img {
    width: min(62vw, 260px);
    max-height: 120px;
  }

  .producer-plus-v3 {
    width: 48px;
    height: 40px;
    font-size: 1.4rem;
  }

  .footer-event-v3 {
    margin-top: 2rem;
    padding-inline: 0.5rem;
  }
}

/* =========================================================
   FEATURED VENDORS — LINKED IMAGE CARDS
   ========================================================= */

.vendor-card--linked {
  display: block;
  color: inherit;
  text-decoration: none;
}

.vendor-card--linked .vendor-media {
  background: #090808;
}

.vendor-card--linked .vendor-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.vendor-card--linked:hover,
.vendor-card--linked:focus-visible {
  border-color: rgba(226, 36, 31, 0.9);
  transform: translateY(-6px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(226, 36, 31, 0.12);
}

.vendor-card--linked:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 4px;
}

/* =========================================================
   PHOTOGRAPHER SECTION — VISUAL DELINEATION
   ========================================================= */

.photographer-feature {
  border-top: 1px solid var(--line);
  padding-top: clamp(4.5rem, 8vw, 7rem);
}

.photographer-heading {
  margin-top: 0;
}

/* =========================================================
   PAST EVENTS — SECTION DELINEATION
   ========================================================= */

.past-events {
  border-top: 1px solid var(--line);
  padding-top: clamp(4.5rem, 8vw, 7rem);
}

.past-events .section-heading {
  margin-top: 0;
}

/* =========================================================
   FINAL EVENT DETAILS CARDS
   One authoritative event-card system
   ========================================================= */

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);

  background: transparent;
  border: 0;
}

/* =========================================================
   BASE CARD
   ========================================================= */

.event-grid .event-card {
  position: relative;

  min-width: 0;
  min-height: 320px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;

  padding: clamp(2rem, 4vw, 3rem);

  overflow: hidden;

  border: 1px solid rgba(238, 228, 212, 0.18);

  background: linear-gradient(
    145deg,
    rgba(20, 15, 14, 0.96),
    rgba(8, 7, 7, 0.92)
  );

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.02);

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

/* Remove legacy decorative circle */
.event-grid .event-card::after {
  content: none;
}

/* Red accent line at upper left */
.event-grid .event-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 86px;
  height: 3px;

  background: var(--red-bright);
  opacity: 0.88;

  z-index: 3;
}

/* =========================================================
   HOVER
   ========================================================= */

.event-grid .event-card:hover {
  transform: translateY(-5px);

  border-color: rgba(226, 36, 31, 0.48);

  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(180, 20, 24, 0.08);
}

/* =========================================================
   ICON
   ========================================================= */

.event-card-icon {
  position: relative;
  z-index: 2;

  width: 48px;
  height: 48px;

  margin-bottom: 1.5rem;

  display: grid;
  place-items: center;

  color: #d26f67;
}

.event-card-icon svg {
  width: 100%;
  height: 100%;

  fill: none;
  stroke: currentColor;

  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;

  opacity: 0.92;
}

/* =========================================================
   LABEL
   ========================================================= */

.event-card-label {
  position: relative;
  z-index: 2;

  margin: 0 0 0.65rem !important;

  color: #d26f67 !important;

  font-size: 0.68rem !important;
  font-weight: 800;
  line-height: 1.35;

  text-transform: uppercase;
  letter-spacing: 0.19em;
}

/* =========================================================
   TITLE
   ========================================================= */

.event-grid .event-card .event-card-title {
  position: relative;
  z-index: 2;

  margin: 0 0 1rem;

  max-width: 68%;

  color: var(--ivory);

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 0.96;

  letter-spacing: -0.015em;
  text-transform: uppercase;
}

/* Long venue title */
.event-card--where .event-card-title {
  font-size: clamp(1.7rem, 2.8vw, 2.65rem) !important;
  line-height: 1;
}

/* =========================================================
   BODY COPY
   ========================================================= */

.event-grid .event-card p {
  position: relative;
  z-index: 2;

  max-width: 68%;

  color: var(--muted);

  font-size: 0.98rem;
  line-height: 1.65;
}

.event-grid .event-card strong {
  color: var(--ivory);
  font-weight: 800;
}

/* Main date / doors line */
.event-card-primary {
  position: relative;
  z-index: 2;

  max-width: 68%;

  margin: 0 0 0.35rem !important;

  color: var(--ivory) !important;

  font-size: clamp(1.15rem, 2vw, 1.4rem) !important;
  font-weight: 800;

  letter-spacing: 0.025em;
}

/* Address block */
.event-card-address {
  position: relative;
  z-index: 2;

  max-width: 68%;

  margin: 0 0 1.25rem;
}

/* Supporting meta line */
.event-card-meta {
  position: relative;
  z-index: 2;

  margin-top: auto !important;
  padding-top: 1.5rem;

  color: #86786d !important;

  font-size: 0.72rem !important;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.17em;
}

/* Charity note */
.event-card-note {
  position: relative;
  z-index: 2;

  margin-top: auto !important;
  padding-top: 1.6rem;

  color: #c8b9aa !important;

  font-size: clamp(0.9rem, 1.1vw, 1rem) !important;
  line-height: 1.5;

  font-style: italic;
  font-weight: 500;
}

/* =========================================================
   DIRECTIONS LINK
   ========================================================= */

.event-card-link {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  gap: 0.45rem;

  margin-top: auto;
  padding-top: 1.4rem;

  color: var(--ivory);

  text-decoration: none;

  font-size: 0.76rem;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.event-card-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -4px;

  width: 0;
  height: 1px;

  background: var(--red-bright);

  transition: width 0.2s ease;
}

.event-card-link:hover {
  color: white;
}

.event-card-link:hover::after,
.event-card-link:focus-visible::after {
  width: 100%;
}

/* =========================================================
   UNIFIED EVENT CARD ATMOSPHERE
   Dark edges with a restrained red center glow
   ========================================================= */

.event-grid .event-card,
.event-grid .event-card--when,
.event-grid .event-card--where,
.event-grid .event-card--gift,
.event-grid .event-card--featured,
.event-grid .event-card--exchange {
  background:
    radial-gradient(
      ellipse at 58% 50%,
      rgba(126, 18, 22, 0.34) 0%,
      rgba(91, 14, 17, 0.25) 24%,
      rgba(45, 11, 12, 0.17) 45%,
      rgba(17, 10, 10, 0.94) 72%,
      rgba(8, 7, 7, 0.98) 100%
    ),
    linear-gradient(145deg, rgba(22, 15, 14, 0.98), rgba(8, 7, 7, 0.98)) !important;
}

/* All four cards use the same border treatment */
.event-grid .event-card,
.event-grid .event-card--gift,
.event-grid .event-card--featured {
  border-color: rgba(238, 228, 212, 0.18);
}

/* All four cards use the same top red accent */
.event-grid .event-card::before,
.event-grid .event-card--gift::before,
.event-grid .event-card--featured::before {
  width: 86px;
}

/* =========================================================
   DECORATIVE ARTWORK
   Right-side faded artwork that exits card edge
   ========================================================= */

.event-card-art {
  position: absolute;

  top: 50%;
  right: -8%;

  display: block;

  max-width: none;

  transform: translateY(-50%);

  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;

  opacity: 0.5;

  filter: grayscale(1) contrast(1.2);

  z-index: 1;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* WHEN — crescent moon */
.event-card-art--moon {
  width: 48%;

  right: -7%;
  top: 48%;

  opacity: 0.5;

  transform: translateY(-50%) rotate(-10deg);
}

/* WHERE — vinyl record */
.event-card-art--record {
  width: 52%;

  right: -11%;
  top: 51%;

  opacity: 0.5;

  transform: translateY(-50%) rotate(12deg);
}

/* DONATION — gift bag */
.event-card-art--giftbag {
  width: 50%;

  right: -8%;
  top: 54%;

  opacity: 0.5;
}

/* KRAMPUS GIFT — horn silhouette */
.event-card-art--krampus {
  width: 58%;

  right: -13%;
  top: 53%;

  opacity: 0.5;

  filter: grayscale(1) contrast(1.4);
}

/* Artwork becomes slightly more visible on hover */
.event-grid .event-card:hover .event-card-art {
  opacity: 0.27;
}

/* =========================================================
   REMOVE LEGACY CARD NUMBERS
   ========================================================= */

.event-grid .card-number {
  display: none !important;
}

/* =========================================================
   TABLET
   ========================================================= */

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

  .event-grid .event-card {
    min-height: 290px;
  }

  .event-grid .event-card .event-card-title,
  .event-grid .event-card p,
  .event-card-primary,
  .event-card-address {
    max-width: 72%;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 580px) {
  .event-grid {
    gap: 0.85rem;
  }

  .event-grid .event-card {
    min-height: 0;
    padding: 1.8rem 1.5rem;
  }

  .event-card-icon {
    width: 40px;
    height: 40px;

    margin-bottom: 1.25rem;
  }

  .event-grid .event-card .event-card-title {
    max-width: 76%;

    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .event-card--where .event-card-title {
    font-size: clamp(1.65rem, 8vw, 2.2rem) !important;
  }

  .event-grid .event-card p,
  .event-card-primary,
  .event-card-address {
    max-width: 76%;
  }

  .event-card-meta,
  .event-card-note,
  .event-card-link {
    margin-top: 1.2rem !important;
    padding-top: 0;
  }

  .event-card-art--moon,
  .event-card-art--record,
  .event-card-art--giftbag,
  .event-card-art--krampus {
    width: 64%;
    right: -23%;
  }
}

/* Extra-small phones */
@media (max-width: 420px) {
  .event-grid .event-card .event-card-title,
  .event-grid .event-card p,
  .event-card-primary,
  .event-card-address {
    max-width: 82%;
  }

  .event-card-art {
    opacity: 0.13;
  }

  .event-grid .event-card:hover .event-card-art {
    opacity: 0.18;
  }
}

/* ---------------------------------------------------------
   TABLET / MOBILE
   --------------------------------------------------------- */

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

  .event-grid .event-card {
    min-height: 290px;
  }
}

@media (max-width: 580px) {
  .event-grid .event-card .event-card-title,
  .event-grid .event-card > p,
  .event-card-primary,
  .event-card-address {
    max-width: 76%;
  }

  .event-card-art--moon,
  .event-card-art--record,
  .event-card-art--giftbag,
  .event-card-art--krampus {
    width: 64%;
    right: -23%;
  }
  .event-grid {
    gap: 0.85rem;
  }

  .event-grid .event-card {
    min-height: 0;
    padding: 1.8rem 1.5rem;
  }

  .event-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.25rem;
  }

  .event-grid .event-card .event-card-title {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .event-card--where .event-card-title {
    font-size: clamp(1.65rem, 8vw, 2.2rem) !important;
  }

  .event-card-meta,
  .event-card-note,
  .event-card-link {
    margin-top: 1.2rem !important;
    padding-top: 0;
  }
}

/* =========================================================
   REEL MANUAL NAVIGATION
   Portraits + Past Events
   AUTHORITATIVE VERSION
   ========================================================= */

/* Both reel shells establish the positioning context */
.portrait-reel-shell,
.past-reel-shell {
  position: relative !important;
  width: 100%;
}

/* =========================================================
   SHARED ARROW BUTTONS
   ========================================================= */

.portrait-reel-shell > .reel-control,
.past-reel-shell > .reel-control {
  position: absolute !important;

  top: 50% !important;
  bottom: auto !important;

  z-index: 50 !important;

  width: 58px !important;
  height: 82px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;

  color: var(--ivory) !important;

  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 3.6rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;

  appearance: none;
  -webkit-appearance: none;
  appearance: none;

  cursor: pointer;

  transform: translateY(-50%) !important;

  text-shadow:
    0 3px 12px rgba(0, 0, 0, 0.95),
    0 0 8px rgba(0, 0, 0, 0.75);

  transition:
    color 0.2s ease,
    transform 0.2s ease,
    text-shadow 0.2s ease;
}

/* =========================================================
   LEFT / RIGHT POSITION
   ========================================================= */

.portrait-reel-shell > .reel-control--prev,
.past-reel-shell > .reel-control--prev {
  left: 10px !important;
  right: auto !important;
}

.portrait-reel-shell > .reel-control--next,
.past-reel-shell > .reel-control--next {
  right: 10px !important;
  left: auto !important;
}

/* =========================================================
   HOVER / KEYBOARD FOCUS
   ========================================================= */

.portrait-reel-shell > .reel-control:hover,
.portrait-reel-shell > .reel-control:focus-visible,
.past-reel-shell > .reel-control:hover,
.past-reel-shell > .reel-control:focus-visible {
  color: var(--red-bright) !important;

  text-shadow:
    0 0 3px rgba(255, 255, 255, 0.3),
    0 0 10px rgba(226, 36, 31, 0.9),
    0 0 24px rgba(180, 20, 24, 0.6);

  outline: none;
}

/* Subtle movement toward the direction being selected */
.portrait-reel-shell > .reel-control--prev:hover,
.portrait-reel-shell > .reel-control--prev:focus-visible,
.past-reel-shell > .reel-control--prev:hover,
.past-reel-shell > .reel-control--prev:focus-visible {
  transform: translateY(-50%) translateX(-4px) !important;
}

.portrait-reel-shell > .reel-control--next:hover,
.portrait-reel-shell > .reel-control--next:focus-visible,
.past-reel-shell > .reel-control--next:hover,
.past-reel-shell > .reel-control--next:focus-visible {
  transform: translateY(-50%) translateX(4px) !important;
}

/* =========================================================
   RED FRAME ON HOVER
   ========================================================= */

.portrait-reel-shell > .reel-control::before,
.past-reel-shell > .reel-control::before {
  content: "";

  position: absolute;

  inset: 7px 1px;

  opacity: 0;

  border: 1px solid rgba(226, 36, 31, 0.55);

  box-shadow: 0 0 18px rgba(226, 36, 31, 0.22);

  pointer-events: none;

  transition: opacity 0.2s ease;
}

.portrait-reel-shell > .reel-control:hover::before,
.portrait-reel-shell > .reel-control:focus-visible::before,
.past-reel-shell > .reel-control:hover::before,
.past-reel-shell > .reel-control:focus-visible::before {
  opacity: 1;
}

/* =========================================================
   KEEP REEL CONTENT BELOW THE CONTROLS
   ========================================================= */

.portrait-reel-shell .portrait-reel,
.past-reel-shell .reel {
  position: relative;
  z-index: 1;

  width: 100%;
  overflow: hidden;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 580px) {
  .portrait-reel-shell > .reel-control,
  .past-reel-shell > .reel-control {
    width: 44px !important;
    height: 64px !important;

    font-size: 2.8rem !important;
  }

  .portrait-reel-shell > .reel-control--prev,
  .past-reel-shell > .reel-control--prev {
    left: 2px !important;
  }

  .portrait-reel-shell > .reel-control--next,
  .past-reel-shell > .reel-control--next {
    right: 2px !important;
  }
}

/* =========================================================
   PAST EVENTS — INTERACTIVE IMAGE CARDS
   Match portrait reel behavior
   ========================================================= */

.past-events .reel-card {
  cursor: pointer;

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

.past-events .reel-card:hover,
.past-events .reel-card:focus-within {
  transform: translateY(-5px);

  border-color: rgba(226, 36, 31, 0.75);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(226, 36, 31, 0.14);
}

.past-events .reel-card img {
  cursor: pointer;
}

/* =========================================================
   CHARITY CTA
   ========================================================= */

.event-card-charity-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  margin-top: 1rem;
  padding: 0.8rem 1.15rem;

  border: 1px solid rgba(226, 36, 31, 0.55);

  background: rgba(180, 20, 24, 0.08);

  color: var(--ivory);

  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;

  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;

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

.event-card-charity-link:hover,
.event-card-charity-link:focus-visible {
  transform: translateY(-2px);

  border-color: var(--red-bright);

  background: rgba(226, 36, 31, 0.16);

  box-shadow:
    0 0 12px rgba(226, 36, 31, 0.22),
    0 0 24px rgba(180, 20, 24, 0.12);

  color: #fff;

  outline: none;
}

.event-card-charity-link span {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.event-card-charity-link:hover span,
.event-card-charity-link:focus-visible span {
  transform: translate(2px, -2px);
}
