:root {
  --bg: #0a0a0a;
  --fg: #f2f2f2;
  --muted: #8a8a8a;
  --line: #1f1f1f;
  --line-strong: #2a2a2a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

/* ---------- main ---------- */
main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(32px, 4vw, 56px) clamp(24px, 5vw, 80px) clamp(32px, 4vw, 56px);
  align-items: start;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

/* ---------- poster ---------- */
.poster-wrap {
  position: relative;
  width: 100%;
  max-width: clamp(280px, 38vw, 460px);
  margin-left: auto;
}
.poster {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 4px 14px rgba(0,0,0,0.4);
}

/* ---------- info column ---------- */
.info {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0;
}
h1 .year {
  color: var(--muted);
  font-weight: 400;
}

/* ---------- lang switch ---------- */
.lang {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255,255,255,0.02);
  font-size: 12px;
  letter-spacing: 0.08em;
  flex-shrink: 0;
  margin-top: 8px;
}
.lang a {
  display: inline-block;
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}
.lang a.active {
  background: var(--fg);
  color: #0a0a0a;
  font-weight: 600;
}
.lang a:not(.active):hover { color: var(--fg); }

.details {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px 28px;
  align-items: baseline;
}
.details dt {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 3px;
}
.details dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg);
}
.details dd .sub {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 2px;
}

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

.tickets h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--muted);
}
.tickets p {
  margin: 0 0 10px 0;
  font-size: 15px;
  line-height: 1.6;
  color: #cfcfcf;
}
.tickets .price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 14px 0;
}
.tickets .price {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.tickets .email {
  display: inline-block;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: border-color 0.15s ease;
}
.tickets .email:hover { border-color: var(--fg); }

.tickets .email-paypal {
  display: inline-block;
  color: var(--fg);
  font-weight: 500;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 2px 8px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.tickets .email-paypal:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--fg);
}

/* ---------- order button ---------- */
.order-btn {
  display: inline-block;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #0a0a0a;
  background: var(--fg);
  border: 1px solid var(--fg);
  border-radius: 8px;
  padding: 12px 22px;
  margin: 4px 0 16px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.05s ease;
}
.order-btn:hover { background: #ffffff; }
.order-btn:active { transform: translateY(1px); }
.order-btn:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 2px;
}

/* ---------- order modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.modal-backdrop[hidden] { display: none; }
.modal-backdrop.is-open { opacity: 1; }

.modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #111;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 28px 24px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.modal h3 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding-right: 30px;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.modal-close:hover { color: var(--fg); background: rgba(255,255,255,0.05); }

.order-form { display: flex; flex-direction: column; gap: 14px; }
.order-form .field { display: flex; flex-direction: column; gap: 6px; }
.order-form .field-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.order-form input[type="email"],
.order-form input[type="number"] {
  font: inherit;
  font-size: 15px;
  color: var(--fg);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 10px 12px;
  width: 100%;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.order-form input:focus {
  outline: none;
  border-color: var(--fg);
  background: rgba(255,255,255,0.06);
}
.order-form .honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.modal-error,
.modal-success {
  font-size: 14px;
  line-height: 1.45;
  padding: 10px 12px;
  border-radius: 8px;
}
.modal-error {
  color: #ffb4b4;
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.3);
}
.modal-success {
  color: #b8e6c2;
  background: rgba(80, 200, 120, 0.08);
  border: 1px solid rgba(80, 200, 120, 0.3);
}

.modal-actions {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}
.modal-submit {
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #0a0a0a;
  background: var(--fg);
  border: 1px solid var(--fg);
  border-radius: 8px;
  padding: 11px 28px;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
}
.modal-submit:hover:not(:disabled) { background: #ffffff; }
.modal-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---------- instagram ---------- */
.social {
  margin-top: 4px;
}
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--fg);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 18px 10px 14px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.ig-link:hover {
  border-color: var(--fg);
  background: rgba(255,255,255,0.04);
}
.ig-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 22px clamp(24px, 5vw, 80px);
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px 32px;
  flex-wrap: wrap;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
footer .disclaimer {
  max-width: 720px;
}
footer .disclaimer p {
  margin: 0 0 6px 0;
}
footer .disclaimer p:last-child {
  margin-bottom: 0;
}
footer a.impressum {
  border-bottom: 1px solid var(--line-strong);
  transition: color 0.15s ease, border-color 0.15s ease;
}
footer a.impressum:hover {
  color: var(--fg);
  border-color: var(--fg);
}

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  main {
    grid-template-columns: 1fr;
  }
  .poster-wrap { margin: 0 auto; max-width: min(420px, 90%); }
  .info { max-width: 100%; }

  .title-row { display: block; }
  .lang {
    position: fixed;
    top: 16px;
    right: 16px;
    margin-top: 0;
    z-index: 10;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

@media (max-width: 480px) {
  .details {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }
  .details dt { padding-top: 12px; }
  .details dt:first-child { padding-top: 0; }
}
