/* ============================================================
   DESIGN TOKENS - LG Premium
============================================================ */
:root {
  --white:        #FFFFFF;
  --off-white:    #F4F4F4;
  --light-gray:   #E8E8E8;
  --mid-gray:     #9A9A9A;
  --dark-gray:    #3A3A3A;
  --ink:          #191919;
  --ink-near:     #202020;
  --panel:        #1C1C20;

  --red:          #8E1A4A;
  --red-dark:     #6E1239;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;

  --max-w:        1120px;
  --max-w-narrow: 720px;

  --section-pad:  5.5rem 1.5rem;
  --radius:       2px;
  --radius-lg:    4px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

/* ============================================================
   UTILITIES
============================================================ */
.container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container--narrow {
  max-width: var(--max-w-narrow);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  padding: 0.875rem 2rem;
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn--small {
  background: transparent;
  color: var(--white);
  padding: 0.5rem 1.125rem;
  border-color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
}
.btn--small:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ============================================================
   NAV
============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--panel);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.125rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-wordmark {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.15s;
}

.lang-toggle:hover { color: var(--white); }

.lang-active {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.lang-sep {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--panel);
}

/* Hero background: photo fills the right side */
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--panel);
  background-image: url('assets/images/hero4.png');
  background-size: cover;
  background-position: center right;
}

/* Gradient overlay: solid dark on the left where text lives,
   fading into the photo on the right */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #1C1C20 0%,
    #1C1C20 16%,
    rgba(28, 28, 32, 0.75) 35%,
    rgba(28, 28, 32, 0.25) 58%,
    rgba(28, 28, 32, 0.05) 100%
  );
  pointer-events: none;
}

/* Thin red accent line at top */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  z-index: 3;
}

/* Fade to white at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 7rem 1.5rem 9rem;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--red);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 700px;
}

.hero-headline em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.75rem;
  max-width: 480px;
  font-weight: 300;
}

/* ============================================================
   SECTION SCAFFOLDING
============================================================ */
.section {
  padding: var(--section-pad);
}

.section--dark {
  background: var(--panel);
  color: var(--white);
}

.section--gray {
  background: var(--off-white);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--red);
  flex-shrink: 0;
}


.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: inherit;
  margin-bottom: 1.25rem;
}

.section-intro {
  font-size: 1rem;
  color: var(--dark-gray);
  max-width: 560px;
  margin-bottom: 3.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.section--dark .section-intro {
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   CRITERIA GRID
============================================================ */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
}

.criteria-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
  position: relative;
}

.criteria-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.criteria-card:hover::after {
  transform: scaleX(1);
}

.criteria-icon {
  font-size: 1.25rem;
  color: var(--red);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.criteria-card h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.criteria-card p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   PRIZE LIST
============================================================ */
.prize-list {
  display: flex;
  flex-direction: column;
}

.prize-item {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.prize-item:last-child { border-bottom: none; }

.prize-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
  padding-top: 0.2rem;
}

.prize-item strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.prize-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================================
   HOW IT WORKS - STEPS
============================================================ */
.steps-row {
  display: flex;
  gap: 0;
  align-items: flex-start;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  padding: 0 2rem;
}

.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }

.step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.step h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.7;
  font-weight: 300;
}

.step-divider {
  width: 1px;
  background: var(--light-gray);
  align-self: stretch;
  min-height: 120px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .steps-row { flex-direction: column; gap: 2.5rem; }
  .step-divider { width: 100%; height: 1px; min-height: unset; align-self: auto; }
  .step { padding: 0; }
}

/* ============================================================
   PROJECT TIMELINE
============================================================ */
.timeline {
  position: relative;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}

