/* ─── LOCAL FONTS ─── */
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/playfair-display-normal-400.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/playfair-display-normal-600.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/playfair-display-normal-700.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 400; font-display: swap; src: url('fonts/playfair-display-italic-400.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 600; font-display: swap; src: url('fonts/playfair-display-italic-600.woff2') format('woff2'); }
@font-face { font-family: 'EB Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/eb-garamond-normal-400.woff2') format('woff2'); }
@font-face { font-family: 'EB Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/eb-garamond-normal-500.woff2') format('woff2'); }
@font-face { font-family: 'EB Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('fonts/eb-garamond-italic-400.woff2') format('woff2'); }
@font-face { font-family: 'Libre Baskerville'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/libre-baskerville-normal-400.woff2') format('woff2'); }
@font-face { font-family: 'Libre Baskerville'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/libre-baskerville-normal-700.woff2') format('woff2'); }
@font-face { font-family: 'Libre Baskerville'; font-style: italic; font-weight: 400; font-display: swap; src: url('fonts/libre-baskerville-italic-400.woff2') format('woff2'); }

:root {
  --navy:       #1a2744;
  --navy-light: #253460;
  --burgundy:   #6b1f2a;
  --burg-light: #8a2535;
  --gold:       #b8942a;
  --gold-light: #d4aa3a;
  --ivy:        #2d5a1b;
  --ivy-light:  #3d7a26;
  --ivy-pale:   #e8f0e2;
  --cream:      #f5f0e8;
  --cream-dark: #ede5d5;
  --text-dark:  #1a1510;
  --text-mid:   #3a3020;
  --text-muted: #7a6a50;
  --white:      #fdfaf5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'EB Garamond', serif;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 999; opacity: 0.5;
}

/* ─── PAGE SYSTEM WITH SLIDE TRANSITIONS ─── */
#page-wrapper {
  position: relative;
  overflow: hidden;
}

.page {
  display: none;
  width: 100%;
}

.page.active {
  display: block;
  animation: none;
}

.page.is-animating {
  display: block;
}

/* ─── NAV ─── */
nav {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  padding: 0 3rem;
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* ─── MONOGRAM LOGO ─── */
.nav-logo {
  display: flex; align-items: center; gap: 0.9rem;
  cursor: pointer; text-decoration: none;
}

.monogram-svg { width: 44px; height: 44px; flex-shrink: 0; }

.nav-name-block { line-height: 1.1; }
.nav-name-main {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--cream); letter-spacing: 0.03em;
}
.nav-name-sub {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}

.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links li { position: relative; }
.nav-links a, .nav-links button {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.72rem; letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.8);
  text-decoration: none; background: none; border: none;
  padding: 0 1.1rem; height: 68px;
  display: flex; align-items: center; gap: 0.35rem;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links button:hover {
  color: var(--gold-light); background: rgba(255,255,255,0.05);
}
.nav-links a.active, .nav-links button.active {
  color: var(--gold); border-bottom: 2px solid var(--gold);
}
/* Dropdown arrow */
.nav-arrow {
  font-size: 0.5rem; opacity: 0.5;
  transition: transform 0.2s;
  display: inline-block;
}
.nav-links li:hover .nav-arrow { transform: rotate(180deg); opacity: 1; }

/* ─── DROPDOWN ─── */
.dropdown {
  position: absolute;
  top: 68px; left: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid rgba(184,148,42,0.3);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-links li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a, .dropdown button {
  height: auto;
  padding: 0.75rem 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(245,240,232,0.7);
  display: block;
  border-bottom: 1px solid rgba(184,148,42,0.12);
  width: 100%;
  text-align: left;
  justify-content: flex-start;
}
.dropdown a:last-child, .dropdown button:last-child {
  border-bottom: none;
}
.dropdown a:hover, .dropdown button:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.04);
  padding-left: 1.8rem;
}
.dropdown a.active, .dropdown button.active {
  color: var(--gold);
  border-bottom-color: rgba(184,148,42,0.2);
}

/* ─── MONOGRAM SVG ─── */
/* Built inline for crisp rendering at all sizes */

/* ─── HERO PHOTO ─── */
.hero-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.hero-photo-frame {
  width: 260px;
  height: 340px;
  border: 1px solid rgba(184,148,42,0.5);
  position: relative;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-photo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0.5;
}
.hero-photo-label {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184,148,42,0.7);
}
/* Corner ornaments */
.hero-photo-corner {
  position: absolute;
  width: 14px; height: 14px;
}
.hero-photo-corner.tl { top: 6px;  left: 6px;  border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.hero-photo-corner.tr { top: 6px;  right: 6px; border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.hero-photo-corner.bl { bottom: 6px; left: 6px;  border-bottom: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.hero-photo-corner.br { bottom: 6px; right: 6px; border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }

.hero-photo-caption {
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.05em;
}

/* ─── WASSERZEICHEN ALLE HERO-BEREICHE ─── */
.sub-hero, .cv-hero, .art-hero, .blog-hero {
  position: relative;
  overflow: hidden;
}

/* Wort 1: groß links oben */
.sub-hero::before, .cv-hero::before, .art-hero::before, .blog-hero::before {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  position: absolute;
  font-size: 18rem; line-height: 1;
  top: -3rem; left: -2rem;
  pointer-events: none; user-select: none;
  white-space: nowrap; z-index: 0;
}
/* Wort 2: mittelgroß rechts unten */
.sub-hero::after, .cv-hero::after, .art-hero::after, .blog-hero::after {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  position: absolute;
  font-size: 12rem; line-height: 1;
  bottom: -1.5rem; right: -1rem;
  pointer-events: none; user-select: none;
  white-space: nowrap; z-index: 0;
}

/* Navy → CV */
.cv-hero::before         { content: 'CURRICULUM'; color: rgba(184,148,42,0.06); }
.cv-hero::after          { content: 'VITAE';      color: rgba(184,148,42,0.05); }
/* Navy → Persönliches */
.wm-personal::before     { content: 'PERSONA';    color: rgba(184,148,42,0.06); }
.wm-personal::after      { content: 'FAMILIA';    color: rgba(184,148,42,0.05); }
/* Navy → Angebote */
.wm-offers::before       { content: 'OFFERTA';    color: rgba(184,148,42,0.06); }
.wm-offers::after        { content: 'OPERA';      color: rgba(184,148,42,0.05); }
/* Navy → Links */
.wm-kalender::before     { content: 'TEMPORA';  color: rgba(184,148,42,0.06); }
.wm-kalender::after      { content: 'DIES';      color: rgba(184,148,42,0.05); }
.wm-links::before        { content: 'NEXUS';      color: rgba(184,148,42,0.06); }
.wm-links::after         { content: 'FONS';       color: rgba(184,148,42,0.05); }

/* Burgundy → Referenzen */
.wm-references::before   { content: 'TESTIMONIA'; color: rgba(245,232,235,0.06); }
.wm-references::after    { content: 'LAUDES';     color: rgba(245,232,235,0.05); }
/* Burgundy → Kontakt */
.wm-kontakt::before      { content: 'COLLOQUIUM'; color: rgba(245,232,235,0.06); }
.wm-kontakt::after       { content: 'EPISTOLA';   color: rgba(245,232,235,0.05); }

/* Ivy → Netzwerke */
.wm-networks::before     { content: 'SODALITAS';  color: rgba(232,240,226,0.07); }
.wm-networks::after      { content: 'COLLEGIA';   color: rgba(232,240,226,0.05); }

/* Blog (ivy) */
.blog-hero::before       { content: 'COGITATA';   color: rgba(232,240,226,0.06); }
.blog-hero::after        { content: 'SCRIPTA';    color: rgba(232,240,226,0.05); }

/* Art-hero (burgundy) — Künstlerisch */
.art-hero::before        { content: 'SCAENA';     color: rgba(245,232,235,0.06); }
.art-hero::after         { content: 'THEATRUM';   color: rgba(245,232,235,0.05); }

/* ─── HERO WASSERZEICHEN ─── */
.hero-watermarks {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.wm {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-style: italic;
  color: rgba(184,148,42,0.06);
  line-height: 1; white-space: nowrap;
  user-select: none; letter-spacing: 0.05em;
}
.wm-1 {
  font-size: 22rem;
  top: -4rem; left: -3rem;
}
.wm-2 {
  font-size: 16rem;
  bottom: -2rem; right: -2rem;
}
.wm-3 {
  font-size: 11rem;
  top: 50%; left: 38%;
  transform: translateY(-50%);
  color: rgba(184,148,42,0.04);
}

/* ─── HERO ─── */
.hero {
  background: var(--navy); color: var(--cream);
  padding: 1.2rem 3rem 4rem;
  display: flex;
  flex-direction: row;
  gap: 3.5rem;
  align-items: flex-start;
  justify-content: space-between;
  position: relative; overflow: hidden;
}
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 240px;
  padding-top: 0.5rem;
}
.hero-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  margin-right: 3rem;
  align-items: flex-end;
  gap: 1rem;
}
.hero-musik-block { flex-shrink: 0; }
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(184,148,42,0.12);
  pointer-events: none; z-index: 0;
}
.hero-musik-block, .hero-left, .hero-right { position: relative; z-index: 1; }
.hero-ring:nth-child(1) { width: 500px; height: 500px; top: -120px; right: -80px; }
.hero-ring:nth-child(2) { width: 380px; height: 380px; top: -60px; right: -20px; }
.hero-ring:nth-child(3) { width: 260px; height: 260px; top:   0px; right:  40px; }

.hero-eyebrow {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.7rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before { content:''; width:40px; height:1px; background:var(--gold); }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 400; line-height: 1.08;
  margin-bottom: 0.2rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-style: italic;
  color: rgba(245,240,232,0.6);
  margin: 1rem 0 2rem; max-width: 500px;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  text-decoration: none; cursor: pointer;
  border: none; transition: all 0.2s;
}
.btn-gold   { background: var(--gold);    color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); }
.btn-navy   { background: var(--navy);    color: var(--cream); }
.btn-navy:hover { background: #1e2d5a; }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(245,240,232,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1px solid rgba(20,30,60,0.35); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-ivy    { background: var(--ivy);     color: var(--cream); }
.btn-ivy:hover { background: var(--ivy-light); }
.btn-burg   { background: var(--burgundy); color: var(--cream); }
.btn-burg:hover { background: var(--burg-light); }

.hero-monogram-large {
  display: flex; align-items: center; justify-content: center;
  opacity: 0.12; user-select: none; position: relative; z-index: 1;
}

/* ─── ORNAMENTAL DIVIDER ─── */
.orn-div {
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem; padding: 0;
  background: linear-gradient(to bottom, var(--navy) 50%, var(--cream) 50%);
  color: var(--gold);
}
.orn-div::before, .orn-div::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  max-width: 320px;
}
.orn-div span {
  font-size: 0.85rem; letter-spacing: 0.5em;
  background: var(--cream);
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(184,148,42,0.4);
  position: relative;
}
/* Übergang Creme → Navy (umgekehrt) */
.orn-div-to-navy {
  background: linear-gradient(to bottom, var(--cream) 50%, var(--navy) 50%);
}
.orn-div-to-navy span {
  background: var(--cream);
}

