/* =========================================================================
   DJ FLX – Stylesheet
   Dark Club Theme · Akzentfarbe Logo-Rot (#e30613)
   Reines CSS, keine externen CDNs. Schriften lokal gehostet (siehe /fonts/).
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Lokale Schriften (KEIN Google CDN – DSGVO-konform)
   ------------------------------------------------------------------------- */
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/bebasneue-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  /* Inter wird als Variable Font ausgeliefert – eine Datei, alle Stärken. */
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* -------------------------------------------------------------------------
   2. Design-Tokens
   ------------------------------------------------------------------------- */
:root {
  --bg:           #0a0a0a;
  --bg-alt:       #0d0d1a;
  --surface:      #13131f;
  --surface-2:    #181826;
  --border:       rgba(255, 255, 255, 0.08);
  --border-strong:rgba(255, 255, 255, 0.16);

  --accent:       #e30613;
  --accent-dim:   #8e000c;
  --accent-glow:  rgba(227, 6, 19, 0.35);

  --text:         #eceef5;
  --muted:        #9aa0b4;
  --muted-2:      #6c7186;

  --danger:       #ff3b5c;

  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container:    1180px;
  --radius:       14px;
  --radius-sm:    10px;

  --nav-h:        72px;

  --ease:         cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -------------------------------------------------------------------------
   3. Reset & Basis
   ------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: 0.1px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--accent); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: #fff; }

h1, h2, h3 { line-height: 1.05; font-weight: 400; }

ul { list-style: none; padding: 0; }

button { font-family: inherit; cursor: pointer; }

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

/* -------------------------------------------------------------------------
   4. Layout-Helfer
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: clamp(70px, 11vw, 130px);
  position: relative;
}
.section--alt { background: var(--bg-alt); }

.section__head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 1.5px;
  line-height: 0.95;
}
.section__lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* -------------------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 8px 30px -8px var(--accent-glow);
}
.btn--primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -8px var(--accent-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn--block { width: 100%; justify-content: center; }
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}

/* -------------------------------------------------------------------------
   6. Navigation
   ------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease),
              border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(8, 8, 14, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px -18px #000;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 2px;
  color: #fff;
}
.nav__brand img { width: 38px; height: 38px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 8px;
  position: relative;
}
.nav__link:hover { color: #fff; }
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: #fff; }

.nav__cta { margin-left: 10px; padding: 10px 22px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(110% 80% at 70% 20%, rgba(227, 6, 19, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(8,8,12,0.55) 0%, rgba(8,8,12,0.78) 55%, var(--bg) 100%);
}
.hero__content {
  max-width: 760px;
  padding-top: var(--nav-h);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 17vw, 11rem);
  line-height: 0.84;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 0 60px rgba(227, 6, 19, 0.25);
}
.hero__title span { color: var(--accent); }
.hero__tagline {
  margin-top: 22px;
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  color: var(--text);
  font-weight: 300;
  max-width: 540px;
}
.hero__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Equalizer-Animation */
.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 26px;
}
.equalizer span {
  display: block;
  width: 4px;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transform-origin: bottom;
  animation: eq 1.1s ease-in-out infinite;
}
.equalizer span:nth-child(2) { animation-delay: 0.20s; }
.equalizer span:nth-child(3) { animation-delay: 0.40s; }
.equalizer span:nth-child(4) { animation-delay: 0.15s; }
.equalizer span:nth-child(5) { animation-delay: 0.55s; }
@keyframes eq {
  0%, 100% { transform: scaleY(0.3); opacity: 0.6; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted-2);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.hero__scroll .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--muted-2);
  border-radius: 14px;
  position: relative;
}
.hero__scroll .mouse::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 4px;
  height: 7px;
  margin-left: -2px;
  background: var(--accent);
  border-radius: 2px;
  animation: scrolldot 1.6s var(--ease) infinite;
}
@keyframes scrolldot {
  0%   { opacity: 0; transform: translateY(0); }
  40%  { opacity: 1; }
  80%  { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* -------------------------------------------------------------------------
   8. Karten (Services & Highlights gemeinsam)
   ------------------------------------------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(227, 6, 19, 0.08), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 22px 50px -28px var(--accent-glow);
}
.card:hover::before { opacity: 1; }

.service-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(227, 6, 19, 0.10);
  border: 1px solid rgba(227, 6, 19, 0.25);
  color: var(--accent);
  margin-bottom: 22px;
}
.service-card__icon svg { width: 28px; height: 28px; }
.card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.card p { color: var(--muted); font-size: 0.98rem; }

