@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("fonts/raleway-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("fonts/raleway-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("fonts/raleway-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fafafa;
  --text-main: #2c2c2c;
  --text-muted: #555555;

  --sage-100: #ebf0ea;
  --sage-200: #d4dcd1;
  --sage-500: #8fa18a;
  --sage-700: #6b7d67;

  --white: #ffffff;
  --border: rgba(0, 0, 0, 0.08);

  --radius: 12px;
  --container-width: 1140px;

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Raleway", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  --fs-h1: clamp(2.5rem, 5vw, 4rem);
  --fs-h2: clamp(1.8rem, 3.5vw, 2.5rem);
  --fs-body: clamp(1rem, 1.1vw, 1.125rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  margin: 0 0 0.8em 0;
  line-height: 1.15;
  color: #1a1a1a;
  text-wrap: balance;
}

h1 {
  font-size: var(--fs-h1);
  font-weight: 600;
  letter-spacing: -0.02em;
}
h2 {
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.container {
  width: min(var(--container-width), 100% - 40px);
  margin-inline: auto;
}

.mt-20 {
  margin-top: 20px;
}

.text-center {
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-100 {
  transition-delay: 0.1s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
}

.brand-mark {
  width: 24px;
  height: 24px;
  background: none;
  display: block;
}

.brand-sep {
  color: var(--sage-500);
  font-weight: 400;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 0;
}
.nav a:hover {
  color: var(--sage-500);
}

.nav .nav-pill {
  padding: 6px 16px;
  background: var(--sage-100);
  border-radius: 20px;
  color: var(--sage-700);
  transition: background 0.2s;
}
.nav .nav-pill:hover {
  background: var(--sage-200);
}

.nav-toggle {
  display: none;
}

.section {
  padding: clamp(60px, 8vw, 100px) 0;
}

section {
  scroll-margin-top: 80px;
}

.section-soft {
  background: linear-gradient(to bottom, var(--white), var(--sage-100));
}

.section-sage {
  background: var(--sage-100);
}

.section-head {
  max-width: 900px;
  margin-bottom: 50px;
}

.subhead {
  display: block;
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  color: #666666;
  margin-top: 12px;
}

.hero {
  padding: clamp(60px, 10vw, 100px) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-500);
  margin-bottom: 16px;
}

.hero-lede {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  background: var(--text-main);
  color: var(--white);
  border: 1px solid var(--text-main);
}
.btn:hover {
  transform: translateY(-2px);
}

.btn-sage {
  background-color: var(--sage-500);
  color: #fff;
  border-color: transparent;
}
.btn-sage:hover {
  background-color: var(--sage-700);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #ccc;
  color: var(--text-main);
}
.btn-outline:hover {
  background-color: var(--white);
  border-color: var(--text-main);
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: 16px 16px 0 var(--sage-500);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-image img:hover {
  transform: translate(-4px, -4px);
  box-shadow: 20px 20px 0 var(--sage-500);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  grid-template-areas: "copy media";
}

.split-copy {
  grid-area: copy;
  min-width: 0;
}

.split-media {
  grid-area: media;
  min-width: 0;
}

.split.split-reverse {
  grid-template-areas: "media copy";
}

.split-copy p {
  margin: 0 0 16px 0;
}

/* KORRIGIERT: Zitat ohne Kasten */
.profile-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  /* KEIN HINTERGRUND/RAHMEN MEHR */
  padding: 20px;
  text-align: center;
  height: 100%;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--sage-700);
  line-height: 1.4;
  margin: 0 0 16px 0;
}

.quote-author {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0;
}

.list {
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.6;
}

.list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.8em;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  background-color: var(--sage-500);
}

.case-box {
  margin-top: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--sage-200);
}

.case-label {
  margin: 0 0 8px 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-700);
  font-weight: 700;
}

.case-title {
  font-weight: 700;
  margin: 0 0 4px 0;
}

.case-sub {
  font-size: 0.95rem;
  margin: 0 0 16px 0;
  color: var(--text-muted);
}

.case-text {
  font-size: 0.95rem;
  margin: 0;
}