/* ─── SECTION COMMONS ─── */
.section-wrap { max-width: 1100px; margin: 0 auto; padding: 3rem; }

.label {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.66rem; letter-spacing: 0.3em;
  text-transform: uppercase; margin-bottom: 0.7rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.label::after { content:''; width:28px; height:1px; background: currentColor; }
.label-gold     { color: var(--gold); }
.label-burg     { color: var(--burgundy); }
.label-ivy      { color: var(--ivy); }

.section-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 400; line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-h em { font-style: italic; }
.h-navy   { color: var(--navy); }
.h-cream  { color: var(--cream); }
.h-gold em { color: var(--gold-light); }
.h-ivy em  { color: var(--ivy-light); }
.h-burg em { color: var(--burg-light); }

/* ─── ABOUT ─── */
.about-grid {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 4rem; align-items: center;
}
.portrait-frame {
  width: 100%;
  margin: 0 0 0.4rem 0;
}
.portrait-img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(10,22,51,0.12);
}
.about-text p { margin-bottom: 1.1rem; color: var(--text-mid); }
.about-text p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem; font-weight: 700;
  float: left; line-height: 0.8;
  margin-right: 0.1em; margin-top: 0.12em;
  color: var(--burgundy);
}
.badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.badge {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.3rem 0.75rem;
  border: 1px solid currentColor;
}
.badge-navy { color: var(--navy); }
.badge-burg { color: var(--burgundy); }
.badge-ivy  { color: var(--ivy); }
.badge-gold { color: var(--gold); }