/* Highlight-Karten mit Bild */
.highlight-card { padding: 0; }
.highlight-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.highlight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.highlight-card:hover .highlight-card__media img { transform: scale(1.06); }
.highlight-card__body { padding: 26px 28px 32px; }

/* -------------------------------------------------------------------------
   9. Über mich
   ------------------------------------------------------------------------- */
.about__layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(227,6,19,0.12);
  border-radius: var(--radius);
  pointer-events: none;
}
.about__text p { color: var(--muted); margin-top: 18px; }
.about__text p:first-of-type { margin-top: 24px; }

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.about__stat .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--accent);
  letter-spacing: 1px;
  line-height: 1;
}
.about__stat .label {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* -------------------------------------------------------------------------
   10. Verfügbarkeits-Kalender
   ------------------------------------------------------------------------- */
.calendar__legend {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  font-size: 0.92rem;
  color: var(--muted);
}
.calendar__legend span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
}
.dot--free { background: var(--surface-2); border: 1px solid var(--border-strong); }
.dot--busy { background: var(--danger); }

.calendar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.month {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px 24px;
}
.month__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #fff;
}
.month__weekdays,
.month__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.month__weekdays {
  margin-bottom: 8px;
}
.month__weekdays span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.day {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  font-size: 0.86rem;
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface-2);
}
.day--empty { background: transparent; }
.day--today {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  color: #fff;
  font-weight: 600;
}
.day--busy {
  background: var(--danger);
  color: #fff;
  font-weight: 600;
}
.day--past { opacity: 0.32; }

.calendar__note {
  margin-top: 26px;
  font-size: 0.88rem;
  color: var(--muted-2);
}

/* -------------------------------------------------------------------------
   11. Kontakt
   ------------------------------------------------------------------------- */
.contact__layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 56px;
}
.form {
  display: grid;
  gap: 18px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
/* hidden-Attribut auch bei .field respektieren (display:flex überschreibt es sonst) */
.field[hidden] { display: none; }
.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.field label .req { color: var(--accent); }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-2); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.14);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff1f3c' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.consent input {
  margin-top: 3px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}
.consent label { cursor: pointer; }

.form__hint {
  font-size: 0.82rem;
  color: var(--muted-2);
}

/* Direkte Kontaktdaten */
.contact__info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  align-self: start;
}
.contact__info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.contact__info p.lead { color: var(--muted); font-size: 0.95rem; margin-bottom: 26px; }
.contact-list { display: grid; gap: 20px; }
.contact-list a,
.contact-list span.val {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-weight: 500;
}
.contact-list a:hover { color: var(--accent); }
.contact-list .ic {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(227, 6, 19, 0.10);
  border: 1px solid rgba(227, 6, 19, 0.22);
  color: var(--accent);
}
.contact-list .ic svg { width: 20px; height: 20px; }
.contact-list .k {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
}

/* -------------------------------------------------------------------------
   12. Footer
   ------------------------------------------------------------------------- */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-block: 56px 32px;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: #fff;
}
.footer__brand img { width: 46px; height: 46px; }
.footer__brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  font-weight: 400;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.footer__social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.footer__social svg { width: 20px; height: 20px; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.88rem;
  color: var(--muted-2);
}
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { color: var(--muted); }
.footer__links a:hover { color: var(--accent); }

/* -------------------------------------------------------------------------
   13. Unterseiten (Impressum / Datenschutz)
   ------------------------------------------------------------------------- */
