/* ═══════════════════════════════════
   landing.css – Landing Page
   danny-evers.de
═══════════════════════════════════ */

/* ── Hero Video ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
  background: var(--dark);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(42,35,32,0.88) 0%,
    rgba(42,35,32,0.6) 50%,
    rgba(42,35,32,0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-portrait {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 560px;
  order: 2;
}

.hero-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
  filter: saturate(0.8) contrast(1.05);
}

.hero-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(42,35,32,0.5) 100%);
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.hero-eyebrow::before {
  content: '';
  width: 2rem; height: 1px;
  background: var(--gold-light);
}

.hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.6rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--white);
  max-width: 38ch;
  line-height: 1.8;
  margin-bottom: 3rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  background: rgba(0,0,0,0.25);
  padding: 0.8rem 1rem;
  backdrop-filter: blur(4px);
}

.hero-sub p { margin: 0; }

/* Leere Paragraphen aus CMS unterdrücken */
.hero-text p:empty,
.hero-sub p:empty { display: none; }

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp 0.6s ease both 0.1s; }
.hero h1      { animation: fadeUp 0.6s ease both 0.25s; }
.hero-sub     { animation: fadeUp 0.6s ease both 0.4s; }
.hero-actions { animation: fadeUp 0.6s ease both 0.55s; }

/* ── Über Danny ── */
.section-intro {
  background: var(--cream);
  padding: 7rem 4rem;
}

.section-intro-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: center;
}

.intro-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-dark);
}

.intro-text p {
  color: var(--text-mid);
  margin-bottom: 1.3rem;
  font-size: 1rem;
  line-height: 1.8;
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.tag {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.tag:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184,146,42,0.25);
}

/* ── Image Break 1 ── */
.image-break {
  height: 52vw; max-height: 580px;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-break img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.85);
  display: block;
}

.image-break-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #d8cfc0 0%, var(--dark-mid) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
}

.image-break-placeholder span {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.placeholder-icon {
  width: 4rem; height: 4rem;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.4rem;
}

.image-break-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 3rem 4rem;
  background: linear-gradient(to top, rgba(42,35,32,0.65) 0%, transparent 50%);
}

.image-break-caption {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  max-width: 30ch;
  line-height: 1.3;
}

/* ── Reset Reihe ── */
.section-reset {
  background: var(--dark);
  padding: 8rem 4rem;
}

.section-reset-inner { max-width: 1100px; margin: 0 auto; }

.section-label--light { color: var(--gold-light); }
.section-label--light::before { background: var(--gold-light); }
.section-label--center { justify-content: center; }

.reset-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end;
  margin-bottom: 4rem;
}

.reset-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}

.reset-header h2 span { color: var(--gold-light); }

.reset-header p {
  color: rgba(245,239,228,0.6);
  font-size: 1rem; line-height: 1.8;
  align-self: end;
}

.reset-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(184,146,42,0.18);
}

.reset-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(184,146,42,0.18);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.reset-card:last-child { border-right: none; }

.reset-card:hover {
  background: rgba(184,146,42,0.06);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  z-index: 1;
}

.reset-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: rgba(184,146,42,0.18);
  line-height: 1; margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.reset-card:hover .reset-number { color: rgba(184,146,42,0.4); }

.reset-card h3 {
  font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.8rem;
}