/* ─── RESEARCH BAND ─── */
.research-band { background: var(--navy); padding: 3rem 0 5rem; }
.research-cards {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5px; margin-top: 2.5rem;
  background: rgba(184,148,42,0.2);
}
.r-card {
  background: var(--navy-light); padding: 2rem 1.5rem;
  transition: background 0.3s; cursor: default;
  position: relative; overflow: hidden;
}
.r-card::after {
  content:''; position:absolute; bottom:0; left:0;
  width:100%; height:3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.r-card:nth-child(1)::after { background: var(--gold); }
.r-card:nth-child(2)::after { background: var(--burgundy); }
.r-card:nth-child(3)::after { background: var(--ivy); }
.r-card:nth-child(4)::after { background: var(--gold); }
.r-card:hover::after { transform: scaleX(1); }
.r-card:hover { background: #2a3d6a; }
.r-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-style: italic;
  color: rgba(184,148,42,0.2); line-height:1; margin-bottom: 1rem;
}
.r-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--cream);
  margin-bottom: 0.5rem; font-weight:600;
}
.r-desc { font-size: 0.86rem; color: rgba(245,240,232,0.5); line-height:1.6; }

/* ─── BLOG PAGE ─── */
.blog-hero {
  background: var(--ivy); padding: 4rem 3rem 3rem;
  position: relative; overflow: hidden;
}
.blog-hero::before {
  content: 'FORSCHUNG'; position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 12rem; font-weight: 700; font-style: italic;
  color: rgba(255,255,255,0.04);
  top: -20px; right: -20px; letter-spacing: -0.05em;
  white-space: nowrap; user-select: none;
}
.blog-hero .inner { max-width: 1100px; margin: 0 auto; position: relative; z-index:1; }
.blog-hero .label { color: rgba(232,240,226,0.6); }
.blog-hero .label::after { background: rgba(232,240,226,0.4); }
.blog-hero .section-h { color: var(--cream); }
.blog-hero .section-h em { color: #9fd17a; }
.blog-hero p { color: rgba(232,240,226,0.75); max-width: 580px; font-size: 1rem; }

.blog-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 3rem; align-items: start;
  max-width: 1100px; margin: 0 auto; padding: 3rem;
}

.blog-post {
  background: var(--white); border-top: 3px solid var(--ivy);
  padding: 2rem; margin-bottom: 1.5rem;
  transition: box-shadow 0.2s;
}
.blog-post:hover { box-shadow: 4px 4px 0 var(--ivy-pale); }
.blog-post:first-child { border-top-color: var(--navy); }
.blog-post:first-child:hover { box-shadow: 4px 4px 0 #dce4f0; }

.post-date {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ivy);
  margin-bottom: 0.6rem;
}
.blog-post:first-child .post-date { color: var(--navy); }

.post-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--text-dark);
  margin-bottom: 0.5rem; line-height: 1.3;
}
.post-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.post-tag {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.58rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.15rem 0.5rem;
  background: var(--ivy-pale); color: var(--ivy);
}
.post-tag.navy-tag { background: #dce4f0; color: var(--navy); }
.post-excerpt { font-size: 0.93rem; color: var(--text-mid); margin-bottom: 1rem; }
.post-read-more {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ivy);
  text-decoration: none; display: inline-flex;
  align-items: center; gap: 0.4rem;
  transition: gap 0.2s;
}
.post-read-more:hover { gap: 0.7rem; }
.post-read-more::after { content: '→'; }