.legal {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 90px;
  min-height: 100vh;
}
.legal .container { max-width: 820px; }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 32px;
  color: var(--muted);
}
.legal__back:hover { color: var(--accent); }
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4rem);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.legal__intro { color: var(--muted); margin-bottom: 18px; }
.legal h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 1px;
  margin-top: 42px;
  margin-bottom: 14px;
  color: #fff;
}
.legal h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { padding-left: 22px; list-style: disc; }
.legal ul li { margin-bottom: 6px; }
.legal a { word-break: break-word; }

.placeholder-hint {
  background: rgba(255, 59, 92, 0.10);
  border: 1px solid rgba(255, 59, 92, 0.4);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: #ffb3c0;
  font-size: 0.92rem;
  margin-bottom: 36px;
}
mark.ph {
  background: rgba(227, 6, 19, 0.16);
  color: var(--accent);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
}

/* -------------------------------------------------------------------------
   14. Scroll-Reveal
   ------------------------------------------------------------------------- */
/* Nur ausblenden, wenn JavaScript aktiv ist (html.js wird per Inline-Skript
   im <head> gesetzt). Ohne JS bleiben alle Inhalte sichtbar. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.10s; }
.reveal[data-delay="2"] { transition-delay: 0.20s; }
.reveal[data-delay="3"] { transition-delay: 0.30s; }

/* -------------------------------------------------------------------------
   15. Responsive
   ------------------------------------------------------------------------- */
@media (max-width: 920px) {
  .about__layout { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 420px; }
  .contact__layout { grid-template-columns: 1fr; gap: 36px; }
  .calendar__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }

  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: rgba(8, 8, 14, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 14px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .nav__links.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav__link { padding: 14px 8px; font-size: 1.05rem; }
  .nav__link::after { display: none; }

  .grid-3 { grid-template-columns: 1fr; }
  .calendar__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .about__stats { gap: 28px; }
  .hero__title { letter-spacing: 1px; }
}

@media (max-width: 420px) {
  .container { padding-inline: 18px; }
  .card { padding: 28px 24px; }
}

/* -------------------------------------------------------------------------
   16. Reduzierte Bewegung respektieren
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .equalizer span { animation: none; transform: scaleY(0.7); }
}

/* =========================================================================
   17. Erweiterungen: Video-Hero, Social-Dock, Embeds, Galerie, Insta,
       Kalender-Navigation
   ========================================================================= */

/* ---- Video-Hero ---- */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* ---- Logo etwas prominenter ---- */
.nav__brand img { width: 42px; height: 42px; border-radius: 50%; }
.footer__brand img { border-radius: 50%; }

/* ---- Schwebende Social-Leiste (immer erreichbar) ---- */
.dock {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dock a {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(18, 18, 28, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  color: var(--text);
  transition: transform 0.22s var(--ease), background 0.22s var(--ease),
              border-color 0.22s var(--ease), color 0.22s var(--ease);
}
.dock a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateX(-3px) scale(1.06);
}
.dock a svg { width: 22px; height: 22px; }
.dock a::after {
  content: attr(data-label);
  position: absolute;
  right: 60px;
  padding: 5px 11px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  background: var(--accent);
  color: #fff;
  border-radius: 7px;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.dock a:hover::after { opacity: 1; transform: translateX(0); }

@media (max-width: 760px) {
  .dock {
    right: 50%;
    top: auto;
    bottom: 14px;
    transform: translateX(50%);
    flex-direction: row;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(12, 12, 20, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-strong);
    box-shadow: 0 10px 30px -10px #000;
  }
  .dock a { width: 44px; height: 44px; border: none; background: transparent; }
  .dock a:hover { transform: scale(1.08); }
  .dock a::after { display: none; }
}

/* ---- Klick-zum-Laden-Embeds (DSGVO: lädt erst nach Klick) ---- */
.embed {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.embed__cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  min-height: 320px;
  padding: 40px 24px;
  text-align: center;
  color: var(--text);
  background:
    linear-gradient(160deg, rgba(227, 6, 19, 0.16), transparent 55%),
    var(--surface-2);
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.embed__cover:hover { background:
    linear-gradient(160deg, rgba(227, 6, 19, 0.26), transparent 55%),
    var(--surface-2); }
.embed__play {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 34px -8px var(--accent-glow);
  transition: transform 0.25s var(--ease);
}
.embed__cover:hover .embed__play { transform: scale(1.08); }
.embed__play svg { width: 30px; height: 30px; margin-left: 3px; }
.embed__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 1px;
}
.embed__hint { font-size: 0.82rem; color: var(--muted-2); max-width: 360px; }
.embed iframe { display: block; width: 100%; border: 0; }

/* ---- Musik / SoundCloud ---- */
.music__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 880px;
}
.music__actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Galerie / Impressionen ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
}
.gallery figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery figure:hover img { transform: scale(1.07); }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 18px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery figure:hover figcaption { opacity: 1; transform: none; }
.gallery .gallery--tall { grid-row: span 2; aspect-ratio: auto; }

