:root {
  --bg: #f6f2ec;
  --surface: #fbf7f2;
  --surface-2: #f3eee8;
  --surface-3: #e7dfd5;
  --text: #211d1c;
  --muted: #6c6664;
  --line: #d9cfc6;
  --accent: #0069B3;
  --accent-dark: #005490;
  --accent-soft: #d7e9f5;
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1220px;
}

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(111,135,152,0.09), transparent 30%),
    linear-gradient(180deg, #f8f4ef 0%, #f3eee8 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(246,242,236,0.82);
  border-bottom: 1px solid rgba(33,29,28,0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 8px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.brand img {
  display: block;
  height: 82px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(33,29,28,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.7);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: 200ms ease;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

nav a {
  position: relative;
  padding-bottom: 2px;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: rgba(81,102,118,0.28);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  padding: 84px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 36px;
  align-items: stretch;
}

.hero-copy { padding: 12px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  margin-bottom: 22px;
}

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

h1 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: clamp(52px, 6.6vw, 98px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.hero-subline {
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.28;
  max-width: 26ch;
  margin: 0 0 18px;
  color: #2d2923;
  font-weight: 500;
}

.hero-text {
  max-width: 58ch;
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: 180ms ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,105,179,0.28);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: rgba(34,32,27,0.12);
  background: rgba(250,248,244,0.7);
  color: var(--text);
}

.btn-secondary:hover {
  background: #fff;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(251,247,242,0.96) 100%);
  border: 1px solid rgba(34,32,27,0.06);
  border-radius: calc(var(--radius) + 4px);
  padding: 28px;
  box-shadow: 0 18px 40px rgba(33,29,28,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 100%;
}

.hero-card img {
  display: block;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(34,32,27,0.06);
  background: #fff;
  aspect-ratio: 1200 / 728;
  object-fit: cover;
}

.mini-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 12px;
}

.quote {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-size: 31px;
  line-height: 1.22;
  margin: 0;
  font-weight: 600;
  max-width: 20ch;
}

.quote-meta {
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.metric {
  padding: 16px;
  border-radius: 18px;
  background: var(--surface-2);
  border: 1px solid rgba(34,32,27,0.05);
}

.metric strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 34px 0 34px;
}

.section + .section {
  padding-top: 54px;
}

.section-shell {
  background: rgba(250,248,244,0.7);
  border: 1px solid rgba(34,32,27,0.06);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 8px 26px rgba(34,32,27,0.03);
}

.section-kicker {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 20ch;
}

.lead {
  font-size: 18px;
  color: #2f2b24;
  max-width: 54ch;
  margin: 0 0 10px;
}

.muted {
  color: var(--muted);
  max-width: 62ch;
  margin: 0;
}

.three-col {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: start;
}

.signal-panel {
  border-radius: 24px;
  background: linear-gradient(180deg, #fbf7f2 0%, #f3eee8 100%);
  border: 1px solid rgba(111,135,152,0.16);
  padding: 24px;
}

.signal-panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.signal-panel li { margin: 9px 0; }

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

.service {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(34,32,27,0.08);
  border-radius: 24px;
  padding: 22px;
  min-height: 100%;
}

.service .nr {
  color: var(--accent-dark);
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.service h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: stretch;
}

.problem-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.problem-box {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid rgba(34,32,27,0.07);
  padding: 18px;
}

.problem-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.problem-box p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.mindful {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 26px;
  align-items: stretch;
}

.mindful-aside {
  background: var(--surface-3);
  border-radius: 22px;
  padding: 20px 22px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
}

.mindful-aside .aside-art {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
  background: #fff;
}

.mindful-aside strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta {
  padding: 52px 0 40px;
}

.cta-shell {
  background: linear-gradient(135deg, #fbf7f2 0%, #efe7df 52%, #e3d9d0 100%);
  color: #211d1c;
  border-radius: 32px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  box-shadow: 0 24px 60px rgba(31,29,25,0.18);
}

.cta-shell h2 {
  max-width: 16ch;
  margin-bottom: 12px;
  color: #211d1c;
}

.cta-shell p {
  color: #211d1c;
  max-width: 60ch;
  margin: 0;
}

/* Footer-Stil siehe .site-footer weiter unten */

@media (max-width: 1080px) {
  .hero-grid,
  .three-col,
  .problem-grid,
  .mindful,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .services { grid-template-columns: 1fr; }
  .metrics,
  .problem-boxes { grid-template-columns: 1fr 1fr; }

  /* gestapelt: Bild bekommt feste Höhe statt flex-grow */
  .mindful-aside { display: block; }
  .mindful-aside .aside-art { flex: none; height: 200px; aspect-ratio: auto; }

  h1 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    max-width: 12ch;
  }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .topbar-inner { min-height: 76px; }
  .brand img { height: 68px; }

  /* Sandwich-Menü aktiv */
  .nav-toggle { display: flex; }
  nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: #fbfaf8;
    border-bottom: 1px solid rgba(33,29,28,0.1);
    transform: translateY(-120%);
    transition: transform 240ms ease;
    box-shadow: 0 20px 40px rgba(33,29,28,0.08);
  }
  nav.open { transform: translateY(0); }
  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
  }
  nav li { border-bottom: 1px solid rgba(33,29,28,0.06); }
  nav a { display: block; padding: 16px 0; font-size: 15px; }

  .hero { padding: 42px 0 24px; }
  .section-shell,
  .hero-card,
  .cta-shell { padding: 24px; }
  .metrics,
  .problem-boxes { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }

  /* Bilder mobil nicht zu hoch werden lassen */
  .hero-card img { aspect-ratio: 16 / 10; }
  .mindful-aside .aside-art { flex: none; height: 180px; aspect-ratio: auto; }
}
.site-footer {
  border-top: 1px solid #ded8d2;
  margin-top: 72px;
  padding: 24px 0 32px;
  background: #f7f4ef;
}

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

.site-footer p {
  margin: 0;
  font-size: 14px;
  color: #6f6a64;
}

.site-footer .footer-claim {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: #6f6a64;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
  text-decoration: underline;
}