@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist/webfonts/Geist[wght].woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #000000;
  --color-text: #E6E5DF;
  --color-accent: #E6E5DF;
  --font-main: 'Geist', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


/* ==========================================
   CONTAINER
   ========================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   SECTIONS
   ========================================== */

.page-main {
  flex: 1;
  border-top: 0px solid rgba(255, 255, 255, 0.07);
}

.section {
  min-height: 900px;
  display: flex;
  align-items: center;
  border-bottom: 0px solid rgba(230, 229, 223, 0.07);
}

.section__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
}

.section__label {
  flex-shrink: 0;
  width: 120px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(230, 229, 223, 0.3);
  padding-top: 10px;
}

.section__content {
  flex: 1;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section__heading {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.section__body {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(230, 229, 223, 0.55);
  max-width: 520px;
}

.section__link {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.15s;
  width: fit-content;
}

.section__link:hover { opacity: 0.6; }

/* Join form */
.join-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  border: 1px solid rgba(230, 229, 223, 0.18);
  border-radius: 0;
  overflow: hidden;
}

.join-form__input {
  flex: 1;
  background: none;
  border: none;
  padding: 14px 18px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  color: var(--color-text);
  outline: none;
}

.join-form__input::placeholder { color: rgba(230, 229, 223, 0.3); }

.join-form__btn {
  background: var(--color-text);
  color: var(--color-bg);
  border: none;
  padding: 14px 20px;
  font-family: var(--font-main);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.join-form__btn:hover { opacity: 0.85; }

/* ==========================================
   HERO SLIDER
   ========================================== */

.section--hero {
  min-height: 100vh;
  padding: 0;
  align-items: stretch;
  border-bottom: 0px solid rgba(230, 229, 223, 0.07);
}

.hero-slider {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background: var(--slide-bg, var(--color-bg));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  text-align: left;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Full-bleed background image */
.slide__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gradient overlay so text stays readable over images */
.slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.slide__layout {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 80px;
  padding-bottom: 120px;
  text-align: left;
}

.slide__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  text-align: left;
}

.slide__bottom .slider__dots {
  margin-bottom: 8px;
}

.slide__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.slide__title {
  font-size: clamp(17rem, 16vw, 17rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-align: left;
}

.slide__director {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: rgba(230, 229, 223, 0.55);
  text-align: left;
}

.slide__meta {
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 400;
  color: rgba(230, 229, 223, 0.35);
  letter-spacing: 0.02em;
  text-align: left;
}

.slide__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 8px 16px;            /* same as header .btn */
  border-radius: 0;
  font-size: 0.86rem;
  font-weight: 600;
  background: #111;             /* same as header .btn--dark */
  color: #E6E5DF;
  border: 0.75px solid #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}

.slide__cta:hover {
  background: #333;
  border-color: #ffffff;
}

/* Slider controls */
.slider__controls {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
}

.slider__controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider__counter {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(230, 229, 223, 0.35);
  min-width: 48px;
}

.slider__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider__dot {
  width: 6px;
  height: 6px;
  border-radius: 0;
  border: none;
  background: rgba(230, 229, 223, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.slider__dot.is-active {
  background: var(--color-text);
  transform: scale(1.35);
}

.slider__arrows {
  display: flex;
  gap: 8px;
}

.slider__next {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
  position: relative;
  top: 40px;               /* nudge the arrow down */
}

/* 320px → 6rem, 960px → 8rem */
.slider__next img {
  height: clamp(6rem, calc(0.3125vw + 5rem), 8rem);
  width: auto;
  display: block;
}

/* 960px → 8rem, 1600px → 15rem */
@media (min-width: 960px) {
  .slider__next img {
    height: clamp(8rem, calc(1.09375vw - 2.5rem), 15rem);
  }
}

.slider__next:hover {
  opacity: 1;
}

/* Mobile: lift the hero slider content up by 42px */
@media (max-width: 768px) {
  .slide__layout {
    padding-bottom: 162px;   /* 120px + 42px */
  }

  /* Bias the fullscreen crop upward so more of the image's subject is
     visible — the lower portion sits under the gradient + text anyway. */
  .slide__img {
    object-position: center 20%;
  }
}

/* Hero (legacy — keep for reference) */
.hero {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100vh;
  padding: 0 clamp(24px, 5vw, 80px) clamp(48px, 8vh, 96px);
}

.hero__tagline {
  font-family: var(--font-main);
  font-size: clamp(2.8rem, 7.5vw, 8rem);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
  background: #050505;
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0;
}

.footer__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-end;       /* copyright bottom-aligns with subscribe button */
  justify-content: space-between;
  gap: 24px;
}

.footer__right {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}

.footer__subscribe {
  display: flex;
  align-items: stretch;
  gap: 0;
  height: 42px;
  border: none;
  border-radius: 0;
  overflow: hidden;
}

.footer__email {
  background: #E6E5DF;
  border: none;
  padding: 0 24px;
  font-family: var(--font-main);
  font-size: 1rem;
  color: #1a1a1a;
  outline: none;
  width: 260px;
}

.footer__email::placeholder {
  color: rgba(26, 26, 26, 0.4);
}

.footer__subscribe-btn {
  background: #2b2b2b;
  border: none;
  padding: 0 24px;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: #E6E5DF;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.footer__subscribe-btn:hover {
  background: #3a3a3a;
}

.footer__subscribe-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-page {
  padding-top: 64px;
  flex: 1;                 /* grow to fill, keeping the footer at the bottom */
  display: flex;
  align-items: center;
}

.contact-page__inner {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-page__title {
  font-family: var(--font-main);   /* same as .slide__title */
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--color-text);
  margin-bottom: 40px;
}

.about-text {
  font-family: var(--font-main);
  font-size: 1rem;            /* 16px */
  line-height: 1.7;
  color: rgba(230, 229, 223, 0.8);
  max-width: 560px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
}

.contact-form__input {
  background: none;
  border: 1px solid rgba(230, 229, 223, 0.18);
  border-radius: 0;
  padding: 14px 16px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.15s;
}

.contact-form__input:focus {
  border-color: rgba(230, 229, 223, 0.5);
}

.contact-form__input::placeholder {
  color: rgba(230, 229, 223, 0.3);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(230, 229, 223, 0.65);
  cursor: pointer;
  user-select: none;
  margin: 4px 0;
}

.contact-form__captcha input {
  width: 18px;
  height: 18px;
  accent-color: #E6E5DF;
  cursor: pointer;
}

.contact-form__btn.btn--dark {
  align-self: flex-start;
  margin-top: 8px;
  margin-left: 0;            /* align with the inputs (remove .btn's 4px) */
  background: #E6E5DF;
  color: #111;
  border-color: #E6E5DF;
}

.contact-form__btn.btn--dark:hover {
  background: #111;          /* prominent invert on hover */
  color: #E6E5DF;
  border-color: #111;
}

.contact-form__status {
  font-size: 0.85rem;
  color: rgba(230, 229, 223, 0.55);
  min-height: 1.2em;
  margin-top: 4px;
}

.footer__copy {
  font-family: var(--font-main);
  font-size: 0.625rem;
  color: #565454;
  font-weight: 400;
  letter-spacing: 0.02em;
}

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

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(230, 229, 223, 0.4);
  text-decoration: none;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.15s, border-color 0.15s;
}

.footer__social-link:hover {
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.22);
}

/* Sections */
.section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0rem;
  text-align: center;
  gap: 0rem;
  border-top: 0px solid rgba(255, 255, 255, 0.06);
}

.section h2 {
  font-size: clamp(3em, 5vw, 8em);
  font-weight: 600;
  color: var(--color-accent);
}

/* ==========================================
   INTRO OVERLAY
   ========================================== */

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.intro.is-leaving {
  transform: translateY(-100%);
  transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1);
}