.timeline-track {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.timeline-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.timeline-items--4 {
  grid-template-columns: repeat(4, 1fr);
}

.timeline-item {
  padding-top: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.timeline-item .timeline-detail {
  flex: 1;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--panel);
  box-shadow: 0 0 0 1px var(--red);
}

.timeline-dot--last {
  background: var(--white);
  box-shadow: 0 0 0 1px var(--white);
}

.timeline-dot--event {
  background: var(--red);
  box-shadow: 0 0 0 1px var(--red);
  border-color: var(--panel);
}

.timeline-film {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.film-badge {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.film-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  line-height: 1.55;
  font-style: italic;
}

.timeline-month {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.35rem;
  line-height: 1;
}

.timeline-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.timeline-dot--last ~ .timeline-label {
  color: var(--white);
}

.timeline-detail {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  font-weight: 300;
}

.timeline-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-style: italic;
}

@media (max-width: 900px) {
  .timeline-items--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .timeline-items,
  .timeline-items--4 { grid-template-columns: 1fr; gap: 2.5rem; }
  .timeline-track { display: none; }
  .timeline-item { padding-top: 0; padding-left: 2rem; }
  .timeline-dot { top: 0; left: 0; }
}

/* ============================================================
   DEADLINE BAR
============================================================ */
.deadline-bar {
  background: var(--red);
  padding: 1.5rem 1.5rem;
}

.deadline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.deadline-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.deadline-text strong {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Override btn styles inside red bar */
.deadline-bar .btn--primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.deadline-bar .btn--primary:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.88);
}

/* ============================================================
   FAQ
============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}

.faq-item:first-child { border-top: 1px solid var(--light-gray); }

.faq-question {
  list-style: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink);
  padding: 1.375rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  letter-spacing: 0.01em;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 1.5rem;
}

.faq-answer p a {
  color: var(--red);
  text-decoration: none;
  transition: opacity 0.15s;
}

.faq-answer p a:hover { opacity: 0.75; }

.faq-answer p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--ink-near);
  color: rgba(255,255,255,0.4);
  padding: 3rem 1.5rem;
  border-top: 3px solid var(--red);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.site-footer .nav-wordmark {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.25rem;
}

.footer-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 1.25rem;
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
}

.footer-contact a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-contact a:hover { color: var(--white); }

.footer-company a {
  color: rgba(255,255,255,0.7) !important;
  font-weight: 500;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
}

.footer-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--white); }

.footer-imprint {
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.18);
  line-height: 1.7;
  width: 100%;
  text-align: left;
}

.footer-imprint p { margin-bottom: 0.4rem; }

.footer-sep { opacity: 0.25; }

.footer-copy {
  font-size: 0.7rem;
  opacity: 0.25;
  letter-spacing: 0.04em;
}

/* ============================================================
   COOKIE CONSENT BANNER
============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 2rem));
  width: calc(100% - 3rem);
  max-width: 780px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#cookie-banner.cb-visible {
  transform: translateX(-50%) translateY(0);
}

.cb-text {
  flex: 1;
  min-width: 0;
}

.cb-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.cb-text p {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0;
}

.cb-text a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cb-text a:hover { color: var(--white); }

.cb-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cb-btn {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  padding: 0.6rem 1.1rem;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.cb-btn--primary {
  background: var(--red);
  color: var(--white);
}

.cb-btn--secondary {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
}

.cb-btn:hover { opacity: 0.82; }

@media (max-width: 640px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    transform: translateY(calc(100% + 2rem));
    border-radius: 6px 6px 0 0;
  }
  #cookie-banner.cb-visible { transform: translateY(0); }
  .cb-actions { width: 100%; }
  .cb-btn { flex: 1; text-align: center; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 4rem 1.25rem; }

  .hero-content { padding: 6rem 1.25rem 8rem; }

  /* On mobile, center the photo behind the content */
  .hero-bg { background-position: center; }
  .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(20,20,20,0.75) 0%,
      rgba(20,20,20,0.6) 60%,
      rgba(20,20,20,0.3) 100%
    );
  }

  .criteria-grid { grid-template-columns: 1fr 1fr; }
  .prize-item { gap: 1.5rem; }
  .deadline-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
  .criteria-grid { grid-template-columns: 1fr; }
  .prize-item { flex-direction: column; gap: 0.4rem; }
  .prize-number { font-size: 1.4rem; }
}
