/* ==========================================================================
   StreamFest — Base Reset & Custom Styles
   ========================================================================== */

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

html,
body,
div,
span,
h1, h2, h3, h4, h5, h6,
p,
a,
img,
ol, ul, li,
form,
label,
table,
tbody,
thead,
tr,
th,
td,
article,
aside,
figure,
figcaption,
footer,
header,
main,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.44em;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

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

:root {
  --streamfest-accent: #ffaf00;
  --streamfest-warm: #d2cab9;
  --streamfest-highlight: #fdf24e;
}

/* ==========================================================================
   Utility classes
   ========================================================================== */

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
}

.display-heading {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.05;
}

.serif-text {
  font-family: "Libre Baskerville", serif;
}

/* Arrow icon in links */
.section-label + svg,
a svg {
  display: inline-block;
  vertical-align: middle;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  margin-left: 4px;
}

/* Section spacing */
.streamfest-section {
  padding: 70px;
}

.streamfest-section--tight {
  padding-top: 24px;
  padding-bottom: 24px;
}

.streamfest-section--alt {
  background: #ededed;
}

.streamfest-view-all {
  margin-top: 30px;
  text-align: right;
}

.streamfest-view-all a {
  font-size: 14px;
  font-weight: 500;
}

.streamfest-programme-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
}

/* ==========================================================================
   Side Nav (Desktop)
   ========================================================================== */

body {
  padding-top: 60px;
}

body.sf-nav-is-open {
  overflow: hidden;
}

.sf-sidenav {
  display: none;
}

/* ==========================================================================
   Top Navigation (horizontal)
   ========================================================================== */

.sf-topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #000;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  box-sizing: border-box;
}

.sf-topnav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sf-topnav__logo img {
  height: 32px;
  width: auto;
}

.sf-topnav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sf-topnav__link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.sf-topnav__link:hover {
  color: #fff;
}

.sf-topnav__dropdown {
  position: relative;
}

.sf-topnav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #000;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.sf-topnav__dropdown:hover .sf-topnav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sf-topnav__dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
  white-space: nowrap;
}

.sf-topnav__dropdown-menu a:hover {
  color: #fff;
}

.sf-topnav__cta {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.sf-topnav__cta:hover {
  background: #fff;
  color: #000;
}

.sf-nav-opener {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.sf-nav-opener:hover {
  opacity: 0.7;
}

.sf-sidenav-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sf-sidenav-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  display: flex;
}

.sf-sidenav-social a:hover {
  color: #fff;
}

/* ==========================================================================
   Mobile Header
   ========================================================================== */

.sf-mobile-header {
  display: none;
}

/* ==========================================================================
   Slide-out Nav Drawer
   ========================================================================== */

.sf-nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  height: 100%;
  background: #000;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.46, 0.03, 0.52, 0.96), visibility 0.4s;
  overflow-y: auto;
}

.sf-nav-overlay.is-open {
  transform: translateX(0);
  visibility: visible;
}

.sf-nav-close {
  display: none;
}

.sf-nav-overlay-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 40px 32px;
  box-sizing: border-box;
  width: 100%;
}

.sf-nav-menu {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 34px 0;
}

.sf-nav-group {
  margin: 20px 0;
}

.sf-nav-group-title {
  display: block;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.06em;
  text-decoration: none;
  transition: color 0.3s ease-out;
}

.sf-nav-group-title:hover {
  color: var(--streamfest-accent);
}

.sf-nav-group-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.06em;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease-out;
}

.sf-nav-group-toggle:hover {
  color: var(--streamfest-accent);
}

.sf-nav-group-toggle svg {
  width: 6px;
  height: auto;
  transition: transform 0.3s ease-out, color 0.3s ease-out;
  stroke: currentColor;
  fill: none;
}

.sf-nav-group.is-open .sf-nav-group-toggle svg {
  transform: rotate(180deg);
}

.sf-nav-group-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

.sf-nav-group.is-open .sf-nav-group-submenu {
  max-height: 300px;
  margin: 18px 0 22px;
}

.sf-nav-group-submenu a {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.44em;
  text-decoration: none;
  transition: color 0.3s ease-out, padding 0.3s ease-out;
  padding: 3px 0;
  position: relative;
}

.sf-nav-group-submenu a:hover {
  color: var(--streamfest-accent);
}

.sf-nav-overlay-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  margin-top: 24px;
}
.sf-nav-overlay-footer .streamfest-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--streamfest-accent);
  color: #000;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 24px;
  border: none;
}

.streamfest-btn--sparkle {
  position: relative;
  overflow: visible;
}

.streamfest-btn--sparkle::before,
.streamfest-btn--sparkle::after {
  content: "✦";
  position: absolute;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.streamfest-btn--sparkle::before {
  top: -10px;
  right: 12px;
  font-size: 13px;
  animation: sparkle-a 3.1s ease-in-out 0.5s infinite;
}

.streamfest-btn--sparkle::after {
  bottom: -8px;
  left: 16px;
  font-size: 9px;
  animation: sparkle-b 2.7s ease-in-out 1.4s infinite;
}

@keyframes sparkle-a {
  0%, 100% { opacity: 0; transform: scale(0.3) rotate(0deg); }
  12% { opacity: 1; transform: scale(1.1) rotate(20deg); }
  30% { opacity: 0; transform: scale(0.4) rotate(45deg); }
}

@keyframes sparkle-b {
  0%, 100% { opacity: 0; transform: scale(0.3) rotate(0deg); }
  10% { opacity: 0.9; transform: scale(1) rotate(-15deg); }
  28% { opacity: 0; transform: scale(0.3) rotate(-35deg); }
}

.sf-nav-overlay-social {
  display: flex;
  gap: 20px;
}

.sf-nav-overlay-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease-out;
  display: flex;
}

.sf-nav-overlay-social a:hover {
  color: #fff;
}

/* ==========================================================================
   Nav Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .sf-topnav {
    display: none;
  }

  .sf-mobile-header {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #000;
    z-index: 200;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .sf-mobile-logo {
    display: flex;
    align-items: center;
  }

  .sf-mobile-logo img {
    height: 32px;
    width: auto;
  }

  .sf-nav-overlay {
    left: 0;
    top: 60px;
    width: 100%;
    height: calc(100% - 60px);
  }

  .sf-nav-group-title {
    font-size: 28px;
  }

  .sf-nav-group-toggle {
    font-size: 28px;
  }
}

/* ==========================================================================
   Button
   ========================================================================== */

.streamfest-btn {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}

.streamfest-btn:hover {
  background: #fff;
  color: #000;
}

.streamfest-btn--dark {
  border-color: #000;
  color: #000;
}

.streamfest-btn--dark:hover {
  background: #000;
  color: #fff;
}

.streamfest-legacy-section .streamfest-btn:hover,
.streamfest-about-cta .streamfest-btn:hover {
  color: #000;
}

.streamfest-btn--sm {
  padding: 8px 24px;
  font-size: 12px;
}

.streamfest-btn--full {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  border-color: #000;
  color: #000;
}

.streamfest-btn--full svg {
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

/* ==========================================================================
   Hero Video
   ========================================================================== */

.streamfest-hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.streamfest-hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streamfest-hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.streamfest-hero-video-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 24px;
}

.streamfest-hero-logo {
  max-width: 320px;
  height: auto;
}

.streamfest-hero-tagline {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 24px 0 0;
}

.streamfest-hero-dates {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin: 8px 0 0;
}

.streamfest-hero-video-content .streamfest-btn {
  margin-top: 32px;
}

@media (max-width: 768px) {
  .streamfest-hero-video {
    height: 80vh;
  }
  .streamfest-hero-logo {
    max-width: 220px;
  }
}

/* ==========================================================================
   Hero Slider
   ========================================================================== */

.streamfest-slider {
  position: relative;
  overflow: hidden;
}

.streamfest-hero-swiper {
  width: 100%;
  height: 645px;
}

.streamfest-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.streamfest-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.streamfest-slide-content {
  position: relative;
  z-index: 1;
  padding: 0 70px;
  max-width: 800px;
}

.streamfest-slide-title {
  font-size: 80px;
  line-height: 1em;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.streamfest-slide-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 16px 0 0;
  letter-spacing: 0.02em;
}

