/* ===========================================================
   Tilman Krämer — Pianist
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

:root {
  --color-bg: #f4efe6;
  --color-bg-alt: #eae1d3;
  --color-text: #2a241f;
  --color-text-soft: #6f6459;
  --color-line: rgba(42, 36, 31, 0.14);
  --color-accent: #9c7b4f;
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --nav-height: 92px;
  --max-width: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6vw;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 18px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
}

section { position: relative; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border: 1px solid var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn:hover { background: var(--color-text); color: var(--color-bg); }
.btn.light { border-color: rgba(255,255,255,0.75); color: #fff; }
.btn.light:hover { background: #fff; color: var(--color-text); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 6vw;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.logo span {
  display: block;
  font-style: italic;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.menu-toggle .bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle .bars span {
  width: 26px;
  height: 1px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
body.nav-open .menu-toggle .bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.nav-open .menu-toggle .bars span:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle .bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
body.nav-open .logo, body.nav-open .menu-toggle { color: var(--color-text); }
body.nav-open .logo, body.nav-open .menu-toggle span { text-shadow: none; }
body.nav-open .menu-toggle .bars span { background: var(--color-text); }

body.header-dark:not(.nav-open) .site-header {
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 0 var(--color-line);
}
body.header-dark:not(.nav-open) .logo,
body.header-dark:not(.nav-open) .menu-toggle {
  color: var(--color-text);
  text-shadow: none;
}
body.header-dark:not(.nav-open) .menu-toggle .bars span { background: var(--color-text); }

.header-right {
  display: flex;
  align-items: center;
  gap: 26px;
}
.lang-switch { display: flex; gap: 2px; }
.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  padding: 8px 5px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: #fff;
  opacity: 0.55;
  border-bottom: 1px solid transparent;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
  transition: opacity 0.2s ease;
}
.lang-switch button:hover { opacity: 1; }
.lang-switch button.active { opacity: 1; border-bottom-color: currentColor; }
body.header-dark:not(.nav-open) .lang-switch button,
body.nav-open .lang-switch button {
  color: var(--color-text);
  text-shadow: none;
}

@media (max-width: 560px) {
  .menu-toggle .menu-label { display: none; }
  .header-right { gap: 12px; }
  .lang-switch button { padding: 8px 3px; }
  .logo { font-size: 1.15rem; }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 90;
  display: flex;
  overflow-y: auto;
  padding: 110px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
}
body.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-overlay nav {
  margin: auto;
  text-align: center;
}
.nav-overlay nav > a {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 3rem);
  padding: 10px 0;
  color: var(--color-text);
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}
.nav-overlay nav > a:hover { color: var(--color-accent); }
.nav-overlay .nav-contact {
  margin-top: 40px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text-soft);
  letter-spacing: 0.05em;
}
.nav-overlay .nav-contact a {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
@media (max-height: 760px) {
  .nav-overlay nav > a { font-size: clamp(1.4rem, 4.5vw, 2.1rem); padding: 7px 0; }
  .nav-overlay .nav-contact { margin-top: 22px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  isolation: isolate;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 30%;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,14,8,0.62) 0%, rgba(20,14,8,0.08) 45%, rgba(20,14,8,0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 6vw 8vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero-name {
  color: #fdf9f2;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.02;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.hero-name .role {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 0.4em;
  margin-top: 14px;
  color: #e9dcc4;
}

.hero-quote {
  max-width: 380px;
  color: #f2ece1;
}
.hero-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 14px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}
.hero-quote cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cbbfa4;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 6vw;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f2ece1;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-cue::after {
  content: '';
  width: 34px; height: 1px;
  background: rgba(255,255,255,0.7);
}

.photo-credit {
  position: absolute;
  bottom: 14px;
  right: 6vw;
  z-index: 1;
  margin: 0;
  color: rgba(242, 236, 225, 0.55);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .photo-credit { right: 7vw; bottom: 10px; }
}

/* ---------- Intro strip ---------- */
.intro-strip {
  padding: 90px 0 40px;
}
.intro-strip .lead {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-style: italic;
  line-height: 1.5;
  max-width: 900px;
  color: var(--color-text);
}

