:root {
  color-scheme: light;

  /* Elegant Premium Palette */
  --ink: #1a1a2e;
  --ink-muted: #4a4a5a;
  --ink-light: #6b6b7a;
  --paper: #ffffff;
  --bg-main: #fafafa;
  --bg-warm: #f7f6f3;
  --accent: #2d4a6f;
  --accent-light: #3d5a7f;
  --accent-subtle: rgba(45, 74, 111, 0.08);
  --line: #e8e8e8;
  --line-light: #f0f0f0;

  /* Subtle radius */
  --radius: 8px;
  --radius-lg: 16px;

  /* Refined Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);

  /* Typography - Serif for elegance, Sans for body */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background-color: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(100% - 48px, 1100px);
  margin: 0 auto;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-light);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-name {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.brand-claim {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.brand-logo {
  height: 40px;
  width: auto;
  border-radius: 12px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.site-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.site-nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--ink);
}

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px;
  background: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 24px 0;
}

.lead-sub {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent) !important;
  margin-bottom: 20px !important;
  letter-spacing: 0.01em;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 560px;
}

.leitlinie {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-light);
  margin-bottom: 40px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
}

.leitlinie::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.cta-group {
  display: flex;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.primary:hover {
  background: var(--accent);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.button.ghost:hover {
  border-color: var(--ink);
}

/* Hero Card */
.hero-image-area {
  position: relative;
}

.glow-effect {
  display: none;
}

.hero-card {
  background: var(--bg-warm);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
}

.hero-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 16px 0;
  color: var(--ink);
}

.hero-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0 0 12px 0;
}

.hero-card p:last-child {
  margin-bottom: 0;
}

/* Trust Bar */
.trust-bar {
  margin-top: 80px;
  padding: 32px 0;
  border-top: 1px solid var(--line-light);
  background: transparent;
}

.flex-row-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-12 {
  gap: 48px;
}

.trust-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  text-transform: uppercase;
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.trust-logos {
  display: flex;
  gap: 40px;
  align-items: center;
}

.trust-item {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.trust-item strong {
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section.muted {
  background-color: var(--bg-warm);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 16px 0;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 64px;
}

.section-header p {
  color: var(--ink-muted);
  font-size: 1.1rem;
}

.section-header.align-left {
  text-align: left;
  margin-left: 0;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--paper);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all 0.25s ease;
}

.card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-subtle);
  color: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 12px 0;
}

.card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.card em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}

.card ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.card li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

/* ===== ZIELGRUPPEN ===== */
.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  justify-content: center;
}

.list-inline li {
  background: var(--paper);
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-weight: 500;
  color: var(--ink);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.list-inline li:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.profile-area {
  position: relative;
}

.profile-decoration {
  display: none;
}

.profile-image-wrapper {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(15%);
}

.qualifikation-tag {
  background: var(--bg-warm);
  padding: 20px 24px;
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  margin: 28px 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.qualifikation-tag strong {
  color: var(--ink);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.form-field input,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--paper);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-subtle);
}

.form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-top: -4px;
}

/* Calendar Widget */
.calendar-widget {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 28px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.calendar-header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
}

.calendar-nav {
  display: flex;
  gap: 6px;
}

.nav-btn {
  background: none;
  border: 1px solid var(--line);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background: var(--bg-main);
  color: var(--ink);
}

.calendar-sub {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ink-light);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.calendar-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.calendar-slot {
  background: var(--bg-main);
  border: 1px solid transparent;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calendar-slot:hover {
  background: var(--paper);
  border-color: var(--accent);
  color: var(--accent);
}

.calendar-slot.active {
  background: var(--accent);
  color: white;
}

.calendar-footer .button {
  width: 100%;
  justify-content: center;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 60px 0;
  background: var(--ink);
  color: var(--ink-light);
  text-align: center;
}

.site-footer p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #fff;
}

/* ===== UTILITIES ===== */
.text-balance {
  text-wrap: balance;
}

.align-left {
  text-align: left;
  margin-left: 0;
}

.mr-2 { margin-right: 8px; }
.mr-3 { margin-right: 12px; }
.mt-8 { margin-top: 32px; }
.mb-8 { margin-bottom: 32px; }
.text-lg { font-size: 1.1rem; }
.text-xl { font-size: 1.25rem; }
.font-display { font-family: var(--font-display); }
.font-bold { font-weight: 600; }
.color-ink-muted { color: var(--ink-muted); }
.full { width: 100%; }

.reveal { opacity: 1; }
.reveal.active { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .profile-image-wrapper {
    margin: 0 auto;
  }

  .qualifikation-tag {
    text-align: left;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 32px, 1100px);
  }

  .site-nav {
    display: none;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero {
    padding: 60px 0;
  }

  .section {
    padding: 60px 0;
  }

  .cta-group {
    flex-direction: column;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .flex-row-center {
    flex-direction: column;
    gap: 20px;
  }

  .trust-label {
    border-right: none;
    padding-right: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

  .trust-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .profile-image-wrapper {
    width: 200px;
    height: 200px;
  }
}