.blog-sidebar {}
.sidebar-widget {
  background: var(--white); padding: 1.5rem;
  margin-bottom: 1.5rem; border-left: 3px solid var(--gold);
}
.widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--navy);
  margin-bottom: 1rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--cream-dark);
}
.widget-list { list-style: none; }
.widget-list li {
  font-size: 0.88rem; color: var(--text-mid);
  padding: 0.35rem 0; border-bottom: 1px solid var(--cream-dark);
  display: flex; justify-content: space-between; align-items: center;
}
.widget-list li:last-child { border-bottom: none; }
.widget-count {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.65rem; color: var(--text-muted);
  background: var(--cream-dark); padding: 0.1rem 0.4rem;
}
.ma-progress { margin-top: 0.8rem; }
.progress-label {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.4rem;
  display: flex; justify-content: space-between;
}
.progress-bar {
  height: 6px; background: var(--cream-dark); border-radius: 0;
  overflow: hidden;
}
.progress-fill {
  height: 100%; background: var(--ivy);
  animation: growBar 1.5s ease forwards;
}
@keyframes growBar { from { width: 0; } to { width: 38%; } }

/* ─── ARTISTIC PAGE ─── */
.art-hero {
  background: var(--burgundy); padding: 4rem 3rem 3rem;
  position: relative; overflow: hidden;
}
.art-hero::before {
  content: 'SCENE'; position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 14rem; font-weight: 700; font-style: italic;
  color: rgba(255,255,255,0.04);
  top: -30px; right: -30px; user-select: none;
}
.art-hero .inner { max-width: 1100px; margin: 0 auto; position: relative; z-index:1; }
.art-hero .label { color: rgba(245,232,235,0.6); }
.art-hero .label::after { background: rgba(245,232,235,0.4); }
.art-hero .section-h { color: var(--cream); }
.art-hero .section-h em { color: #f0b8c0; }
.art-hero p { color: rgba(245,232,235,0.75); max-width: 580px; font-size: 1rem; }

.art-content { max-width: 1100px; margin: 0 auto; padding: 3rem; }

.productions-list { margin-bottom: 3rem; }
.prod-item {
  display: grid; grid-template-columns: 90px 1fr auto;
  gap: 1.5rem; padding: 1.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: start; transition: background 0.15s;
}
.prod-item:first-child { border-top: 1px solid var(--cream-dark); }
.prod-year {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--burgundy); padding-top: 0.1rem;
}
.prod-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-style: italic;
  color: var(--navy); margin-bottom: 0.25rem;
}
.prod-meta { font-size: 0.85rem; color: var(--text-muted); }
.prod-link {
  color: inherit; text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.prod-link:hover { color: var(--burgundy); border-bottom-color: var(--burgundy); }
.prod-role {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  white-space: nowrap;
}
.role-dramaturg  { background: #dce4f0; color: var(--navy); }
.role-regie      { background: #f3dde0; color: var(--burgundy); }
.role-assistant  { background: var(--ivy-pale); color: var(--ivy); }
.role-research   { background: #fdf3d8; color: #7a5a10; }
.role-produktion { background: #f0e8d4; color: #7a5a10; }

/* ─── CALENDAR ─── */
.calendar-section {
  background: var(--navy); padding: 4rem 0;
}
.calendar-section > .inner {
  max-width: 1100px; margin: 0 auto; padding: 0 3rem;
}
.calendar-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2rem;
}
.cal-item {
  background: var(--navy-light); padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--gold);
  display: grid; grid-template-columns: 56px 1fr;
  gap: 1.2rem; align-items: center;
  transition: background 0.2s, border-color 0.2s;
}
.cal-item:hover { background: #2a3d6a; }
.cal-item.burg-event  { border-color: var(--burg-light); }
.cal-item.ivy-event   { border-color: var(--ivy-light); }
.cal-item.gold-event  { border-color: var(--gold); }

.cal-date-block { text-align: center; line-height: 1.1; }
.cal-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--gold);
}
.cal-item.burg-event .cal-day { color: #e07080; }
.cal-item.ivy-event  .cal-day { color: #7dbb5c; }

.cal-month {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(245,240,232,0.45);
}
.cal-info {}
.cal-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem; color: var(--cream); margin-bottom: 0.2rem;
}
.cal-meta { font-size: 0.78rem; color: rgba(245,240,232,0.5); }
.cal-type {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.58rem; letter-spacing: 0.12em;
  text-transform: uppercase; margin-top: 0.3rem;
  display: inline-block; padding: 0.15rem 0.4rem;
}
.type-premiere    { background: rgba(107,31,42,0.6);   color: #f0b8c0; }
.type-aufführung  { background: rgba(184,148,42,0.25); color: var(--gold-light); }
.type-vortrag     { background: rgba(45,90,27,0.5);    color: #9fd17a; }
.type-seminar     { background: rgba(26,39,68,0.7);    color: #a0b4d4; }
.type-disco       { background: rgba(45,90,27,0.45);   color: #9fd17a; }
.type-moderation  { background: rgba(184,148,42,0.2);  color: var(--gold-light); }
.cal-actions { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.45rem; }
.cal-ticket-btn {
  font-family: 'Libre Baskerville', serif; font-size: 0.58rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(184,148,42,0.5);
  padding: 0.15rem 0.55rem; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.cal-ticket-btn:hover { background: var(--gold); color: var(--navy); }

/* ─── CONTACT ─── */
.contact-band { background: var(--burgundy); padding: 4rem 0; }
.contact-band > .inner {
  max-width: 1100px; margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.contact-row {
  display: flex; gap: 1rem; align-items: baseline;
  margin-bottom: 0.8rem; font-size: 0.92rem;
}
.c-label {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.63rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-light);
  min-width: 80px;
}
.c-val { color: var(--cream); }
.contact-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-style: italic;
  color: rgba(245,240,232,0.28); line-height: 1.4;
  text-align: right;
}
.contact-quote cite {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-style: normal;
  color: rgba(245,240,232,0.2); margin-top: 0.7rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(184,148,42,0.3);
  padding: 1.8rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.65rem; letter-spacing: 0.1em;
  color: rgba(245,240,232,0.3); text-transform: uppercase;
}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; }
.footer-logo svg { width: 28px; height: 28px; opacity: 0.5; }
.footer-link {
  background: none; border: none; padding: 0; margin: 0; cursor: pointer;
  font-family: inherit; font-size: inherit; letter-spacing: inherit;
  text-transform: inherit; color: rgba(245,240,232,0.3);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-eyebrow  { animation: fadeUp 0.6s ease both; }
.hero-title    { animation: fadeUp 0.6s 0.12s ease both; }
.hero-subtitle { animation: fadeUp 0.6s 0.24s ease both; }
.hero-btns     { animation: fadeUp 0.6s 0.36s ease both; }

/* Hamburger nur auf Mobile sichtbar */
/* ─── LANGUAGE SWITCHER ─── */
.lang-switcher {
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,148,42,0.28);
  border-radius: 3px;
  overflow: hidden;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(245,240,232,0.32);
  font-family: 'Libre Baskerville', serif;
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  cursor: pointer;
  padding: 0.28rem 0.72rem;
  transition: color 0.2s ease, background 0.2s ease;
  line-height: 1.6;
}
.lang-btn.lang-active {
  color: var(--gold);
  background: rgba(184,148,42,0.14);
}
.lang-btn:hover:not(.lang-active) {
  color: rgba(245,240,232,0.7);
  background: rgba(255,255,255,0.05);
}
.lang-sep {
  width: 1px;
  height: 13px;
  background: rgba(184,148,42,0.28);
  flex-shrink: 0;
  align-self: center;
}

/* ─── LANGUAGE TRANSITION ─── */
body.lang-changing [data-i18n],
body.lang-changing [data-i18n-ph] {
  opacity: 0 !important;
  transition: opacity 0.16s ease !important;
}
[data-i18n], [data-i18n-ph] {
  transition: opacity 0.2s ease;
}

.nav-burger { display: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero          { flex-direction: column; padding: 2rem 1.5rem; }
  .hero-musik-block svg { height: 120px; }
  .hero-monogram-large { display: none; }
  .about-grid    { grid-template-columns: 1fr; align-items: start; gap: 1.5rem; }
  .research-cards{ grid-template-columns: 1fr 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: 1fr; }
  .contact-band > .inner { grid-template-columns: 1fr; }
  .contact-quote { text-align: left; }
  nav { padding: 0 1.2rem; }
  .section-wrap  { padding: 2rem 1.5rem; }
  .prod-item     { grid-template-columns: 70px 1fr; }
  .prod-role     { display: none; }
}
/* ─── CV PAGE ─── */
.cv-hero { background: var(--navy); padding: 4rem 3rem 3rem; position: relative; overflow: hidden; }
.cv-hero::before { content:'CURRICULUM'; position:absolute; font-family:'Playfair Display',serif; font-size:10rem; font-weight:700; font-style:italic; color:rgba(255,255,255,0.04); top:-10px; right:-20px; user-select:none; white-space:nowrap; }
.cv-hero .inner { max-width:1100px; margin:0 auto; position:relative; z-index:1; }
.cv-grid { display:grid; grid-template-columns:1fr 1fr; gap:3rem; max-width:1100px; margin:0 auto; padding:3rem; }
.cv-column h3 { font-family:'Playfair Display',serif; font-size:1.1rem; color:var(--navy); margin-bottom:1.2rem; padding-bottom:0.5rem; border-bottom:2px solid var(--gold); }
.cv-entry { margin-bottom:1.4rem; padding-left:1rem; border-left:2px solid var(--cream-dark); transition:border-color 0.2s; }
.cv-entry:hover { border-color:var(--burgundy); }
.cv-year { font-family:'Libre Baskerville',serif; font-size:0.65rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gold); margin-bottom:0.2rem; }
.cv-title { font-family:'Playfair Display',serif; font-size:1rem; color:var(--text-dark); margin-bottom:0.2rem; }
.cv-sub { font-size:0.85rem; color:var(--text-muted); font-style:italic; }

/* ─── GENERIC SUBPAGE HERO ─── */
.sub-hero { padding: 4rem 3rem 3rem; position:relative; overflow:hidden; }
.sub-hero .inner, .cv-hero .inner, .art-hero .inner, .blog-hero .inner { position: relative; z-index: 1; }
.sub-hero::before { position:absolute; font-family:'Playfair Display',serif; font-size:10rem; font-weight:700; font-style:italic; color:rgba(255,255,255,0.05); top:-10px; right:-20px; user-select:none; white-space:nowrap; }
.sub-hero.navy { background:var(--navy); }
.sub-hero.navy::before { content: attr(data-bg-text); }
.sub-hero.burg { background:var(--burgundy); }
.sub-hero.ivy  { background:var(--ivy); }

.sub-content { max-width:1100px; margin:0 auto; padding:3rem; }

/* Simple card grid for references, networks etc */
.card-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-top:1.5rem; }
.info-card { background:var(--white); padding:1.8rem; border-top:3px solid var(--navy); transition:box-shadow 0.2s, transform 0.2s; }
.info-card:hover { box-shadow:4px 4px 0 #dce4f0; transform:translateY(-2px); }
.info-card.gold-top { border-top-color:var(--gold); }
.info-card.burg-top { border-top-color:var(--burgundy); }
.info-card.ivy-top  { border-top-color:var(--ivy); }
.info-card h4 { font-family:'Playfair Display',serif; font-size:1.05rem; color:var(--navy); margin-bottom:0.5rem; }
.info-card p  { font-size:0.88rem; color:var(--text-muted); line-height:1.6; }
.offer-subtitle { font-family:'EB Garamond',serif; font-style:italic; font-size:0.92rem; color:var(--gold); margin-bottom:0.75rem; margin-top:-0.1rem; }
.offer-list { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:0.4rem; }
.offer-list li { font-size:0.88rem; color:var(--text-muted); line-height:1.5; padding-left:1rem; position:relative; }
.offer-list li::before { content:'—'; position:absolute; left:0; color:var(--gold); opacity:0.6; }
.offer-rate { font-family:'Libre Baskerville',serif; font-size:0.72rem; letter-spacing:0.06em; color:var(--navy); opacity:0.55; margin-top:1rem; padding-top:0.75rem; border-top:1px solid rgba(20,30,60,0.1); }
.card-link, .card-link:link, .card-link:visited { color: var(--navy) !important; text-decoration: none !important; border-bottom: 1px solid transparent; transition: border-color 0.2s, color 0.2s; }
.card-link:hover, .card-link:active { color: var(--ivy) !important; border-bottom-color: var(--ivy); }

/* ─── CONTACT FORM ─── */
.contact-page { display:grid; grid-template-columns:1fr 1.4fr; gap:4rem; max-width:1100px; margin:0 auto; padding:3rem; align-items:start; }
.contact-details { }
.contact-detail-row { display:flex; gap:1rem; margin-bottom:1.2rem; align-items:flex-start; }
.cd-icon { width:36px; height:36px; background:var(--navy); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cd-icon svg { width:16px; height:16px; }
.cd-label { font-family:'Libre Baskerville',serif; font-size:0.62rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:0.2rem; }
.cd-value { font-size:0.92rem; color:var(--text-mid); }

.contact-form-wrap { background:var(--white); padding:2.5rem; border-top:3px solid var(--burgundy); }
.form-title { font-family:'Playfair Display',serif; font-size:1.3rem; color:var(--navy); margin-bottom:0.4rem; }
.form-sub { font-size:0.88rem; color:var(--text-muted); margin-bottom:1.8rem; font-style:italic; }
.form-row { margin-bottom:1.2rem; }
.form-row label { font-family:'Libre Baskerville',serif; font-size:0.65rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--text-muted); display:block; margin-bottom:0.4rem; }
.form-row input, .form-row textarea, .form-row select {
  width:100%; background:var(--cream); border:1px solid var(--cream-dark);
  border-bottom:2px solid var(--navy);
  padding:0.7rem 0.9rem; font-family:'EB Garamond',serif; font-size:1rem;
  color:var(--text-dark); outline:none;
  transition:border-color 0.2s, background 0.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-bottom-color:var(--gold); background:var(--white);
}
.form-row textarea { resize:vertical; min-height:120px; }
.form-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-submit { width:100%; background:var(--navy); color:var(--cream); border:none; padding:0.9rem 2rem; font-family:'Libre Baskerville',serif; font-size:0.72rem; letter-spacing:0.2em; text-transform:uppercase; cursor:pointer; margin-top:0.5rem; transition:background 0.2s; }
.form-submit:hover { background:var(--navy-light); }

/* Publications list */
.publications-list { display:flex; flex-direction:column; gap:1rem; }
.pub-item { display:flex; gap:1.2rem; align-items:baseline; }
.pub-year { font-family:'Libre Baskerville',serif; font-size:0.78rem; color:var(--text-muted); min-width:4.5rem; }
.pub-info { flex:1; }
.pub-title { font-family:'EB Garamond',serif; font-size:1rem; font-style:italic; color:var(--navy); margin-bottom:0.2rem; }
.pub-meta { font-size:0.83rem; color:var(--text-muted); }
.pub-tag { display:inline-block; font-family:'Libre Baskerville',serif; font-size:0.62rem; letter-spacing:0.08em; text-transform:uppercase; background:rgba(20,30,60,0.07); color:var(--navy); padding:0.1rem 0.45rem; margin-left:0.5rem; }

/* ─── FOTO-PLATZHALTER (Landscape) ─── */
.photo-placeholder-landscape {
  width: 100%;
  max-width: 760px;
  height: 220px;
  background: var(--cream-dark);
  border: 2px dashed rgba(20,30,60,0.18);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.photo-ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: rgba(20,30,60,0.3);
}
.photo-ph-inner svg {
  width: 48px;
  height: 36px;
}
.photo-ph-inner span {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20,30,60,0.3);
}

/* ─── ARBEITSFOTO (CV) ─── */
.cv-photo-wrap {
  width: 100%;
  margin: 0 0 0.4rem 0;
}
.cv-work-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  object-position: 58% 32%;
  border-radius: 3px;
  box-shadow: 0 4px 28px rgba(10,22,51,0.14);
}
@media (max-width: 700px) {
  .cv-work-photo {
    aspect-ratio: 4 / 3;
    border-radius: 2px;
    object-position: 60% 25%;
  }
}

/* ─── FOTO-CREDIT (alle Fotos) ─── */
.photo-credit {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
  display: block;
}

/* ─── PORTRAIT-PLATZHALTER (Kontakt) ─── */
.kontakt-portrait {
  margin-top: 2rem;
  margin-bottom: 0;
  width: 100%;
  max-width: 280px;
}
.kontakt-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 3px;
  box-shadow: 0 4px 24px rgba(10,22,51,0.12);
}
.placeholder-caption {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(20,30,60,0.3);
  margin: 0;
}

/* ─── FOTO AKADEMISCH ─── */
.photo-akademisch {
  margin: 1.5rem 0 2.5rem;
  max-width: 680px;
}
.photo-akademisch img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  border-radius: 3px;
  display: block;
}
.photo-akademisch figcaption {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-family: 'Libre Baskerville', serif;
}
.photo-akademisch figcaption a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── FOTO KÜNSTLERISCHE TÄTIGKEIT ─── */
.photo-kuenstlerisch {
  margin: 0 0 2.5rem;
  width: 100%;
}
.photo-kuenstlerisch img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  border-radius: 3px;
  display: block;
}
.photo-kuenstlerisch figcaption {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
  display: block;
}