/* ---------- Biography ---------- */
.bio {
  padding: 60px 0 110px;
}
.bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.bio-media {
  position: sticky;
  top: 120px;
}
.bio-media img {
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 50% 32%;
}
.bio-media-caption {
  margin-top: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--color-text-soft);
}
.bio-text p {
  margin: 0 0 22px;
  color: var(--color-text);
  font-size: 1rem;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.bio-text p:first-of-type::first-letter,
.bio-short p::first-letter {
  font-family: var(--font-serif);
  font-size: 3.4em;
  float: left;
  line-height: 0.85;
  padding: 6px 10px 0 0;
  color: var(--color-accent);
}

.bio-toggle {
  display: flex;
  gap: 20px;
  margin: -14px 0 28px;
}
.bio-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  padding: 4px 0;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.bio-toggle button:hover { color: var(--color-text); }
.bio-toggle button.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}
.bio-short { display: none; }
.bio-short p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.bio.short-active .bio-short { display: block; }
.bio.short-active .bio-text { display: none; }

.milestones {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.milestones div strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--color-accent);
  margin-bottom: 6px;
}
.milestones div span {
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

/* ---------- Discography ---------- */
.discography {
  padding: 100px 0;
  background: var(--color-bg-alt);
}
.disc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 44px 34px;
}
.disc-card { position: relative; }
.disc-cover {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #ddd3bf;
  box-shadow: 0 22px 40px -20px rgba(30,24,18,0.4);
}
.disc-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.disc-card:hover .disc-cover img { transform: scale(1.06); }
.disc-info { margin-top: 18px; }
.disc-composer {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
}
.disc-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.disc-label {
  font-size: 0.82rem;
  color: var(--color-text-soft);
  margin-bottom: 10px;
}
.disc-link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 2px;
}

/* ---------- Press ---------- */
.press {
  padding: 110px 0;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
}
.press-quote {
  border-left: 2px solid var(--color-accent);
  padding-left: 26px;
}
.press-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  margin: 0 0 14px;
}
.press-quote cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}
.press-more { margin-top: 56px; text-align: center; }

/* ---------- Teaching ---------- */
.teaching {
  padding: 110px 0;
  background: var(--color-bg-alt);
}
.teaching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.teaching-text p {
  margin: 0 0 20px;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.course-list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--color-line);
}
.course-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.95rem;
}
.course-list .date {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-accent);
  white-space: nowrap;
}

/* ---------- Shorts aus den Meisterkursen ---------- */
.masterclass-media { margin-top: 80px; }
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.media-card.short-card {
  aspect-ratio: 9 / 16;
}
.short-title {
  margin: 12px 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--color-text-soft);
}
.masterclass-full {
  margin-top: 44px;
  max-width: 560px;
}

@media (max-width: 900px) {
  .shorts-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .masterclass-media { margin-top: 56px; }
}
@media (max-width: 560px) {
  .shorts-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .short-title { font-size: 0.72rem; }
}

/* ---------- Media ---------- */
.media-section { padding: 110px 0; }
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.media-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1c1712;
  display: block;
}
.media-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.75;
  filter: grayscale(60%);
  transition: transform 0.5s ease, opacity 0.4s ease;
}
.media-card:hover img { transform: scale(1.05); opacity: 0.5; }
.media-card .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-card .play span {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease;
}
.media-card:hover .play span { background: rgba(255,255,255,0.15); }
.media-card .play span::after {
  content: '';
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.media-title {
  position: absolute;
  left: 20px; right: 20px; bottom: 16px;
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* ---------- Gallery ---------- */
.gallery-section { padding: 0 0 110px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-grid a { overflow: hidden; display: block; }
.gallery-grid img {
  width: 100%; height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: transform 0.6s ease;
}
.gallery-grid a:hover img { transform: scale(1.05); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(1) img { aspect-ratio: 1/1; }
.gallery-credit {
  margin: 8px 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--color-text-soft);
}

/* ---------- Contact / CTA ---------- */
.contact {
  position: relative;
  padding: 140px 0 100px;
  color: #fdf9f2;
  text-align: center;
  overflow: hidden;
}
.contact-media {
  position: absolute; inset: 0; z-index: -2;
}
.contact-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%);
}
.contact-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.75), rgba(20,16,12,0.85));
}
.contact .eyebrow { color: #d9c9a3; }
.contact h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 26px; }
.contact-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 18px;
  margin-top: 34px;
}
.contact-detail {
  margin-top: 30px;
  font-size: 0.95rem;
  color: #cfc4ac;
}
.contact-detail a { border-bottom: 1px solid rgba(255,255,255,0.35); }

