@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0F172A;
  --secondary: #334155;
  --gold: #CA8A04;
  --gold-light: #FEF3C7;
  --bg: #F8FAFC;
  --bg-dark: #0F172A;
  --text: #020617;
  --text-light: #64748B;
  --border: #E2E8F0;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  line-height: 1.3;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(8px);
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-decoration: none;
}

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

/* Ba = gold, bockel = white */
.nav-logo span {
  color: var(--gold);
}

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

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(202,138,4,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(51,65,85,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  border-left: 3px solid var(--gold);
  padding-left: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 480px;
}

.hero-image {
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(20%);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.hero-image-frame {
  position: relative;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.4;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

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

.btn-gold:hover {
  background: #B45309;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(202,138,4,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  margin-left: 1rem;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── SECTIONS ── */
section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

/* ── LEISTUNGEN ── */
.leistungen {
  background: var(--white);
}

.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.leistung-card {
  background: var(--white);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.leistung-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.leistung-card:hover::before {
  height: 100%;
}

.leistung-card:hover {
  background: #FAFAF8;
}

.leistung-icon-graphic {
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.leistung-card:hover .leistung-icon-graphic {
  opacity: 1;
}

.leistung-nr {
  font-family: 'Lora', serif;
  font-size: 3rem;
  color: var(--border);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}

.leistung-card:hover .leistung-icon-graphic {
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.leistung-card:hover .leistung-icon-graphic {
  opacity: 1;
}

.leistung-nr {
  color: var(--gold-light);
}

.leistung-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.leistung-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── ÜBER MICH ── */
.ueber {
  background: var(--bg);
}

.ueber-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.ueber-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(15%);
}

.ueber-text .section-title {
  margin-bottom: 1.5rem;
}

.ueber-text p {
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.9;
}

.ueber-text p strong {
  color: var(--primary);
  font-weight: 600;
}

.ueber-werte {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.wert-tag {
  background: var(--gold-light);
  color: #92400E;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

/* ── KONTAKT ── */
.kontakt {
  background: var(--bg-dark);
  color: var(--white);
}

.kontakt .section-title {
  color: var(--white);
}

.kontakt .section-intro {
  color: rgba(255,255,255,0.6);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.kontakt-icon {
  width: 40px;
  height: 40px;
  background: rgba(202,138,4,0.15);
  border: 1px solid rgba(202,138,4,0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.kontakt-item-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.kontakt-item-text strong {
  display: block;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.kontakt-item-text a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.kontakt-item-text a:hover {
  color: var(--gold);
}

/* ── FORMULAR ── */
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 0.9rem 1rem;
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ── FOOTER ── */
footer {
  background: #020617;
  padding: 2rem;
  text-align: center;
}

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

footer p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}

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

/* ── ANIMATIONEN ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    height: 300px;
  }

  .leistungen-grid {
    grid-template-columns: 1fr;
  }

  .ueber-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  section {
    padding: 4rem 1.5rem;
  }
}
