/* ============================================================
   Munderloh Consulting – Vorschlag D
   Voller Inhalt, gestaltete Variante mit Hero-Bildfläche
   ============================================================ */

:root {
  --navy: #1E2530;
  --navy-dark: #171C24;
  --lime: #C9CA45;
  --lime-dark: #9CA02E;
  --bg: #FAFAF6;
  --card-border: #E7E6DD;
  --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: 14px;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.15s ease;
}

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

.nav-toggle {
  display: none;
}

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

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

.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-inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 24px;
  max-width: 640px;
}

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

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

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

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

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
}

.section-icon {
  width: 40px;
  height: 40px;
  background: var(--lime);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
}

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

.section p.lead {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 0 0 14px;
  max-width: 720px;
}

/* ---------- Anlässe / Werte Box ---------- */

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

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

.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.tag-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--navy);
  list-style: none;
}

.tag-grid li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 22px;
}

.about-photo {
  background: var(--tag-bg);
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime-dark);
  font-size: 13px;
  text-align: center;
  padding: 16px;
}

.about-grid h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 12px;
}

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

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

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

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

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

.contact p.lead {
  color: var(--footer-text);
  max-width: 520px;
  margin: 0 auto 26px;
  text-align: center;
}

.contact-details {
  margin-bottom: 26px;
}

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

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

.btn:hover {
  background: #d6d75d;
}

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

.site-footer {
  background: var(--navy-dark);
  color: var(--footer-text-muted);
  padding: 28px 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: 16px 20px;
  }

  .hero-inner {
    padding: 48px 24px;
  }

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

  .about-photo {
    aspect-ratio: 16 / 9;
  }

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

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