/* Inter – latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Inter – latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Playfair Display – latin-ext */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(fonts/playfair-display-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* Playfair Display – latin */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(fonts/playfair-display-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;

  /* Charcoal + Kupfer Palette */
  --ink: #1c2a35;
  --ink-muted: #5a6670;
  --ink-light: #8a9199;
  --paper: #fdfbf8;
  --bg-main: #f5f2ed;
  --bg-warm: #ede8e1;
  --accent: #1c3a4a;
  --accent-light: #2a4f5f;
  --accent-subtle: rgba(28, 58, 74, 0.08);
  --warm: #b5654a;
  --warm-light: #c87a5f;
  --warm-subtle: rgba(181, 101, 74, 0.1);
  --warm-glow: rgba(181, 101, 74, 0.15);
  --line: #ddd8d2;
  --line-light: #e8e4de;

  /* 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: linear-gradient(135deg, #fdfbf8 0%, #ede8e1 100%);
}

.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.8rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 24px 0;
}

.lead-sub {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--warm) !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: 2px;
  background: var(--warm);
}

.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(--warm);
  color: #fff;
}

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

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

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

/* Hero Sub-Claim */
.hero-sub-claim {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--warm);
  margin-bottom: 20px;
  line-height: 1.7;
}

.hero-text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.hero-text-link:hover {
  color: var(--ink);
}

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

.hero-visual-wrapper {
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-light);
  background: var(--bg-warm);
}

.hero-visual {
  display: block;
  width: 100%;
  height: auto;
}

.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;
}

.hero-problems {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hero-problems li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.hero-problems li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 2px;
  background: var(--warm);
}

/* 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;
}

/* ===== ARGUMENTATION GRID ===== */
.argumentation-section {
  padding: 80px 0;
}

.argumentation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.argumentation-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.argumentation-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transition: all 0.25s ease;
}

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

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

.argumentation-card h3::after {
  display: none;
}

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

.argumentation-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.argumentation-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.argumentation-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 2px;
  background: var(--warm);
}

/* ===== 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;
  padding-bottom: 12px;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--warm);
}

.section-header h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-header.align-left h2::after {
  left: 0;
  transform: none;
}

.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;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.offer-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.offer-box h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 16px 0;
}

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.offer-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-muted);
}

.offer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 2px;
  background: var(--warm);
}

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

.cards.cards-four {
  grid-template-columns: repeat(3, 1fr);
}

.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(--warm);
  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: 2px;
  background: var(--warm);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--warm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.text-link:hover {
  color: var(--ink);
}

/* ===== PROJECTS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}

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

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

.project-proof {
  padding-top: 8px;
  border-top: 1px solid var(--line-light);
  font-weight: 500;
}

.project-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--warm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.project-link:hover {
  color: var(--ink);
}

/* ===== 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%;
}

.qualifikation-tag {
  background: var(--bg-warm);
  padding: 20px 24px;
  border-radius: var(--radius);
  border-left: 3px solid var(--warm);
  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(--warm);
}

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

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

.honeypot {
  display: none !important;
}

.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-iframe {
  width: 100%;
  height: 600px;
  border: 0;
}

@media (max-width: 768px) {
  .calendar-iframe {
    height: 400px;
  }
}

.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: linear-gradient(180deg, #1c2a35 0%, #151f28 100%);
  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: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* BAFA Förder-Hinweis */
.bafa-hinweis {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--accent-subtle);
  border: 1px solid var(--line-light);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

.bafa-hinweis i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.bafa-hinweis a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bafa-hinweis a:hover {
  color: var(--ink);
}

.bafa-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-subtle);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 8px;
}

/* Form status feedback */
.button-success { background-color: #10b981 !important; }
.button-error { background-color: #ef4444 !important; }

.form-status {
  font-size: 0.9rem;
  min-height: 1.4em;
}
.form-status:empty { display: none; }

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 200;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

body.menu-open {
  overflow: hidden;
}

/* ===== SERVICE SUBPAGES ===== */
.service-page .container {
  max-width: 780px;
}

.service-page h1 {
  margin-bottom: 16px;
}

.service-page h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-top: 48px;
  margin-bottom: 16px;
}

.service-page h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 12px;
}

.service-page p {
  color: var(--ink-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.service-page ul {
  padding: 0;
  list-style: none;
  margin: 0 0 24px 0;
}

.service-page li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-page li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--warm);
}

.related-services {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line-light);
}

.related-services h2 {
  font-size: 1.4rem;
  margin-top: 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.related-card {
  display: block;
  background: var(--bg-warm);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s ease;
}

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

.related-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 6px;
}

.related-card span {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.service-cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  text-align: center;
}

.service-cta p {
  color: var(--ink);
  margin-bottom: 16px;
}

/* ===== HERO PROFILE LAYOUT ===== */
.hero-profile-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: center;
}

.hero-profile-wrapper {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--warm-subtle);
  box-shadow: 0 8px 30px rgba(181, 101, 74, 0.12);
}

.hero-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--warm) 0%, var(--warm-subtle) 40%, transparent 100%);
  margin: 32px 0;
}

.hero-pain-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-pain-points li {
  font-size: 0.9rem;
  color: var(--ink-muted);
  position: relative;
  padding-left: 16px;
}

.hero-pain-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm);
}

/* ===== FEATURED CARD ===== */
.card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding: 40px 36px;
  background: var(--paper);
  border: 1px solid var(--warm-subtle);
  border-left: 3px solid var(--warm);
}

.card-featured .card-icon {
  margin-bottom: 0;
}

.card-featured .card-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px 0;
}

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

.card-featured .card-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  padding: 0;
  list-style: none;
  margin: 16px 0 0;
}

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

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

/* ===== OFFER SECTION — BORDERLESS ===== */
.offer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.offer-column h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 20px 0;
  color: var(--ink);
}

.offer-column h3::after {
  display: none;
}

.offer-column .offer-list li::before {
  background: var(--warm);
}

.offer-column:last-child .offer-list li::before {
  background: var(--accent);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--ink-light);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item summary:hover {
  background: var(--bg-warm);
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--ink-muted);
  line-height: 1.8;
  margin: 0;
}

/* ===== WISSEN / TIMELINE ===== */
.wissen-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-subtle);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.wissen-stand {
  font-size: 0.82rem;
  color: var(--ink-light);
  font-style: italic;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.timeline {
  position: relative;
  padding-left: 32px;
  margin: 32px 0 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--accent);
}

.timeline-item-highlight::before {
  background: var(--warm);
  border-color: var(--warm);
}

.timeline-date {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.timeline-item-highlight .timeline-date {
  color: var(--warm);
}

.timeline-content strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.timeline-content p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

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

  .hero-profile-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-profile-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }

  .hero-profile-grid .leitlinie {
    justify-content: center;
  }

  .hero-profile-grid .cta-group {
    justify-content: center;
  }

  .hero-text-link {
    display: block;
    text-align: center;
  }

  .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;
  }

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

  .card-featured {
    grid-template-columns: 1fr;
  }

  .card-featured .card-content ul {
    grid-template-columns: 1fr;
  }

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

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

  .offer-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

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

  .mobile-menu-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 150;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav.open a {
    font-size: 1.3rem;
  }

  h1 {
    font-size: 2.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;
  }
}
