/* ===========================
   KANZLEI DR. MÜLLER — CSS
   =========================== */

:root {
  --navy:   #1C2E4A;
  --gold:   #B8965A;
  --gold-light: #D4AE78;
  --bg:     #F8F7F5;
  --white:  #FFFFFF;
  --text:   #2D2D2D;
  --text-light: #666666;
  --border: #E0DDD8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

/* --- TYPOGRAFIE --- */
h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  font-weight: normal;
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin-bottom: 1rem; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

.sans {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* --- LAYOUT --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

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

.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.85); }

.section-gold {
  background: var(--gold);
  color: var(--white);
}

.section-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-dark .section-label { color: var(--gold-light); }

/* --- NAVIGATION --- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(28,46,74,0.97);
  backdrop-filter: blur(8px);
  z-index: 1000;
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--white) !important; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.lang-switch a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.lang-switch a:hover { color: var(--gold); }
.lang-switch .lang-sep { color: rgba(255,255,255,0.2); }
.lang-switch .lang-active { color: var(--gold); }

/* --- HERO --- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #2a4268 60%, #1a3050 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="60" fill="rgba(184,150,90,0.05)"/></svg>');
  background-size: cover;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  max-width: 750px;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  color: rgba(255,255,255,0.80);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- HERO SPLIT LAYOUT MIT FOTO --- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { max-width: 580px; }

.hero-photo-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: flex-end;
  position: relative;
}

.hero-photo-frame {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.hero-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  max-width: 420px;
  max-height: 580px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-top: 4px solid var(--gold);
  border-left: 4px solid var(--gold);
}

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-photo-wrap { display: none; }
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover { background: var(--gold-light); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: #243a5e; color: var(--white); }

/* --- STATS BAR --- */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  color: var(--navy);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-number span { color: var(--gold); }

.stat-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- LEISTUNGEN GRID --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.2s;
}

.card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.card p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 0;
}

/* --- WANN ICH HELFE --- */
.checklist {
  list-style: none;
  margin: 2rem 0;
}

.checklist li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.section-dark .checklist li {
  border-bottom-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}

/* --- TIMELINE --- */
.timeline {
  position: relative;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
}

.timeline-item {
  padding-left: 3rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-period {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.timeline-company {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

/* --- TESTIMONIAL --- */
.testimonial {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial cite {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--gold-light);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* --- KONTAKT FORM --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info h3 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-detail {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.75rem;
}

form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 0.4rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
}

textarea { resize: vertical; min-height: 140px; }

/* --- FOOTER --- */
footer {
  background: #111d2e;
  color: rgba(255,255,255,0.6);
  padding: 3rem 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1rem;
}

.footer-logo span { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* --- SEITEN-HEADER --- */
.page-header {
  background: var(--navy);
  padding: 7rem 0 4rem;
  color: var(--white);
}

.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }

.page-header p {
  color: rgba(255,255,255,0.75);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0;
}

/* --- LEISTUNGS-DETAIL --- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child { border-bottom: none; }

.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-number {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

/* --- KI SEITE --- */
.ai-feature {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.ai-feature:last-child { border-bottom: none; }

.ai-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.ai-content h3 { color: var(--navy); margin-bottom: 0.5rem; }
.ai-content p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-block { grid-template-columns: 1fr; gap: 2rem; }
  .service-block.reverse { direction: ltr; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: 1.9rem; }
}
