/* Showreel Grid additions: clickable cards, "show more" button, lightbox */

.video-card { cursor: pointer; }
.video-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* Generic button (used for Mehr-anzeigen + lightbox cta) */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font: inherit; font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s, transform .05s;
}
.btn:active { transform: translateY(1px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* Lightbox */
.lb-overlay {
  position: fixed; inset: 0; z-index: 8500;
  background: rgba(0,0,0,0.88);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.lb-frame {
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
  gap: 24px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
@media (max-width: 900px) {
  .lb-frame { grid-template-columns: 1fr; max-height: none; }
}
.lb-media {
  background: #000;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
}
.lb-media video {
  width: 100%; height: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #000;
}
.lb-placeholder {
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 40px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.lb-placeholder p { font-size: 15px; line-height: 1.5; max-width: 38ch; margin: 0; }

.lb-meta {
  padding: 28px 24px 24px;
  overflow-y: auto;
}
.lb-meta h3 {
  font-size: 22px; font-weight: 500; letter-spacing: -0.01em;
  line-height: 1.2; margin: 12px 0 14px;
}
.lb-meta p { font-size: 14px; line-height: 1.6; margin: 0 0 14px; }
.lb-voice { font-size: 13px; color: var(--muted); }
.lb-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.lb-tag {
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink); opacity: 0.75;
}

.lb-close, .lb-nav {
  position: fixed;
  appearance: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .15s, transform .05s;
  z-index: 8600;
}
.lb-close { top: 24px; right: 24px; font-size: 28px; }
.lb-nav { top: 50%; transform: translateY(-50%); font-size: 32px; }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,0.2); }
.lb-close:focus-visible, .lb-nav:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

@media (max-width: 600px) {
  .lb-nav { display: none; }
  .lb-close { top: 14px; right: 14px; }
}

/* Hero Audio Player */
.hero-audio {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  padding: 20px 24px;
  border-radius: 14px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.hero-audio-play {
  appearance: none; border: 0; cursor: pointer;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .1s, filter .15s;
}
.hero-audio-play:hover { filter: brightness(1.1); }
.hero-audio-play:active { transform: scale(0.96); }
.hero-audio-play:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.hero-audio-play svg { width: 18px; height: 18px; }

.hero-audio-body { min-width: 0; }
.hero-audio-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.hero-audio-label {
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted);
}
.hero-audio-consent {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  font: inherit; font-size: 11px;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0;
}
.hero-audio-consent:hover { text-decoration: underline; }
.hero-audio-canvas {
  display: block;
  width: 100%; height: 56px;
  cursor: pointer;
}
.hero-audio-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .hero-audio { grid-template-columns: auto 1fr; gap: 12px; padding: 14px 16px; }
  .hero-audio-time { grid-column: 1 / -1; text-align: right; }
  .hero-audio-play { width: 44px; height: 44px; }
  .hero-audio-canvas { height: 40px; }
}



/* Hero — Micro-Teaser zwischen Tagline und Audio-Player */
.hero-audio-teaser {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 28px; margin-bottom: -12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink); opacity: 0.9;
}
.hero-audio-teaser__icon {
  color: var(--accent);
  font-size: 11px;
}
@media (max-width: 600px) {
  .hero-audio-teaser { margin-top: 24px; font-size: 12px; }
}

/* Hero buttons — 3rd CTA outline-style + responsive 3-up/stack */
.cta--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.cta--outline:hover { border-color: var(--accent); color: var(--accent); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-actions--3 .cta { white-space: nowrap; }
@media (max-width: 768px) {
  .hero-actions--3 { flex-direction: column; align-items: stretch; }
  .hero-actions--3 .cta {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    /* Auf column-Containern darf flex-grow nicht 1 sein, sonst zieht
       sich der primaere CTA auf 100% Container-Hoehe = mehrere hundert
       Pixel. flex:0 0 auto haelt jeden Button auf Inhaltshoehe. */
    flex: 0 0 auto;
  }
}

/* Marken-Headline darf nicht umbrechen — der Punkt soll bei "spreche."
   bleiben; bei zu schmalem Viewport fällt nowrap weg (Mobile-Lesbarkeit). */
.brands-headline {
  max-width: none !important;
  white-space: nowrap;
  min-width: 0;
}
@media (max-width: 768px) {
  .brands-headline { white-space: normal; }
}

/* English Voice Work Section */
.english-work .english-work-feature {
  /* Featured Video — full width im Container */
  display: block;
  margin-bottom: 24px;
  cursor: pointer;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.english-work-audios {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) {
  .english-work-audios { grid-template-columns: 1fr 1fr; }
}
.english-work-audio {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .15s, transform .05s;
}
.english-work-audio.is-playing { border-color: var(--accent); }
.english-work-audio-play {
  appearance: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.english-work-audio-play svg { width: 14px; height: 14px; }
.english-work-audio-meta { min-width: 0; }
.english-work-audio-meta h4 {
  font-size: 14px; font-weight: 600; margin: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.english-work-audio-meta span {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.english-work-audio-wave { min-width: 80px; opacity: 0.7; cursor: pointer; }
.english-work-audio-dur {
  font-family: var(--font-mono);
  font-size: 12px; color: var(--muted);
}
@media (max-width: 600px) {
  .english-work-audio { grid-template-columns: auto 1fr; padding: 14px; }
  .english-work-audio-wave, .english-work-audio-dur { display: none; }
}

/* Service-Kachel S05 (Englisch/German) clickable */
.service.service-link {
  cursor: pointer;
  transition: background-color .15s, transform .05s;
}
.service.service-link:hover { background: var(--paper-2); }
.service.service-link:hover .service-num .arrow { color: var(--accent); transform: translate(2px, -2px); }
.service.service-link:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }


/* S06 (or any service without SERVICE_TARGETS entry) bleibt statisch —
   kein Pointer, kein Hover-Lift, kein Pfeil-Indikator. Eric kann später
   z.B. Podcast-Items hochladen und einfach S06 zu SERVICE_TARGETS hinzufügen. */
.service-static { cursor: default; }
.service-static .service-num .arrow { display: none; }
