/* ============================================================
   MONSTERSHOT® — Design System v2 (Blueprint-Umsetzung)
   Schwarz + Logo-Gelb #FFFF00 · Anton (Display) + Inter (Text)
   Rot/Blau nur als Spielerfarben, nie als Markenfarben
   ============================================================ */

@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/anton-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-var.woff2') format('woff2');
}

:root {
  --bg: #050505;
  --bg-raise: #111111;
  --bg-card: #141413;
  --line: rgba(255, 255, 0, 0.16);
  --line-soft: rgba(255, 255, 255, 0.09);
  --text: #f4f4ef;
  --muted: #a6a69c;
  --yellow: #ffff00;          /* exakt aus dem Logo gesampelt */
  --yellow-soft: #fff9c2;
  --yellow-glow: rgba(255, 255, 0, 0.30);
  --p1: #ff3b30;              /* Spieler 1 — nur im Spielkontext */
  --p2: #2f7bff;              /* Spieler 2 — nur im Spielkontext */
  --black: #050505;
  --radius: 18px;
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-text: 'Inter', 'Segoe UI', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 1rem;               /* >= 16px Fließtext (Barrierefreiheit) */
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--yellow); color: var(--black); }
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: min(1240px, 92vw); margin-inline: auto; }
.wrap-narrow { width: min(860px, 92vw); margin-inline: auto; }

/* ---------- Typografie ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: 0.012em;
}
h3 { letter-spacing: 0.03em; }

/* Hochgestelltes ® in Anton-Headlines (Glyph sitzt dort sonst mittig) */
sup.reg {
  font-size: 0.42em;
  line-height: 0;
  vertical-align: baseline;
  position: relative;
  top: -1.05em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 18px;
}
.kicker::before {
  content: '';
  width: 34px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2.2rem, 5.4vw, 3.8rem);
  margin-bottom: 18px;
}
.section-title .accent { color: var(--yellow); }

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 62ch;
}

section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
section.tight { padding: clamp(40px, 6vw, 70px) 0; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 152px;
  transition: height 0.3s;
}
.site-header.scrolled .wrap { height: 84px; }

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 120px; width: auto; transition: height 0.3s; }
.site-header.scrolled .brand img { height: 58px; }
@media (max-width: 920px) {
  .site-header .wrap { height: 108px; }
  .site-header.scrolled .wrap { height: 72px; }
  /* Brand darf schrumpfen, sonst drängt die breite Wortmarke den
     Burger-Button aus dem Viewport (390px: 331px Logo + 16 + 48 > 359px) */
  .site-header .brand { flex-shrink: 1; min-width: 0; }
  .brand img { height: 80px; max-width: 100%; object-fit: contain; object-position: left center; }
  .site-header.scrolled .brand img { height: 48px; }
}
.site-footer .brand img { height: 96px; }
@media (max-width: 920px) { .site-footer .brand img { height: 72px; } }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 15px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.nav a.active { color: var(--yellow); }
.nav a.nav-cta {
  color: var(--black);
  background: var(--yellow);
  font-weight: 800;
  margin-left: 10px;
  padding-inline: 22px;
}
.nav a.nav-cta:hover { background: var(--yellow-soft); }

.nav-toggle {
  display: none;
  /* Eigener dunkler Hintergrund: muss auch über hellen Hero-Fotos
     sichtbar bleiben, solange der Header noch transparent ist */
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  min-height: 44px;
  min-width: 48px;
  color: var(--text);
  font-size: 1.15rem;
  cursor: pointer;
}

@media (max-width: 920px) {
  .nav {
    position: fixed;
    top: 116px; right: 4vw; left: 4vw;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8, 8, 8, 0.98);
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    padding: 14px;
    display: none;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65);
  }
  .nav.open { display: flex; }
  .site-header.scrolled .nav { top: 80px; }
  .nav a { justify-content: center; }
  .nav a.nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: block; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 48px;
  padding: 13px 30px;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 8px 36px rgba(255, 255, 0, 0.22);
}
.btn-primary:hover { background: var(--yellow-soft); box-shadow: 0 10px 46px rgba(255, 255, 0, 0.35); }
.btn-ghost {
  border-color: var(--yellow);
  color: var(--yellow);
  background: transparent;
}
.btn-ghost:hover { background: rgba(255, 255, 0, 0.1); }
.btn-dark {
  background: var(--black);
  color: var(--yellow);
}
.btn-dark:hover { background: #1f1f1f; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-note {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.cta-note:hover { color: var(--yellow); }

/* ---------- Hero (Homepage) ---------- */

.hero {
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding: 190px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 0, 0.10) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 85% 70% at 30% 40%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 30% 40%, #000 20%, transparent 70%);
}
.hero-glow {
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 0, 0.10), transparent 62%);
  top: -160px; right: -140px;
  pointer-events: none;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
@media (max-width: 980px) { .hero .wrap { grid-template-columns: 1fr; } }