.corporate-media {
  border-radius: var(--radius);
  box-shadow: 0 20px 40px var(--sage-200);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.corporate-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

.books-intro {
  max-width: 800px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.books-note {
  text-align: center;
  max-width: 700px;
  margin: 40px auto 0;
  color: var(--text-muted);
}

.books-note p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 20px;
}

.portfolio-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portfolio-thumb {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 2/3;
  background: var(--sage-100);
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-thumb img.book-cover {
  object-fit: contain;
  padding: 20px;
}

.portfolio-item:hover .portfolio-thumb img {
  transform: scale(1.05);
}

.portfolio-meta h3 {
  margin: 0 0 4px 0;
  font-size: 1.25rem;
}

.portfolio-meta p {
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.portfolio-meta .tag {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--sage-700);
  background: var(--sage-100);
  padding: 4px 10px;
  border-radius: 4px;
  opacity: 0.9;
}

.logo-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  opacity: 0.6;
  margin-bottom: 40px;
  font-weight: 600;
  color: var(--sage-700);
  align-items: center;
}

.logo-item {
  font-size: 1.1rem;
}

.editorial-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.editorial-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.editorial-card:hover {
  border-color: var(--sage-500);
  transform: translateX(4px);
}

.ed-publisher {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sage-500);
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.editorial-card h3 {
  font-size: 1.2rem;
  margin: 0 0 4px 0;
}

.editorial-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.ed-arrow {
  color: var(--sage-500);
  font-size: 1.5rem;
  margin-left: 20px;
}

.portfolio-link {
  display: block;
  height: 100%;
}

.portfolio-link:hover h3 {
  color: var(--sage-500);
}

.text-link {
  font-weight: 600;
  border-bottom: 1px solid var(--sage-500);
  padding-bottom: 2px;
  display: inline-block;
}

.text-link:hover {
  opacity: 0.9;
  transform: translateX(2px);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  aspect-ratio: 2 / 3;
  transition: filter 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.photo-grid img:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--sage-500);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-100);
  color: var(--sage-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin: 0 0 12px 0;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.media-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.media-row {
  display: flex;
  align-items: center;
  gap: 24px;
  background: white;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.media-row:hover {
  border-color: var(--sage-500);
  transform: translateX(4px);
}

.media-thumb {
  flex-shrink: 0;
  width: 140px;
  height: 85px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--sage-100);
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.2s ease, filter 0.2s ease;
  filter: saturate(0.8);
}

.media-row:hover .media-thumb img {
  opacity: 1;
  filter: saturate(1);
}

.media-content {
  flex-grow: 1;
}

.media-content h3 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
}

.media-meta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sage-700);
  margin-bottom: 8px;
}

.media-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.media-credit {
  font-size: 0.7rem !important;
  color: #999 !important;
  margin-top: 6px !important;
}

.section-dark {
  background-color: var(--sage-700);
  color: white;
  text-align: center;
}

.section-dark .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 800px;
}

.section-dark h2 {
  color: white;
  margin-bottom: 16px;
}

.section-dark .subhead {
  color: var(--sage-200);
  margin-top: 0;
  margin-bottom: 40px;
}

.contact-box {
  max-width: 700px;
  margin: 0 auto;
}

.contact-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  background: white;
  color: var(--sage-700);
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-white-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: var(--sage-100);
  border-color: var(--sage-100);
}

.contact-links-secondary {
  margin-top: 48px;
  font-size: 1rem;
  color: var(--sage-200);
  font-weight: 500;
}

.contact-links-secondary a {
  color: white;
  opacity: 0.8;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  padding-bottom: 2px;
}

.contact-links-secondary a:hover {
  opacity: 1;
  border-bottom-color: white;
}

.sep {
  margin: 0 12px;
  opacity: 0.5;
  color: var(--sage-200);
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
  padding: 32px 0 calc(32px + env(safe-area-inset-bottom));
}

.site-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.site-footer .footer-links {
  display: flex;
  gap: 20px;
}

.site-footer .footer-links a:hover {
  color: var(--text-main);
}

@media (max-width: 900px) {
  .site-footer .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    margin: 0 auto;
  }

  .nav {
    position: fixed;
    top: 70px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 101;
  }

  .nav[data-open="true"] {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .split,
  .split.split-reverse {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media";
    align-items: start;
  }

  .profile-quote {
    padding: 24px;
    margin-top: 24px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .editorial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .ed-arrow {
    display: none;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .media-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .media-thumb {
    width: 100%;
    height: 180px;
  }

  .contact-links-secondary {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .sep {
    display: none;
  }
}