.social-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 20px;
}
.social-links a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cfc4ac;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.social-links a:hover { color: #fdf9f2; border-bottom-color: rgba(255,255,255,0.6); }

/* ---------- Footer ---------- */
footer.site-footer {
  padding: 30px 0;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--color-text-soft);
  background: var(--color-bg);
}

/* ---------- Press page ---------- */
.page-header {
  padding: 190px 0 60px;
}
.page-header .section-title { margin-bottom: 14px; }
.page-header p { color: var(--color-text-soft); max-width: 640px; }
.press-full { padding: 0 0 120px; }
.press-full .press-quote { margin-bottom: 54px; padding-bottom: 4px; }
.back-link {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .bio-grid { grid-template-columns: 260px 1fr; gap: 34px; }
  .bio-media { position: static; }
  .bio-text p { font-size: 0.92rem; line-height: 1.65; }
  .milestones { grid-template-columns: 1fr; gap: 20px; }
  .press-grid { grid-template-columns: 1fr; }
  .teaching-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .hero-content { flex-direction: column; align-items: flex-start; gap: 30px; padding-bottom: 12vw; }
  .hero-quote { max-width: 100%; }
  .scroll-cue { display: none; }
}

@media (max-width: 640px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-media { margin: 0 auto; max-width: 320px; }
  .bio-media-caption { text-align: center; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 7vw; }
  .disc-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
  .media-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================================================
   Motion & Effekte
   =========================================================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}
@keyframes cuePulse {
  0%, 100% { transform: scaleX(1); opacity: 0.7; }
  50%      { transform: scaleX(1.6); opacity: 1; }
}

/* Hero-Auftritt beim Laden */
.hero-name  { animation: fadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both; }
.hero-quote { animation: fadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both; }
.scroll-cue { animation: fadeUp 1s ease 0.95s both; }
.scroll-cue::after { transform-origin: left center; animation: cuePulse 2.6s ease-in-out 2s infinite; }
.hero-media img { animation: heroZoom 14s cubic-bezier(0.19, 0.6, 0.3, 1) both; }

/* Scroll-Reveal (Klassen werden per JS vergeben) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* Lesefortschritt */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 120;
  pointer-events: none;
}

/* Gestaffeltes Menü-Overlay */
.nav-overlay nav > a {
  opacity: 0;
  transform: translateY(18px);
  transition: color 0.25s ease, opacity 0.5s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
body.nav-open .nav-overlay nav > a { opacity: 1; transform: none; }
body.nav-open .nav-overlay nav > a:nth-child(1) { transition-delay: 0.06s; }
body.nav-open .nav-overlay nav > a:nth-child(2) { transition-delay: 0.12s; }
body.nav-open .nav-overlay nav > a:nth-child(3) { transition-delay: 0.18s; }
body.nav-open .nav-overlay nav > a:nth-child(4) { transition-delay: 0.24s; }
body.nav-open .nav-overlay nav > a:nth-child(5) { transition-delay: 0.3s; }
body.nav-open .nav-overlay nav > a:nth-child(6) { transition-delay: 0.36s; }
body.nav-open .nav-overlay nav > a:nth-child(7) { transition-delay: 0.42s; }
.nav-overlay .nav-contact { opacity: 0; transition: opacity 0.5s ease; }
body.nav-open .nav-overlay .nav-contact { opacity: 1; transition-delay: 0.55s; }

/* Farb-Reveal beim Hover über S/W-Bilder */
.gallery-grid img { transition: transform 0.6s ease, filter 0.6s ease; }
.gallery-grid a:hover img { filter: grayscale(0%) contrast(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(22, 18, 13, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 88vw;
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transform: scale(0.96);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox.open img { transform: scale(1); }
.lightbox button {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  color: #f4efe6;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1;
  padding: 18px 22px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.lightbox button:hover { opacity: 1; }
.lb-close { top: 14px; right: 14px; }
.lb-prev  { left: 6px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 6px; top: 50%; transform: translateY(-50%); }

/* ---------- Parallax-Zwischenspiel ---------- */
.interlude {
  position: relative;
  height: 64vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.interlude-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.interlude-media img {
  position: absolute;
  left: 0; top: -14%;
  width: 100%;
  height: 128%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05) brightness(0.85);
  will-change: transform;
}
.interlude-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,16,12,0.72) 10%, rgba(20,16,12,0.25) 65%, rgba(20,16,12,0.4) 100%);
}
.interlude-quote {
  position: relative;
  width: 100%;
  color: #fdf9f2;
}
.interlude-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  line-height: 1.4;
  max-width: 760px;
  margin: 0 0 18px;
  text-shadow: 0 3px 26px rgba(0,0,0,0.45);
}
.interlude-quote cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d9c9a3;
}