.intro__logo-wrap {
  width: min(680px, 82vw);
  overflow: visible;
}

.intro__logo {
  display: block;
  overflow: visible;
}

.intro__logo path {
  fill: #E6E5DF;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

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

/* ==========================================
   NAVBAR
   ========================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  background: #E6E5DF;
  border-bottom: 0px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-main);
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar--hidden {
  transform: translateY(-100%);
}

.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 32px;
  text-decoration: none;
}

.navbar__logo-svg {
  width: 120px;
  height: auto;
  display: block;
  overflow: visible;        /* avoid sub-pixel clipping of the logo's bottom edge */
}

/* Nav links list */
.navbar__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.navbar__item {
  position: relative;
}

.navbar__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.15s;
  font-family: inherit;
  white-space: nowrap;
  line-height: 1;
}

.navbar__link:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Chevron arrow */
.chevron {
  transition: transform 0.2s ease;
  opacity: 0.5;
  flex-shrink: 0;
}

.navbar__item.is-open .chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* ---- Dropdown ---- */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 275%;
  transform: translateX(-50%) translateY(-8px);
  width: 580px;
  background: #E6E5DF;
  border-radius: 14px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 16px 48px rgba(0,0,0,0.12);
  border: 1px solid rgba(0, 0, 0, 0.07);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.navbar__item.is-open .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown__inner {
  display: flex;
  padding: 20px;
  gap: 0;
}

/* Columns */
.dropdown__col {
  display: flex;
  flex-direction: column;
}

