/*
Theme Name: Astra
Theme URI: https://limelight-agentur.de/
Author: Lena Kremer – Limelight Agentur
Description: Creator-Management-Theme für Limelight. Dunkel, minimal, bianco-vibe. Haupttypo Aguila, Serif-Akzent Playfair Display, Fließtext Inter.
Version: 2.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: limelight
*/

/* ── Brand Font: Aguila (per Media-Library-Datei) ───────────── */
@font-face {
  font-family: "Aguila";
  src: url("https://limelight-agentur.de/wp-content/uploads/2026/06/Latinotype-Aguila-Thin.otf") format("opentype");
  font-weight: 100 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg:        #000000;   /* dunkel · minimal · bianco-vibe */
  --bg-alt:    #070707;
  --surface:   #0d0d0d;
  --surface-2: #151515;
  --ink:       #f4f4f5;
  --ink-soft:  #a1a1aa;
  --muted:     #6b6b70;
  --accent:    #ffffff;
  --accent-2:  #ffffff;
  --line:      rgba(255,255,255,0.07);
  --line-2:    rgba(255,255,255,0.14);

  --display: "Aguila", "Inter", -apple-system, sans-serif;
  --sans: "Inter", "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Playfair Display", Georgia, serif;

  --wrap: 1200px;
  --radius: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* ── Typography ─────────────────────────────────────────────── */
.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: -0.03em;
  line-height: 1.0;
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
}
.display-hero { font-size: clamp(3.1rem, 9.5vw, 7.2rem); font-weight: 400; letter-spacing: -0.045em; line-height: 0.96; }

/* Serif-Akzent: dezenter, statischer Metallic-Schimmer */
.serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.015em;
  font-size: 1.06em;
  background-image: linear-gradient(176deg, #ffffff 0%, #e6e8ec 40%, #b9bec7 72%, #eef0f3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.spark { display:inline-block; color: var(--ink-soft); font-size: 0.7em; vertical-align: 0.15em; opacity: 0.75; }
.spark.s2, .spark.s3 { opacity: 0.6; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.6;
}

p { color: var(--ink-soft); }
p + p { margin-top: 1.1em; }

/* ── Pills / labels ─────────────────────────────────────────── */
.pill {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  font-weight: 600;
  color: var(--accent);
  padding: 8px 18px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  margin-bottom: 26px;
}
.pill-line { color: var(--ink-soft); border-color: var(--line); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.005em;
  padding: 14px 28px;
  border-radius: 100px;
  background: var(--accent);
  color: #050505;
  border: 1px solid var(--accent);
  transition: transform .18s var(--ease-out), background .2s var(--ease-out), color .2s, border-color .2s, box-shadow .2s var(--ease-out);
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(255,255,255,0.12); }
}
.btn:active { transform: scale(0.97); transition-duration: .08s; }
.btn-lg { padding: 17px 38px; font-size: 0.95rem; }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
  box-shadow: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn-ghost:hover { background: rgba(255,255,255,0.05); color: var(--ink); border-color: var(--ink); box-shadow: none; }
}

/* ── Header / Masthead ──────────────────────────────────────── */
.site-header {
  position: relative;
  z-index: 100;
  padding: 30px 0 0;
}
.masthead-wrap { width: 100%; padding: 0 clamp(14px, 2.4vw, 46px); overflow: visible; }
.masthead-word { display: block; width: 100%; line-height: 0; margin-bottom: 2px; }
.masthead-svg { display: block; width: 100%; height: auto; overflow: visible; }
.masthead-text {
  font-family: var(--display);
  font-weight: 400;
  fill: var(--ink);
  font-size: 200px;
  letter-spacing: -0.03em;
}
.masthead-bar { margin-top: 8px; border-top: none; }
.masthead-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 16px clamp(14px, 2.4vw, 46px) 0;
  justify-content: center;
}
.logo { font-weight: 800; font-size: 1.35rem; letter-spacing: -0.04em; text-transform: lowercase; display: inline-flex; align-items: center; gap: 9px; }
.logo-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px 2px rgba(255,255,255,0.6); }
.logo-lg { font-size: 1.7rem; }
.footer-brand .logo { font-family: var(--display); font-weight: 400; font-size: clamp(1.7rem, 2.4vw, 2.3rem); letter-spacing: -0.03em; line-height: 1; white-space: nowrap; }
.footer-brand .logo .logo-dot { width: 7px; height: 7px; box-shadow: 0 0 10px 1px rgba(255,255,255,0.5); }