.streamfest-slide-actions {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.streamfest-slide-sidebar {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 280px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.streamfest-slide-sidebar-inner {
  text-align: center;
  padding: 32px 28px;
}

.streamfest-slide-sidebar-dates {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0;
}

.streamfest-slide-sidebar-location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 6px 0 24px;
}

.streamfest-slide-sidebar .streamfest-btn {
  display: block;
  width: 100%;
  text-align: center;
}

.streamfest-slide-sidebar .streamfest-btn-textual {
  display: inline-flex;
  margin-top: 16px;
  font-size: 13px;
}

.streamfest-slide-logo {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 170px;
  z-index: 2;
  opacity: 0.85;
}

/* Slider pagination — vertical dots on right side */
.streamfest-slider-pagination {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.streamfest-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.streamfest-bullet-active {
  background: #fff;
}

@media (max-width: 768px) {
  .streamfest-hero-swiper {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .streamfest-slide {
    background-position: center center;
    align-items: flex-end;
  }
  .streamfest-slide-content {
    padding: 0 24px 24px;
  }
  .streamfest-slide-title {
    font-size: 48px;
  }
  .streamfest-slide-logo {
    display: none;
  }
  .streamfest-slide-sidebar {
    display: none;
  }
}

@media (max-width: 480px) {
  .streamfest-hero-swiper {
    aspect-ratio: 16 / 11;
  }
  .streamfest-slide-title {
    font-size: 36px;
  }
  .streamfest-slide-subtitle {
    font-size: 14px;
  }
  .streamfest-slide-actions {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* ==========================================================================
   Portfolio Grid
   ========================================================================== */

.streamfest-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.streamfest-portfolio-item {
  overflow: hidden;
}

.streamfest-portfolio-image {
  aspect-ratio: 16 / 9;
  background: #ededed;
  overflow: hidden;
}

.streamfest-portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.streamfest-portfolio-item:hover .streamfest-portfolio-image img {
  transform: scale(1.05);
}

.streamfest-portfolio-item h5 {
  font-size: 25px;
  margin: 15px 0 0;
}

.streamfest-portfolio-item h5 a {
  color: #000;
}

.streamfest-portfolio-meta {
  font-size: 14px;
  margin: 5px 0 0;
}

.streamfest-portfolio-meta a {
  color: #737373;
}

.streamfest-portfolio-meta a + a::before {
  content: " / ";
}

@media (max-width: 768px) {
  .streamfest-portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Festival Programme
   ========================================================================== */

.streamfest-programme {
  margin-top: 60px;
}

/* Schedule day nav */
.schedule-day-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  gap: 0;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 0;
}

.schedule-day-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 28px;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.schedule-day-nav-day {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #737373;
}

.schedule-day-nav-date {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-top: 2px;
}

.schedule-day-nav-link:hover .schedule-day-nav-day {
  color: #111;
}

.schedule-day-nav-link.is-active {
  border-bottom-color: #e8a025;
}

.schedule-day-nav-link.is-active .schedule-day-nav-day {
  color: #e8a025;
}

.schedule-day-nav-link.is-active .schedule-day-nav-date {
  color: #111;
}

@media (max-width: 1024px) {
  .schedule-day-nav {
    top: 60px;
  }
}

@media (max-width: 600px) {
  .schedule-day-nav-link {
    padding: 10px 16px;
  }

  .schedule-day-nav-day {
    font-size: 10px;
  }

  .schedule-day-nav-date {
    font-size: 13px;
  }
}

.streamfest-programme-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid #d5d5d5;
}

.streamfest-programme-row:last-child {
  border-bottom: none;
}

.streamfest-screening-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.streamfest-screening-item--spaced {
  margin-top: 14px;
}

.streamfest-screening-thumb {
  flex-shrink: 0;
  width: 40px;
  border-radius: 3px;
  overflow: hidden;
}

.streamfest-screening-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.streamfest-screening-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
  line-height: 1.4;
}

.streamfest-programme-date {
  font-size: 14px;
  font-weight: 500;
  color: #737373;
  text-transform: uppercase;
  width: 160px;
  flex-shrink: 0;
}

.streamfest-programme-title {
  flex: 1;
  margin: 0;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding-left: 24px;
  border-left: 1px solid #d5d5d5;
}

.streamfest-programme-location {
  font-size: 14px;
  font-weight: 500;
  color: #737373;
  padding-left: 32px;
  flex-shrink: 0;
  width: 200px;
  border-left: 1px solid #d5d5d5;
  min-width: 180px;
}


/* Textual button style (Coppola) */
.streamfest-btn-textual {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #088789;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.streamfest-btn-textual svg {
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  transition: transform 0.3s;
}

.streamfest-btn-textual:hover svg {
  transform: translate(3px, -3px);
}

.streamfest-btn-textual--light {
  color: #fff;
}

.streamfest-btn-textual--light:hover {
  color: var(--streamfest-accent);
}

/* Outlined button style (Coppola) */
.streamfest-btn-outlined {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  border: 1px solid currentColor;
  padding: 10px 24px;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}

.streamfest-btn-outlined:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

@media (max-width: 1024px) {
  .streamfest-programme-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .streamfest-programme-location {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .streamfest-programme-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .streamfest-programme-title {
    padding-left: 0;
    border-left: none;
  }
  .streamfest-programme-location {
    padding-left: 0;
    border-left: none;
  }
  .streamfest-programme-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ==========================================================================
   Audience Choice
   ========================================================================== */

.streamfest-audience-choice {
  padding: 70px;
  background-size: cover;
  background-position: center;
  background-color: #333;
  position: relative;
}

.streamfest-audience-choice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.streamfest-audience-choice > * {
  position: relative;
  z-index: 1;
}

.streamfest-audience-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.streamfest-audience-video {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.streamfest-audience-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.streamfest-audience-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 21.4%;
}

.streamfest-audience-genre {
  color: #fff;
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.streamfest-audience-info h2 {
  color: #fff;
  margin: 8px 0 0;
}

.streamfest-audience-description {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 33px;
}

.streamfest-audience-icons {
  margin-top: 27px;
  display: flex;
  gap: 55px;
}

.streamfest-audience-icons img {
  height: 86px;
}

@media (max-width: 1024px) {
  .streamfest-audience-info {
    padding-left: 11%;
  }
}

@media (max-width: 768px) {
  .streamfest-audience-choice {
    padding: 48px 24px;
  }
  .streamfest-audience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
  }
  .streamfest-audience-info {
    padding-left: 0;
  }
}

/* ==========================================================================
   Popular Movies
   ========================================================================== */

.streamfest-section--dark {
  background: #1a1a1a;
  color: #fff;
}

.streamfest-movies-filter {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  margin-top: 40px;
}

.streamfest-movies-filter-item {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 8px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.3s;
}

.streamfest-movies-filter-item:first-child {
  border-left: none;
}

.streamfest-movies-filter-item:hover,
.streamfest-movies-filter-item.is-active {
  color: #fff;
}

.streamfest-movies-carousel-wrapper {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.streamfest-movies-carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.streamfest-movie-slide {
  flex: 0 0 calc((100% - 72px) / 4);
  text-decoration: none;
  color: inherit;
}

.streamfest-movie-image {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #333;
}

.streamfest-movie-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.streamfest-movie-slide:hover .streamfest-movie-image img {
  transform: scale(1.05);
}

.streamfest-movie-image--placeholder {
  background: #111;
}

.streamfest-movie-image--placeholder img {
  object-fit: contain;
  padding: 25%;
}

.streamfest-movie-slide h5 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 12px 0 0;
  color: #fff;
}

.streamfest-movies-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.streamfest-movies-nav .streamfest-speakers-nav-btn {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.streamfest-movies-nav .streamfest-speakers-nav-btn:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 1024px) {
  .streamfest-movie-slide {
    flex: 0 0 calc((100% - 48px) / 3);
  }
  .streamfest-movies-filter {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .streamfest-movies-filter::-webkit-scrollbar {
    display: none;
  }
  .streamfest-movies-filter-item {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 6px 10px;
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .streamfest-movie-slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

/* ==========================================================================
   Magazine
   ========================================================================== */

.streamfest-magazine {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.streamfest-magazine-image {
  overflow: hidden;
}

.streamfest-magazine-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streamfest-magazine-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
  background: #f3f3f3;
}

.streamfest-magazine-content h3 {
  margin: 20px 0 0;
}

.streamfest-magazine-date {
  font-size: 14px;
  color: #737373;
  margin: 8px 0 0;
}

.streamfest-magazine-content > a {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .streamfest-magazine {
    grid-template-columns: 1fr;
  }
  .streamfest-magazine-content {
    padding: 48px 24px;
  }
}

/* ==========================================================================
   Magazine Feature
   ========================================================================== */

.streamfest-magazine {
  margin-top: 50px;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.streamfest-magazine-text {
  width: 45%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 60px;
}

.streamfest-magazine-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.streamfest-magazine-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #737373;
}

.streamfest-magazine-date {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #737373;
}

.streamfest-magazine-title {
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.streamfest-magazine-excerpt {
  font-size: 15px;
  color: #6b6b6b;
  margin: 0 0 32px;
  line-height: 1.6;
}

.streamfest-magazine-text .streamfest-btn-outlined {
  align-self: flex-start;
}

.streamfest-magazine-image {
  flex: 1;
  overflow: hidden;
}

.streamfest-magazine-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .streamfest-magazine {
    flex-direction: column;
  }
  .streamfest-magazine-text {
    width: 100%;
    padding-right: 0;
    margin-bottom: 32px;
  }
  .streamfest-magazine-title {
    font-size: 28px;
  }
  .streamfest-magazine-image {
    aspect-ratio: 16 / 9;
  }
}

/* ==========================================================================
   Speakers
   ========================================================================== */

.streamfest-speakers {
  margin-top: 55px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.streamfest-speakers-side {
  width: 28%;
  flex-shrink: 0;
  position: relative;
}

.streamfest-speakers-side h3 {
  margin: 103px 0 18px;
  max-width: 90%;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.streamfest-speakers-side p {
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 0;
  max-width: 90%;
}

.streamfest-speakers-carousel-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.streamfest-speakers-carousel {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.streamfest-speaker-slide {
  flex: 0 0 calc((100% - 60px) / 3);
}

.streamfest-speaker-inner {
  position: relative;
  overflow: hidden;
}

.streamfest-speaker-image {
  aspect-ratio: 6 / 7;
  background: #d3d3d3;
  overflow: hidden;
  position: relative;
}

.streamfest-speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.streamfest-speaker-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 50%);
}

.streamfest-speaker-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 27px 10px 35px 40px;
}

.streamfest-speaker-content h5 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 4px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.streamfest-speaker-lastname {
  color: var(--streamfest-accent);
}

.streamfest-speaker-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.streamfest-speakers-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.streamfest-speakers-nav-btn {
  background: none;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  transition: border-color 0.3s, color 0.3s;
}

.streamfest-speakers-nav-btn:hover {
  border-color: #333;
  color: #000;
}

@media (max-width: 1024px) {
  .streamfest-speakers {
    flex-direction: column;
    align-items: stretch;
  }
  .streamfest-speakers-side {
    width: 100%;
  }
  .streamfest-speakers-side h3 {
    margin-top: 0;
    margin-bottom: 10px;
    max-width: 100%;
  }
  .streamfest-speakers-side p {
    max-width: 100%;
  }
  .streamfest-speaker-slide {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

@media (max-width: 768px) {
  .streamfest-speaker-slide {
    flex: 0 0 100%;
  }
  .streamfest-speaker-content {
    padding: 15px 10px 20px 20px;
  }
}

/* ==========================================================================
   Tickets
   ========================================================================== */

.streamfest-tickets {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.streamfest-ticket {
  border: 1px solid #a69f9a;
  padding: 32px;
}

.streamfest-ticket h5 {
  margin: 0;
}

.streamfest-ticket-type {
  font-size: 14px;
  color: #737373;
  margin: 8px 0 0;
}

.streamfest-ticket-price {
  margin-top: 24px;
}

.streamfest-ticket-label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.streamfest-ticket-currency {
  font-size: 18px;
  font-weight: 300;
}

.streamfest-ticket-amount {
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
}

.streamfest-ticket-note {
  font-size: 12px;
  color: #737373;
  margin-top: 16px;
  font-style: italic;
}

.streamfest-ticket-buy {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  text-decoration: none;
}

.streamfest-ticket-buy:hover {
  opacity: 0.7;
}

/* VIP dark ticket */
.streamfest-ticket--dark {
  background: #000;
  border-color: #4d4d4d;
}

.streamfest-ticket--dark h5,
.streamfest-ticket--dark .streamfest-ticket-type,
.streamfest-ticket--dark .streamfest-ticket-label,
.streamfest-ticket--dark .streamfest-ticket-currency,
.streamfest-ticket--dark .streamfest-ticket-amount,
.streamfest-ticket--dark .streamfest-ticket-note,
.streamfest-ticket--dark .streamfest-ticket-buy {
  color: #fff;
}

/* Gray ticket */
.streamfest-ticket--gray {
  background: #f3f3f3;
  border-color: #a5a5a5;
}

.streamfest-passes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .streamfest-tickets {
    grid-template-columns: 1fr;
  }
  .streamfest-passes-grid {
    grid-template-columns: 1fr;
  }
  .streamfest-bss-images {
    grid-template-columns: 1fr;
  }
  .streamfest-bss-awards {
    grid-template-columns: 1fr;
  }
}

.streamfest-bss-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.streamfest-bss-awards {
  max-width: 900px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ==========================================================================
   Staff Card (Volunteer page)
   ========================================================================== */

.streamfest-staff-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.streamfest-staff-card__photo {
  width: 200px;
  height: 280px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .streamfest-staff-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .streamfest-staff-card__photo {
    width: 160px;
    height: 220px;
  }
}

/* ==========================================================================
   Pricing Cards (Passes page - Coppola style)
   ========================================================================== */

.streamfest-pricing-card {
  margin-bottom: 20px;
}

.streamfest-pricing-inner {
  display: flex;
  background-color: #d2cab9;
  position: relative;
}

.streamfest-pricing-left {
  width: 74.5%;
  padding: 39px;
  border-right: 1px dashed #a69f9a;
}

.streamfest-pricing-right {
  width: 25.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 39px 30px;
  position: relative;
}

.streamfest-pricing-title h5 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.streamfest-pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--streamfest-accent);
  margin-bottom: 8px;
}

.streamfest-pricing-badge--soldout {
  color: #737373;
}

.streamfest-pricing-content {
  margin-top: 12px;
}

.streamfest-pricing-content p {
  font-size: 14px;
  color: #6b6b6b;
  margin: 0;
}

.streamfest-pricing-price {
  margin-top: 20px;
}

.streamfest-pricing-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  width: fit-content;
}

.streamfest-pricing-label {
  font-size: 14px;
  margin-right: 8px;
}

.streamfest-pricing-currency {
  font-size: 18px;
  font-weight: 300;
}

.streamfest-pricing-value {
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.streamfest-pricing-footnote {
  margin-top: 12px;
  font-size: 12px;
  color: #6b6b6b;
  font-style: italic;
}

.streamfest-pricing-footnote a {
  color: inherit;
  text-decoration: underline;
}

.streamfest-pricing-button {
  border-top: 1px solid currentColor;
  padding-top: 16px;
  width: 100%;
  text-align: center;
}

.streamfest-pricing-button .streamfest-btn-textual {
  font-size: 14px;
}

.streamfest-pricing-circle {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background-color: var(--streamfest-accent);
}

.streamfest-pricing-circle--yellow {
  background-color: #fdf24e;
}

.streamfest-pricing-circle--accent {
  background-color: var(--streamfest-accent);
}

/* Dark pricing card */
.streamfest-pricing-card--dark .streamfest-pricing-inner {
  background-color: #000;
}

.streamfest-pricing-card--dark .streamfest-pricing-left {
  border-right-color: #4d4d4d;
}

.streamfest-pricing-card--dark .streamfest-pricing-title h5,
.streamfest-pricing-card--dark .streamfest-pricing-content p,
.streamfest-pricing-card--dark .streamfest-pricing-label,
.streamfest-pricing-card--dark .streamfest-pricing-currency,
.streamfest-pricing-card--dark .streamfest-pricing-value,
.streamfest-pricing-card--dark .streamfest-pricing-footnote,
.streamfest-pricing-card--dark .streamfest-pricing-button .streamfest-btn-textual {
  color: #fff;
}

.streamfest-pricing-card--dark .streamfest-pricing-footnote a {
  color: #ffaf00;
}

/* Gray pricing card */
.streamfest-pricing-card--gray .streamfest-pricing-inner {
  background-color: #f3f3f3;
}

/* Pricing details (expandable) */
.streamfest-pricing-details {
  padding: 0 39px;
  margin-top: 0;
}

.streamfest-pricing-details summary {
  padding: 16px 0;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.streamfest-pricing-details summary::-webkit-details-marker {
  display: none;
}

.streamfest-pricing-details summary::after {
  content: "+";
  font-size: 18px;
  font-weight: 300;
}

.streamfest-pricing-details[open] summary::after {
  content: "\2212";
}

.streamfest-pricing-details .streamfest-list {
  padding-bottom: 24px;
}

.streamfest-pricing-details p {
  font-size: 14px;
  margin: 0 0 12px;
}

.streamfest-pricing-details--dark {
  color: #d3d3d3;
}

.streamfest-pricing-details--dark summary {
  color: #fff;
}

/* ---------- Day Pass Grid (3-col compact vertical cards) ---------- */

.streamfest-daypass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.streamfest-pricing-card--compact {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.streamfest-pricing-card--compact .streamfest-pricing-inner--vertical {
  flex: 1;
}

.streamfest-pricing-inner--vertical {
  flex-direction: column;
  padding: 32px;
  position: relative;
}

.streamfest-pricing-inner--vertical .streamfest-pricing-content {
  margin-top: 8px;
}

.streamfest-pricing-inner--vertical .streamfest-pricing-content p {
  margin: 0 0 4px;
}

.streamfest-pricing-inner--vertical .streamfest-pricing-content p:first-child {
  font-weight: 600;
  color: inherit;
}

.streamfest-pricing-inner--vertical .streamfest-pricing-price {
  margin-top: 16px;
}

.streamfest-pricing-inner--vertical .streamfest-pricing-value {
  font-size: 48px;
}

.streamfest-pricing-inner--vertical .streamfest-pricing-footnote {
  margin-top: 8px;
}

.streamfest-pricing-inner--vertical .streamfest-btn-textual {
  display: inline-flex;
  margin-top: 20px;
  font-size: 14px;
  border-top: 1px solid currentColor;
  padding-top: 16px;
}

.streamfest-pricing-inner--vertical .streamfest-pricing-circle {
  top: 20px;
  right: 20px;
}

.streamfest-pricing-card--compact .streamfest-pricing-details {
  padding: 0 32px;
}

.streamfest-daypass-details {
  padding: 0;
  margin-top: 20px;
}

.streamfest-daypass-details summary {
  padding: 20px 0 16px;
  border-top: 1px solid #d3d3d3;
}

.streamfest-daypass-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 24px;
}

.streamfest-daypass-details-grid h5 {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
}

/* Compact dark variant text colors */
.streamfest-pricing-card--compact.streamfest-pricing-card--dark .streamfest-pricing-inner--vertical {
  background-color: #000;
}

.streamfest-pricing-card--compact.streamfest-pricing-card--dark .streamfest-pricing-title h5,
.streamfest-pricing-card--compact.streamfest-pricing-card--dark .streamfest-pricing-content p,
.streamfest-pricing-card--compact.streamfest-pricing-card--dark .streamfest-pricing-currency,
.streamfest-pricing-card--compact.streamfest-pricing-card--dark .streamfest-pricing-value,
.streamfest-pricing-card--compact.streamfest-pricing-card--dark .streamfest-pricing-footnote,
.streamfest-pricing-card--compact.streamfest-pricing-card--dark .streamfest-btn-textual {
  color: #fff;
}

/* Compact gray variant */
.streamfest-pricing-card--compact.streamfest-pricing-card--gray .streamfest-pricing-inner--vertical {
  background-color: #f3f3f3;
}

/* ---------- SXSW-style Pass Cards ---------- */

.streamfest-pass-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  background: #fff;
}

.streamfest-pass-card--dark {
  background: #000;
  border-color: #000;
}

.streamfest-pass-card--featured {
  border-color: var(--streamfest-accent);
}

.streamfest-pass-card--soldout {
  opacity: 0.7;
}

.streamfest-pass-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #e8e4de;
  overflow: hidden;
}

.streamfest-pass-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.streamfest-pass-card--dark .streamfest-pass-card__image {
  background: #1a1a1a;
}

.streamfest-pass-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  background: var(--streamfest-accent);
  color: #000;
}

.streamfest-pass-card__badge--soldout {
  background: #959494;
  color: #fff;
}

.streamfest-pass-card__date {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #737373;
  margin: 20px 24px 0;
}

.streamfest-pass-card--dark .streamfest-pass-card__date {
  color: #888;
}

.streamfest-pass-card__name {
  margin: 8px 24px 0;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.streamfest-pass-card--dark .streamfest-pass-card__name {
  color: #fff;
}

.streamfest-pass-card__description {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.5;
  margin: 8px 24px 0;
  min-height: 2.5em;
}

.streamfest-pass-card--dark .streamfest-pass-card__description {
  color: #b2b2b2;
}
.streamfest-pass-card__name + .streamfest-pass-card__features {
  margin: 32px 24px 0;
}

.streamfest-pass-card__features {
  list-style: none;
  padding: 0;
  margin: 20px 24px 0;
  text-align: left;
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.6;
}
.streamfest-pass-card__features li {
  padding-left: 20px;
  margin-left: 8px;
  position: relative;
  margin-bottom: 4px;
}
.streamfest-pass-card__features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--streamfest-accent);
  font-weight: 600;
}
.streamfest-pass-card--dark .streamfest-pass-card__features {
  color: #b2b2b2;
}

.streamfest-pass-card__price {
  display: flex;
  align-items: baseline;
  margin: auto 24px 0;
  padding-top: 16px;
}

.streamfest-pass-card__currency {
  font-size: 18px;
  font-weight: 300;
}

.streamfest-pass-card--dark .streamfest-pass-card__currency {
  color: #fff;
}

.streamfest-pass-card__amount {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}

.streamfest-pass-card--dark .streamfest-pass-card__amount {
  color: #fff;
}

.streamfest-pass-card__footnote {
  font-size: 12px;
  color: #737373;
  margin: 8px 24px 0;
}

.streamfest-pass-card--dark .streamfest-pass-card__footnote {
  color: #888;
}

.streamfest-pass-card__footnote a {
  color: var(--streamfest-accent);
  text-decoration: underline;
}

.streamfest-pass-card__btn {
  display: block;
  width: calc(100% - 48px);
  margin: 20px 24px 24px;
  padding: 14px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.streamfest-pass-card__btn:hover {
  background: #333;
}

.streamfest-pass-card--dark .streamfest-pass-card__btn {
  background: var(--streamfest-accent);
  color: #000;
}

.streamfest-pass-card--dark .streamfest-pass-card__btn:hover {
  background: #e09d00;
}

.streamfest-pass-card__btn--inquire {
  background: transparent;
  color: #000;
  border: 1px solid #d3d3d3;
}

.streamfest-pass-card__btn--inquire:hover {
  background: #f3f3f3;
}

/* ---------- Legacy Member Section ---------- */

.streamfest-legacy-section {
  background: #000;
  padding: 80px 40px;
  text-align: center;
}

.streamfest-legacy-inner {
  max-width: 960px;
  margin: 0 auto;
}

.streamfest-legacy-title {
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  margin: 16px 0 0;
  letter-spacing: 0.02em;
}

.streamfest-legacy-subtitle {
  color: #b2b2b2;
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
  margin: 16px auto 0;
}

.streamfest-legacy-details {
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}

.streamfest-legacy-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  color: #fff;
}

.streamfest-legacy-price .streamfest-pricing-currency {
  font-size: 24px;
  color: #fff;
}

.streamfest-legacy-amount {
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
}

.streamfest-legacy-per {
  font-size: 14px;
  color: #b2b2b2;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.streamfest-legacy-tax {
  color: var(--streamfest-accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 12px;
}

.streamfest-legacy-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  text-align: left;
}

.streamfest-legacy-perk h5 {
  color: #fff;
  margin: 0 0 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.streamfest-legacy-perk p {
  color: #b2b2b2;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.streamfest-legacy-note {
  color: #6b6b6b;
  font-size: 13px;
  margin-top: 40px;
  font-style: italic;
}

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

  .streamfest-pricing-left {
    width: 100%;
    padding: 28px 24px;
    border-right: none;
    border-bottom: 1px dashed #a69f9a;
  }

  .streamfest-pricing-right {
    width: 100%;
    padding: 24px;
    flex-direction: row;
    justify-content: center;
  }

  .streamfest-pricing-circle {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
  }

  .streamfest-pricing-details {
    padding: 0 24px;
  }

  .streamfest-pricing-card--dark .streamfest-pricing-left {
    border-bottom-color: #4d4d4d;
  }

  .streamfest-daypass-grid {
    grid-template-columns: 1fr;
  }

  .streamfest-pricing-inner--vertical {
    padding: 24px;
  }

  .streamfest-pricing-card--compact .streamfest-pricing-details {
    padding: 0 24px;
  }

  .streamfest-daypass-details-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .streamfest-legacy-section {
    padding: 60px 24px;
  }

  .streamfest-legacy-title {
    font-size: 32px;
  }

  .streamfest-legacy-amount {
    font-size: 48px;
  }

  .streamfest-legacy-perks {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================================================
   Society Callout (homepage compact tier row)
   ========================================================================== */

.streamfest-society-callout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.streamfest-society-callout-item {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.streamfest-society-callout-item h5 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.streamfest-society-callout-item p {
  font-size: 14px;
  margin: 8px 0 0;
}

.streamfest-society-callout-note {
  font-size: 12px !important;
  color: var(--streamfest-accent);
  font-style: italic;
}

.streamfest-society-callout-item .streamfest-btn-textual {
  margin-top: 16px;
  font-size: 13px;
}

.streamfest-society-callout-item--dark {
  background: #000;
  color: #fff;
}

.streamfest-society-callout-item--dark p {
  color: #b2b2b2;
}

.streamfest-society-callout-item--dark .streamfest-society-callout-note {
  color: var(--streamfest-accent);
}

.streamfest-society-callout-item--legacy {
  background: #000;
  color: #fff;
  border-left: 3px solid var(--streamfest-accent);
}

.streamfest-society-callout-item--legacy p {
  color: #b2b2b2;
}

@media (max-width: 768px) {
  .streamfest-society-callout {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Client Logos
   ========================================================================== */

.streamfest-clients-section {
  border-top: 1px solid #d3d3d3;
  padding: 45px 40px 28px;
}

.streamfest-clients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.streamfest-client {
  opacity: 0.5;
  transition: opacity 0.3s;
}

.streamfest-client:hover {
  opacity: 1;
}

.streamfest-client img {
  height: 75px;
  width: auto;
}

.streamfest-client span {
  font-size: 14px;
  font-weight: 500;
  color: #b2b2b2;
}

/* ==========================================================================
   Partners
   ========================================================================== */

.streamfest-partners-section {
  padding: 45px 70px 80px;
}

.streamfest-partner-grid {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.streamfest-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.streamfest-partner:hover {
  opacity: 0.7;
}

.streamfest-partner img {
  height: 75px;
  width: auto;
  max-width: 154px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .streamfest-partners-section {
    padding: 45px 40px 28px;
  }

  .streamfest-partner img {
    height: 60px;
    max-width: 130px;
  }
}

@media (max-width: 768px) {
  .streamfest-partners-section {
    padding: 32px 24px 20px;
  }

  .streamfest-partner-grid {
    gap: 16px;
  }

  .streamfest-partner img {
    height: 50px;
    max-width: 110px;
  }
}

/* Partner ticker */
.streamfest-ticker {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.streamfest-ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: ticker-scroll 45s linear infinite;
}

.streamfest-ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.streamfest-ticker-item:hover {
  opacity: 0.7;
}

.streamfest-ticker-item img {
  height: 75px;
  width: auto;
  max-width: 154px;
  object-fit: contain;
}

.streamfest-ticker:hover .streamfest-ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px) {
  .streamfest-ticker-item img {
    height: 60px;
    max-width: 130px;
  }
}

@media (max-width: 768px) {
  .streamfest-ticker-track {
    gap: 28px;
  }
  .streamfest-ticker-item img {
    height: 50px;
    max-width: 110px;
  }
}

/* Partner opportunity categories */
.streamfest-partner-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 32px auto 0;
}

.streamfest-partner-category {
  background: #fff;
  padding: 32px;
  border-radius: 4px;
}

.streamfest-partner-category h4 {
  margin: 0 0 16px;
  font-size: 18px;
}

.streamfest-partner-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.streamfest-partner-category li {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
  padding: 6px 0;
}

@media (max-width: 900px) {
  .streamfest-partner-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .streamfest-partner-categories {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   About
   ========================================================================== */

.streamfest-about {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.streamfest-about-heading {
  width: 45%;
  flex-shrink: 0;
}

.streamfest-about-heading h2 {
  font-size: 42px;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.streamfest-about-text {
  flex: 1;
}

.streamfest-about-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b6b6b;
  margin: 0 0 16px;
}

.streamfest-about-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .streamfest-about {
    flex-direction: column;
    gap: 24px;
  }
  .streamfest-about-heading {
    width: 100%;
  }
  .streamfest-about-heading h2 {
    font-size: 32px;
  }
}

/* ==========================================================================
   Home Feature Cards
   ========================================================================== */

.streamfest-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.streamfest-feature-card {
  text-align: center;
}

.streamfest-feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.streamfest-feature-card h5 {
  margin: 16px 0 8px;
}

.streamfest-feature-card p {
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.6;
}

.streamfest-feature-card__role {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #737373;
  margin-bottom: 8px;
}

.streamfest-feature-card__placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #e8e4de;
  border-radius: 8px;
}

/* Who is StreamFest For */
.streamfest-who-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.streamfest-who-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.streamfest-who-content h3 {
  margin-bottom: 24px;
}

.streamfest-who-content h5 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.streamfest-who-content p {
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.6;
}

/* Category icons */
.streamfest-category-icons img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .streamfest-feature-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .streamfest-who-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   Portfolio Showcase (below hero)
   ========================================================================== */

.streamfest-portfolio-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.streamfest-showcase-item {
  overflow: hidden;
}

.streamfest-showcase-inner {
  position: relative;
  overflow: hidden;
}

.streamfest-showcase-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.streamfest-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.streamfest-showcase-inner:hover .streamfest-showcase-media img {
  transform: scale(1.05);
}

.streamfest-showcase-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  pointer-events: none;
}

.streamfest-showcase-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 1;
}

.streamfest-showcase-title {
  color: #fff;
  font-size: 18px;
  margin: 0;
}

.streamfest-showcase-info {
  margin-top: 4px;
}

.streamfest-showcase-info span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.streamfest-showcase-info span + span::before {
  content: " / ";
}

@media (max-width: 1024px) {
  .streamfest-portfolio-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .streamfest-portfolio-showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.streamfest-footer {
  background: #000;
  color: #fff;
  font-family: "DM Sans", sans-serif;
}

/* Footer Top Area */
.streamfest-footer-top {
  padding: 0 70px;
}

.streamfest-footer-top-inner {
  display: grid;
  grid-template-columns: 49% 17% 17% 17%;
  padding: 114px 0 61px;
}

.streamfest-footer-brand {
  display: flex;
  align-items: flex-start;
}

.streamfest-footer-logo {
  max-width: 273px;
  height: auto;
}

.streamfest-footer-nav {
  padding-top: 5px;
}

.streamfest-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.streamfest-footer ul li {
  margin-bottom: 12px;
}

.streamfest-footer ul a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-out;
}

.streamfest-footer ul a:hover {
  color: var(--streamfest-accent);
}


/* Footer Bottom Area */
.streamfest-footer-bottom {
  padding: 0 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.streamfest-footer-bottom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-start;
  padding: 50px 0 102px;
}

.streamfest-footer-social {
  display: flex;
  gap: 19px;
  align-items: center;
}

.streamfest-footer-social a {
  color: #fff;
  transition: color 0.3s ease-out;
  display: flex;
}

.streamfest-footer-social a:hover {
  color: var(--streamfest-accent);
}

.streamfest-footer-copy {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 7px 0 0;
}

.streamfest-footer-address {
  font-size: 15px;
  color: #fff;
  line-height: 27px;
  margin: 0;
}

.streamfest-footer-newsletter {
  margin: 0;
}

.streamfest-footer-newsletter-form {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid #fff;
}

.streamfest-footer-newsletter-form input {
  flex: 1;
  padding: 0;
  margin: 0;
  font-size: 15px;
  font-family: inherit;
  font-weight: 400;
  line-height: 1.44em;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #ccc;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-text-fill-color: #ccc;
  transition: color 0.3s ease-out;
}

.streamfest-footer-newsletter-form input::placeholder {
  color: #ccc;
}

.streamfest-footer-newsletter-form input:focus {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.streamfest-footer-newsletter-form button {
  padding: 0 0 0 12px;
  font-size: 0;
  font-family: inherit;
  line-height: 24px;
  background: transparent;
  color: #fff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  box-sizing: border-box;
  transition: color 0.3s ease-out;
  display: flex;
  align-items: center;
}

.streamfest-footer-newsletter-form button::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12.0148 12.0143'%3E%3Cg fill='none' stroke='%23fff' stroke-width='1.5'%3E%3Cline x1='0.7071' y1='11.3071' x2='10.6066' y2='1.4077'/%3E%3Cpolyline points='1.015 1 11.015 1 11.015 11'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.streamfest-footer-newsletter-form button:hover {
  color: var(--streamfest-accent);
}

/* Footer Legal Bar */
.streamfest-footer-legal-bar {
  padding: 20px 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.streamfest-footer-legal-bar a {
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.3s ease-out;
}

.streamfest-footer-legal-bar a:hover {
  color: var(--streamfest-accent);
}

.streamfest-footer-legal-bar a + a::before {
  content: " · ";
  color: #555;
}

@media (max-width: 1024px) {
  .streamfest-footer-top-inner {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
  }

  .streamfest-footer-brand {
    grid-column: 1 / -1;
  }

  .streamfest-footer-bottom-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .streamfest-footer-top {
    padding: 0 24px;
  }

  .streamfest-footer-top-inner {
    grid-template-columns: 1fr 1fr;
    padding: 64px 0 40px;
    gap: 32px;
  }

  .streamfest-footer-brand {
    grid-column: auto;
  }

  .streamfest-footer-logo {
    max-width: 180px;
  }

  .streamfest-footer-bottom {
    padding: 0 24px;
  }

  .streamfest-footer-bottom-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 64px;
  }

  .streamfest-footer-legal-bar {
    padding: 20px 24px;
  }
}

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */

.streamfest-page-header {
  background: #000;
  padding: 96px 70px;
}

.streamfest-page-header--hero {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 140px 70px;
}

.streamfest-page-header--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.streamfest-page-header--hero > * {
  position: relative;
  z-index: 1;
}

.streamfest-page-header h1 {
  color: #fff;
  margin: 16px 0 0;
}

.streamfest-page-header p {
  color: #b2b2b2;
  margin-top: 16px;
}

.streamfest-page-header--with-sidebar {
  display: flex;
  padding: 0;
}

.streamfest-page-header--with-sidebar .streamfest-page-header-text {
  flex: 1;
  padding: 96px 70px;
}

.streamfest-page-header-sidebar {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.streamfest-page-header-sidebar-inner {
  text-align: center;
  padding: 32px 28px;
}

.streamfest-page-header-sidebar-dates {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0;
}

.streamfest-page-header-sidebar-location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 6px 0 24px;
}

.streamfest-page-header-sidebar .streamfest-btn {
  display: block;
  width: 100%;
  text-align: center;
}

.streamfest-page-header-sidebar .streamfest-btn-textual {
  display: inline-flex;
  margin-top: 16px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .streamfest-page-header {
    padding: 40px 24px;
  }
  .streamfest-page-header--with-sidebar {
    flex-direction: column;
  }
  .streamfest-page-header--with-sidebar .streamfest-page-header-text {
    padding: 24px 24px;
  }
  .streamfest-page-header--with-sidebar .streamfest-page-header-text p {
    display: none;
  }
  .streamfest-page-header-sidebar {
    display: none;
  }
}

/* ==========================================================================
   About / What is StreamFest
   ========================================================================== */

.streamfest-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.streamfest-about-intro h2 {
  font-size: 28px;
  line-height: 1.35;
  margin: 0 0 24px;
}

.streamfest-about-intro p {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.7;
  margin: 0 0 16px;
}

.streamfest-about-intro-image {
  overflow: hidden;
}

.streamfest-about-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streamfest-expect-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.streamfest-expect-item h3 {
  margin: 0 0 12px;
}

.streamfest-expect-item p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.7;
  margin: 0;
}

.streamfest-about-feature {
  overflow: hidden;
  max-height: 500px;
}

.streamfest-about-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streamfest-about-who {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: center;
}

.streamfest-about-who h3 {
  margin: 0 0 16px;
}

.streamfest-about-who-text p {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.7;
  margin: 0 0 16px;
}

.streamfest-about-who-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.streamfest-stat {
  text-align: center;
}

.streamfest-stat-number {
  display: block;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
}

.streamfest-stat-label {
  display: block;
  font-size: 14px;
  color: #737373;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.streamfest-about-cta {
  background: #000;
  padding: 96px 70px;
  text-align: center;
}

.streamfest-about-cta h2 {
  color: #fff;
  margin: 0;
}

.streamfest-about-cta p {
  color: #b2b2b2;
  margin: 16px 0 32px;
}

@media (max-width: 768px) {
  .streamfest-about-intro {
    grid-template-columns: 1fr;
  }
  .streamfest-expect-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .streamfest-about-who {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .streamfest-about-cta {
    padding: 64px 24px;
  }
}

/* ==========================================================================
   Content pages (narrow column)
   ========================================================================== */

.streamfest-content-narrow {
  max-width: 720px;
  margin: 0 auto;
}

.streamfest-content-narrow p + p {
  margin-top: 16px;
}

.streamfest-content-narrow h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.streamfest-content-narrow h4 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.streamfest-content-narrow a {
  color: #b5791a;
  text-decoration: underline;
}

.streamfest-content-narrow a:hover {
  color: #e8a025;
}

.streamfest-lead {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.streamfest-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.streamfest-list li {
  font-size: 16px;
  color: #6b6b6b;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.streamfest-list li::before {
  content: "\2022";
  color: var(--streamfest-accent);
  position: absolute;
  left: 0;
}

.streamfest-cta-block {
  margin-top: 48px;
}

/* ==========================================================================
   Big P!VOT Marquee
   ========================================================================== */

.streamfest-pivot-marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: pivot-scroll 20s linear infinite;
}

.streamfest-pivot-marquee-track span {
  font-family: "Anton", sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  padding: 0 24px;
  white-space: nowrap;
}

@keyframes pivot-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   Forms
   ========================================================================== */

.streamfest-form {
  margin-top: 48px;
}

.streamfest-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.streamfest-form-field {
  margin-bottom: 20px;
}

.streamfest-form-field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.streamfest-required {
  color: var(--streamfest-accent);
}

.streamfest-form-field input[type="text"],
.streamfest-form-field input[type="email"],
.streamfest-form-field input[type="tel"],
.streamfest-form-field textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid #d3d3d3;
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.streamfest-form-field input:focus,
.streamfest-form-field textarea:focus {
  outline: none;
  border-color: #000;
}

.streamfest-form-field textarea {
  resize: vertical;
}

.streamfest-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

.streamfest-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #000;
}

.streamfest-form .streamfest-btn {
  margin-top: 8px;
  cursor: pointer;
}

.streamfest-form .streamfest-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.streamfest-form-message {
  margin-top: 16px;
  font-size: 14px;
  padding: 12px 16px;
}

.streamfest-form-message--success {
  background: #f0faf0;
  color: #2d7a2d;
  border: 1px solid #b8e6b8;
}

.streamfest-form-message--error {
  background: #fdf0f0;
  color: #c44;
  border: 1px solid #f0c0c0;
}

@media (max-width: 768px) {
  .streamfest-form-row {
    grid-template-columns: 1fr;
  }
}

.streamfest-legal h3 {
  margin: 32px 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.streamfest-legal h3:first-child {
  margin-top: 0;
}

.streamfest-legal p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.7;
}

.streamfest-legal ul {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.7;
  padding-left: 20px;
}

.streamfest-legal li {
  margin-bottom: 4px;
}

.streamfest-donate-tiers {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.streamfest-contact-details h5 {
  margin: 0;
}

.streamfest-contact-details p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.7;
}

/* ==========================================================================
   Staff & Mentors grids
   ========================================================================== */

.streamfest-staff-hero {
  position: relative;
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
}

.streamfest-staff-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.streamfest-staff-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 70px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.streamfest-staff-hero-overlay .display-heading {
  color: #fdf24e;
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
}

.streamfest-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.streamfest-staff-member {
  text-align: left;
}

.streamfest-staff-image {
  aspect-ratio: 3 / 4;
  background: #e8e4de;
  overflow: hidden;
  margin-bottom: 4%;
}

.streamfest-staff-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streamfest-staff-member h5 {
  margin: 0 0 2px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.streamfest-staff-member p {
  font-size: 13px;
  color: #737373;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.streamfest-mentors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.streamfest-mentor-image {
  aspect-ratio: 4 / 3;
  background: #d3d3d3;
  overflow: hidden;
  margin-bottom: 16px;
}

.streamfest-mentor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streamfest-mentor h5 {
  margin: 0;
  font-size: 20px;
}

.streamfest-mentor-role {
  font-size: 14px;
  color: #737373;
  margin: 4px 0 12px;
}

.streamfest-mentor p:last-child {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.7;
}

.streamfest-mentors-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.streamfest-mentor-feature {
  display: flex;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.streamfest-mentor-feature:last-child {
  border-bottom: none;
}

.streamfest-mentor-photo {
  flex-shrink: 0;
  width: 200px;
}

.streamfest-mentor-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
}

.streamfest-mentor-placeholder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #e8e4de;
}

.streamfest-mentor-bio h3 {
  margin: 0 0 4px;
  font-size: 24px;
}

.streamfest-mentor-bio .streamfest-mentor-role {
  font-size: 14px;
  color: #737373;
  margin: 0 0 16px;
}

.streamfest-mentor-bio p {
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.7;
  margin: 0 0 12px;
}

.streamfest-mentor-bio p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .streamfest-staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .streamfest-mentors-grid {
    grid-template-columns: 1fr;
  }
  .streamfest-mentor-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
}

/* ==========================================================================
   Guests
   ========================================================================== */

.streamfest-guests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.streamfest-guest-card {
  text-align: center;
}

.streamfest-guest-image {
  aspect-ratio: 3 / 4;
  background: #e8e4de;
  overflow: hidden;
  margin-bottom: 16px;
}

.streamfest-guest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.streamfest-guest-card:hover .streamfest-guest-image img {
  transform: scale(1.05);
}

.streamfest-guest-card h5 {
  margin: 0 0 4px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.streamfest-guest-role {
  font-size: 14px;
  color: #4a4a4a;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.streamfest-guest-see-at {
  font-size: 13px;
  color: #5a5a5a;
  margin: 6px 0 0;
  font-style: italic;
}
.streamfest-guest-day {
  font-size: 12px;
  color: #5a5a5a;
  margin: 4px 0 0;
}

.streamfest-guest-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.streamfest-guest-social a {
  color: #088789;
  transition: color 0.2s ease;
}

.streamfest-guest-social a:hover {
  color: #066a6b;
}

@media (max-width: 1024px) {
  .streamfest-guests-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .streamfest-guests-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 320px;
  }
}

/* ==========================================================================
   Lodging & Travel
   ========================================================================== */

.streamfest-lodging-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.streamfest-lodging-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

.streamfest-lodging-card {
  border: 1px solid #d3d3d3;
  padding: 32px 32px 24px;
  display: flex;
  flex-direction: column;
}

.streamfest-lodging-card .streamfest-btn {
  margin-top: 24px;
  display: block;
  width: 100%;
  text-align: center;
}

.streamfest-lodging-card--featured .streamfest-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 24px;
  background: var(--streamfest-accent);
  border-color: var(--streamfest-accent);
  color: #000;
  font-weight: 600;
}

.streamfest-lodging-card--featured {
  border: 2px solid #000;
  background: #fafafa;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.streamfest-lodging-featured {
  max-width: 900px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.streamfest-lodging-featured__image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.streamfest-lodging-featured__text h3 {
  margin: 0 0 4px;
}

.streamfest-lodging-featured__text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 12px 0 0;
}

.streamfest-lodging-featured__text .streamfest-btn {
  margin-top: 24px;
}

.streamfest-lodging-card__image {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 3/2;
  margin-bottom: 16px;
}

.streamfest-lodging-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--streamfest-accent);
  margin: 4px 0 0;
}

.streamfest-lodging-card h5 {
  margin: 0;
  font-size: 16px;
}

.streamfest-lodging-tag {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--streamfest-accent);
  margin: 4px 0 0;
}

.streamfest-lodging-card p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.7;
  margin: 12px 0 0;
}

.streamfest-lodging-address {
  font-size: 13px;
  color: #737373;
}

.streamfest-lodging-card a {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
}

.streamfest-travel-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.streamfest-travel-grid h3 {
  margin: 0 0 16px;
}

.streamfest-travel-grid p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.7;
}

.streamfest-booking-tip {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.streamfest-booking-tip__content {
  text-align: center;
  padding: 48px 24px;
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.streamfest-booking-tip__heading {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.streamfest-booking-tip__text {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

@media (max-width: 1024px) {
  .streamfest-lodging-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .streamfest-lodging-grid,
  .streamfest-lodging-grid--sponsors,
  .streamfest-lodging-grid--4col {
    grid-template-columns: 1fr;
  }
  .streamfest-lodging-featured {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .streamfest-travel-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   Films
   ========================================================================== */

.streamfest-lineup-fullscreen {
  background: #000;
  padding: 80px 0 0;
}
.streamfest-lineup-header {
  padding: 40px 24px 24px;
  text-align: center;
}
.streamfest-lineup-title {
  color: #fff;
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.streamfest-lineup-fullscreen .streamfest-movies-filter {
  margin-bottom: 0;
}

.streamfest-lineup-cta {
  background: #000;
  text-align: center;
  padding: 80px 24px;
}

.streamfest-lineup-cta .display-heading {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}

.streamfest-lineup-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 32px;
}

.streamfest-lineup-cta .streamfest-btn {
  background: var(--streamfest-accent);
  border-color: var(--streamfest-accent);
  color: #000;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 48px;
  letter-spacing: 0.05em;
}
.streamfest-films-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.streamfest-films-grid--full {
  max-width: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0;
}

.streamfest-films-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
  background: #1a1a1a;
  text-decoration: none;
}

.streamfest-films-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
  pointer-events: none;
}

.streamfest-films-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.streamfest-films-card:hover img {
  transform: scale(1.05);
}

.streamfest-films-card__title {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  z-index: 2;
}

.streamfest-films-card__meta {
  display: block;
  font-size: 11px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.8;
  margin-top: 2px;
}

.streamfest-films-card__play {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.streamfest-films-card__play svg {
  width: 14px;
  height: 14px;
  margin-left: 2px;
  fill: #fff;
}

/* Text-only event card (same dimensions as film poster card) */
.streamfest-films-card--placeholder {
  background: #111;
}

.streamfest-films-card--placeholder img {
  object-fit: contain;
  padding: 25%;
}

.streamfest-films-card--text {
  background: #111;
  border: 1px solid #222;
}

.streamfest-films-card--text::after {
  display: none;
}

.streamfest-films-card--text:hover {
  background: #1a1a1a;
}

.streamfest-films-card__text-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  z-index: 2;
  color: #fff;
}

.streamfest-films-card__tag {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--streamfest-accent);
  margin-bottom: 6px;
}

.streamfest-films-card__text-title {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.streamfest-films-card__text-subtitle {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  margin-top: 4px;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .streamfest-films-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .streamfest-films-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .streamfest-films-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Film Single Page (Coppola-style)
   ========================================================================== */

.streamfest-film-single {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.streamfest-film-single__image {
  aspect-ratio: 16 / 9;
  background: #e8e4de;
  overflow: hidden;
}

.streamfest-film-single__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streamfest-film-single__trailer-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.streamfest-film-single__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.streamfest-film-single__trailer-link:hover .streamfest-film-single__play {
  background: rgba(0, 0, 0, 0.7);
}

.streamfest-film-single__play svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
  fill: #fff;
}

.streamfest-film-single__category {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.streamfest-film-single__category span {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--streamfest-accent);
}

.streamfest-film-single__category span + span::before {
  content: " / ";
  color: #737373;
  margin-right: 8px;
}

.streamfest-film-single__title {
  font-size: 32px;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.streamfest-film-single__synopsis {
  margin-top: 20px;
}

.streamfest-film-single__synopsis p {
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.7;
  margin: 0;
}

.streamfest-film-single__info {
  margin-top: 28px;
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}

.streamfest-film-single__info-row {
  display: flex;
  gap: 12px;
  padding: 8px 0;
}

.streamfest-film-single__label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 90px;
}

.streamfest-film-single__value {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.5;
}

.streamfest-film-single__description {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #ededed;
}

.streamfest-film-single__description p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.streamfest-film-single__director-bio {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #ededed;
}

.streamfest-film-single__director-bio p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-top: 8px;
}

/* Related Films Grid */
.streamfest-film-related {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.streamfest-film-related__item {
  text-decoration: none;
  color: inherit;
}

.streamfest-film-related__image {
  aspect-ratio: 2 / 3;
  background: #333;
  overflow: hidden;
}

.streamfest-film-related__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.streamfest-film-related__item:hover .streamfest-film-related__image img {
  transform: scale(1.05);
}

.streamfest-film-related__title {
  margin: 12px 0 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Film Nav */
.streamfest-film-nav {
  text-align: center;
  padding: 32px 70px 64px;
}

@media (max-width: 1024px) {
  .streamfest-film-related {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .streamfest-film-single {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .streamfest-film-single__title {
    font-size: 24px;
  }

  .streamfest-film-related {
    grid-template-columns: repeat(2, 1fr);
  }

  .streamfest-film-nav {
    padding: 32px 24px 48px;
  }
}

/* Support Our Mission grids */
.streamfest-programs-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.streamfest-why-give-grid {
  max-width: 1100px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

@media (max-width: 768px) {
  .streamfest-programs-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .streamfest-why-give-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================================================
   Responsive section padding
   ========================================================================== */

@media (max-width: 768px) {
  .streamfest-section {
    padding: 48px 24px;
  }
}

/* ==========================================================================
   VHS Alumni Schedule
   ========================================================================== */

.streamfest-vhs-schedule {
  margin-top: 32px;
}

.streamfest-vhs-event {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.streamfest-section:not(.streamfest-section--dark) .streamfest-vhs-event {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.streamfest-vhs-event:last-child {
  border-bottom: none;
}

.streamfest-vhs-event h5 {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.streamfest-vhs-event__meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #737373;
  margin: 0 0 12px;
}

.streamfest-vhs-event p:last-child {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #6b6b6b;
}

.streamfest-section--dark .streamfest-vhs-event h5 {
  color: #fff;
}

.streamfest-section--dark .streamfest-vhs-event p:last-child {
  color: #b0b0b0;
}

/* ==========================================================================
   VHS Media Grid
   ========================================================================== */

.streamfest-vhs-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.streamfest-vhs-media-grid__item {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.streamfest-vhs-media-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.streamfest-vhs-media-grid__video-placeholder {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
}

.streamfest-vhs-media-grid__video-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.streamfest-vhs-media-grid__video-placeholder:hover svg {
  opacity: 1;
}

.streamfest-vhs-media-grid__video-placeholder span {
  color: #737373;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .streamfest-vhs-media-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.streamfest-testimonial {
  margin: 0 0 32px;
  padding: 0 0 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  quotes: none;
}

.streamfest-testimonial::before,
.streamfest-testimonial::after {
  content: none;
}

.streamfest-testimonial:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.streamfest-testimonial p {
  font-size: 17px;
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 12px;
}

.streamfest-testimonial footer {
  font-style: normal;
}

.streamfest-testimonial footer strong {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.streamfest-testimonial footer span {
  font-size: 13px;
  color: #737373;
}

/* ==========================================================================
   Donation Widget (support-our-mission)
   ========================================================================== */

.streamfest-donation {
  max-width: 500px;
  margin: 0 auto;
}

.streamfest-donation__amounts {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.streamfest-donation__amount {
  padding: 10px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.streamfest-donation__amount:hover {
  border-color: var(--streamfest-accent);
  color: var(--streamfest-accent);
}

.streamfest-donation__amount--active {
  background: var(--streamfest-accent);
  border-color: var(--streamfest-accent);
  color: #000;
}

/* ==========================================================================
   Founders (support-our-mission)
   ========================================================================== */

.streamfest-founders {
  max-width: 900px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.streamfest-founders__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.streamfest-founders__row--reverse {
  direction: rtl;
}

.streamfest-founders__row--reverse > * {
  direction: ltr;
}

.streamfest-founders__photo img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.streamfest-founders .streamfest-testimonial {
  border-bottom: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 640px) {
  .streamfest-founders__row {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .streamfest-founders__row--reverse {
    direction: ltr;
  }

  .streamfest-founders__photo img {
    width: 200px;
    height: 200px;
  }
}

/* ==========================================================================
   Honorees (homepage)
   ========================================================================== */

.streamfest-honorees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.streamfest-honoree {
  text-align: center;
}

.streamfest-honoree__image {
  overflow: hidden;
  border-radius: 8px;
}

.streamfest-honoree__image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.streamfest-honoree__name {
  margin: 16px 0 4px;
  font-size: 22px;
}

.streamfest-honoree__award {
  font-size: 14px;
  font-weight: 600;
  color: var(--streamfest-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

@media (max-width: 600px) {
  .streamfest-honorees {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   Partners gallery
   ========================================================================== */

.streamfest-partners-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}

.streamfest-partners-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .streamfest-partners-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .streamfest-partners-gallery {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Press page
   ========================================================================== */

.streamfest-press-hero {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 32px;
}

.streamfest-press-pr {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 16px;
}

.streamfest-press-pr__logo {
  width: 120px;
  flex-shrink: 0;
}

.streamfest-press-pr p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.streamfest-press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.streamfest-press-card {
  display: block;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.streamfest-press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.streamfest-press-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eee;
}

.streamfest-press-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streamfest-press-card__body {
  padding: 16px;
}

.streamfest-press-card__source {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--streamfest-accent);
}

.streamfest-press-card__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  margin: 6px 0 8px;
  color: #111;
}

.streamfest-press-card__date {
  font-size: 12px;
  color: #737373;
}

@media (max-width: 1024px) {
  .streamfest-press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .streamfest-press-grid {
    grid-template-columns: 1fr;
  }

  .streamfest-press-pr {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Yearbook
   ========================================================================== */

.streamfest-yearbook-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.streamfest-yearbook-card {
  text-align: center;
}

.streamfest-yearbook-image {
  aspect-ratio: 3 / 4;
  background: #e8e4de;
  overflow: hidden;
}

.streamfest-yearbook-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.streamfest-yearbook-card:hover .streamfest-yearbook-image img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .streamfest-yearbook-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 20px;
  }
}

@media (max-width: 600px) {
  .streamfest-yearbook-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}
