/* ============================================================
   Munderloh Consulting – Vorschlag B
   Bildstark, mit Teaser-Karten und Akkordeon
   ============================================================ */

:root {
  --navy: #1E2530;
  --navy-dark: #171C24;
  --lime: #C9CA45;
  --lime-dark: #9CA02E;
  --bg: #FAFAF6;
  --card-border: #E7E6DD;
  --card-header-bg: #F4F4EC;
  --text: #1E2530;
  --text-muted: #80847A;
  --tag-bg: #F0F1E6;
  --tag-text: #6E7050;
  --footer-text: #C9CCC0;
  --footer-text-muted: #888C7C;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Navigation ---------- */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.site-header .logo img {
  height: 40px;
  width: auto;
  border-radius: 3px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.15s ease;
}

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

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  right: -10%;
  top: -25%;
  width: 60%;
  max-width: 520px;
  height: 140%;
  background: var(--lime);
  clip-path: polygon(35% 100%, 100% 100%, 100% 0%);
}

.hero-shape.shape-dark {
  background: var(--lime-dark);
  clip-path: polygon(35% 100%, 60% 0%, 0% 0%);
}

.hero-photo-label {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 11px;
  color: #8A8E7A;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.hero-inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px;
  max-width: 620px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #D7D9C9;
  margin: 0 0 14px;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 16px;
  line-height: 1.3;
}

.hero p {
  font-size: 14px;
  color: #C9CCC0;
  line-height: 1.8;
  margin: 0;
  max-width: 480px;
}

/* ---------- Teaser cards ---------- */

.teasers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--card-border);
}

.teaser {
  background: #FFFFFF;
  padding: 26px 24px;
  border-top: 3px solid var(--lime);
  text-decoration: none;
  display: block;
  transition: background 0.15s ease;
}

.teaser:hover {
  background: var(--card-header-bg);
}

.teaser svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
}

.teaser p.title {
  font-size: 15px;
  font-weight: 600;
  margin: 14px 0 6px;
  color: var(--navy);
}

.teaser p.desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 10px;
  line-height: 1.6;
}

.teaser .more {
  font-size: 12px;
  font-weight: 600;
  color: var(--lime-dark);
}

/* ---------- Sections ---------- */

.section {
  padding: 56px 0 0;
}

.section:last-of-type {
  padding-bottom: 56px;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--lime-dark);
  font-weight: 700;
  margin: 0 0 16px;
}

/* ---------- Accordion (Leistungen Detail) ---------- */

.accordion-item {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  scroll-margin-top: 24px;
}

.accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

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

.accordion-item[open] summary {
  border-bottom: 1px solid var(--card-border);
  background: var(--card-header-bg);
}

.summary-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.summary-left svg {
  width: 19px;
  height: 19px;
  stroke: var(--navy);
  flex-shrink: 0;
}

.chevron {
  width: 18px;
  height: 18px;
  stroke: var(--lime-dark);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.accordion-item[open] .chevron {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 4px 22px 22px;
}

.accordion-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 0 0 12px;
}

.accordion-body p:last-of-type {
  margin-bottom: 0;
}

.info-box-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--lime-dark);
  margin: 18px 0 12px;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tag-grid li {
  font-size: 12.5px;
  background: var(--tag-bg);
  color: var(--tag-text);
  border-radius: 999px;
  padding: 5px 14px;
}

/* ---------- Über mich split ---------- */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-photo {
  position: relative;
  background: var(--navy);
  min-height: 280px;
  overflow: hidden;
}

.about-photo-shape {
  position: absolute;
  left: -15%;
  bottom: -20%;
  width: 60%;
  height: 70%;
  background: var(--lime);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.about-text {
  background: var(--bg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px;
}

.about-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 0;
}

/* ---------- Über mich details ---------- */

.about-details {
  padding: 40px 0;
}

.info-box {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}

.info-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 0 0 14px;
}

.cert-note {
  font-size: 13px;
  font-style: italic;
  color: var(--navy);
  margin: 0 !important;
}

/* ---------- Kontakt ---------- */

.contact {
  background: var(--navy);
  padding: 56px 24px;
  text-align: center;
}

.contact .section-eyebrow {
  color: var(--lime);
  text-align: center;
}

.contact h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 14px;
}

.contact p.lead {
  font-size: 13.5px;
  color: var(--footer-text);
  max-width: 460px;
  margin: 0 auto 22px;
  line-height: 1.8;
}

.contact-details p {
  font-size: 15px;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.btn {
  display: inline-block;
  background: var(--lime);
  color: #3B3C12;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn:hover {
  background: #d6d75d;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-dark);
  color: var(--footer-text-muted);
  padding: 24px 24px;
  font-size: 12.5px;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-inner .col p {
  margin: 0 0 4px;
  line-height: 1.7;
}

.footer-inner .col:last-child {
  text-align: right;
}

.footer-inner strong {
  color: var(--footer-text);
}

/* ---------- Responsive ---------- */

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .site-nav ul {
    justify-content: center;
    gap: 14px 18px;
  }

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

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 200px;
  }

  .about-text {
    padding: 32px 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: left;
  }

  .footer-inner .col:last-child {
    text-align: left;
  }
}