/* ---- Instagram-Kacheln ---- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 760px;
}
.insta-tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
}
.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.insta-tile:hover img { transform: scale(1.06); }
.insta-tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-align: center;
  background: rgba(10, 10, 16, 0.32);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.insta-tile:hover .insta-tile__overlay { opacity: 1; }
.insta-tile__overlay svg { width: 34px; height: 34px; }
.insta-tile__overlay span { font-weight: 600; font-size: 0.92rem; }

/* ---- Kalender-Navigation (3 Monate + Pfeile) ---- */
.calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.calendar__range {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #fff;
}
.calendar__btns { display: flex; gap: 10px; }
.cal-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  transition: all 0.2s var(--ease);
}
.cal-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.cal-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-btn svg { width: 20px; height: 20px; }

@media (max-width: 920px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .gallery--tall { grid-row: span 1; }
}
@media (max-width: 620px) {
  .calendar__range { font-size: 1.2rem; }
}

/* Handy: Auftritte- und Insta-Bilder nebeneinander (2 Spalten) lassen,
   ebenso die Datumsfelder "von" und "bis". */
@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .form__row--dates { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Kalender: 2 Monate nebeneinander, kompakter */
  .calendar__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .month { padding: 12px 9px 14px; }
  .month__title { font-size: 1.05rem; margin-bottom: 10px; }
  .month__weekdays { gap: 3px; margin-bottom: 5px; }
  .month__weekdays span { font-size: 0.56rem; letter-spacing: 0; }
  .month__days { gap: 3px; }
  .day { font-size: 0.74rem; border-radius: 6px; }
  .day--sel-start, .day--sel-end { box-shadow: inset 0 0 0 1.5px var(--accent); }
}
@media (max-width: 380px) {
  .month { padding: 10px 6px 12px; }
  .month__weekdays span { font-size: 0.5rem; }
  .day { font-size: 0.66rem; }
}
@media (max-width: 400px) {
  .gallery { gap: 9px; }
  .insta-grid { gap: 9px; }
  .gallery figcaption { padding: 18px 12px 10px; font-size: 0.8rem; }
}

/* =========================================================================
   18. Kalender-Auswahl (Tag / Zeitraum anklickbar) + Sonstiges-Dialog
   ========================================================================= */

/* anklickbare (freie) Tage */
.day--pick { cursor: pointer; }
.day--pick:hover {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  color: #fff;
}
/* Auswahl: bewusst ANDERS als "belegt" (klarer Ring + dezente Füllung) */
.day--selected {
  background: rgba(227, 6, 19, 0.16);
  color: #fff;
}
.day--sel-start,
.day--sel-end {
  background: rgba(227, 6, 19, 0.40);
  color: #fff;
  font-weight: 600;
  box-shadow: inset 0 0 0 2px var(--accent);
}

.calendar__hint {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted-2);
}

/* Auswahl-Leiste */
.cal-pick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 40px -28px var(--accent-glow);
}
.cal-pick[hidden] { display: none; }
.cal-pick__txt { font-weight: 500; }
.cal-pick__txt b { color: var(--accent); }
.cal-pick .btn { padding: 11px 22px; }
.cal-pick__clear {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  text-decoration: underline;
}
.cal-pick__clear:hover { color: var(--accent); }
