/* =============================================================
   naïv Landing — „Today at naïv" Live-Cockpit
   ============================================================= */

/* Footer-Brand-Strip nicht doppelt anzeigen */
.page-landing .splash-strip { display: none; }
.page-landing .site-main { padding: 0; max-width: none; }
.page-landing .site-header { display: none; }

:root {
  --cock-paper: #f5f3f0;
  --cock-card: #ffffff;
  --cock-ink: #0a0a0a;
  --cock-line: #e3e0db;
  --cock-line-strong: #0a0a0a;
  --cock-muted: #6b6b6b;
  --cock-red: #F28DA8;
  --cock-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

body.page-landing { background: var(--cock-paper); }

/* =============================================================
   Mini-Header (sticky, schmal)
   ============================================================= */
.cock-head {
  position: sticky; top: 0; z-index: 50;
  background: var(--cock-paper);
  border-bottom: 1px solid var(--cock-line);
  display: flex; align-items: center;
  padding: 12px 28px;
  gap: 18px;
}
.cock-head__logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
  color: var(--cock-ink);
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: .06em;
}
.cock-head__logo img { width: 24px; height: 24px; }

.cock-head__meta {
  margin-left: auto;
  display: flex; align-items: center; gap: 14px;
}
.cock-head__indicator {
  width: 8px; height: 8px; border-radius: 50%;
  background: #999;
  flex-shrink: 0;
}
.cock-head__indicator.is-live {
  background: #1ea14b;
  box-shadow: 0 0 0 0 rgba(30,161,75,.5);
  animation: livePulse 2s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(30,161,75,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(30,161,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(30,161,75,0); }
}
.cock-head__status {
  font-family: var(--cock-mono);
  font-size: 12px;
  color: var(--cock-ink);
  letter-spacing: .02em;
}
.cock-head__lang {
  text-decoration: none;
  font-family: var(--cock-mono);
  font-size: 12px;
  color: var(--cock-muted);
  border: 1px solid var(--cock-line);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: .1em;
}
.cock-head__cta {
  background: var(--cock-ink);
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background .2s ease;
}
.cock-head__cta:hover { background: var(--cock-red); }

/* =============================================================
   Hero-Cockpit
   ============================================================= */
.cock-hero {
  padding: 48px 0 60px;
  background: var(--cock-paper);
}
.cock-hero__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

/* Datum/Zeit-Block */
.cock-hero__time {
  display: flex; align-items: baseline;
  gap: 14px;
  font-family: var(--cock-mono);
  border-bottom: 1px solid var(--cock-line);
  padding-bottom: 18px;
  flex-wrap: wrap;
}
.cock-hero__time-clock {
  font-size: 28px;
  font-weight: 500;
  color: var(--cock-ink);
  letter-spacing: -.01em;
}
.cock-hero__time-day {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--cock-red);
  font-weight: 700;
}
.cock-hero__time-date {
  font-size: 13px;
  color: var(--cock-muted);
  margin-left: auto;
}

