/* ============================================================
   Chriska Wagner – chriska-wagner.de
   Persönliche Seite / digitale CV
   Basis: Mindful-Work-CSS, angepasst auf CKW-Orange (#E95B0E),
   hellerer/neutralerer Hintergrund, Cormorant für Überschriften.
   ============================================================ */

:root {
  /* Hintergrund heller/neutraler als Mindful Work */
  --bg: #fbfaf8;
  --surface: #ffffff;
  --surface-2: #f4f2ee;
  --surface-3: #ece8e2;
  --text: #1f1c1a;
  --muted: #6c6663;
  --line: #e2ddd6;

  /* Akzent: CKW-Orange */
  --accent: #E95B0E;
  --accent-dark: #C24A0B;
  --accent-soft: #fbe4d6;

  /* Akzent als RGB für halbtransparente Flächen/Schatten */
  --accent-rgb: 233, 91, 14;

  --radius: 22px;
  --radius-sm: 14px;
  --max: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f5f1 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

/* ---------- Topbar / Navigation ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(251, 250, 248, 0.85);
  border-bottom: 1px solid rgba(31, 28, 26, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  color: var(--text);
}

.brand .brand-accent { color: var(--accent); }
.brand-logo {
  display: block;
  height: 82px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

nav a {
  position: relative;
  padding-bottom: 2px;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: rgba(var(--accent-rgb), 0.35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

nav a:hover::after { transform: scaleX(1); }

/* Sandwich-Button (nur mobil sichtbar) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(31, 28, 26, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: 200ms ease;
}

/* ---------- Hero ---------- */
.hero { padding: 84px 0 48px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 36px;
  align-items: stretch;
}

.hero-copy { padding: 12px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--accent);
}

h1 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(52px, 6.6vw, 98px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.hero-subline {
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.3;
  max-width: 32ch;
  margin: 0 0 18px;
  color: #2d2a26;
  font-weight: 500;
}

.hero-text {
  max-width: 58ch;
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: 180ms ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(var(--accent-rgb), 0.24);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: rgba(31, 28, 26, 0.14);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
}

.btn-secondary:hover { background: #fff; }

/* Hero-Bildkarte */
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(247,245,241,0.96) 100%);
  border: 1px solid rgba(31, 28, 26, 0.06);
  border-radius: calc(var(--radius) + 4px);
  padding: 22px;
  box-shadow: 0 18px 40px rgba(31, 28, 26, 0.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-card img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(31, 28, 26, 0.06);
  background: var(--surface-3);
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
}

.mini-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 12px;
}

/* Bild-Platzhalter */
.img-placeholder {
  width: 100%;
  border-radius: 18px;
  border: 1px dashed rgba(var(--accent-rgb), 0.4);
  background:
    repeating-linear-gradient(45deg, rgba(var(--accent-rgb),0.04) 0, rgba(var(--accent-rgb),0.04) 12px, transparent 12px, transparent 24px),
    var(--surface-2);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 18px;
  min-height: 220px;
}

.hero-card .img-placeholder { aspect-ratio: 1 / 1.15; min-height: 0; }

/* Bühnen-Platzhalter dezent halten, bis Profifoto vorliegt */
.split-media .img-placeholder { aspect-ratio: 4 / 5; min-height: 0; align-self: start; }

/* ---------- Sektionen ---------- */
.section { padding: 34px 0; }
.section + .section { padding-top: 40px; }

/* Sektionswechsel: dezent (heller/neutraler) */
.section-alt {
  background: var(--surface-2);
  border-top: 1px solid rgba(31, 28, 26, 0.05);
  border-bottom: 1px solid rgba(31, 28, 26, 0.05);
}

.section-kicker {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

h2 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

h3 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 24px;
  margin: 0 0 8px;
}

.lead {
  font-size: 18px;
  color: #2f2b26;
  max-width: 60ch;
  margin: 0 0 16px;
}

.muted { color: var(--muted); max-width: 64ch; }

/* Reduzierte, linksbündige Listen */
.bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 62ch;
}

.bullets li {
  position: relative;
  padding-left: 26px;
  margin: 11px 0;
  color: #2f2b26;
  font-size: 16px;
}

.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
}

.sub-label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 26px 0 10px;
}

/* zweispaltiges Layout für Text + Bild */
.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.split.reverse { grid-template-columns: 0.8fr 1.2fr; }
.split.reverse .split-media { order: -1; }

.split-media img,
.split-media .img-placeholder {
  border-radius: var(--radius);
  border: 1px solid rgba(31, 28, 26, 0.07);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

/* Vita/Nachweise zweispaltig */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Zitat */
.quote {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.25;
  margin: 24px 0 0;
  font-weight: 600;
  max-width: 24ch;
  color: var(--text);
}

.quote-meta { color: var(--muted); font-size: 14px; margin-top: 10px; }

/* Programm-/Stücke-Karten */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(31, 28, 26, 0.08);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.card strong { display: block; margin-bottom: 6px; font-size: 16px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }

.linklist { margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 16px; }
.linklist a {
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.35);
  padding-bottom: 2px;
}
.linklist a:hover { color: var(--accent); }

/* ---------- CTA / Kontakt ---------- */
.cta { padding: 52px 0 40px; }

.cta-shell {
  background: linear-gradient(135deg, #fff6f0 0%, #fce3d4 55%, #f7d3bf 100%);
  color: var(--text);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(var(--accent-rgb), 0.16);
}

.cta-shell h2 { max-width: 20ch; margin-bottom: 14px; }
.cta-shell p { max-width: 60ch; margin: 0 0 24px; font-size: 17px; }

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 24px;
  font-size: 15px;
  color: var(--muted);
}
.contact-links a { color: var(--accent-dark); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 64px;
  padding: 26px 0 34px;
  background: var(--surface-2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer p { margin: 0; font-size: 14px; color: var(--muted); }
.site-footer .footer-claim { font-weight: 600; color: var(--text); }

.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--muted); }
.footer-links a:hover { color: var(--accent); text-decoration: underline; }

/* ---------- Rechtsseiten (Impressum/Datenschutz) ---------- */
.legal { padding: 60px 0 40px; }
.legal .container { max-width: 780px; }
.legal h1 {
  font-size: clamp(36px, 5vw, 60px);
  max-width: none;
  margin-bottom: 28px;
}
.legal h2 { font-size: 26px; margin-top: 34px; }
.legal p, .legal li { color: #2f2b26; font-size: 16px; max-width: 70ch; }
.legal a { color: var(--accent-dark); border-bottom: 1px solid rgba(var(--accent-rgb),0.35); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent-dark);
}
.back-link:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .split.reverse,
  .two-col { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .topbar-inner { min-height: 76px; }
  .brand-logo { height: 66px; }

  /* Sandwich-Menü aktiv */
  .nav-toggle { display: flex; }
  nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: #fbfaf8;
    border-bottom: 1px solid rgba(31, 28, 26, 0.1);
    transform: translateY(-120%);
    transition: transform 240ms ease;
    box-shadow: 0 20px 40px rgba(31, 28, 26, 0.08);
  }
  nav.open { transform: translateY(0); }
  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
  }
  nav li { border-bottom: 1px solid rgba(31, 28, 26, 0.06); }
  nav a { display: block; padding: 16px 0; font-size: 15px; }
  nav a::after { display: none; }

  .hero { padding: 40px 0 24px; }
  .cta-shell { padding: 26px; }
  .cards { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