.reset-card p {
  color: rgba(245,239,228,0.55);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.reset-card-link {
  font-size: 0.82rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s, gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.reset-card-link:hover { color: var(--gold-light); gap: 0.7rem; }

/* ── Workshop Detail ── */
.section-workshop {
  background: var(--white);
  padding: 8rem 4rem;
  border-top: 3px solid var(--gold);
}

.section-workshop-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem; align-items: start;
}

.workshop-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.workshop-subtitle {
  color: var(--gold);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.workshop-body p {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.workshop-abende {
  margin: 2.5rem 0;
  border-left: 3px solid var(--gold);
}

/* workshop_facts rendered HTML */
.workshop-abende .abend {
  padding: 1.2rem 1.8rem;
  border-bottom: 1px solid var(--cream-dark);
  transition: background 0.2s, padding-left 0.2s;
}

.workshop-abende .abend:last-child { border-bottom: none; }
.workshop-abende .abend:hover { background: var(--cream); padding-left: 2.2rem; }

.abend-num {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.3rem;
}

.abend h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.abend p { font-size: 0.87rem; color: var(--text-mid); }

.workshop-right { position: sticky; top: 5.5rem; }

.workshop-box {
  border: 2px solid var(--gold);
  padding: 2.5rem;
  background: var(--cream);
  box-shadow: 0 8px 32px rgba(42,35,32,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workshop-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(42,35,32,0.15);
}

.workshop-box-label {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}

.workshop-price {
  font-size: 3.2rem; font-weight: 900;
  color: var(--text-dark); line-height: 1;
  margin-bottom: 0.3rem;
}

.workshop-price-note {
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 2rem;
}

.workshop-fuer { margin-bottom: 2rem; }

.workshop-fuer-label {
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.workshop-fuer p {
  font-size: 0.88rem; color: var(--text-mid);
  font-style: italic; line-height: 1.6;
}

/* ── Image Break 2 ── */
.image-break-2 {
  height: 42vw; max-height: 500px;
  overflow: hidden; position: relative;
}

.image-break-2-split {
  width: 100%; height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.image-break-2-split img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  display: block;
}

.image-break-2-placeholder {
  width: 100%; height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.placeholder-half {
  display: flex; align-items: center;
  justify-content: center;
  flex-direction: column; gap: 0.8rem;
  background: #d8cfc0;
}

.placeholder-half span {
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted);
}

.placeholder-half.dark { background: var(--dark-mid); }
.placeholder-half.dark span { color: rgba(245,239,228,0.35); }
.placeholder-half.dark .placeholder-icon {
  border-color: rgba(184,146,42,0.35);
  color: rgba(184,146,42,0.35);
}

/* ── Stimmen ── */
.section-stimmen { background: var(--cream); padding: 7rem 4rem; }
.stimmen-inner { max-width: 1100px; margin: 0 auto; }

.stimmen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}

.stimme {
  padding: 2.5rem;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(42,35,32,0.06);
}

.stimme:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(42,35,32,0.12);
}

.stimme::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(184,146,42,0.13);
  position: absolute;
  top: 0.5rem; left: 1.2rem;
  line-height: 1;
}

.stimme-text {
  font-size: 0.95rem; color: var(--text-mid);
  font-style: italic; line-height: 1.75;
  margin-bottom: 1.5rem; padding-top: 1.5rem;
}

.stimme-name {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
}

/* ── Kontakt ── */
.section-kontakt {
  background: var(--dark);
  padding: 8rem 4rem;
  text-align: center;
}

.section-kontakt h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.section-kontakt h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.section-kontakt p {
  color: rgba(245,239,228,0.6);
  font-size: 1rem; max-width: 44ch;
  margin: 0 auto 2.5rem; line-height: 1.8;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: fadeUp 0.6s ease both 0.1s; }
.hero h1      { animation: fadeUp 0.6s ease both 0.25s; }
.hero-sub     { animation: fadeUp 0.6s ease both 0.4s; }
.hero-actions { animation: fadeUp 0.6s ease both 0.55s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { min-height: 100svh; }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }
  .hero-portrait { aspect-ratio: 16/9; max-height: 280px; order: -1; }

  .hero-video-overlay {
    background: rgba(42,35,32,0.75);
  }

  .section-intro { padding: 4rem 1.5rem; }
  .section-intro-inner { grid-template-columns: 1fr; gap: 2rem; }

  .section-reset { padding: 5rem 1.5rem; }
  .reset-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .reset-cards { grid-template-columns: 1fr; }
  .reset-card { border-right: none; border-bottom: 1px solid rgba(184,146,42,0.18); }
  .reset-card:hover { transform: none; }

  .section-workshop { padding: 5rem 1.5rem; }
  .section-workshop-inner { grid-template-columns: 1fr; gap: 3rem; }
  .workshop-right { position: static; }

  .section-stimmen { padding: 5rem 1.5rem; }
  .stimmen-grid { grid-template-columns: 1fr; }

  .section-kontakt { padding: 5rem 1.5rem; }

  .image-break,
  .image-break-2 { height: 70vw; max-height: none; }
}