:root {
  --ink: #163336;
  --ink-2: #29474a;
  --brand: #123f43;
  --brand-dark: #0c3033;
  --sand: #f3eadc;
  --sand-2: #faf7f1;
  --paper: #ffffff;
  --muted: #68787a;
  --line: #dbe2df;
  --accent: #b77a45;
  --radius: 22px;
  --shadow: 0 10px 28px rgba(16, 47, 49, 0.05);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(22,51,54,0.08);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: .01em;
}
.brand-main {
  font-size: 1.05rem;
  font-weight: 500;
}
.brand-sub {
  margin-top: 5px;
  font-size: 1.35rem;
  font-weight: 800;
}
.main-nav,
.legal-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a,
.legal-nav a {
  text-decoration: none;
  font-weight: 650;
  font-size: .96rem;
}
.main-nav a:not(.btn):hover,
.main-nav a:not(.btn):focus-visible,
.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--accent);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-1px); }
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(183,122,69,.35);
  outline-offset: 3px;
}
.btn-small { min-height: 42px; padding-inline: 18px; }
.btn-secondary {
  background: transparent;
  color: var(--brand);
}
.btn-secondary:hover { color: #fff; }
.btn-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 70px;
  background: var(--sand-2);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1,
.section h2,
.legal-content h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.05;
}
.hero h1 { font-size: clamp(2.8rem, 6vw, 5.3rem); max-width: 780px; }
.lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--ink-2);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 34px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 650;
}
.hero-facts span { position: relative; }
.hero-facts span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-card,
.form-card {
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.hero-card { padding: 34px; border: 1px solid rgba(18,63,67,.08); }
.card-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-card h2,
.form-card h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.18;
}
.contact-quick {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}
.contact-quick a {
  text-decoration: none;
  font-weight: 750;
}
.contact-quick a:hover { color: var(--accent); }
.small { font-size: .92rem; color: var(--muted); }

.trust { padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.trust-grid div { display: grid; gap: 3px; }
.trust-grid strong { font-size: .97rem; }
.trust-grid span { color: var(--muted); font-size: .88rem; }

.section { padding: 88px 0; }
.section-soft { background: var(--sand-2); }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section h2 { font-size: clamp(2.15rem, 4.4vw, 3.9rem); }
.section-head > p:last-child { color: var(--muted); font-size: 1.05rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.service-card {
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
@media (hover: hover) {
  .service-card:hover {
    transform: scale(1.025);
    border-color: #c7d3cf;
    box-shadow: 0 12px 28px rgba(16,47,49,.06);
  }
}
.service-card[open] {
  border-color: #c4d0cc;
}
.service-card summary {
  list-style: none;
  cursor: pointer;
  padding: 26px;
  display: grid;
  gap: 8px;
}
.service-card summary::-webkit-details-marker { display: none; }
.service-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
}
.service-short {
  color: var(--muted);
  line-height: 1.55;
}
.service-toggle {
  margin-top: 10px;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 750;
}
.service-toggle::after { content: "Mehr erfahren"; }
.service-card[open] .service-toggle::after { content: "Weniger anzeigen"; }
.service-more {
  padding: 0 26px 24px;
  border-top: 1px solid #edf1ef;
}
.service-more p {
  margin: 18px 0 14px;
  color: var(--muted);
}
.service-contact-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform .18s ease, background .18s ease;
}
.service-contact-link:hover {
  transform: translateX(3px);
  background: var(--sand-2);
}
.center-action { margin-top: 34px; text-align: center; }

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 62px;
  align-items: center;
}
.portrait-placeholder {
  min-height: 440px;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18,63,67,.9), rgba(18,63,67,.72)),
    var(--brand);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.portrait-placeholder p { margin: 12px 0 0; color: rgba(255,255,255,.65); }
.portrait-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem,4vw,3rem);
  line-height: 1.04;
}
.lead-sm { font-size: 1.15rem; color: var(--ink-2); }
.signature-line { margin-top: 24px; font-weight: 750; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
}
.benefit-grid article { padding-top: 20px; border-top: 1px solid var(--line); }
.benefit-grid span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .08em;
}

.process { padding-top: 20px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.process-grid article {
  padding: 28px;
  border-radius: 18px;
  background: var(--sand-2);
}
.process-grid span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  border: 1px solid rgba(18,63,67,.2);
  font-weight: 800;
}

.section-dark {
  background: var(--brand);
  color: #fff;
}
.eyebrow-light { color: #e7c29e; }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-intro { color: rgba(255,255,255,.75); max-width: 560px; }
.contact-list { display: grid; gap: 24px; margin-top: 38px; }
.contact-list div { display: grid; gap: 3px; }
.contact-list span { color: #e7c29e; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-list a { text-decoration: none; font-size: 1.05rem; font-weight: 700; }
.contact-list a:hover { text-decoration: underline; }
.contact-list p { margin: 0; }

.form-card {
  padding: 34px;
  color: var(--ink);
}
.form-card h2 { margin-bottom: 24px; }
.field { display: grid; gap: 7px; margin-bottom: 17px; }
.field label { font-weight: 750; font-size: .93rem; }
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #ccd8d5;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 14px 15px;
}
.field input { min-height: 50px; }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .86rem; }

.site-footer {
  padding: 34px 0;
  background: #0a292c;
  color: rgba(255,255,255,.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr;
  gap: 24px;
  align-items: start;
}
.site-footer p { margin: 4px 0 0; color: rgba(255,255,255,.55); }
.footer-links,
.footer-contact { display: grid; gap: 8px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; }

.legal-main { padding: 78px 0 100px; }
.legal-content { max-width: 850px; }
.legal-content h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.legal-content h2 { margin-top: 38px; font-size: 1.35rem; }
.legal-content a { color: var(--brand); }
.legal-warning,
.legal-note {
  margin: 28px 0;
  padding: 20px;
  border-radius: 14px;
  background: var(--sand-2);
  border-left: 4px solid var(--accent);
}
.legal-note { color: var(--muted); }

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 620px; }
  .service-grid,
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-header { backdrop-filter: none; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 11px 10px; }
  .main-nav .btn { margin-top: 6px; }

  .hero { padding: 64px 0 54px; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero-facts { display: grid; gap: 8px; }
  .hero-facts span::after { display: none; }
  .hero-actions .btn { width: 100%; }

  .section { padding: 72px 0; }
  .section h2 { font-size: clamp(2.4rem, 12vw, 3.8rem); }
  .service-grid,
  .benefit-grid,
  .process-grid,
  .trust-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .portrait-placeholder { min-height: 330px; }
  .form-card,
  .hero-card { padding: 24px; }
  .legal-nav { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
