:root {
  --navy: #203864;
  --navy-2: #152744;
  --gold: #b9af97;
  --gold-2: #d8d0bd;
  --ink: #1f2933;
  --muted: #5b6673;
  --line: #e6e2da;
  --soft: #f7f5f0;
  --white: #fff;
  --shadow: 0 22px 60px rgba(20, 33, 61, 0.14);
  --radius: 24px;
  --max: 1180px;
  --header-height: 78px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}

a { color: inherit; }

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

main img,
.photo-frame img {
  filter: grayscale(100%);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 0 0 12px 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(32, 56, 100, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 12px;
  filter: none !important;
}

.logo span {
  font-weight: 700;
  color: var(--navy);
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
}

.menu a {
  text-decoration: none;
  color: #263446;
}

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

.nav-cta {
  background: var(--navy);
  color: white !important;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(32, 56, 100, 0.18);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  background: radial-gradient(circle at 20% 10%, rgba(185, 175, 151, 0.2), transparent 32%), linear-gradient(135deg, var(--navy-2), var(--navy));
  color: white;
  overflow: hidden;
}

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

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-sascha-bw.jpg");
  background-size: cover;
  background-position: center 15%;
  filter: grayscale(100%);
  z-index: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(10, 16, 27, 0.2) 0%, rgba(12, 18, 30, 0.35) 36%, rgba(14, 23, 38, 0.78) 62%, rgba(14, 23, 38, 0.93) 100%);
  z-index: 1;
}

.hero-visual > .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  min-height: 720px;
  padding: 86px 0 76px;
}

.hero-grid--visual {
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 580px;
  padding: 42px 0 34px;
}

.hero-copy {
  grid-column: 2;
  justify-self: end;
  max-width: 600px;
}

.eyebrow {
  color: var(--gold-2);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin: 0 0 18px;
}

h1, h2 { letter-spacing: 0; }

h1 {
  font-size: clamp(2.4rem, 5vw, 3.58rem);
  line-height: 1.04;
  margin: 0 0 24px;
}

.hero-copy h1 {
  font-size: 3.58rem;
  line-height: 1.04;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  margin: 0 0 20px;
  color: var(--navy);
}

.hero p.lead,
.hero-copy .lead {
  font-size: 1.1rem;
  color: #eef2f8;
  max-width: 680px;
  margin: 0 0 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 22px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: #13223b;
}

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

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.trust-pill {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: #f3f6fb;
}