.main-nav { display: flex; gap: clamp(22px, 3vw, 46px); flex-wrap: wrap; margin-left: 0; justify-content: center; }
.main-nav a {
  font-family: var(--display);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: 0;
  position: relative;
  transition: color .2s var(--ease-out);
}
.main-nav a:hover, .main-nav a.is-active { color: var(--ink); }
.main-nav a.is-active::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px; background: var(--accent);
}

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 34px; height: 34px; flex-direction: column; gap: 7px; justify-content: center; }
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--ink); transition: transform .35s var(--ease), opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px;
  background: transparent;
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease), padding .45s var(--ease);
}
.mobile-nav.open { max-height: 460px; padding: 12px 28px 28px; }
.mobile-nav a { padding: 15px 0; font-family: var(--display); font-size: 1.8rem; font-weight: 400; letter-spacing: -0.02em; text-transform: lowercase; }
.mobile-nav a.is-active { color: var(--accent); }
.mobile-cta { margin-top: 18px; justify-content: center; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  padding: 40px 0 90px;
  overflow: hidden;
}
.hero-grain { display: none; }
.hero-inner { position: relative; z-index: 2; max-width: 960px; }
.hero .display-hero { margin-bottom: 30px; }
.hero .lead { margin-bottom: 40px; font-family: var(--display); font-size: clamp(1.05rem, 1.7vw, 1.5rem); line-height: 1.4; letter-spacing: 0; color: var(--ink-soft); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: lowercase; color: var(--muted);
  z-index: 2;
}
.scroll-hint span { position: relative; }
.scroll-hint span::after {
  content: ""; position: absolute; left: 50%; top: 130%;
  width: 1px; height: 34px; background: linear-gradient(var(--muted), transparent);
  animation: scrollpulse 2.2s var(--ease) infinite;
}
@keyframes scrollpulse { 0%,100%{opacity:.3;transform:scaleY(.6)} 50%{opacity:1;transform:scaleY(1)} }

