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

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

:root {
  --navy: #0d1b2a;
  --navy-mid: #162436;
  --steel: #1e3a52;
  --gold: #c8963e;
  --gold-light: #e8b86d;
  --cream: #f5f1ea;
  --off-white: #faf8f4;
  --muted: #8a9bb0;
  --text: #1a2a38;
  --placeholder: #b0bec5;
  --dead-link: #b0bec5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── MAX WIDTH WRAPPER ── */
.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,150,62,0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: white;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* ── LANGUAGE SWITCHER ── */
.lang-switch {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid rgba(138,155,176,0.35);
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
  margin-left: 1.5rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.lang-switch:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── PAGE HEADER (Unterseiten) ── */
.page-header {
  background: var(--navy);
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background-image:
    linear-gradient(rgba(200,150,62,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,150,62,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.eyebrow-line { width: 2.5rem; height: 1px; background: var(--gold); }
.eyebrow-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-header h1 em { font-style: italic; color: var(--gold-light); }

.page-header-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 540px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  text-decoration: none;
  padding: 0.9rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  display: inline-block;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost-gold {
  display: inline-block;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-ghost-gold:hover { background: var(--gold); color: var(--navy); }

/* ── BACK LINK ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  transition: color 0.2s;
}
.back-link::before { content: '←'; }
.back-link:hover { color: var(--gold); }

/* ── SECTION SHARED ── */
.section { padding: 5rem 2rem; }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before { content: ''; width: 2rem; height: 1px; background: var(--gold); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--steel); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(200,150,62,0.15);
}

.footer-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name { font-family: 'Playfair Display', serif; color: white; font-size: 1rem; }
.footer-name span { color: var(--gold); }

.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.618fr 1fr;
  position: relative;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(30,58,82,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,150,62,0.08) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background-image:
    linear-gradient(rgba(200,150,62,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,150,62,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 5rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
h1 em { font-style: italic; color: var(--gold-light); }

.hero-title-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.hero-positioning {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  max-width: 440px;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.hero-positioning strong { color: white; font-weight: 500; }

.hero-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  margin-bottom: 3rem;
}

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

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 5rem 3rem;
}

.stats-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,150,62,0.2);
  border-radius: 4px;
  padding: 2.5rem;
  width: 100%;
  max-width: 340px;
  backdrop-filter: blur(4px);
}
.stats-card-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat-row:last-child { border-bottom: none; }
.stat-label { font-size: 0.8rem; color: var(--muted); font-weight: 400; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: white;
  font-weight: 700;
  text-align: right;
}
.stat-value.small { font-size: 0.95rem; line-height: 1.4; max-width: 180px; }
.stat-unit { font-size: 0.75rem; color: var(--gold); margin-left: 0.3rem; font-family: 'Barlow', sans-serif; font-weight: 500; }

/* ── POSITIONING / ABOUT ── */
.positioning-band {
  background: var(--cream);
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.positioning-band-inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.positioning-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 65% center;
  border-radius: 3px;
  display: block;
  filter: grayscale(15%);
}

.positioning-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.positioning-label::before { content: ''; width: 2rem; height: 1px; background: var(--gold); }

.positioning-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0;
}
.positioning-band h2 em { font-style: italic; color: var(--steel); }

.positioning-body { padding-top: 0.25rem; }

.positioning-core {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.positioning-detail {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #4e6275;
  margin-bottom: 1.75rem;
}

.sector-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.sector-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--steel);
  border: 1px solid rgba(30,58,82,0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  background: white;
}

/* ── EXPERTISE GRID ── */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 3rem;
  background: var(--cream);
  border: 1.5px solid var(--cream);
  border-radius: 4px;
  overflow: hidden;
}

.expertise-card {
  background: white;
  padding: 2rem 1.75rem;
  transition: background 0.2s;
  cursor: default;
}
.expertise-card:hover { background: var(--off-white); }

.exp-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--navy);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.exp-title { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; letter-spacing: 0.01em; }
.exp-keywords { font-size: 0.72rem; color: var(--gold); font-weight: 500; margin-bottom: 0.4rem; letter-spacing: 0.05em; }
.exp-desc { font-size: 0.83rem; line-height: 1.7; color: #577085; }

/* ── CAREER STRIP ── */
.career-strip {
  background: var(--navy);
  padding: 5rem 2rem;
}
.career-strip .section-title { color: white; }

.timeline {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(200,150,62,0.3);
}

.timeline-item {
  padding: 0 0 2.5rem 2rem;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -4.5px;
  top: 0.35rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline-item.sabbatical::before { background: var(--muted); }

.tl-period {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.timeline-item.sabbatical .tl-period { color: var(--muted); }
.tl-role { font-size: 0.95rem; font-weight: 600; color: white; margin-bottom: 0.2rem; }
.tl-org { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.4rem; }
.tl-note { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-style: italic; line-height: 1.7; }

/* ── SKILLS ── */
.skills-section {
  background: var(--cream);
  padding: 5rem 2rem;
}

.skills-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5px;
  background: rgba(0,0,0,0.08);
  border-radius: 4px;
  overflow: hidden;
}

.skill-block {
  background: var(--off-white);
  padding: 1.75rem 1.5rem;
}

.skill-block-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.skill-items { display: flex; flex-direction: column; gap: 0.4rem; }
.skill-item { font-size: 0.82rem; color: var(--text); font-weight: 400; }

/* ── PUBLIKATIONEN TEASER ── */
.pub-teaser {
  background: var(--off-white);
  padding: 5rem 2rem;
}

.pub-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pub-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 3px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
  text-decoration: none;
}
.pub-card:hover { border-color: var(--gold); }

.pub-year {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.pub-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  flex: 1;
}
.pub-type { font-size: 0.72rem; color: var(--muted); }

.pub-more {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.pub-more::after { content: '→'; }
.pub-more:hover { color: var(--gold-light); }

/* ── ESG CALLOUT ── */
.esg-callout {
  background: var(--cream);
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
}

.esg-callout-inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.callout-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--steel);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 1.75rem;
}

.callout-body { font-size: 0.94rem; line-height: 1.8; color: #4e6275; }

.callout-tag {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
}

/* ── REISEN TEASER ── */
.travel-teaser {
  background: var(--navy);
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.travel-teaser-inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.travel-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.travel-label::before { content: ''; width: 2rem; height: 1px; background: var(--muted); }

.travel-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.travel-title em { font-style: italic; color: var(--gold-light); }

.travel-body {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}

.travel-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.travel-visual {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0.75rem;
}

.travel-img-map { grid-row: 1 / 4; }

.travel-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.travel-visual img:hover { opacity: 1; }

.travel-img-map img { aspect-ratio: unset; height: 100%; min-height: 360px; }
.travel-img-photo { aspect-ratio: 16 / 9; }

/* ── KONTAKT ── */
.kontakt-section {
  background: var(--navy-mid);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(200,150,62,0.15);
  display: flex;
  justify-content: center;
}

.kontakt-inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.kontakt-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
}

.kontakt-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── PUBLIKATIONEN SEITE ── */
.pub-main { padding: 4rem 2rem 6rem; }
.pub-main-inner { max-width: 1200px; margin: 0 auto; }

.pub-section { margin-bottom: 4rem; }

.pub-section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pub-section-label::before { content: ''; width: 2rem; height: 1px; background: var(--gold); }

.pub-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}
.pub-section-title em { font-style: italic; color: var(--steel); }

.pub-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 4px;
  overflow: hidden;
}