.section {
  padding: 96px 0;
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.section.soft { background: var(--soft); }
.section.dark { background: var(--navy); color: white; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

.kicker {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.dark h2, .dark h3 { color: white; }

h3 {
  font-size: 1.22rem;
  margin: 0 0 10px;
  color: var(--navy);
}

.text-lg {
  font-size: 1.13rem;
  color: #394553;
}

.dark .text-lg { color: #e7ecf5; }

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.stat,
details,
.contact-card,
.proof-card,
.step {
  position: relative;
  background: linear-gradient(145deg, #fff 0%, #fbfaf7 58%, #f4f7fa 100%);
  border: 1px solid rgba(32, 56, 100, 0.1);
  box-shadow: 0 12px 34px rgba(20, 33, 61, 0.07);
}

.card {
  border-radius: var(--radius);
  padding: 28px;
}

.card .icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(185, 175, 151, 0.24);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--navy);
  font-weight: 900;
}

.card p { color: var(--muted); margin: 0; }

.service-card {
  min-height: 260px;
  overflow: hidden;
}

.service-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.service-card:after,
.proof-card:after,
.stat:after,
details:after,
.contact-card:after,
.step:after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(185, 175, 151, 0.72), rgba(32, 56, 100, 0.08));
}

.statbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.stat {
  border-radius: 20px;
  padding: 22px;
  text-align: center;
  overflow: hidden;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.photo-frame {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-frame img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.checklist {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checklist li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  flex-shrink: 0;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 18px;
}

.step {
  border-radius: 22px;
  padding: 24px;
  overflow: hidden;
}

.step:before {
  counter-increment: step;
  content: counter(step);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 14px;
  box-shadow: none;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.proof-card {
  display: block;
  min-height: 126px;
  text-decoration: none;
  border-radius: 18px;
  padding: 18px;
  overflow: hidden;
}

.proof-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.proof-card span {
  display: block;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.proof-card em {
  display: inline-block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.proof-card--accent {
  background: linear-gradient(180deg, #fff 0%, #f6f9fb 100%);
  border-color: rgba(25, 83, 116, 0.22);
}

a.proof-card:hover {
  border-color: rgba(32, 56, 100, 0.28);
  transform: translateY(-1px);
}

.proof-card--static { cursor: default; }

.faq { display: grid; gap: 14px; }

details {
  border-radius: 18px;
  padding: 20px 22px;
  overflow: hidden;
}

summary {
  font-weight: 800;
  color: var(--navy);
  cursor: pointer;
}

details p {
  color: var(--muted);
  margin: 12px 0 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  border-radius: 34px;
  padding: 46px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  overflow: hidden;
}

.cta-box h2 { color: white; }

.cta-box > .text-lg,
.cta-box > div > .text-lg,
.cta-box > div:first-child p:not(.kicker),
#kontakt .cta-box .text-lg,
#kontakt .cta-box > div:first-child p:not(.kicker) {
  color: #f2f6fd !important;
}

.contact-card {
  color: var(--ink);
  border-radius: 24px;
  padding: 26px;
}

.contact-card a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.footer {
  background: #111827;
  color: #d1d5db;
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer small {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding-top: 20px;
  color: #9ca3af;
}

.legal-main { padding: 70px 0; }

.legal-main h1 {
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.legal-main h2 {
  font-size: clamp(1.55rem, 2vw, 1.7rem);
  margin-top: 38px;
}

.legal-main p,
.legal-main li { color: #3f4b59; }

.notice {
  background: #fff8e7;
  border: 1px solid #ead8a3;
  border-radius: 18px;
  padding: 18px;
  margin: 24px 0;
  color: #4f3b12;
}

@media (max-width: 1120px) {
  .menu { gap: 12px; font-size: 0.86rem; }
  .nav-cta { padding: 9px 14px; }
  .hero-copy h1 { font-size: 3.2rem; }
  .hero-copy { max-width: 560px; }
}

@media (max-width: 920px) {
  .menu-toggle { display: flex; }

  .menu {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid rgba(32, 56, 100, 0.1);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    box-shadow: 0 12px 32px rgba(20, 33, 61, 0.1);
    z-index: 49;
    font-size: 1rem;
  }

  .menu.open { display: flex; }

  .menu a {
    padding: 14px 24px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(32, 56, 100, 0.06);
  }

  .menu a:last-child {
    border-bottom: none;
    margin: 12px 20px 4px;
    text-align: center;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid,
  .split,
  .cta-box,
  .footer-grid { grid-template-columns: 1fr; }

  .hero-grid { min-height: auto; padding: 58px 0; }

  .hero-visual::before {
    background-position: 43% 0%;
  }

  .hero-visual::after {
    background-image: linear-gradient(0deg, rgba(13, 23, 39, 0.97) 0%, rgba(13, 23, 39, 0.82) 45%, rgba(11, 18, 31, 0.3) 75%, rgba(11, 18, 31, 0.1) 100%);
  }

  .hero-grid--visual {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 50px 0 44px;
  }

  .hero-copy {
    grid-column: auto;
    justify-self: start;
    max-width: 100%;
  }

  .hero-copy h1 { font-size: 2.36rem; }
  .hero-copy .lead { font-size: 1.04rem; }
  .hero-copy .hero-actions { margin: 24px 0; }
  .hero-copy .trust-row { margin-top: 20px; }

  h1 { font-size: 2.65rem; }
  h2 { font-size: 2.15rem; }

  .grid-3,
  .grid-2,
  .statbar,
  .proof-grid { grid-template-columns: 1fr; }

  .section { padding: 68px 0; }
  .logo img { width: 58px; height: 58px; }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 2.08rem;
    line-height: 1.08;
  }

  .hero-copy .lead { font-size: 1rem; }
  .trust-pill { font-size: 0.9rem; }
}
