@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --cream: #FAF8F3;
  --paper: #FFFFFF;
  --ink: #23221E;
  --ink-soft: #4A473E;
  --muted: #8A8474;
  --border: #E7E1D2;
  --cobalt: #2455A4;
  --cobalt-dark: #17386F;
  --cobalt-tint: #EAF0FA;
  --gold: #F4C542;
  --gold-dark: #C9971E;
  --rust: #C1552A;
  --rust-tint: #FBEFE9;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 26px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, .display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--paper);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav.main-nav a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: none; }
.menu-toggle svg { pointer-events: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--cobalt); color: #fff; }
.btn-primary:hover { background: var(--cobalt-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: var(--paper); color: var(--cobalt); }
.btn-light:hover { background: var(--cobalt-tint); }

/* ---------- Hero ---------- */
.hero {
  padding: 88px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--cobalt);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.hero h1 {
  font-size: 46px;
  margin-bottom: 22px;
}
.hero p.lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius-l);
  background: var(--cobalt);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual svg { width: 62%; height: 62%; }
.hero-visual .ring {
  position: absolute;
  border: 1.5px solid rgba(244,197,66,0.5);
  border-radius: 50%;
}
.hero-visual .ring.r1 { width: 130%; height: 130%; }
.hero-visual .ring.r2 { width: 165%; height: 165%; opacity: .6; }

.stat-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.stat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat { text-align: left; }
.stat .num {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--cobalt);
}
.stat .label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section.tight { padding: 56px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head .kicker {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cobalt);
  margin-bottom: 10px;
  display: block;
}
.section-head h2 { font-size: 32px; margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 16px; }
.section.on-cobalt { background: var(--cobalt); color: #fff; }
.section.on-cobalt .section-head h2 { color: #fff; }
.section.on-cobalt .section-head p { color: rgba(255,255,255,0.82); }
.section.on-cobalt .kicker { color: var(--gold); }

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card .mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--cobalt-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card h3 { font-size: 18.5px; }
.service-card p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
.service-card .tag {
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: auto;
}

/* ---------- Two column ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split img, .split .art { border-radius: var(--radius-m); }
.art-block {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 32px;
}

.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
}
.check-list .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cobalt-tint);
  color: var(--cobalt);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  padding: 0 20px 0 0;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -2px;
  width: 100%;
  height: 1px;
  background: var(--border);
}
.process-step .n {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.process-step h4 { font-family: 'Inter'; font-size: 15.5px; font-weight: 600; margin-bottom: 6px; }
.process-step p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

/* ---------- Callout / boundary note ---------- */
.note {
  border: 1px solid var(--border);
  background: var(--paper);
  border-radius: var(--radius-m);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.note.rust { background: var(--rust-tint); border-color: #F0DCD3; }
.note .note-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cobalt-tint); color: var(--cobalt);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0; font-family: 'Fraunces', serif;
}
.note.rust .note-icon { background: #F0DCD3; color: var(--rust); }
.note p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }
.note strong { color: var(--ink); }

/* ---------- Area / coverage ---------- */
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.area-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--paper);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  border-radius: var(--radius-l);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #fff;
}
.cta-band h3 { color: #fff; font-size: 26px; max-width: 480px; }
.cta-band p { color: rgba(255,255,255,0.7); margin: 8px 0 0; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-grid h5 {
  font-size: 13px;
  text-transform: none;
  color: var(--muted);
  margin: 0 0 14px;
  font-weight: 600;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { text-decoration: none; font-size: 14px; color: var(--ink-soft); }
.footer-grid a:hover { color: var(--cobalt); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom .legal-links { display: flex; gap: 18px; }
.footer-bottom a { text-decoration: none; color: var(--muted); }
.footer-bottom a:hover { color: var(--ink); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 56px 0 44px;
  border-bottom: 1px solid var(--border);
}
.page-hero .kicker { color: var(--cobalt); font-size: 13.5px; font-weight: 600; display: block; margin-bottom: 12px; }
.page-hero h1 { font-size: 38px; margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); font-size: 16.5px; max-width: 60ch; }

/* ---------- Leistungen detail rows ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-detail:last-child { border-bottom: none; }
.service-detail .num { font-family: 'Fraunces', serif; color: var(--gold-dark); font-size: 15px; font-weight: 600; margin-bottom: 12px; display: block; }
.service-detail h3 { font-size: 26px; margin-bottom: 14px; }
.service-detail .lede { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 0; }
.detail-panel {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 26px;
}
.detail-panel .price {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--cobalt);
  margin-bottom: 4px;
}
.detail-panel .price-note { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

/* ---------- Team / about ---------- */
.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.credential {
  border: 1px solid var(--border);
  background: var(--paper);
  border-radius: var(--radius-s);
  padding: 16px 18px;
}
.credential .k { font-size: 12.5px; color: var(--muted); }
.credential .v { font-size: 14.5px; font-weight: 600; margin-top: 2px; }

.quote-block {
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink);
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 22px; }
.contact-info-item { display: flex; gap: 16px; }
.contact-info-item .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--cobalt-tint); color: var(--cobalt);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-item .k { font-size: 13px; color: var(--muted); margin-bottom: 2px; }
.contact-info-item .v { font-size: 15.5px; font-weight: 600; }
.contact-info-item .v a { text-decoration: none; color: var(--ink); }
.contact-info-item .v a:hover { color: var(--cobalt); }

form.contact-form {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.form-row input, .form-row select, .form-row textarea {
  padding: 11px 13px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: 'Inter';
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  border-color: var(--cobalt);
}
.form-note { font-size: 12.5px; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  nav.main-nav { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-visual { max-width: 340px; margin: 0 auto; }
  .hero h1 { font-size: 34px; }
  .stat-strip .wrap { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .process { grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .process-step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 22px; }
  .contact-grid { grid-template-columns: 1fr; }
  .credential-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .section-head h2 { font-size: 26px; }
}