/* Hero-Split: grosses Bild links, Text rechts daneben (Wunsch Maan) */
.hero.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(28px, 4vw, 64px);
  padding: 152px 0 0;
}
.hero-split .hero-image { min-width: 0; }
.hero-split .hero-image img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-split .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 660px;
  padding: 60px clamp(24px, 5vw, 90px) 60px 0;
}
@media (max-width: 920px) {
  .hero.hero-split { grid-template-columns: 1fr; padding-top: 108px; gap: 0; }
  .hero-split .hero-image img { height: auto; aspect-ratio: 3 / 2; }
  .hero-split .hero-copy { max-width: none; padding: 36px 22px 48px; }
}

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 4.9rem);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--yellow); }

.hero-subline {
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.hero .lead { margin-bottom: 36px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
  background: rgba(255, 255, 0, 0.04);
}
.hero-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ---------- Seiten-Hero (Unterseiten) ---------- */

.page-hero {
  padding: 210px 0 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: 18px;
}
.page-hero h1 .accent { color: var(--yellow); }
.page-hero .lead { margin-bottom: 34px; }

/* ---------- Media-Platzhalter ---------- */

.media-tile {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 255, 0, 0.3);
  background:
    repeating-linear-gradient(-45deg, rgba(255, 255, 0, 0.03) 0 12px, transparent 12px 24px),
    var(--bg-card);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  transition: border-color 0.2s;
  overflow: hidden;
}
.media-tile:hover { border-color: var(--yellow); }
.media-tile.wide { aspect-ratio: 16 / 9; }
.media-tile .play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  box-shadow: 0 0 40px var(--yellow-glow);
}
.media-tile .hint {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.8;
}
.media-tile img, .media-tile video {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.media-tile.has-media {
  padding: 0;
  border: 1px solid rgba(255, 255, 0, 0.25);
  background: var(--bg-card);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 50px;
}
.gallery figure { margin: 0; }
.gallery figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 18px;
  margin-top: 50px;
}
.card-grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 0, 0.09);
  border: 1px solid var(--line);
  margin-bottom: 20px;
  color: var(--yellow);
}
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Audience-Karten (zwei Geschäftsmodelle) ---------- */

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 50px;
}
@media (max-width: 880px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-card {
  border-radius: 24px;
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 0, 0.07), transparent 55%),
    var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: border-color 0.25s, transform 0.25s;
}
.audience-card:hover { border-color: var(--line); transform: translateY(-4px); }
.audience-card h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.audience-card .btn { align-self: flex-start; margin-top: auto; }

/* ---------- Listen ---------- */

.check-list { list-style: none; display: grid; gap: 11px; }
.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 0.96rem;
}
.check-list li::before {
  content: '';
  width: 20px; height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23050505' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat,
    var(--yellow);
}
.check-list.two-col { grid-template-columns: 1fr 1fr; }
@media (max-width: 700px) { .check-list.two-col { grid-template-columns: 1fr; } }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255, 255, 0, 0.05);
}

/* ---------- Split-Sektion ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split.rev { grid-template-columns: 1.05fr 1fr; }
@media (max-width: 920px) { .split, .split.rev { grid-template-columns: 1fr; } }

/* ---------- Steps / How it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 50px;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-top: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.25s, border-color 0.25s;
}
.step:hover { transform: translateY(-6px); border-color: var(--line); }
.step-no {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Spielfeld-Visual ---------- */

.field-visual {
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 0, 0.08), transparent 55%),
    var(--bg-raise);
  padding: 30px;
  overflow: hidden;
}
.field-visual svg { width: 100%; height: auto; }

/* ---------- Turnier-Highlight ---------- */

.tournament {
  background:
    radial-gradient(ellipse at 50% -20%, rgba(255, 255, 0, 0.09), transparent 60%),
    var(--bg-raise);
  border-block: 1px solid var(--line-soft);
}
.tournament .big-line {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 22px;
}
.tournament .big-line .accent { color: var(--yellow); }

/* ---------- Timeline (Über uns) ---------- */

.timeline {
  margin-top: 50px;
  border-left: 3px solid var(--line);
  display: grid;
  gap: 34px;
  padding-left: 34px;
  position: relative;
}
.timeline .tl-item { position: relative; }
.timeline .tl-item::before {
  content: '';
  position: absolute;
  left: -44px; top: 4px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 16px var(--yellow-glow);
}
.timeline h3 { font-size: 1.15rem; margin-bottom: 6px; }
.timeline p { color: var(--muted); font-size: 0.95rem; max-width: 60ch; }

/* ---------- FAQ ---------- */

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 42px 0 26px;
}
.faq-tab {
  font-family: var(--font-text);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 26px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.faq-tab:hover { border-color: var(--line); color: var(--text); }
.faq-tab.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.faq-panel { display: none; }
.faq-panel.active { display: block; }

.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--yellow);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { border-color: var(--line); }
.faq-item .faq-body {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

/* ---------- Formulare ---------- */

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 48px);
  margin-top: 50px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.form-field label .req { color: var(--yellow); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-text);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 13px 16px;
  min-height: 48px;
  transition: border-color 0.2s;
  width: 100%;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.form-field input.invalid,
