/* ============================================================
   Melanie Lang – Sprecherin & Sängerin
   Opera-inspired design: deep plum, cream, champagne gold
   ============================================================ */

:root {
  --ink:        #1c1218;   /* deep plum-black */
  --ink-2:      #241721;   /* raised surface */
  --ink-3:      #2d1d29;   /* card surface */
  --cream:      #f5efe4;   /* primary text */
  --cream-2:    #b9ac9c;   /* muted text */
  --gold:       #c8a25e;   /* champagne gold */
  --gold-2:     #e3c482;   /* bright gold */
  --wine:       #8e3b4b;   /* wine accent */
  --line:       rgba(200, 162, 94, 0.22);
  --line-soft:  rgba(245, 239, 228, 0.08);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", "Helvetica Neue", Arial, sans-serif;
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: var(--gold-2); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--cream); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(28, 18, 24, 0.86), rgba(28, 18, 24, 0.55));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
.nav.is-scrolled {
  background: rgba(24, 14, 20, 0.94);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.nav__brand:hover { color: var(--gold-2); }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-2);
}
.nav__links a:hover { color: var(--gold-2); }
.nav__cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 22px;
  color: var(--gold-2) !important;
}
.nav__cta:hover { border-color: var(--gold); background: rgba(200, 162, 94, 0.1); color: var(--gold-2) !important; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(24px, 6vw, 96px);
  padding-bottom: clamp(84px, 12vh, 150px);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: url("../assets/img/melanie-mic.jpg") center 30% / cover no-repeat;
  transform: scale(1.04);
  animation: heroDrift 24s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12) translateX(-1.5%); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(142, 59, 75, 0.34), transparent 55%),
    linear-gradient(180deg, rgba(28, 18, 24, 0.55) 0%, rgba(28, 18, 24, 0.18) 38%, rgba(28, 18, 24, 0.62) 74%, var(--ink) 100%);
}
.hero__content { position: relative; max-width: 780px; }
.hero__kicker {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
}
.hero__amp { font-family: var(--serif); font-style: italic; font-size: 16px; letter-spacing: 0.1em; }
.hero__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 118px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}
.hero__tagline {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  color: #e9e0d2;
  max-width: 560px;
  margin-bottom: 38px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__scroll {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: 28px;
  width: 1px;
  height: 72px;
  background: var(--line);
  overflow: hidden;
}
.hero__scroll span {
  position: absolute;
  inset: 0;
  background: var(--gold-2);
  transform: translateY(-100%);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%   { transform: translateY(-100%); }
  55%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn svg { width: 15px; height: 15px; fill: currentColor; flex: none; }
.btn--gold {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-2) 60%);
  color: #241721;
  border: 1px solid transparent;
}
.btn--gold:hover {
  color: #160e13;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px rgba(200, 162, 94, 0.45);
}
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--cream);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 13.5px; }

/* ---------- Sections ---------- */
.section { padding: clamp(84px, 12vh, 140px) 32px; position: relative; }
.section--alt {
  background:
    radial-gradient(80% 60% at 15% 0%, rgba(142, 59, 75, 0.12), transparent 60%),
    var(--ink-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section__head {
  max-width: 1180px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__kicker {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section__kicker::before,
.section__kicker::after {
  content: "—";
  color: var(--line);
  margin: 0 12px;
}
.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.section__lede {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--cream-2);
}

/* ---------- Audio players ---------- */
.players {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.player {
  display: flex;
  gap: 22px;
  background: linear-gradient(150deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 26px;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.player:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.7);
}
.player__btn-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.player__btn {
  width: 62px;
  height: 62px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: radial-gradient(120% 120% at 30% 25%, rgba(227, 196, 130, 0.22), rgba(200, 162, 94, 0.06));
  color: var(--gold-2);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s;
}
.player__btn svg { width: 24px; height: 24px; fill: currentColor; }
.player__btn .icon-pause { display: none; }
.player.is-playing .player__btn {
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  color: var(--ink);
  box-shadow: 0 0 0 6px rgba(200, 162, 94, 0.12), 0 10px 26px -8px rgba(200, 162, 94, 0.5);
}
.player.is-playing .icon-play { display: none; }
.player.is-playing .icon-pause { display: block; }
.player__btn:hover { transform: scale(1.06); }
.player__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--cream-2);
  letter-spacing: 0.08em;
}
.player__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.player__meta { margin-bottom: 14px; }
.player__meta h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.28;
  letter-spacing: 0.01em;
}
.player__role {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--cream-2);
  margin-top: 4px;
}
.player__client {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}
.player__bar {
  position: relative;
  height: 4px;
  border-radius: 99px;
  background: var(--line-soft);
  cursor: pointer;
  flex: none;
}
.player__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}
.player__time {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  color: var(--cream-2);
}