/* Hauptaussage */
.cock-hero__lead { padding: 16px 0 8px; }
.cock-hero__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(42px, 6.5vw, 92px);
  line-height: .95;
  letter-spacing: .025em;
  color: var(--cock-ink);
  margin: 0 0 14px;
  font-weight: 400;
}
.cock-hero__title em {
  font-style: normal;
  color: var(--cock-red);
  position: relative;
  display: inline-block;
}
.cock-hero__title em::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 4px;
  height: 6px;
  background: rgba(237,28,36,.18);
  z-index: -1;
}
.cock-hero__sub {
  font-family: var(--cock-mono);
  font-size: 15px;
  color: var(--cock-ink);
  margin: 0;
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.cock-hero__sub strong {
  font-weight: 700;
  color: var(--cock-ink);
}
.cock-hero__note {
  color: var(--cock-muted);
  font-size: 13px;
  font-style: italic;
}

/* Pills */
.cock-pill {
  display: inline-flex; align-items: center;
  font-family: var(--cock-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cock-ink);
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 1px solid var(--cock-ink);
  white-space: nowrap;
}
.cock-pill--warn {
  background: var(--cock-red);
  border-color: var(--cock-red);
}
.cock-pill--out {
  background: transparent;
  color: var(--cock-muted);
  border-color: var(--cock-line);
  text-decoration: line-through;
}
.cock-pill--ghost {
  background: transparent;
  color: var(--cock-muted);
  border-color: var(--cock-line);
}

/* Live-Event Banner */
.cock-live {
  display: flex; align-items: center;
  gap: 14px; flex-wrap: wrap;
  text-decoration: none;
  background: var(--cock-ink);
  color: #fff;
  padding: 18px 22px;
  border-radius: 8px;
  margin-top: 8px;
  transition: transform .2s ease;
}
.cock-live:hover { transform: translateY(-2px); }
.cock-live--upcoming { background: #1f1f1f; }

.cock-live__dot {
  width: 10px; height: 10px;
  background: var(--cock-red);
  border-radius: 50%;
  animation: livePulseRed 1.4s ease-out infinite;
  flex-shrink: 0;
}
.cock-live__dot--soon {
  background: #ffb84d;
  animation: none;
}
@keyframes livePulseRed {
  0%   { box-shadow: 0 0 0 0 rgba(237,28,36,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(237,28,36,0); }
  100% { box-shadow: 0 0 0 0 rgba(237,28,36,0); }
}

.cock-live__label {
  font-family: var(--cock-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cock-red);
}
.cock-live__title {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  margin-right: 4px;
}
.cock-live__fmt {
  font-family: var(--cock-mono);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
}
.cock-live__time {
  font-family: var(--cock-mono);
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-left: auto;
}
.cock-live__arrow {
  font-size: 18px;
  margin-left: 4px;
}

/* Quick-Cards */
.cock-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.cock-quick__card {
  background: var(--cock-card);
  border: 1px solid var(--cock-line);
  border-radius: 8px;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--cock-ink);
  display: flex; flex-direction: column;
  gap: 4px;
  transition: border-color .2s ease, transform .2s ease;
}
.cock-quick__card:hover {
  border-color: var(--cock-ink);
  transform: translateY(-2px);
}
.cock-quick__eyebrow {
  font-family: var(--cock-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cock-red);
  margin-bottom: 4px;
}
.cock-quick__title {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  letter-spacing: .04em;
  margin: 0;
  line-height: 1;
  font-weight: 400;
}
.cock-quick__text {
  font-size: 13px;
  color: var(--cock-muted);
  line-height: 1.4;
  margin: 4px 0 0;
}
.cock-quick__cta {
  margin-top: auto;
  padding-top: 10px;
  font-family: var(--cock-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cock-ink);
}
.cock-quick__card:hover .cock-quick__cta { color: var(--cock-red); }

/* =============================================================
   Diese Woche — Liste
   ============================================================= */
.cock-week {
  border-top: 1px solid var(--cock-line);
  background: var(--cock-paper);
  padding: 60px 0 60px;
}
.cock-week__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.cock-week__head {
  display: flex; align-items: baseline;
  gap: 18px; flex-wrap: wrap;
  border-bottom: 2px solid var(--cock-line-strong);
  padding-bottom: 14px;
  margin-bottom: 8px;
}
.cock-week__eyebrow {
  font-family: var(--cock-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cock-red);
}
.cock-week__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 4.5vw, 56px);
  letter-spacing: .03em;
  line-height: 1;
  margin: 0;
  font-weight: 400;
}
.cock-week__more {
  margin-left: auto;
  font-family: var(--cock-mono);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: var(--cock-ink);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.cock-week__more:hover { color: var(--cock-red); }

.cock-week__empty {
  font-family: var(--cock-mono);
  font-size: 14px;
  color: var(--cock-muted);
  padding: 32px 0;
}
.cock-week__empty a {
  color: var(--cock-ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cock-week__list {
  list-style: none; padding: 0; margin: 0;
}
.cock-week__row {
  display: grid;
  grid-template-columns: 96px 60px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cock-line);
  text-decoration: none;
  color: var(--cock-ink);
  transition: padding .2s ease, background .2s ease;
}
.cock-week__row:hover {
  background: rgba(0,0,0,.02);
  padding-left: 8px; padding-right: 8px;
}

.cock-week__day {
  display: flex; flex-direction: column;
  font-family: var(--cock-mono);
  line-height: 1.1;
}
.cock-week__day-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--cock-muted);
}
.cock-week__day.is-today .cock-week__day-name {
  color: var(--cock-red);
}
.cock-week__day-num {
  font-size: 20px;
  font-weight: 500;
  color: var(--cock-ink);
  margin-top: 2px;
}

.cock-week__time {
  font-family: var(--cock-mono);
  font-size: 16px;
  color: var(--cock-ink);
  font-weight: 500;
}

.cock-week__main {
  display: flex; align-items: center;
  gap: 10px; flex-wrap: wrap;
  min-width: 0;
}
.cock-week__name {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  font-weight: 400;
  line-height: 1;
}
.cock-week__fmt {
  font-family: var(--cock-mono);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
}

.cock-week__status {
  display: flex; align-items: center;
  gap: 12px;
}
.cock-week__arrow {
  font-size: 16px;
  color: var(--cock-muted);
  transition: transform .2s ease, color .2s ease;
}
.cock-week__row:hover .cock-week__arrow {
  transform: translateX(4px);
  color: var(--cock-ink);
}