.dropdown__col--left {
  flex: 0 0 300px;
  padding-right: 16px;
}

.dropdown__col--right {
  flex: 1;
  padding-left: 20px;
}

.dropdown__divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.07);
  flex-shrink: 0;
  align-self: stretch;
}

.dropdown__label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-left: 10px;
}

.dropdown__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Left column: icon items */
.dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 0;
  text-decoration: none;
  color: inherit;
  transition: background 0.14s;
}

.dropdown__item:hover {
  background: rgba(0, 0, 0, 0.04);
}

.dropdown__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  border-radius: 8px;
}

.dropdown__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown__text strong {
  font-size: 0.86rem;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
}

.dropdown__text span {
  font-size: 0.76rem;
  color: #888;
  line-height: 1.4;
}

/* Right column: plain links */
.dropdown__cap {
  display: block;
  padding: 8px 10px;
  font-size: 0.88rem;
  color: #222;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.14s;
  font-weight: 400;
}

.dropdown__cap:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* Social dropdown: small, right-aligned */
.dropdown--social {
  width: 170px;
  left: auto;
  right: 0;
  transform: translateY(-8px);
}

.navbar__item.is-open .dropdown--social {
  transform: translateY(0);
}

.dropdown__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---- Right action area ---- */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Navbar social icons (no dropdown) */
.navbar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #171715;
  text-decoration: none;
  transition: opacity 0.15s;
}

.navbar__social:hover { opacity: 0.55; }

/* Language switcher — single toggle showing the language to switch to */
.navbar__lang-btn {
  background: none;
  border: none;
  margin-left: 2px;
  padding: 4px 6px;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #171715;
  cursor: pointer;
  transition: opacity 0.15s;
}

.navbar__lang-btn:hover { opacity: 0.55; }

/* Visually-hidden (accessible to search engines + screen readers) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Mobile menu (hamburger) ---- */
.navbar__collapse {
  display: contents;            /* desktop: transparent wrapper */
}

.navbar__toggle {
  display: none;                /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.navbar__toggle span {
  display: block;
  width: 30px;
  height: 2px;
  background: #171715;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* hamburger -> X when open */
.navbar.is-open .navbar__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar.is-open .navbar__toggle span:nth-child(2) {
  opacity: 0;
}
.navbar.is-open .navbar__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .navbar__toggle { display: flex; }

  /* Logo + burger sit 1rem (16px) from the screen edges (calendar text aligns to this) */
  .navbar__inner { padding: 0 1rem; }

  /* The collapsible panel */
  .navbar__collapse {
    display: none;              /* closed by default on mobile */
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #E6E5DF;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 12px 24px 24px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }

  .navbar.is-open .navbar__collapse { display: flex; }

  /* Links stack full width */
  .navbar__links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    flex: none;
  }

  .navbar__link {
    width: 100%;
    padding: 14px 4px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  /* Actions stack below links */
  .navbar__actions {
    flex-direction: row;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-top: 14px;
    gap: 12px;
  }

  .navbar__actions .btn--dark {
    margin-left: auto;
  }

  /* Inline subscribe form stays hidden; a "Subscribe" nav link opens the popup. */
  .footer__subscribe { display: none; }
}

/* Mobile menu subscribe form */
.navbar__subscribe {
  display: none;               /* hidden on desktop */
  width: 100%;
  margin-top: 16px;
  height: 68px;
  border: none;
}

.navbar__email {
  flex: 1;
  min-width: 0;
  background: #d8d7d1;
  border: none;
  padding: 0 16px;
  font-family: var(--font-main);
  font-size: 0.92rem;
  color: #1a1a1a;
  outline: none;
}

.navbar__email::placeholder { color: rgba(26, 26, 26, 0.4); }

.navbar__subscribe-btn {
  background: #2b2b2b;
  border: none;
  padding: 0 22px;
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 600;
  color: #E6E5DF;
  cursor: pointer;
  white-space: nowrap;
}

.navbar__subscribe-btn:disabled { opacity: 0.5; cursor: default; }

/* ==========================================
   BUY TICKETS MODAL
   ========================================== */

.tickets-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.800);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.tickets-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.tickets-modal__panel {
  background: #E6E5DF;
  width: min(760px, 100%);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  padding: 28px;
  transform: translateY(12px);
  transition: transform 0.2s ease;
}

.tickets-modal.is-open .tickets-modal__panel {
  transform: translateY(0);
}

.tickets-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.tickets-modal__title {
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.tickets-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.tickets-modal__close:hover { opacity: 0.55; }

/* Scroll area + custom always-visible scrollbar */
.tickets-modal__scrollwrap {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
}

.tickets-modal__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: scroll;
  max-height: min(46vh, 360px);  /* cap height so the list scrolls */
  padding-right: 22px;           /* leave room for the custom bar */
  scrollbar-width: none;         /* hide native (Firefox) */
}

.tickets-modal__list::-webkit-scrollbar {  /* hide native (WebKit) */
  width: 0;
  height: 0;
}

/* Custom track — always painted, so users always see it's scrollable */
.tickets-scrollbar {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  background: rgba(26, 26, 26, 0.12);
}

.tickets-scrollbar__thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30%;
  background: #1a1a1a;
  cursor: grab;
}