/* ---------- Vita ---------- */
.vita {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.vita__list { list-style: none; }
.vita__list li {
  position: relative;
  padding: 16px 0 16px 38px;
  font-size: 17.5px;
  color: #e7ddcd;
  border-bottom: 1px solid var(--line-soft);
}
.vita__list li:last-child { border-bottom: 0; }
.vita__list li::before {
  content: "♪";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--gold);
  font-size: 16px;
}
.vita__side { display: flex; flex-direction: column; gap: 20px; }
.vita__card {
  background: var(--ink-3);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 30px;
}
.vita__card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 14px;
}
.vita__card ul { list-style: none; }
.vita__card li {
  position: relative;
  padding: 7px 0 7px 24px;
  color: #e2d8c9;
}
.vita__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 7px;
  height: 1px;
  background: var(--gold);
}
.vita__card--contact a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 23px;
  color: var(--gold-2);
  word-break: break-all;
}

/* ---------- Referenzen ---------- */
.refs {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.ref {
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 34px;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
}
.ref:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.7);
}
.ref__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: radial-gradient(120% 120% at 30% 25%, rgba(227, 196, 130, 0.18), rgba(200, 162, 94, 0.05));
  border: 1px solid var(--line);
  margin-bottom: 22px;
}
.ref__icon svg { width: 26px; height: 26px; fill: var(--gold-2); }
.ref h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 16px;
}
.ref ul { list-style: none; }
.ref li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
}
.ref li:first-child { border-top: 0; padding-top: 0; }
.ref__title { font-weight: 400; font-size: 15.5px; color: #ece3d4; }
.ref__client {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-2);
}

/* ---------- Kontakt ---------- */
.section--contact {
  background:
    radial-gradient(60% 80% at 50% 110%, rgba(142, 59, 75, 0.3), transparent 70%),
    radial-gradient(90% 70% at 50% -10%, rgba(200, 162, 94, 0.08), transparent 60%),
    var(--ink);
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.contact { max-width: 640px; margin: 0 auto; }
.contact__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.05;
  margin-bottom: 18px;
}
.contact__lede { color: var(--cream-2); margin-bottom: 34px; }

/* ---------- Footer ---------- */
.footer {
  background: #150d12;
  border-top: 1px solid var(--line-soft);
  padding: 64px 32px 40px;
}
.footer__inner { max-width: 1180px; margin: 0 auto; }
.footer__brand {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 36px 48px;
}
.footer__kicker {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer__text {
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--cream-2);
}
.footer__text a {
  color: var(--cream-2);
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer__text a:hover { color: var(--gold-2); border-color: var(--gold); }
.footer__email {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-2);
  word-break: break-all;
}
.footer__email:hover { color: var(--cream); }
.footer__partner {
  display: inline-block;
  margin: 6px 0 2px;
  font-family: var(--serif);
  font-size: 21px;
  color: var(--gold-2);
}
.footer__partner:hover { color: var(--cream); }
.footer__service-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer__service-link:hover { color: var(--gold-2); border-color: var(--gold-2); }
.footer__copy {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 13px;
  color: #8d8175;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .players, .refs { grid-template-columns: 1fr; }
  .vita { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav__inner { padding: 0 20px; }
  .nav__links { gap: 18px; }
  .nav__links a { font-size: 11px; letter-spacing: 0.12em; }
  .section { padding: 72px 20px; }
  .player { flex-direction: column; gap: 18px; }
  .player__btn-wrap { flex-direction: row; }
  .hero { padding-left: 22px; padding-right: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__media { animation: none; }
  .hero__scroll span { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
