:root {
  --navy-deep: #0a1a3e;
  --navy: #14264f;
  --navy-light: #1f3461;
  --gold: #c8a55b;
  --gold-light: #d4b876;
  --gold-dark: #a8873d;
  --cream: #f7f3ec;
  --paper: #fbfaf6;
  --ink: #1a2238;
  --muted: #6b7384;
  --line: rgba(200, 165, 91, 0.25);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--navy-deep);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
p { margin-bottom: 1rem; color: #2c3245; }
a { color: var(--gold-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* HEADER */
header {
  position: sticky; top: 0;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2rem; max-width: 1180px; margin: 0 auto;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 0.7rem;
}
.brand-mark {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
}
.brand small {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; color: var(--muted); font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  display: block; margin-top: 2px;
}
.nav-links {
  display: flex; gap: 2.2rem; list-style: none;
}
.nav-links a {
  color: var(--navy);
  font-size: 0.92rem; font-weight: 400; letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--navy); font-size: 1.5rem; }
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* HERO */
.hero {
  background:
    linear-gradient(135deg, rgba(10,26,62,0.92) 0%, rgba(20,38,79,0.88) 100%),
    radial-gradient(ellipse at top right, rgba(200,165,91,0.18), transparent 60%);
  color: #fff;
  padding: 7rem 0 8rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(200,165,91,0.08) 95%),
    linear-gradient(90deg, transparent 95%, rgba(200,165,91,0.08) 95%);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 780px; }
.hero-eyebrow {
  color: var(--gold-light); font-size: 0.78rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 1.5rem; font-weight: 500;
}
.hero h1 { color: #fff; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero-lead {
  font-size: 1.18rem; color: rgba(255,255,255,0.85);
  font-weight: 300; margin-bottom: 2.5rem; max-width: 620px;
}
.hero-detail { padding: 5rem 0 5rem; }
.hero-detail h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.hero-detail .breadcrumb {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem; letter-spacing: 0.1em; margin-bottom: 1.5rem;
}
.hero-detail .breadcrumb a { color: var(--gold-light); }
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.8rem; background: var(--gold); color: var(--navy-deep);
  font-weight: 500; font-size: 0.92rem; letter-spacing: 0.05em;
  text-transform: uppercase; border: 1px solid var(--gold);
  transition: all .25s; cursor: pointer;
}
.btn:hover { background: transparent; color: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.4);
  margin-left: 1rem;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: var(--gold-light); }

/* SECTION */
section { padding: 6rem 0; border-bottom: 1px solid var(--line); }
.eyebrow {
  color: var(--gold-dark); font-size: 0.75rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 1rem; display: inline-block;
}
.section-header { max-width: 720px; margin-bottom: 3.5rem; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* ABOUT */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }
.about-visual {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-light));
  color: #fff; padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
}
.about-visual::after {
  content: ''; position: absolute;
  bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  border: 1px solid var(--gold);
  transform: rotate(45deg); opacity: 0.4;
}
.stat { border-top: 1px solid rgba(200,165,91,0.4); padding: 1.2rem 0; }
.stat:last-child { border-bottom: 1px solid rgba(200,165,91,0.4); }
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light); font-size: 2rem;
  font-weight: 500; display: block; line-height: 1.1;
}
.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; margin-top: 0.3rem;
}

/* TEAM */
#team { background: var(--cream); }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem; margin-top: 3rem;
}
.team-card {
  background: #fff; padding: 2.4rem 1.8rem 2rem;
  border: 1px solid var(--line); text-align: center;
  transition: all .3s;
}
.team-card:hover {
  transform: translateY(-3px); border-color: var(--gold);
  box-shadow: 0 10px 28px rgba(10,26,62,0.08);
}
.team-avatar {
  width: 140px; height: 140px; border-radius: 50%;
  display: inline-block; border: 2px solid var(--gold);
  padding: 4px; margin-bottom: 1.4rem;
  position: relative; background: #fff;
}
.team-avatar img {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; display: block;
  filter: grayscale(35%) contrast(1.02); transition: filter .35s;
}
.team-card:hover .team-avatar img { filter: grayscale(0%) contrast(1.05); }
.team-avatar::after {
  content: ''; position: absolute;
  bottom: -10px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 1px; background: var(--gold);
}
.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 500;
  color: var(--navy-deep); margin-bottom: 0.2rem; line-height: 1.2;
}
.team-role {
  color: var(--gold-dark); font-size: 0.7rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 1.2rem; display: block;
}
.team-bio { color: var(--muted); font-size: 0.92rem; line-height: 1.65; margin: 0; }
.placeholder-note {
  text-align: center; margin-top: 2.5rem;
  font-size: 0.78rem; color: var(--muted);
  font-style: italic; letter-spacing: 0.05em;
}

/* SERVICES */
#leistungen { background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.service-card {
  background: #fff; padding: 2.2rem 1.8rem;
  border: 1px solid var(--line);
  transition: all .3s; position: relative;
  display: block; color: inherit; text-decoration: none;
}
.service-card:hover {
  transform: translateY(-4px); border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(10,26,62,0.08);
  color: inherit;
}
.service-num {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold); font-size: 2.4rem;
  font-weight: 400; line-height: 1;
  margin-bottom: 1rem; display: block;
}
.service-card h3 { color: var(--navy-deep); margin-bottom: 0.8rem; }
.service-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.2rem; }
.service-link {
  color: var(--gold-dark); font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; display: inline-block;
  margin-top: 0.5rem; padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}
.service-card:hover .service-link { color: var(--navy-deep); }

