/* =========================================================
   Kilian Jenny – Klangwellen / cinematisch
   ========================================================= */

:root {
  --dark:    #17161b;   /* tiefes, neutrales Dunkel (kein Braun) */
  --dark-2:  #221f28;
  --cream:   #f0ebe1;   /* Text/Logo auf Dunkel */
  --cream-mut:#a9a39a;
  --paper:   #f7f5f0;   /* helle Sektionen */
  --surface: #ffffff;
  --ink:     #1c1a17;
  --muted:   #6f685d;
  --accent:  #34507e;   /* gedämpftes Blau */
  --line:    #e3ddd1;
  --max:     760px;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background: var(--paper);
}

a { color: var(--accent); }

/* =========================================================
   Hero (dunkel) mit Schallwellen
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px 100px;
  background:
    radial-gradient(120% 90% at 50% 38%, var(--dark-2), var(--dark) 70%);
  color: var(--cream);
}

/* Wellen */
.waves {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 0;
}
.waves .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240, 235, 225, 0.10);
}
.waves .r1 { width: 360px;  height: 360px;  }
.waves .r2 { width: 600px;  height: 600px;  border-color: rgba(240,235,225,0.075); }
.waves .r3 { width: 880px;  height: 880px;  border-color: rgba(240,235,225,0.05); }
.waves .r4 { width: 1200px; height: 1200px; border-color: rgba(240,235,225,0.035); }

.waves .pulse {
  width: 300px;
  height: 300px;
  border-color: rgba(240, 235, 225, 0.30);
  animation: ripple 7s ease-out infinite;
}
.waves .p2 { animation-delay: 2.33s; }
.waves .p3 { animation-delay: 4.66s; }

.hero-inner { position: relative; z-index: 1; animation: fadeUp 1s ease both; }

.logo {
  display: block;
  width: clamp(92px, 13vw, 118px);
  height: auto;
  margin: 0 auto 12px;
  opacity: 0.95;
}

.name {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-optical-sizing: auto;
  font-size: clamp(34px, 5.6vw, 54px);
  line-height: 1.06;
  letter-spacing: 0.005em;
  color: var(--cream);
}

.roles {
  margin: 20px 0 0;
  font-size: clamp(15px, 2.2vw, 18px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
}
.roles i { font-style: normal; color: var(--cream-mut); margin: 0 8px; }

.orchestras {
  margin: 12px 0 0;
  font-size: clamp(12px, 1.8vw, 13.5px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-mut);
}
.orchestras i { font-style: normal; margin: 0 7px; opacity: 0.6; }
.orchestras a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(240, 235, 225, 0.22);
  padding-bottom: 1px;
  transition: color .15s ease, border-color .15s ease;
}
.orchestras a:hover { color: var(--cream); border-color: var(--cream); }

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--cream-mut);
  opacity: 0.7;
  transition: opacity .2s ease;
}
.scroll-cue:hover { opacity: 1; }
.scroll-cue svg { display: block; width: 26px; height: 26px; animation: nudge 2.4s ease-in-out infinite; }

/* =========================================================
   Bio + Kontakt (hell)
   ========================================================= */
.wrap { max-width: 580px; margin-inline: auto; padding-inline: 24px; }

.bio { padding-block: clamp(64px, 10vw, 116px); }
.bio p {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.62;
  color: #353129;
  text-align: center;
}
.bio a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(52, 80, 126, 0.35);
  transition: color .15s ease, border-color .15s ease;
}
.bio a:hover { color: var(--accent); border-color: var(--accent); }

.contact { padding-block: clamp(8px, 2vw, 24px) clamp(70px, 12vw, 120px); }
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(26px, 4.2vw, 36px);
  text-align: center;
  margin: 0 0 32px;
  color: var(--ink);
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 124px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(52, 80, 126, 0.12);
}

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 30px;
  border-radius: 999px;
  margin-top: 4px;
  transition: transform .12s ease, opacity .15s ease, background .15s ease;
}
.btn:hover { background: var(--accent); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.55; cursor: default; }

.form-status { margin: 16px 0 0; font-size: 15px; min-height: 1.2em; }
.form-status.ok { color: #2f6b3a; }
.form-status.err { color: #a12e2e; }

.or { text-align: center; margin-top: 28px; color: var(--muted); font-size: 15px; }
.or a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.or a:hover { border-color: var(--accent); }

/* =========================================================
   Fuss
   ========================================================= */
.mini-footer {
  text-align: center;
  padding: 28px 24px;
  color: var(--muted);
  font-size: 13.5px;
  letter-spacing: 0.02em;
}
.mini-footer a { color: var(--muted); text-decoration: none; }
.mini-footer a:hover { color: var(--ink); }
.mini-footer .sep { margin: 0 10px; opacity: 0.5; }

/* =========================================================
   Rechtsseiten
   ========================================================= */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 24px; }
.legal { padding-block: clamp(48px, 8vw, 96px); }
.legal .back { display: inline-block; margin-bottom: 30px; font-size: 15px; color: var(--accent); text-decoration: none; }
.legal .back:hover { color: var(--ink); }
.legal h1 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(30px, 5vw, 46px); margin: 0 0 8px; }
.legal .stand { color: var(--muted); font-size: 14px; margin: 0 0 36px; }
.legal h2 { font-family: var(--font-serif); font-weight: 600; font-size: 22px; margin: 38px 0 10px; }
.legal p { color: #4b483f; max-width: 70ch; }
.legal a { word-break: break-word; }

/* =========================================================
   Bewegung
   ========================================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@keyframes ripple {
  0%   { transform: scale(0.5); opacity: 0; }
  12%  { opacity: 0.55; }
  100% { transform: scale(4.2); opacity: 0; }
}

.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }

@media (prefers-reduced-motion: reduce) {
  .hero-inner { animation: none; }
  .scroll-cue svg { animation: none; }
  .waves .pulse { animation: none; opacity: 0; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 460px) {
  .roles i, .orchestras i { margin: 0 5px; }
}