/* ─── BLOG POST VOLLANSICHT ─── */
.blog-post-detail-content {
  font-family: 'EB Garamond', serif;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-mid);
}
.blog-post-detail-content p {
  margin-bottom: 1.2rem;
}
.blog-post-detail-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin: 2rem 0 0.6rem;
  line-height: 1.3;
}
.blog-post-detail-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy);
  margin: 1.5rem 0 0.4rem;
}
.blog-post-detail-content blockquote {
  border-left: 3px solid var(--gold);
  margin: 1.5rem 0;
  padding: 0.5rem 1.2rem;
  font-style: italic;
  color: var(--text-muted);
}
.blog-post-detail-content ul,
.blog-post-detail-content ol {
  margin: 0.5rem 0 1.2rem 1.5rem;
}
.blog-post-detail-content li {
  margin-bottom: 0.35rem;
}
.blog-post-detail-content strong {
  color: var(--text-dark);
  font-weight: 700;
}
.blog-post-detail-content em {
  font-style: italic;
}
.blog-post-detail-content a {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.blog-post-detail-content a:hover {
  color: var(--ivy);
  border-bottom-color: var(--ivy);
}

@media (max-width:960px) {
  .cv-grid { grid-template-columns:1fr; }
  .card-grid-2 { grid-template-columns:1fr; }
  .contact-page { grid-template-columns:1fr; }
}

/* ════════════════════════════════════════════
   MOBILE  (≤ 768 px)
   Desktop-Layout bleibt unberührt.
   Alle Breakpoints per CSS-Media-Query —
   der Browser erkennt das Gerät automatisch.
   ════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── HAMBURGER BUTTON ── */
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 4px;
    z-index: 201;
    flex-shrink: 0;
  }
  .nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── NAV ── */
  nav {
    padding: 0 1rem;
    height: 60px;
    position: sticky;
  }
  .nav-name-sub { display: none; }
  .nav-name-main { font-size: 0.85rem; }
  .monogram-svg  { width: 36px; height: 36px; }
  .lang-switcher { margin-left: auto; margin-right: 0.5rem; }

  /* Mobile nav overlay */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    bottom: 0;
    background: var(--navy);
    border-top: 2px solid var(--gold);
    z-index: 200;
    overflow-y: auto;
    padding-bottom: 2rem;
  }
  .nav-links.open { display: flex; }

  .nav-links > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.07); }

  .nav-links > li > a,
  .nav-links > li > button {
    height: auto;
    padding: 1rem 1.5rem;
    width: 100%;
    justify-content: flex-start;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    border-bottom: none;
  }

  /* Dropdowns immer sichtbar im mobile Menu */
  .nav-links .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(184,148,42,0.2);
    background: rgba(255,255,255,0.04);
    min-width: 0;
  }
  .nav-links .dropdown a,
  .nav-links .dropdown button {
    padding: 0.7rem 1.5rem 0.7rem 2.5rem;
    font-size: 0.72rem;
  }
  .nav-arrow { display: none; }

  /* ── HERO (Startseite) ── */
  .hero {
    padding: 1.5rem 1.2rem 2.5rem;
    flex-direction: column;
    gap: 1.5rem;
    min-height: unset;
  }
  .hero-right { margin-right: 0; align-items: center; }
  .hero-monogram-large { max-width: 200px; }
  .hero-title {
    font-size: clamp(2.6rem, 11vw, 3.8rem);
    line-height: 1.05;
  }
  .hero-subtitle { font-size: 0.82rem; letter-spacing: 0.06em; }
  .hero-cta-row { margin-top: 1.2rem; }

  /* ── SUB-HERO (Seitentitel-Banner) ── */
  .sub-hero, .cv-hero, .art-hero, .blog-hero {
    padding: 2rem 1.2rem 1.8rem;
  }
  .sub-hero::before, .cv-hero::before,
  .art-hero::before, .blog-hero::before {
    font-size: 5rem;
    opacity: 0.05;
  }

  /* ── KÜNSTLERISCHE TÄTIGKEIT ── */
  .art-content { padding: 1.5rem; }

  /* ── ALLGEMEINE SECTIONS ── */
  .section-wrap { padding: 2rem 1.2rem; }
  .inner        { padding-left: 1.2rem; padding-right: 1.2rem; }

  /* Kein horizontaler Überlauf */
  body          { overflow-x: hidden; }
  p, li, h1, h2, h3, h4 { overflow-wrap: break-word; word-break: break-word; }

  /* Portrait auf Mobile: kompakteres Format */
  .portrait-img { aspect-ratio: 4/3; }

  /* ── CV ── */
  .cv-grid   { grid-template-columns: 1fr; padding: 1.5rem 1.2rem; gap: 2rem; }
  .cv-column + .cv-column { border-top: 1px solid var(--cream-dark); padding-top: 1.5rem; }

  /* ── KONTAKTFORMULAR ── */
  .form-grid-2 { grid-template-columns: 1fr; }
  .contact-page { grid-template-columns: 1fr; }

  /* ── BLOG LAYOUT ── */
  .blog-grid    { grid-template-columns: 1fr; gap: 0; }
  .blog-sidebar { border-top: 1px solid var(--cream-dark); margin-top: 1.5rem; }

  /* ── PRODUKTIONSLISTE ── */
  .prod-item { grid-template-columns: 56px 1fr; gap: 0.8rem; }

  /* ── OFFERS / ANGEBOTE ── */
  .card-grid-2  { grid-template-columns: 1fr; }
  .info-card    { padding: 1.4rem 1.2rem; }

  /* ── ARBEITSFELDER auf Startseite ── */
  .research-cards { grid-template-columns: 1fr; }

  /* ── FOOTER ── */
  footer {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.7rem;
  }
}