.form-field select.invalid,
.form-field textarea.invalid { border-color: var(--p1); }
.form-field .field-error {
  color: #ff8b84;
  font-size: 0.82rem;
  display: none;
}
.form-field.show-error .field-error { display: block; }

.form-consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.88rem;
  color: var(--muted);
}
.form-consent input {
  width: 22px; height: 22px;
  margin-top: 2px;
  accent-color: var(--yellow);
}
.form-consent a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }

.form-actions { grid-column: 1 / -1; margin-top: 8px; }

.form-msg {
  grid-column: 1 / -1;
  border-radius: 12px;
  padding: 16px 20px;
  font-weight: 600;
  display: none;
}
.form-msg.show { display: block; }
.form-msg.success {
  background: rgba(90, 220, 130, 0.1);
  border: 1px solid rgba(90, 220, 130, 0.4);
  color: #8ce8a8;
}
.form-msg.error {
  background: rgba(255, 90, 80, 0.08);
  border: 1px solid rgba(255, 90, 80, 0.35);
  color: #ff9d96;
}

/* Honeypot: für Menschen unsichtbar, für Bots ausfüllbar */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ---------- Buchungskalender ---------- */

.cal {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 40px;
  max-width: 560px;
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}
.cal-nav {
  background: none;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  color: var(--yellow);
  min-width: 44px; min-height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.cal-nav:hover:not(:disabled) { border-color: var(--yellow); background: rgba(255,255,0,0.07); }
.cal-nav:disabled { opacity: 0.25; cursor: default; }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-wd {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
}
.cal-day {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-height: 40px;
  border-radius: 10px;
  font-family: var(--font-text);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
}
.cal-day.past { color: rgba(255,255,255,0.18); }
.cal-day.busy {
  color: rgba(255,255,255,0.35);
  background: rgba(255,59,48,0.10);
  border-color: rgba(255,59,48,0.25);
  text-decoration: line-through;
}
button.cal-day.free {
  background: rgba(255,255,0,0.05);
  border-color: var(--line-soft);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
button.cal-day.free:hover { border-color: var(--yellow); background: rgba(255,255,0,0.14); }
.cal-day.sel {
  background: var(--yellow) !important;
  color: var(--black) !important;
  border-color: var(--yellow);
  font-weight: 800;
}
button.cal-day.part {
  border-color: rgba(255,255,0,0.55);
  background: rgba(255,255,0,0.10);
}
.cal-day .cal-count {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: -3px;
  color: var(--yellow-soft);
}
.cal-day.sel .cal-count { color: var(--black); }
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--muted);
  align-items: center;
}
.cal-legend .lg {
  display: inline-block;
  width: 13px; height: 13px;
  border-radius: 4px;
  margin-right: 6px;
  vertical-align: -2px;
}
.cal-legend .lg.free { background: rgba(255,255,0,0.14); border: 1px solid var(--line); }
.cal-legend .lg.busy { background: rgba(255,59,48,0.25); }
.cal-legend .lg.part { background: rgba(255,255,0,0.10); border: 1px solid rgba(255,255,0,0.55); }
.cal-legend .lg.sel  { background: var(--yellow); }
.cal-off { color: var(--yellow-soft); }

/* ---------- CTA-Banner ---------- */

.cta-banner {
  border-radius: 30px;
  background: var(--yellow);
  color: var(--black);
  padding: clamp(44px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: 'M';
  position: absolute;
  right: -0.1em; bottom: -0.36em;
  font-family: var(--font-display);
  font-size: clamp(14rem, 30vw, 26rem);
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  pointer-events: none;
}
.cta-banner .kicker { color: var(--black); }
.cta-banner .kicker::before { background: var(--black); }
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3.6rem); margin-bottom: 16px; }
.cta-banner p {
  font-weight: 600;
  max-width: 54ch;
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
}
.cta-banner .cta-row { position: relative; z-index: 1; }

/* ---------- Kontakt-Karten ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 50px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-card:hover { border-color: var(--line); transform: translateY(-4px); }
.contact-card .lbl {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.contact-card .val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--yellow);
  word-break: break-word;
}

/* ---------- Infoblock ---------- */

.info-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 0, 0.03);
  padding: 30px 28px;
  margin-top: 40px;
}
.info-block h3 { font-size: 1.15rem; margin-bottom: 14px; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 46px 0 40px;
  margin-top: 40px;
}
.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-links a:hover { color: var(--yellow); }
.site-footer .copy { font-size: 0.8rem; color: var(--muted); max-width: 60ch; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 0, 0.45);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

/* ---------- Rechtsseiten ---------- */

.legal { padding: 170px 0 100px; }
.legal .wrap { max-width: 800px; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 40px; }
.legal h2 { font-size: 1.2rem; color: var(--yellow); margin: 36px 0 12px; }
.legal p { color: var(--muted); margin-bottom: 12px; }
.legal strong { color: var(--text); }

/* ---------- Scroll-Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