/* ── Marquee ────────────────────────────────────────────────── */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: var(--bg-alt);
}
.marquee-track {
  display: flex; align-items: center; gap: 30px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-family: var(--sans); font-style: normal; font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.01em; text-transform: lowercase;
  color: var(--ink-soft); white-space: nowrap;
}
.marquee-track .marquee-star { color: var(--muted); font-family: var(--sans); font-style: normal; font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Sections ───────────────────────────────────────────────── */
.section { padding: clamp(96px, 12vw, 168px) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 760px; margin-bottom: 72px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.section-head.center .btn-ghost { margin-top: 26px; }

.grid-2 { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.grid-2-head .display { position: sticky; top: 110px; }
.grid-2-body p { font-size: 1.1rem; }

/* ── Cards ──────────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  transition: transform .25s var(--ease-out), border-color .25s, background .25s;
}
@media (hover: hover) and (pointer: fine) {
  .card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--surface-2); }
}
.card-no { font-family: var(--sans); font-weight: 500; font-size: 0.8rem; letter-spacing: 0.02em; color: var(--muted); }
.card h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; margin: 16px 0 12px; }
.card p { font-size: 0.98rem; }

/* Services: minimalistische, nummerierte Liste (statt Boxen) */
.services-list { display: flex; flex-direction: column; }
.service-row { display: grid; grid-template-columns: 72px 1fr; gap: clamp(20px, 4vw, 56px); padding: clamp(30px, 4vw, 50px) 0; border-top: 1px solid var(--line); align-items: start; }
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-no { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; color: var(--muted); padding-top: 0.6em; will-change: transform; }
.service-body { max-width: 640px; }
.service-body h3 { font-family: var(--display); font-weight: 400; text-transform: lowercase; letter-spacing: -0.02em; font-size: clamp(1.7rem, 3.2vw, 2.6rem); margin-bottom: 12px; }
.service-body p { color: var(--ink-soft); font-size: 1.02rem; max-width: 52ch; }
@media (max-width: 560px) { .service-row { grid-template-columns: 46px 1fr; gap: 16px; } }

/* ── Stats ──────────────────────────────────────────────────── */
.stats-section { padding: clamp(50px, 7vw, 90px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat-value { display: block; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; color: var(--accent-2); }
.stat-label { display: block; margin-top: 10px; font-size: 0.86rem; color: var(--muted); letter-spacing: 0.02em; }

/* ── Tags ───────────────────────────────────────────────────── */
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tag {
  font-size: 0.82rem; padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--line-2); color: var(--ink-soft);
}

/* ── CTA band ───────────────────────────────────────────────── */
.cta-band {
  padding: clamp(80px, 12vw, 150px) 0;
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(255,255,255,0.10), transparent 60%),
    var(--bg-alt);
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta-inner { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 22px; }

/* ── Page hero (subpages) ───────────────────────────────────── */
.page-hero { padding: 170px 0 60px; }
.page-hero .lead { margin-top: 26px; }
.page-hero .btn { margin-top: 34px; }
.page-hero-center { max-width: 940px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.page-hero-center .lead { margin-left: auto; margin-right: auto; }

/* ── Featured creator ───────────────────────────────────────── */
.featured { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.featured-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 0;
  border: 1px solid var(--line-2);
  background: linear-gradient(160deg, var(--surface-2), var(--bg));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.featured-initials { font-family: var(--serif); font-style: italic; font-size: clamp(4rem, 12vw, 8rem); color: var(--accent); }
.featured-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-badge {
  position: absolute; bottom: 20px; left: 20px;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: lowercase;
  color: var(--ink-soft); border: 1px solid var(--line-2); padding: 7px 15px; border-radius: 100px;
  background: rgba(10,10,10,0.5); backdrop-filter: blur(6px);
}
.featured-role { color: var(--ink); font-weight: 600; margin-top: 10px; }
.featured-niche { margin: 2px 0 18px; font-size: 1.3rem; }
.featured-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  font-size: 0.85rem; padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--line-2); color: var(--ink); transition: background .3s, border-color .3s;
}
.chip:hover { background: rgba(255,255,255,0.06); border-color: var(--ink); }

/* ── Roster grid ────────────────────────────────────────────── */
.roster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.roster-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px; text-align: center;
  transition: transform .25s var(--ease-out), border-color .25s;
}
@media (hover: hover) and (pointer: fine) {
  .roster-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
}
.roster-avatar {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 1.7rem; color: var(--accent);
  background: var(--surface-2); border: 1px solid var(--line-2);
}
.roster-card h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }
.roster-handle { color: var(--muted); font-size: 0.9rem; }
.roster-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.roster-grid-3 { grid-template-columns: repeat(3, 1fr); }
.roster-social { display: flex; flex-wrap: wrap; gap: 6px 14px; justify-content: center; margin-top: 16px; }
.roster-social a {
  font-size: 0.82rem; color: var(--ink-soft); letter-spacing: 0.01em;
  position: relative; transition: color .3s;
}
.roster-social a:hover { color: var(--ink); }
.roster-social a:not(:last-child)::after {
  content: "·"; position: absolute; right: -9px; color: var(--muted);
}

/* ── Photo CTA banner ───────────────────────────────────────── */
.photo-cta { position: relative; min-height: clamp(420px, 56vh, 600px); display: flex; align-items: stretch; overflow: hidden; }
.photo-cta-media { position: absolute; inset: 0; }
.photo-cta-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.photo-cta-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.82) 100%);
}
.photo-cta-overlay { position: relative; z-index: 2; width: 100%; display: flex; align-items: center; padding: clamp(48px, 7vw, 90px) 0; }
.photo-cta-inner { max-width: 880px; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.photo-cta-title { font-size: clamp(2.6rem, 7.5vw, 5.2rem); line-height: 1.0; letter-spacing: -0.03em; }
.photo-cta-sub { color: var(--ink-soft); max-width: 460px; font-size: 1.05rem; }

/* ── Photo feature (contained) ──────────────────────────────── */
.section-tight { padding: clamp(20px, 4vw, 48px) 0; }
.photo-feature { margin: 0 auto; max-width: 560px; border-radius: 0; overflow: hidden; }
.photo-feature img { display: block; width: 100%; height: auto; border-radius: 0; }

/* ── Platforms ──────────────────────────────────────────────── */
.platforms { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.platform {
  font-size: 1.05rem; font-weight: 600; padding: 12px 24px;
  border-radius: 100px; border: 1px solid var(--line-2); color: var(--ink-soft);
  transition: color .3s, border-color .3s;
}
.platform:hover { color: var(--ink); border-color: var(--ink); }

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px, 5vw, 70px); }
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.contact-item { display: flex; flex-direction: column; gap: 5px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.contact-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: lowercase; color: var(--muted); }
.contact-item a, .contact-item span { font-size: 1.1rem; color: var(--ink); }
.contact-item a:hover { color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: lowercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 15px 18px; color: var(--ink); font-family: var(--sans); font-size: 1rem;
  transition: border-color .3s, background .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--surface-2);
}
.field textarea { resize: vertical; }
.contact-form .btn { align-self: flex-start; margin-top: 6px; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--line); padding: 80px 0 40px; background: var(--bg-alt); }
.footer-top { display: grid; grid-template-columns: 1fr 2.7fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--line); }
.footer-tagline { margin-top: 20px; max-width: 34ch; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: lowercase; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.footer-col a, .footer-col span { color: var(--ink-soft); font-size: 0.95rem; transition: color .3s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 30px; flex-wrap: wrap; }
.footer-bottom span { font-size: 0.83rem; color: var(--muted); }

/* ── Reveal animation (Emil: ease-out, blur-mask, staggered) ── */
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(3px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), filter .7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
html.js .reveal.in { opacity: 1; transform: none; filter: blur(0); }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none; }
  .marquee-track { animation: none; }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .grid-2 { grid-template-columns: 1fr; gap: 34px; }
  .grid-2-head .display { position: static; }
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .featured { grid-template-columns: 1fr; }
  .featured-visual { max-width: 320px; }
  .roster-grid, .roster-grid-3 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .photo-cta { min-height: clamp(460px, 66vh, 620px); }
  .photo-cta-inner { max-width: 100%; }
  .masthead-bar-inner { justify-content: flex-end; padding-top: 10px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .hero { padding: 120px 0 70px; min-height: auto; }
  .roster-grid, .roster-grid-3 { grid-template-columns: 1fr; }
  .masthead-word { font-size: clamp(2.3rem, 15vw, 4rem); }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .scroll-hint { display: none; }
}
@media (max-width: 380px) {
  .masthead-word { font-size: 2.1rem; letter-spacing: -0.02em; }
}