.tickets-scrollbar__thumb:active {
  cursor: grabbing;
}

.tickets-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 100%;
  cursor: pointer;
  font-family: var(--font-main);
  text-align: left;
  transition: background 0.15s;
}

.tickets-row:hover { background: #111; }

.tickets-row:hover .tickets-row__date,
.tickets-row:hover .tickets-row__title {
  color: #E6E5DF;
}

.tickets-row__date {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
}

.tickets-row__title {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #1a1a1a;
  text-align: left;
}

.tickets-modal__empty {
  padding: 40px 8px;
  color: rgba(26, 26, 26, 0.5);
  font-family: var(--font-main);
}

.navbar__action {
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 400;
  color: #222;
  text-decoration: none;
  border-radius: 0;
  white-space: nowrap;
  transition: background 0.15s;
}

.navbar__action:hover {
  background: rgba(0, 0, 0, 0.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 0;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  font-family: inherit;
  margin-left: 4px;
}

.btn--dark {
  background: #111;
  color: #E6E5DF;
  border-color: #111;
}

.btn--dark:hover {
  background: #333;
  border-color: #333;
}

.btn--outline {
  background: transparent;
  color: #111;
  border-color: #ccc;
}

.btn--outline:hover {
  border-color: #888;
}

/* ==========================================
   END NAVBAR
   ========================================== */

/* Scroll-reveal: elements start hidden, JS adds .visible */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ==========================================
   SCROLL-TO-TOP BUTTON (mobile only)
   ========================================== */
.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  width: 44px;
  height: 44px;
  display: none;                 /* hidden on desktop */
  align-items: center;
  justify-content: center;
  background: #171715;
  color: #E6E5DF;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;                    /* revealed once scrolled */
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:active { opacity: 0.7; }

@media (max-width: 768px) {
  .scroll-top { display: inline-flex; }
}

/* ==========================================
   SUBSCRIBE POPUP (mobile only)
   ========================================== */
/* The injected "Subscribe" nav link shows only in the mobile menu. */
@media (min-width: 769px) {
  .navbar__item--sub { display: none; }
}

.sub-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;                  /* never shown on desktop */
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.55); /* darkened backdrop */
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sub-modal.is-open { opacity: 1; }

@media (max-width: 768px) {
  .sub-modal.is-open { display: flex; }
}

.sub-modal__panel {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: #E6E5DF;
  padding: 30px 24px 26px;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

.sub-modal.is-open .sub-modal__panel { transform: translateY(0); }

.sub-modal__close {
  position: absolute;             /* 8px above the panel, aligned to its right edge */
  bottom: 100%;
  right: 0;
  margin-bottom: 8px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #E6E5DF;                 /* light × on the dark backdrop above the panel */
  cursor: pointer;
}

.sub-modal__title {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 700;
  color: #171715;
  margin-bottom: 6px;
}

.sub-modal__text {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: rgba(23, 23, 21, 0.65);
  margin-bottom: 18px;
}

.sub-modal__form { display: flex; flex-direction: column; gap: 10px; }

.sub-modal__input {
  height: 48px;
  background: #d8d7d1;
  border: none;
  padding: 0 16px;
  font-family: var(--font-main);
  font-size: 1rem;
  color: #1a1a1a;
  outline: none;
}

.sub-modal__input::placeholder { color: rgba(26, 26, 26, 0.4); }

.sub-modal__btn {
  height: 48px;
  justify-content: center;
  margin-left: 0;
  font-size: 0.95rem;
}

/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */
.cc-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1500;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 16px 20px;
  background: #171715;
  color: #E6E5DF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  font-family: var(--font-main);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.cc-banner__text {
  flex: 1;
  min-width: 200px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cc-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cc-banner__btn {
  padding: 9px 18px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid #E6E5DF;
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s;
}

.cc-banner__btn--accept { background: #E6E5DF; color: #171715; }
.cc-banner__btn--accept:hover { opacity: 0.85; }
.cc-banner__btn--decline { background: transparent; color: #E6E5DF; }
.cc-banner__btn--decline:hover { background: rgba(230, 229, 223, 0.12); }
