:root {
  --color-bg: #0b0b0b;
  --color-bg-alt: #151515;
  --color-text: #f2f0ec;
  --color-muted: #b3afa6;
  --color-accent: #c9a86a;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.6;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-bg);
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
}

/* Below 700px the 16:9 image is too short to fit the large title text.
   Switch to a taller cropped banner instead of letting the facts get
   clipped by hero's overflow:hidden. */
@media (max-width: 699px) {
  .hero {
    min-height: 620px;
  }

  .hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.05) 30%,
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 3rem) 1.5rem;
  text-align: center;
}

.hero__eyebrow {
  color: var(--color-accent);
  font-size: clamp(0.85rem, 2.2vw, 1.15rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.9);
}

.hero__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 0.6rem;
  color: var(--color-text);
}

.hero__title-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 8vw, 5.2rem);
  letter-spacing: 0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.95);
}

.hero__title-meets {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.95);
}

.hero__title-script {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(3rem, 10vw, 6.3rem);
  color: var(--color-text);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.95);
}

.hero__facts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__date {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--color-text);
}

.hero__meta {
  font-size: clamp(0.75rem, 2vw, 1rem);
  color: var(--color-muted);
}

.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section--alt {
  background: var(--color-bg-alt);
  max-width: none;
}

.section--alt > * {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-align: center;
  margin-bottom: 2rem;
}

.claim {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  text-align: center;
}

.claim__sub {
  display: block;
  margin-top: 0.75rem;
  color: var(--color-accent);
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.lineup {
  display: flex;
  flex-direction: column;
}

.lineup__item {
  text-align: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-accent);
}

.lineup__item:last-child {
  border-bottom: none;
}

.lineup__name {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

@media (min-width: 700px) {
  .lineup {
    flex-direction: row;
  }

  .lineup__item {
    flex: 1;
    border-bottom: none;
    border-right: 1px solid var(--color-accent);
  }

  .lineup__item:last-child {
    border-right: none;
  }
}

#contact-form {
  display: grid;
  gap: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.field input,
.field textarea {
  background: var(--color-bg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text);
  padding: 0.7rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 1rem;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.submit-btn {
  justify-self: start;
  padding: 0.75rem 2rem;
  background: var(--color-accent);
  color: #0b0b0b;
  border: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.submit-btn:hover {
  opacity: 0.85;
}

.form-status {
  min-height: 1.2rem;
  font-size: 0.9rem;
}

.form-status--success {
  color: #8fd19e;
}

.form-status--error {
  color: #e07a7a;
}

footer {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--color-muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer a {
  color: var(--color-accent);
}

.impressum {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  opacity: 0.7;
}