/* =============================================================
   Acht Welten — Sub-Navi-Style
   ============================================================= */
.cock-worlds {
  background: var(--cock-paper);
  border-top: 1px solid var(--cock-line);
  padding: 50px 0 60px;
}
.cock-worlds__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.cock-worlds__head {
  margin-bottom: 18px;
  border-bottom: 2px solid var(--cock-line-strong);
  padding-bottom: 14px;
  display: flex; align-items: baseline;
  gap: 18px; flex-wrap: wrap;
}
.cock-worlds__eyebrow {
  font-family: var(--cock-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cock-red);
}
.cock-worlds__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: .03em;
  margin: 0;
  font-weight: 400;
}
.cock-worlds__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--cock-line);
}
.cock-world {
  display: flex; flex-direction: column;
  text-decoration: none;
  color: var(--cock-ink);
  padding: 16px 18px 18px;
  border-right: 1px solid var(--cock-line);
  border-bottom: 1px solid var(--cock-line);
  transition: background .2s ease;
  min-height: 110px;
}
.cock-world:nth-child(4n) { border-right: 0; }
.cock-world:hover { background: var(--cock-ink); color: #fff; }
.cock-world:hover .cock-world__sub { color: rgba(255,255,255,.7); }
.cock-world:hover .cock-world__num { color: var(--cock-red); }

.cock-world__num {
  font-family: var(--cock-mono);
  font-size: 11px;
  color: var(--cock-muted);
  letter-spacing: .15em;
  margin-bottom: 12px;
  transition: color .2s ease;
}
.cock-world__name {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  margin-bottom: 4px;
  font-weight: 400;
}
.cock-world__sub {
  font-family: var(--cock-mono);
  font-size: 11px;
  color: var(--cock-muted);
  margin-top: auto;
  line-height: 1.4;
  transition: color .2s ease;
}

/* =============================================================
   Galerie (kompakt)
   ============================================================= */
.cock-gallery {
  padding: 0;
  background: var(--cock-paper);
  border-top: 1px solid var(--cock-line);
  overflow: hidden;
}
.cock-gallery__row {
  overflow: hidden;
  border-bottom: 1px solid var(--cock-line);
}
.cock-gallery__row:last-child { border-bottom: 0; }
.cock-gallery__track {
  display: flex; gap: 0;
  width: max-content;
  animation: marqueeLeft 80s linear infinite;
}
.cock-gallery__row--right .cock-gallery__track {
  animation: marqueeRight 80s linear infinite;
}
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.cock-gallery__item {
  position: relative;
  flex-shrink: 0;
  width: 280px; height: 200px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--cock-line);
}
.cock-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cock-gallery__item figcaption {
  position: absolute;
  bottom: 8px; left: 12px;
  font-family: var(--cock-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}

/* =============================================================
   Karriere-Banner schmal
   ============================================================= */
.cock-jobs {
  background: var(--cock-ink);
  color: #fff;
  padding: 32px 0;
}
.cock-jobs__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.cock-jobs__txt { flex: 1; min-width: 280px; }
.cock-jobs__eyebrow {
  font-family: var(--cock-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cock-red);
  display: block;
  margin-bottom: 4px;
}
.cock-jobs__title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: .03em;
  margin: 0;
  font-weight: 400;
}
.cock-jobs__cta {
  background: #fff;
  color: var(--cock-ink);
  text-decoration: none;
  padding: 12px 20px;
  font-family: var(--cock-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background .2s ease, color .2s ease;
}
.cock-jobs__cta:hover { background: var(--cock-red); color: #fff; }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 980px) {
  .cock-head__status { display: none; }
  .cock-quick { grid-template-columns: 1fr; }
  .cock-week__row {
    grid-template-columns: 70px 50px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 14px;
  }
  .cock-week__status {
    grid-column: 1 / -1;
    justify-content: flex-end;
    margin-top: -8px;
  }
  .cock-worlds__grid { grid-template-columns: repeat(2, 1fr); }
  .cock-world:nth-child(4n) { border-right: 1px solid var(--cock-line); }
  .cock-world:nth-child(2n) { border-right: 0; }
  .cock-gallery__item { width: 200px; height: 140px; }
}

@media (max-width: 600px) {
  .cock-head { padding: 10px 16px; }
  .cock-hero { padding: 28px 0 40px; }
  .cock-hero__container { padding: 0 16px; }
  .cock-hero__time { gap: 10px; }
  .cock-hero__time-date { width: 100%; margin-left: 0; }
  .cock-week__container, .cock-worlds__container, .cock-jobs__container { padding: 0 16px; }
  .cock-live { padding: 14px 16px; gap: 8px; }
  .cock-live__time { width: 100%; margin-left: 0; }
}