/* TREUHAND DEEP DIVE */
#treuhand { background: var(--navy-deep); color: #fff; }
#treuhand h2 { color: #fff; }
#treuhand .eyebrow { color: var(--gold-light); }
#treuhand p { color: rgba(255,255,255,0.78); }
.treuhand-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: center;
}
@media (max-width: 820px) { .treuhand-grid { grid-template-columns: 1fr; } }
.treuhand-list { list-style: none; margin-top: 2rem; }
.treuhand-list li {
  padding: 1rem 0 1rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(200,165,91,0.18);
  color: rgba(255,255,255,0.9);
}
.treuhand-list li::before {
  content: ''; position: absolute;
  left: 0; top: 1.5rem;
  width: 12px; height: 1px; background: var(--gold);
}
.treuhand-list strong {
  color: var(--gold-light); font-weight: 500;
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; margin-bottom: 0.2rem;
}
.treuhand-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,165,91,0.3);
  padding: 3rem 2.5rem; text-align: center;
}
.treuhand-visual .quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; color: var(--gold-light);
  font-size: 1.6rem; line-height: 1.4;
  margin-bottom: 1.5rem;
}
.treuhand-visual .quote-source {
  font-size: 0.75rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}

/* DETAIL PAGE SECTIONS */
.subservices-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.subservice {
  border-left: 2px solid var(--gold);
  padding: 0.3rem 0 0.3rem 1.5rem;
}
.subservice h4 {
  font-size: 1.15rem; color: var(--navy-deep);
  margin-bottom: 0.4rem;
}
.subservice p {
  font-size: 0.92rem; color: var(--muted);
  margin-bottom: 0;
}
.scenarios { background: var(--cream); }
.scenarios-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; margin-top: 2.5rem;
}
.scenario {
  background: #fff; padding: 2rem 1.8rem;
  border: 1px solid var(--line);
}
.scenario-persona {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-dark); font-style: italic;
  font-size: 1rem; margin-bottom: 1rem;
  padding-bottom: 1rem; border-bottom: 1px dashed var(--line);
}
.scenario h4 {
  font-size: 1.1rem; color: var(--navy-deep);
  margin-bottom: 0.7rem;
}
.scenario p {
  color: var(--muted); font-size: 0.92rem;
  margin-bottom: 0; line-height: 1.7;
}
.process {
  background: var(--navy-deep); color: #fff;
}
.process h2 { color: #fff; }
.process .eyebrow { color: var(--gold-light); }
.process p { color: rgba(255,255,255,0.8); }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding-top: 2.5rem;
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-light); font-size: 2.5rem;
  font-weight: 500; line-height: 1;
  position: absolute; top: 0; left: 0;
}
.process-step h4 {
  color: #fff; font-size: 1.1rem;
  margin-bottom: 0.5rem; padding-top: 0;
  border-top: 1px solid rgba(200,165,91,0.3);
  padding-top: 0.7rem;
}
.process-step p {
  font-size: 0.88rem; color: rgba(255,255,255,0.75);
  margin: 0; line-height: 1.6;
}
.faq-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}
.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--navy-deep);
  margin-bottom: 0.7rem; font-weight: 500;
}
.faq-answer {
  color: var(--muted); font-size: 0.95rem;
  line-height: 1.7; margin-bottom: 0;
}
.related-links {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.related-link {
  display: block; padding: 1.2rem 1.4rem;
  background: var(--cream); border: 1px solid var(--line);
  color: var(--navy-deep); transition: all .25s;
}
.related-link:hover {
  background: #fff; border-color: var(--gold);
  color: var(--navy-deep);
}
.related-link strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; margin-bottom: 0.2rem;
}
.related-link span {
  font-size: 0.78rem; color: var(--gold-dark);
  letter-spacing: 0.15em; text-transform: uppercase;
}
.cta-band {
  background: var(--navy-deep); color: #fff;
  padding: 4rem 0; text-align: center;
  border-bottom: none;
}
.cta-band h2 { color: #fff; }
.cta-band p {
  color: rgba(255,255,255,0.8);
  max-width: 600px; margin: 1rem auto 2rem;
}

/* CONTACT */
#kontakt .contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
@media (max-width: 820px) { #kontakt .contact-grid { grid-template-columns: 1fr; } }
.contact-info dt {
  color: var(--gold-dark); font-size: 0.75rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.3rem;
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd { font-size: 1.05rem; color: var(--navy-deep); }
.form-row { margin-bottom: 1.2rem; }
.form-row label {
  display: block; font-size: 0.78rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.5rem; font-weight: 500;
}
.form-row input, .form-row textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid var(--line); background: #fff;
  font-family: inherit; font-size: 0.95rem;
  color: var(--ink); transition: border-color .2s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-row textarea { min-height: 130px; resize: vertical; }

/* FOOTER */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem; font-size: 0.9rem;
}
footer h4 {
  color: var(--gold-light); font-size: 0.78rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  font-family: 'Inter', sans-serif; font-weight: 600;
  margin-bottom: 1rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 3rem; margin-bottom: 3rem;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.footer-grid p, .footer-grid a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem; line-height: 1.8;
}
.footer-grid a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.legal {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.legal h3 {
  color: var(--gold-light); font-size: 1.1rem;
  margin-top: 2rem; margin-bottom: 0.7rem;
}
.legal h3:first-child { margin-top: 0; }
.legal p, .legal li {
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
  line-height: 1.7; margin-bottom: 0.6rem;
}
.legal ul { padding-left: 1.2rem; }