/* ── Hero: Logo-zentriert + Tagline ─────────────────────────── */
.hero-centered { max-width: 900px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-centered .lead { margin: 0 auto 40px; }
.hero-centered .hero-actions { justify-content: center; }
.hero-tagline {
  font-family: var(--sans);
  font-size: clamp(0.82rem, 1.4vw, 1.02rem);
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 30px;
}

/* ── Clients (kleiner Lowercase-Block) ──────────────────────── */
.clients {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px 8px;
  line-height: 1.45;
}
.client {
  font-size: 0.82rem;
  text-transform: lowercase;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  transition: color .3s;
}
.clients:hover .client { color: var(--muted); }
.clients .client:hover { color: var(--ink); }
.client-sep { color: var(--muted); font-size: 0.75rem; opacity: 0.5; }

/* ── Statement Band ─────────────────────────────────────────── */
.statement-band {
  padding: clamp(90px, 15vw, 200px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(80% 120% at 50% 50%, rgba(255,255,255,0.07), transparent 65%),
    var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.statement-band .wrap { position: relative; z-index: 2; }
.statement { max-width: 15ch; margin: 0 auto; line-height: 1.02; }
@media (max-width: 560px) { .statement { max-width: 100%; } }
.statement-sub {
  text-align: center;
  margin-top: 30px;
  color: var(--muted);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  letter-spacing: 0.04em;
}

/* ── Lowercase-Look ─────────────────────────────────────────── */
.btn, .main-nav a, .mobile-nav a, .footer-col a, .footer-col h4,
.card h3, .roster-card h3, .platform, .chip, .featured-role,
.stat-label, .contact-label { text-transform: lowercase; }
.card h3, .roster-card h3 { font-family: var(--sans); font-weight: 600; }

.cards-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .cards-3 { grid-template-columns: 1fr; } }

/* ── Chrome-Akzente (sehr dezent, Hintergrund) ──────────────── */
.chrome-accent {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 540px; height: 540px;
  border-radius: 48% 52% 55% 45% / 50% 45% 55% 50%;
  background: conic-gradient(from 200deg at 50% 50%,
    #c9ccd4, #6b6e77, #eef1f6, #83868f, #b7bac2, #55585f, #e2e5ec, #9a9da6, #c9ccd4);
  filter: blur(58px) saturate(0.65);
  opacity: 0.06;
  mix-blend-mode: screen;
}
.chrome-tr { display: none; }
.chrome-bl { display: none; }
.chrome-c { display: none; }
@media (max-width: 640px) { .chrome-accent { width: 320px; height: 320px; filter: blur(44px); } .chrome-c { width: 440px; height: 440px; } }

/* ── Legal / Impressum ──────────────────────────────────────── */
.legal { max-width: 760px; }
.legal h2 { font-family: var(--sans); font-weight: 600; font-size: 1.15rem; color: var(--ink); margin: 34px 0 8px; }
.legal p { color: var(--ink-soft); }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: var(--ink); }

main, .site-footer, .ai-block { text-transform: lowercase; }
.legal, .legal * { text-transform: none; }
input, textarea, select, .legal { text-transform: none; }

/* ── Ask AI Block ───────────────────────────────────────────── */
.ai-block { padding: clamp(64px, 9vw, 120px) 0; border-top: 1px solid var(--line); background: var(--bg-alt); }
.ai-block .wrap { text-align: center; display: flex; flex-direction: column; align-items: center; }
.ai-block .lead { margin: 16px auto 30px; }
.ai-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ai-buttons .btn { min-width: 132px; justify-content: center; }

/* ── Toast ──────────────────────────────────────────────────── */
.toast {
  position: fixed; left: 50%; bottom: 30px;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #0a0a0a;
  padding: 14px 26px; border-radius: 100px;
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  opacity: 0; pointer-events: none; z-index: 300;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Hintergrund überall echtes Schwarz erzwingen (Elementor-Global-Braun #322D31 killen) ── */
html, body, body[class*="elementor"] { background-color: #060606 !important; }
html body[class] .section,
html body[class] .section-alt,
html body[class] .hero,
html body[class] .page-hero,
html body[class] .cta-band,
html body[class] .statement-band,
html body[class] .ai-block,
html body[class] .site-footer,
html body[class] .marquee,
html body[class] .stats-section,
html body[class] main { background-color: #060606 !important; }
.elementor, .elementor-section, .elementor-container, .elementor-widget-wrap { background-color: transparent !important; }
/* Talents-Banner ohne Foto: dezente dunkle Fläche (neues Bild folgt) */
.photo-cta { background: linear-gradient(165deg, #141414, #070707) !important; }
/* ganz dezenter Verlauf im why-limelight-Block */
html body[class] #approach { background-image: radial-gradient(80% 95% at 15% 12%, rgba(255,255,255,0.045), transparent 60%) !important; }
html body[class] .statement-band { background-image: radial-gradient(140% 160% at 50% 42%, rgba(255,255,255,0.06), rgba(255,255,255,0.018) 46%, transparent 82%) !important; }
/* Karten / Boxen / Felder ebenfalls echtes Schwarz (statt Elementor-Braun) */
html body[class] .card,
html body[class] .roster-card,
html body[class] .field input,
html body[class] .field select,
html body[class] .field textarea { background-color: #0e0e0e !important; }
html body[class] .featured-visual { background: #0e0e0e !important; }
html body[class] .featured-visual, html body[class] .featured-photo,
html body[class] .photo-feature, html body[class] .photo-feature img { border-radius: 0 !important; }

/* ── Cursor-Spotlight (nur Desktop) ─────────────────────────── */
@property --glow-color {
  syntax: "<color>";
  inherits: false;
  initial-value: rgba(255,255,255,0.08);
}
.cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 640px; height: 640px; margin: -320px 0 0 -320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-color), rgba(255,255,255,0) 62%);
  pointer-events: none; z-index: 4; opacity: 0;
  transform: translate3d(-1000px, -1000px, 0);
  transition: opacity .5s ease;
  mix-blend-mode: screen;
  will-change: transform;
  animation: sunsetGlow 32s ease-in-out infinite;
}
/* Sonnenuntergang: weißlich → gelb → orange → pink → zurück (sehr langsam) */
@keyframes sunsetGlow {
  0%   { --glow-color: rgba(255,255,255,0.10); }
  25%  { --glow-color: rgba(255,208,90,0.18); }
  50%  { --glow-color: rgba(255,128,52,0.20); }
  75%  { --glow-color: rgba(255,92,172,0.18); }
  100% { --glow-color: rgba(255,255,255,0.10); }
}
@media (hover: none), (pointer: coarse) { .cursor-glow { display: none !important; } }
@media (prefers-reduced-motion: reduce) { .cursor-glow { display: none !important; } }

/* ── Mobile: wabernde Lichtpunkte (Sonnenuntergang) ─────────── */
.mobile-glow {
  position: fixed; top: 0; left: 0;
  width: 410px; height: 410px; margin: -205px 0 0 -205px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-color), rgba(255,255,255,0) 62%);
  pointer-events: none; z-index: 3; opacity: 0.9;
  mix-blend-mode: screen;
  animation: sunsetGlowStrong 30s ease-in-out infinite, glowPulse 5.5s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes glowPulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
@keyframes sunsetGlowStrong {
  0%   { --glow-color: rgba(255,240,205,0.16); }
  25%  { --glow-color: rgba(255,198,70,0.30); }
  50%  { --glow-color: rgba(255,118,38,0.34); }
  75%  { --glow-color: rgba(255,78,165,0.30); }
  100% { --glow-color: rgba(255,240,205,0.16); }
}
.site-header, .masthead-bar, .masthead-wrap, .mobile-nav { border: none !important; }
@media (prefers-reduced-motion: reduce) { .mobile-glow { display: none !important; } }
html body[class] .stat,
html body[class] .clients,
html body[class] .pill { background-color: transparent !important; }
