:root {
  --ink: #18202c;
  --deep: #172235;
  --forest: #293b55;
  --lime: #c8a96b;
  --cream: #f2efe8;
  --paper: #faf9f5;
  --muted: #626977;
  --line: #d9d4c9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.site-header {
  height: 88px;
  max-width: 1440px;
  margin: auto;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  position: relative;
  z-index: 20;
}
.brand, .footer-brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--lime);
  background: var(--deep);
  font: 700 25px/1 Georgia, "Times New Roman", serif;
}
.brand-name { display: flex; flex-direction: column; }
.brand-name strong, .footer-brand strong { font: 800 20px/1 "Segoe UI", Arial, sans-serif; letter-spacing: .14em; }
.brand-name small, .footer-brand small { margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: .04em; }
.nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 600; }
.nav > a:not(.nav-cta) { position: relative; }
.nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--forest); transition: .25s; }
.nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; font-weight: 700; }
.nav-cta { padding: 14px 20px; color: white; background: var(--deep); }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button span { display: block; }

.hero {
  min-height: 650px;
  max-width: 1440px;
  margin: auto;
  padding-left: 8vw;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: stretch;
  background: var(--cream);
  overflow: hidden;
}
.hero-copy { padding: 108px 7vw 90px 0; align-self: center; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 26px; display: flex; align-items: center; gap: 11px; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 700; }
.eyebrow span { width: 25px; height: 2px; background: var(--forest); }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; letter-spacing: -.035em; line-height: 1.08; }
h1 { font-size: clamp(52px, 5.7vw, 82px); font-weight: 700; }
h1 em, h2 em { color: var(--forest); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.company-title { max-width: 760px; font-size: clamp(43px, 4.7vw, 70px); }
.company-title em { display: block; margin-top: 8px; font-size: .58em; letter-spacing: -.025em; }
.hero-subtitle { margin: 28px 0 0; font-size: 20px; font-weight: 700; }
.hero-lead { max-width: 590px; margin: 30px 0 37px; color: #56605f; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.button { min-height: 56px; padding: 0 25px; border: 0; cursor: pointer; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: white; background: var(--deep); }
.text-link { padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 14px; font-weight: 700; }
.hero-visual { min-height: 650px; position: relative; overflow: hidden; background: var(--forest); }
.grid-lines { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px); background-size: 72px 72px; transform: perspective(500px) rotate(-7deg) scale(1.25); }
.shape { position: absolute; border-radius: 50%; }
.shape-one { width: 410px; height: 410px; right: -90px; top: -80px; border: 75px solid var(--lime); opacity: .92; }
.shape-two { width: 330px; height: 330px; left: 9%; bottom: -85px; background: #0b2c29; }
.shape-three { width: 190px; height: 190px; left: 30%; top: 26%; border: 42px solid rgba(255,255,255,.14); }
.hero-label { position: absolute; right: 8%; bottom: 3%; color: rgba(255,255,255,.09); font: 800 180px/1 "Segoe UI", Arial, sans-serif; letter-spacing: -.1em; }
.metric-card { position: absolute; left: 9%; top: 18%; padding: 20px 23px; display: flex; align-items: center; gap: 14px; color: white; background: rgba(11,34,32,.84); backdrop-filter: blur(8px); box-shadow: 0 20px 40px rgba(0,0,0,.2); }
.metric-card div { display: flex; flex-direction: column; gap: 4px; }
.metric-card strong { font-size: 14px; }
.metric-card small { color: rgba(255,255,255,.62); font-size: 11px; }
.metric-icon { width: 35px; height: 35px; display: grid; place-items: center; color: var(--deep); background: var(--lime); font-size: 20px; }

.trust-strip { max-width: 1440px; margin: auto; min-height: 80px; padding: 20px 8vw; display: flex; align-items: center; justify-content: space-between; color: #4f5a58; background: white; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 700; }
.trust-strip span { color: var(--lime); font-size: 8px; }
.section { max-width: 1440px; margin: auto; padding: 120px 8vw; }
.section-intro { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 10vw; margin-bottom: 65px; }
h2 { font-size: clamp(42px, 4.4vw, 64px); font-weight: 700; }
.section-intro > p { color: var(--muted); line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { min-height: 450px; padding: 34px 24px 32px; border-right: 1px solid var(--line); position: relative; transition: background .25s, transform .25s; }
.service-card:first-child { border-left: 1px solid var(--line); }
.service-card:hover { background: white; transform: translateY(-7px); box-shadow: 0 20px 35px rgba(30,50,48,.08); }
.service-number { color: #9aa09e; font-size: 11px; letter-spacing: .12em; }
.service-icon { height: 75px; margin: 38px 0 24px; display: flex; align-items: end; gap: 7px; }
.service-icon span { width: 12px; background: var(--forest); }
.service-icon span:nth-child(1) { height: 34%; opacity: .45; }
.service-icon span:nth-child(2) { height: 66%; opacity: .7; }
.service-icon span:nth-child(3) { height: 100%; background: var(--lime); }
.service-card h3 { margin: 0 0 14px; font: 700 17px "Segoe UI", Arial, sans-serif; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.service-card a { position: absolute; bottom: 29px; display: flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; }
.service-card a svg { width: 16px; }

.about { max-width: 1440px; margin: auto; min-height: 680px; display: grid; grid-template-columns: 1fr 1fr; color: white; background: var(--deep); }
.about-visual { min-height: 620px; position: relative; overflow: hidden; background: #244a43; }
.about-pattern { position: absolute; inset: 0; display: grid; place-items: center; background: radial-gradient(circle at 20% 15%, rgba(204,240,106,.22), transparent 30%), linear-gradient(140deg, transparent 40%, rgba(255,255,255,.04)); }
.ring { position: absolute; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; }
.ring-one { width: 200px; height: 200px; }
.ring-two { width: 390px; height: 390px; }
.ring-three { width: 590px; height: 590px; }
.about-k { color: var(--lime); font: 800 210px/1 "Segoe UI", Arial, sans-serif; text-shadow: 20px 25px 0 rgba(0,0,0,.1); }
.experience { position: absolute; left: 0; bottom: 0; width: 230px; min-height: 124px; padding: 25px 30px; display: flex; flex-direction: column; justify-content: center; background: var(--lime); color: var(--deep); }
.experience strong { font: 700 28px "Segoe UI", Arial, sans-serif; }
.experience span { margin-top: 5px; font-size: 12px; line-height: 1.4; }
.about-copy { padding: 100px 8vw 80px; }
.eyebrow.light { color: var(--lime); }
.eyebrow.light span { background: var(--lime); }
.about-copy h2 em, .contact h2 em { color: var(--lime); }
.about-lead { margin: 34px 0; color: rgba(255,255,255,.68); line-height: 1.75; }
.about-copy ul { margin: 0; padding: 0; list-style: none; }
.about-copy li { padding: 15px 0; display: flex; align-items: center; gap: 15px; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.72); font-size: 14px; }
.about-copy li svg { flex: 0 0 23px; width: 23px; height: 23px; padding: 4px; color: var(--deep); background: var(--lime); border-radius: 50%; }
.about-copy li strong { color: white; }

.process { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; background: var(--cream); }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.process-steps article { padding-top: 20px; border-top: 2px solid var(--forest); }
.process-steps span { color: var(--forest); font-size: 11px; font-weight: 700; }
.process-steps h3 { margin: 55px 0 13px; font: 700 20px "Segoe UI", Arial, sans-serif; }
.process-steps p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.process-message { max-width: 620px; align-self: center; }
.process-message p { margin: 0 0 28px; color: var(--muted); font-size: 17px; line-height: 1.75; }

.contact { max-width: 1440px; margin: auto; padding: 110px 8vw; display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw; color: white; background: var(--forest); }
.contact-copy > p:not(.eyebrow) { max-width: 510px; color: rgba(255,255,255,.67); line-height: 1.75; }
.contact-note { margin-top: 34px; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; }
.contact-note span { width: 25px; height: 25px; display: grid; place-items: center; color: var(--deep); background: var(--lime); border-radius: 50%; }
.contact-details { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; color: rgba(255,255,255,.72); font-size: 14px; font-style: normal; line-height: 1.55; }
.contact-details a { width: fit-content; color: white; border-bottom: 1px solid var(--lime); }
.contact-card { padding: 40px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; color: var(--ink); background: var(--paper); }
.contact-card-label { margin: 0 0 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 700; }
.contact-card-email { padding-bottom: 6px; border-bottom: 1px solid var(--forest); font: 700 clamp(20px, 2.3vw, 31px) "Segoe UI", Arial, sans-serif; letter-spacing: -.03em; }
.contact-card > p:not(.contact-card-label) { max-width: 500px; margin: 25px 0 30px; color: var(--muted); line-height: 1.7; }
.button-lime { color: var(--deep); background: var(--lime); }

footer { max-width: 1440px; margin: auto; padding: 55px 8vw 30px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 30px; color: rgba(255,255,255,.65); background: #0b1818; }
.footer-brand .brand-mark { color: var(--deep); background: var(--lime); }
.footer-brand div { display: flex; flex-direction: column; color: white; }
.footer-brand small { color: rgba(255,255,255,.5); }
footer > p { font-size: 13px; }
.footer-links { display: flex; gap: 22px; font-size: 12px; }
footer > small { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }
.footer-legal { line-height: 1.55; }
.footer-legal a { color: inherit; }

/* Ruhige, institutionelle Gestaltung */
.site-header { border-bottom: 1px solid var(--line); }
.brand-name strong { font-family: Georgia, "Times New Roman", serif; font-weight: 700; letter-spacing: .1em; }
.brand-name small { color: #737783; }
.nav { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.nav-cta, .button { border-radius: 0; letter-spacing: .025em; }
.hero { background: var(--cream); }
.hero-copy { border-right: 1px solid rgba(255,255,255,.12); }
.hero-visual { background: linear-gradient(145deg, #223149, #111b2c); }
.grid-lines { opacity: .07; background-size: 90px 90px; transform: none; }
.shape-one { width: 390px; height: 390px; right: -110px; top: -100px; border: 1px solid rgba(200,169,107,.48); background: transparent; opacity: 1; }
.shape-two { width: 340px; height: 340px; left: 12%; bottom: -125px; border: 1px solid rgba(255,255,255,.13); background: transparent; }
.shape-three { width: 190px; height: 190px; left: 34%; top: 29%; border: 1px solid rgba(200,169,107,.35); }
.hero-label { color: rgba(255,255,255,.045); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.metric-card { border: 1px solid rgba(200,169,107,.45); background: rgba(16,27,44,.92); box-shadow: none; backdrop-filter: none; }
.metric-icon { color: var(--deep); background: var(--lime); font-family: Georgia, "Times New Roman", serif; }
.trust-strip { border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-strip span { color: var(--lime); }
.service-card { background: transparent; transition: background .2s; }
.service-card:hover { background: #fff; transform: none; box-shadow: none; }
.service-icon { height: 58px; align-items: center; gap: 5px; }
.service-icon span { width: 28px; height: 1px !important; background: var(--forest) !important; opacity: 1 !important; }
.service-icon span:nth-child(2) { width: 16px; }
.service-icon span:nth-child(3) { width: 7px; background: var(--lime) !important; }
.service-card h3, .process-steps h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 700; }
.about { background: var(--deep); }
.about-visual { background: #263750; }
.about-pattern { background: linear-gradient(145deg, rgba(255,255,255,.02), rgba(0,0,0,.12)); }
.ring { border-color: rgba(200,169,107,.22); }
.about-k { color: rgba(200,169,107,.88); font-family: Georgia, "Times New Roman", serif; font-weight: 400; text-shadow: none; }
.experience { background: #d5c08e; }
.contact { background: var(--deep); }
.contact-card { border-top: 4px solid var(--lime); }
.legal-hero { border-bottom: 1px solid var(--line); }
.legal-content h2 { font-family: Georgia, "Times New Roman", serif; }
footer { background: #101827; }

.legal-main { max-width: 1440px; margin: auto; background: var(--paper); }
.legal-hero { padding: 95px 8vw 70px; background: var(--cream); }
.legal-hero h1 { font-size: clamp(52px, 7vw, 88px); }
.legal-content { max-width: 900px; padding: 75px 8vw 110px; }
.legal-content section { padding: 0 0 28px; margin: 0 0 30px; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 17px; font: 700 clamp(20px, 2.2vw, 27px)/1.3 "Segoe UI", Arial, sans-serif; letter-spacing: -.025em; }
.legal-content p { margin: 0 0 14px; color: #56605f; font-size: 15px; line-height: 1.75; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content a:not(.legal-back) { color: var(--forest); text-decoration: underline; text-underline-offset: 4px; }
.legal-back { width: fit-content; display: inline-flex; align-items: center; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 14px; font-weight: 700; }
.legal-back svg { width: 17px; }
.footer-links a[aria-current="page"] { color: var(--lime); }

@media (max-width: 1000px) {
  .site-header { padding: 0 4vw; }
  .nav { gap: 20px; }
  .hero { padding-left: 6vw; }
  .hero-copy { padding-right: 5vw; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3) { border-left: 1px solid var(--line); }
  .about-copy { padding: 80px 5vw; }
  .process { grid-template-columns: 1fr; }
  .contact { gap: 5vw; }
}

@media (max-width: 760px) {
  .site-header { height: 74px; padding: 0 22px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name small { max-width: 155px; white-space: nowrap; overflow: hidden; }
  .menu-button { display: flex; width: 38px; height: 38px; flex-direction: column; justify-content: center; gap: 7px; cursor: pointer; }
  .menu-button span { width: 23px; height: 2px; background: var(--ink); }
  .nav { position: absolute; top: 74px; left: 0; right: 0; padding: 28px 22px; display: none; align-items: stretch; flex-direction: column; gap: 22px; background: var(--paper); box-shadow: 0 15px 25px rgba(0,0,0,.1); }
  .nav.open { display: flex; }
  .hero { min-height: auto; padding: 0; grid-template-columns: 1fr; }
  .hero-copy { padding: 75px 24px 65px; }
  h1 { font-size: clamp(48px, 15vw, 66px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { min-height: 430px; }
  .shape-one { width: 300px; height: 300px; }
  .hero-label { font-size: 110px; }
  .trust-strip { padding: 24px; flex-wrap: wrap; justify-content: center; gap: 12px 18px; }
  .trust-strip span { display: none; }
  .trust-strip p { margin: 0; }
  .section { padding: 85px 24px; }
  .section-intro { grid-template-columns: 1fr; gap: 35px; margin-bottom: 45px; }
  h2 { font-size: 43px; }
  .service-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .service-card, .service-card:nth-child(3) { min-height: 345px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .about { grid-template-columns: 1fr; }
  .about-visual { min-height: 450px; }
  .ring-three { width: 510px; height: 510px; }
  .about-copy { padding: 80px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps h3 { margin-top: 25px; }
  .contact { padding: 85px 24px; grid-template-columns: 1fr; }
  .contact-card { padding: 28px 22px; }
  footer { padding: 50px 24px 28px; grid-template-columns: 1fr; }
  footer > small { grid-column: auto; }
  .legal-hero { padding: 70px 24px 55px; }
  .legal-content { padding: 60px 24px 85px; }
}