/* ---------- Blätterbare Pressemappe ---------- */
.pressbook {
  max-width: 760px;
  margin: 0 auto;
  perspective: 1800px;
}
.pb-stage {
  position: relative;
  min-height: 380px;
  transform-style: preserve-3d;
}
.pb-leaf {
  position: absolute;
  inset: 0;
  background: #faf6ec;
  border: 1px solid rgba(42,36,31,0.08);
  box-shadow: 0 18px 44px -18px rgba(30,24,18,0.35), inset 0 0 60px rgba(156,123,79,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 7vw, 64px);
  transform-origin: left center;
  transition: transform 0.85s cubic-bezier(0.4, 0.05, 0.3, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.pb-leaf::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(156,123,79,0.5), rgba(156,123,79,0.15));
}
.pb-leaf::after {
  content: '„';
  position: absolute;
  top: 4px;
  right: 26px;
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: rgba(156,123,79,0.22);
  pointer-events: none;
}
.pb-leaf.flipped { transform: rotateY(-180deg); }
.pb-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  line-height: 1.55;
  margin: 0 0 22px;
}
.pb-cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-soft);
}
.pb-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 26px;
}
.pb-controls button {
  background: none;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  width: 44px; height: 44px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.pb-controls button:hover:not(:disabled) { background: var(--color-text); color: var(--color-bg); }
.pb-controls button:disabled { opacity: 0.3; cursor: default; }
.pb-count {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--color-text-soft);
  min-width: 52px;
  text-align: center;
}

/* ---------- CD-Flipbook ---------- */
.discbook { max-width: 860px; }
.discbook .pb-stage { min-height: 430px; }
.pb-leaf.disc-leaf {
  flex-direction: row;
  align-items: center;
  gap: clamp(24px, 5vw, 52px);
}
.disc-leaf::after { content: none; }
.disc-leaf .disc-cover {
  flex: 0 0 42%;
  max-width: 320px;
}
.disc-leaf .disc-info { margin-top: 0; min-width: 0; }
.disc-leaf .disc-title { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 10px; }
.disc-leaf .disc-label { margin-bottom: 16px; }

@media (max-width: 640px) {
  .pb-leaf.disc-leaf {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 18px;
  }
  .disc-leaf .disc-cover { flex: none; width: min(48vw, 210px); }
  .discbook .pb-stage { min-height: 520px; }
}

/* ---------- CD-Coverflow ---------- */
.coverflow {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.cf-stage {
  position: relative;
  height: min(72vw, 360px);
  perspective: 1400px;
  margin-bottom: 30px;
}
.cf-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(58vw, 300px);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, filter 0.5s ease;
  will-change: transform;
}
.cf-item img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 26px 55px -20px rgba(30, 24, 18, 0.55);
}
.cf-item.current { cursor: default; }
.cf-infos {
  position: relative;
  min-height: 165px;
}
.cf-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.45s ease 0.12s, transform 0.45s ease 0.12s, visibility 0.45s;
}
.cf-info.current {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.cf-info .disc-title { max-width: 560px; }
.coverflow .pb-controls { margin-top: 6px; }

@media (max-width: 640px) {
  .cf-infos { min-height: 200px; }
}

/* ---------- 3D-Tilt auf CD-Covern ---------- */
.disc-cover {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}
.disc-card:hover .disc-cover {
  box-shadow: 0 30px 55px -22px rgba(30,24,18,0.5);
}

/* ---------- Video-Overlay ---------- */
.video-lightbox .vlb-frame {
  width: min(1100px, 92vw);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.video-lightbox iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .nav-overlay a { opacity: 1; transform: none; }
}
