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

    :root {
      --gold: #c8943e;
      --gold-light: #e2b44a;
      --gold-glow: rgba(226, 180, 74, 0.4);
      --cream: #fff8ee;
      --text-dark: #3a2210;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ── Background ── */
    .page-bg {
      position: fixed;
      inset: 0;
      z-index: -1;
      background:
        url('img/bg.jpg') center/cover no-repeat fixed;
    }

    .page-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.65) 100%
      );
    }

    /* ── Layout ── */
    .wrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 1.5rem;
    }

    /* ── Title ── */
    .title {
      margin-top: clamp(3rem, 10vh, 7rem);
      text-align: center;
    }

    .title h1 {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: clamp(2.4rem, 7vw, 4.5rem);
      color: #fff;
      text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0,0,0,0.5);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      line-height: 1.1;
    }

    /* ── Trailer ── */
    .trailer {
      margin-top: clamp(2rem, 5vh, 4rem);
      width: 100%;
      max-width: 720px;
    }

    .video-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      border-radius: 10px;
      overflow: hidden;
      box-shadow:
        0 8px 40px rgba(80, 40, 0, 0.35),
        0 0 0 1px rgba(255,255,255,0.15);
    }

    .video-wrapper iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* ── Kino Line ── */
    .kino-line {
      margin-top: clamp(2rem, 4vh, 3.5rem);
      text-align: center;
    }

    .kino-line h2 {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: clamp(1.4rem, 4vw, 2.2rem);
      color: #fff;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0,0,0,0.5);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* ── Shared Button ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.6rem 1.8rem;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      border: none;
      border-radius: 50px;
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      cursor: pointer;
      text-decoration: none;
      text-shadow: 0 1px 3px rgba(100, 50, 0, 0.4);
      box-shadow: 0 3px 12px rgba(180, 120, 30, 0.35);
      transition: all 0.25s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(180, 120, 30, 0.5);
      background: linear-gradient(135deg, #ecc45a, #d4a040);
    }

    .btn-sm {
      padding: 0.4rem 1.2rem;
      font-size: 0.8rem;
    }

    /* ── Nav Buttons ── */
    .nav-buttons {
      margin-top: clamp(1.5rem, 3vh, 2.5rem);
      display: flex;
      justify-content: center;
      gap: 0.9rem;
      flex-wrap: wrap;
    }

    /* ── About Section ── */
    .about {
      margin-top: clamp(3rem, 6vh, 5rem);
      max-width: 640px;
      text-align: center;
    }

    .about p {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.85;
      color: rgba(255,255,255,0.92);
      text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    }

    /* ── Dates ── */
    .dates {
      margin-top: clamp(2.5rem, 5vh, 4rem);
      width: 100%;
      max-width: 640px;
    }

    .dates h3 {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 1.5rem;
      color: #fff;
      text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
      text-align: center;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .dates-list {
      list-style: none;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 12px;
      padding: 0.5rem 1.5rem;
    }

    .dates-list li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .dates-list li:last-child { border-bottom: none; }

    .date-info {
      display: flex;
      align-items: baseline;
      gap: 0.6rem;
      flex-wrap: wrap;
    }

    .date-day {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 1.05rem;
      color: #fff;
      min-width: 5rem;
      text-shadow: 0 1px 4px rgba(0,0,0,0.2);
    }

    .date-venue {
      font-weight: 300;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.8);
    }

    .date-link {
      flex-shrink: 0;
    }

    /* ── Subpages ── */
    .subpage {
      display: none;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      padding: 2rem 0 4rem;
    }

    .subpage.active { display: block; }

    .subpage-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2rem;
    }

    .subpage-header h2 {
      font-family: 'Oswald', sans-serif;
      font-weight: 600;
      font-size: 2rem;
      color: #fff;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-shadow: 0 2px 10px rgba(80, 40, 0, 0.4);
    }


    /* ── Carousel ── */
    .carousel {
      position: relative;
      width: 100%;
    }

    .carousel-main {
      position: relative;
      width: 100%;
      aspect-ratio: 3/2;
      border-radius: 10px;
      overflow: hidden;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      background: rgba(0,0,0,0.25);
      box-shadow: 0 8px 40px rgba(80, 40, 0, 0.3);
    }

    .carousel-main img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .carousel-main img.active {
      opacity: 1;
    }

    .carousel-main .placeholder-slide {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.4);
      font-size: 1rem;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .carousel-main .placeholder-slide.active {
      opacity: 1;
    }

    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 44px;
      height: 44px;
      border: none;
      border-radius: 50%;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      background: rgba(0,0,0,0.35);
      color: #fff;
      font-size: 1.3rem;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .carousel-arrow:hover {
      background: rgba(0,0,0,0.55);
    }

    .carousel-arrow.prev { left: 0.75rem; }
    .carousel-arrow.next { right: 0.75rem; }

    .carousel-counter {
      position: absolute;
      bottom: 0.75rem;
      right: 0.75rem;
      z-index: 2;
      padding: 0.25rem 0.7rem;
      border-radius: 50px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      background: rgba(0,0,0,0.4);
      color: rgba(255,255,255,0.8);
      font-size: 0.75rem;
      font-weight: 500;
    }

    .carousel-thumbs {
      display: flex;
      gap: 0.5rem;
      margin-top: 0.75rem;
      overflow-x: auto;
      padding-bottom: 0.5rem;
      scrollbar-width: thin;
      scrollbar-color: rgba(255,255,255,0.2) transparent;
    }

    .carousel-thumbs::-webkit-scrollbar {
      height: 4px;
    }

    .carousel-thumbs::-webkit-scrollbar-track {
      background: transparent;
    }

    .carousel-thumbs::-webkit-scrollbar-thumb {
      background: rgba(255,255,255,0.2);
      border-radius: 2px;
    }

    .carousel-thumb {
      flex-shrink: 0;
      width: 90px;
      height: 60px;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      opacity: 0.5;
      transition: all 0.25s ease;
    }

    .carousel-thumb:hover {
      opacity: 0.8;
    }

    .carousel-thumb.active {
      opacity: 1;
      border-color: var(--gold-light);
    }

    .carousel-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .carousel-thumb .thumb-placeholder {
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.4);
      font-size: 0.6rem;
    }

    .clips-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
      gap: 1.5rem;
    }

    .clips-grid .video-wrapper {
      box-shadow: 0 4px 20px rgba(80, 40, 0, 0.25);
    }

    .presse-content {
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 12px;
      padding: 2rem;
    }

    .presse-content p {
      color: rgba(255,255,255,0.85);
      font-weight: 300;
      margin-bottom: 1rem;
      line-height: 1.8;
    }

    .presse-content a {
      color: var(--gold-light);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .presse-content a:hover { color: #fff; }

    .presse-content a.btn {
      color: #fff;
      text-decoration: none;
    }

    .download-btn {
      margin-top: 1rem;
    }

    .presskit-form {
      margin-top: 1rem;
    }

    .presskit-field {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
    }

    .presskit-field .download-btn {
      margin-top: 0;
    }

    .presskit-field input {
      padding: 0.6rem 1rem;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.25);
      background: rgba(0,0,0,0.2);
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      min-width: 180px;
    }

    .presskit-field input::placeholder {
      color: rgba(255,255,255,0.5);
    }

    .presskit-field input:focus {
      outline: none;
      border-color: var(--gold-light);
      box-shadow: 0 0 0 2px rgba(226, 180, 74, 0.2);
    }

    .presskit-error {
      margin-top: 0.75rem;
      color: #e88;
      font-size: 0.9rem;
      min-height: 1.4em;
    }

    .presskit-download-wrap {
      margin-top: 1rem;
    }

    /* Story section */
    .story-content {
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 12px;
      padding: 2rem;
    }

    .story-content p {
      color: rgba(255,255,255,0.88);
      font-weight: 300;
      line-height: 1.9;
      margin-bottom: 1.2rem;
    }

    .story-content p:last-child { margin-bottom: 0; }

    /* ── Footer ── */
    footer {
      margin-top: auto;
      width: 100%;
      text-align: center;
      padding: 2rem;
      color: rgba(255,255,255,0.45);
      font-size: 0.75rem;
    }

    footer a {
      color: rgba(255,255,255,0.45);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    footer a:hover { color: rgba(255,255,255,0.8); }

    /* ── Responsive ── */
    @media (max-width: 600px) {
      .nav-buttons { gap: 0.6rem; }
      .nav-buttons .btn { padding: 0.55rem 1.3rem; font-size: 0.88rem; }

      .dates-list { padding: 0.5rem 1rem; }

      .dates-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }

      .clips-grid {
        grid-template-columns: 1fr;
      }

      .subpage-header {
        flex-direction: row;
        align-items: center;
      }
    }