/* ─── ANGEBOTE: CTA ────────────────────────────────────────────────────────── */
.offers-cta {
  text-align: center;
  padding: 2.8rem 1rem 1rem;
  border-top: 1px solid rgba(10, 22, 51, 0.1);
  margin-top: 2rem;
}
.offers-cta-text {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 1.1rem;
  opacity: 0.75;
}

/* ─── SOCIAL MEDIA BUTTONS (Hero) ─────────────────────────────────────────── */
.hero-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.4rem;
  align-items: center;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.social-btn svg {
  width: 17px;
  height: 17px;
  display: block;
}

.social-btn:hover {
  border-color: rgba(255, 255, 255, 0.9);
  color: #0a1633;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   LIKES & KOMMENTARE
   ═══════════════════════════════════════════════════════════════ */

/* ── Like-Button ── */
.like-section {
  display: flex; align-items: center; gap: 0.75rem;
  margin: 2.5rem 0 0;
}
.like-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: none; border: 1.5px solid rgba(107,31,42,0.25);
  padding: 0.45rem 1.1rem; cursor: pointer;
  font-family: 'Libre Baskerville', serif; font-size: 0.82rem;
  color: var(--text-mid); border-radius: 2px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  line-height: 1;
}
.like-btn:hover:not(.liked):not([disabled]) {
  border-color: var(--burgundy); color: var(--burgundy);
}
.like-btn .heart { font-size: 1.05rem; display: inline-block; transition: transform 0.15s; }
.like-btn:hover:not(.liked) .heart { transform: scale(1.25); }
.like-btn.liked {
  background: var(--burgundy); color: var(--white);
  border-color: var(--burgundy); cursor: default;
}
.like-count { font-variant-numeric: tabular-nums; min-width: 1ch; text-align: left; }
.like-label { font-family: 'Libre Baskerville', serif; font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* ── Kommentare-Bereich ── */
.comments-section {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}
.comments-heading {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400;
  font-size: 1rem; color: var(--navy); margin-bottom: 1.4rem; letter-spacing: 0.02em;
}

/* ── Kommentar-Liste ── */
.comment-list { margin-bottom: 2rem; }
.comment-item {
  padding: 1rem 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.comment-item:last-child { border-bottom: none; }
.comment-meta {
  font-family: 'Libre Baskerville', serif; font-size: 0.7rem;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.45rem;
}
.comment-text {
  font-family: 'EB Garamond', serif; font-size: 1.05rem;
  line-height: 1.7; color: var(--text-dark);
}
.no-comments {
  font-family: 'EB Garamond', serif; font-style: italic;
  font-size: 0.92rem; color: var(--text-muted); padding: 0.3rem 0 1.5rem;
}

/* ── Kommentar-Formular ── */
.comment-form-section {
  margin-top: 2rem; padding-top: 1.8rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.comment-form-heading {
  font-family: 'Libre Baskerville', serif; font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.2rem;
}
.comment-field { margin-bottom: 1rem; }
.comment-field label {
  display: block; font-family: 'Libre Baskerville', serif;
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.35rem;
}
.comment-field input[type="text"],
.comment-field textarea {
  width: 100%; background: var(--cream);
  border: 1px solid var(--cream-dark); border-bottom: 2px solid var(--navy);
  padding: 0.6rem 0.8rem;
  font-family: 'EB Garamond', serif; font-size: 1rem; color: var(--text-dark);
  outline: none; transition: border-color 0.2s; resize: vertical;
  border-radius: 0; -webkit-appearance: none;
}
.comment-field input:focus,
.comment-field textarea:focus { border-bottom-color: var(--gold); }
.comment-dsgvo {
  font-family: 'Libre Baskerville', serif; font-size: 0.68rem;
  color: var(--text-muted); line-height: 1.55; margin-bottom: 0.9rem;
}
.btn-comment-submit {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--cream);
  border: none; padding: 0.55rem 1.4rem; min-height: 42px;
  font-family: 'Libre Baskerville', serif; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; border-radius: 1px;
}
.btn-comment-submit:hover { background: var(--navy-light); }
.btn-comment-submit:disabled { opacity: 0.6; cursor: default; }
.comment-success {
  margin-top: 0.8rem; padding: 0.7rem 0.9rem;
  background: #e8f4e8; border-left: 3px solid var(--ivy);
  font-family: 'Libre Baskerville', serif; font-size: 0.82rem;
  color: var(--ivy); line-height: 1.5;
}
.comment-error {
  margin-top: 0.8rem; padding: 0.7rem 0.9rem;
  background: #f4e8e8; border-left: 3px solid var(--burgundy);
  font-family: 'Libre Baskerville', serif; font-size: 0.82rem;
  color: var(--burgundy); line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .like-btn { padding: 0.5rem 1rem; }
  .comment-field input[type="text"],
  .comment-field textarea { font-size: 16px; } /* kein iOS-Zoom */
}
