/* ============================================================
   AngelS Lab — home.css (nur index.html)
   ============================================================ */

/* ─── HERO SPLIT ──────────────────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  align-items: center;
  gap: 0;
}

.hero-left {
  padding: 80px 64px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-body);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── HERO RIGHT / MEDIA ──────────────────────────────────── */
.hero-right {
  position: relative;
  height: 100%;
  min-height: 600px;
  background: var(--bg-mid);
  overflow: hidden;
}

.hero-media {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Placeholder wenn noch kein Foto */
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0f0f22 0%, #1a1a3e 50%, #0a0a18 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-inner {
  text-align: center;
  border: 2px dashed rgba(240, 165, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 280px;
}
.placeholder-monogram {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.8;
}
.placeholder-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Floating Stat Cards on Hero */
.hero-stat-card {
  position: absolute;
  background: rgba(10, 10, 24, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  min-width: 80px;
  z-index: 10;
}
.card-tl { top: 32px; left: 24px; }
.card-br { bottom: 32px; right: 24px; }

.stat-pill-number {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-pill-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ─── PROOF STRIP ─────────────────────────────────────────── */
.proof-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 0;
}
.proof-grid {
  display: flex;
  align-items: stretch;
}
.proof-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
}
.proof-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.proof-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.3;
}
.proof-divider {
  width: 1px;
  background: var(--border-dim);
  flex-shrink: 0;
}

/* ─── INTRO GRID ──────────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Video Placeholder */
.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-inner {
  text-align: center;
}
.play-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 16px;
  display: block;
  margin: 0 auto 16px;
}
.play-btn svg {
  width: 72px;
  height: 72px;
  transition: transform 0.2s;
}
.play-btn:hover svg { transform: scale(1.08); }
.video-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.video-wrapper {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── EXPERTISE GRID ──────────────────────────────────────── */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.expertise-item {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s, transform 0.25s;
}
.expertise-item:hover {
  border-color: rgba(240, 165, 0, 0.4);
  transform: translateY(-4px);
}
.expertise-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.expertise-item h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--text);
}
.expertise-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.expertise-link {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--gold);
  transition: opacity 0.2s;
}
.expertise-link:hover { opacity: 0.75; }

/* ─── BIG QUOTE ───────────────────────────────────────────── */
.statement-section {
  padding: 100px 0;
  text-align: center;
}
.big-quote {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
  border: none;
  padding: 0;
}
cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ─── PROJECTS GRID ───────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s;
}
.project-card:hover { border-color: rgba(240, 165, 0, 0.35); }
.project-featured {
  border-color: rgba(240, 165, 0, 0.25);
  background: linear-gradient(160deg, #13132a 0%, #0f0f22 100%);
}
.project-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.project-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.project-card p {
  font-size: 0.93rem;
  line-height: 1.7;
  flex: 1;
}
.project-price {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 20px;
}
.project-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

/* ─── INSTAGRAM GRID ──────────────────────────────────────── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.insta-item {
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.insta-item:hover {
  border-color: var(--border);
  transform: scale(1.03);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-featured { grid-column: 1 / -1; }
  .hero-headline { font-size: clamp(2.4rem, 4vw, 4rem); }
}

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 60px 0 40px;
    order: 2;
  }
  .hero-right {
    order: 1;
    min-height: 360px;
    height: 360px;
  }
  .hero-headline { font-size: 2.8rem; }

  .proof-grid {
    flex-direction: column;
  }
  .proof-divider {
    width: auto;
    height: 1px;
  }

  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-featured { grid-column: auto; }

  .big-quote { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .expertise-grid { grid-template-columns: 1fr; }
}