.pub-entry {
  background: white;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
  transition: background 0.15s;
}
.pub-entry:last-child { border-bottom: none; }
.pub-entry:hover { background: var(--off-white); }

.pub-meta {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.pub-title-entry {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.3rem;
}

.pub-authors { font-size: 0.82rem; color: #5a6e80; margin-bottom: 0.5rem; }
.pub-venue { font-size: 0.79rem; color: #637a8a; font-style: italic; }

.pub-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
  min-width: 120px;
}

.pub-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  transition: all 0.15s;
  white-space: nowrap;
}

.pub-link-pdf { background: var(--navy); color: white; }
.pub-link-pdf:hover { background: var(--steel); }

.pub-link-web { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.pub-link-web:hover { background: var(--gold); color: var(--navy); }

.pub-link-dead {
  background: transparent;
  color: var(--dead-link);
  border: 1px solid var(--dead-link);
  cursor: default;
  pointer-events: none;
  opacity: 0.6;
}

.pub-featured {
  background: var(--navy);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 1.5px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}

.pub-featured-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,150,62,0.12);
  border: 1px solid rgba(200,150,62,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.pub-featured .pub-meta { color: var(--gold); }
.pub-featured .pub-title-entry { color: white; font-size: 1rem; }
.pub-featured .pub-authors { color: var(--muted); }
.pub-featured .pub-venue { color: rgba(255,255,255,0.3); }

/* ── IMPRESSUM ── */
.imp-main { padding: 4rem 2rem 6rem; }
.imp-inner { max-width: 680px; margin: 0 auto; }

.imp-section { margin-bottom: 2.5rem; }

.imp-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.imp-section p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: #5a6e80;
  margin-bottom: 0.5rem;
}

.imp-section a { color: var(--gold); text-decoration: none; }
.imp-section a:hover { color: var(--steel); }

.imp-note { font-size: 0.78rem; color: var(--muted); font-style: italic; margin-top: 0.5rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow   { animation: fadeUp 0.6s ease both 0.2s; }
h1              { animation: fadeUp 0.6s ease both 0.35s; }
.hero-title-sub { animation: fadeUp 0.6s ease both 0.45s; }
.hero-positioning { animation: fadeUp 0.6s ease both 0.52s; }
.hero-desc      { animation: fadeUp 0.6s ease both 0.58s; }
.hero-actions   { animation: fadeUp 0.6s ease both 0.65s; }
.stats-card     { animation: fadeUp 0.7s ease both 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left { padding: 7rem 2rem 3rem; }
  .hero-right { padding: 2rem; }
  .stats-card { max-width: 100%; }
  .section, .career-strip, .pub-teaser, .skills-section { padding: 4rem 2rem; }
  .expertise-grid { grid-template-columns: 1fr; }
  .positioning-band { padding: 4rem 2rem; }
  .positioning-band-inner { grid-template-columns: 1fr; gap: 2rem; }
  .positioning-photo { max-height: 300px; aspect-ratio: 4/3; object-position: 65% 20%; }
  .esg-callout-inner { grid-template-columns: 1fr; gap: 2rem; }
  .esg-callout { padding: 4rem 2rem; }
  .pub-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .travel-teaser { padding: 4rem 2rem; }
  .travel-teaser-inner { grid-template-columns: 1fr; gap: 2rem; }
  .kontakt-inner { grid-template-columns: 1fr; gap: 2rem; }
  footer { flex-direction: column; gap: 1rem; padding: 2rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .pub-entry { grid-template-columns: 1fr; }
  .pub-links { flex-direction: row; align-items: flex-start; }
  .pub-featured { grid-template-columns: 1fr; }
  footer .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
