/* Lokal eingebundene Schriften (DSGVO-konform, keine Verbindung zu Google) */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}

:root {
  --navy: #14304d;
  --navy-deep: #0e2238;
  --gold: #b5894a;
  --gold-soft: #c79a5b;
  --ink: #1f2a37;
  --muted: #5b6b7c;
  --paper: #ffffff;
  --paper-alt: #f4f1ea;
  --line: #e2ddd2;
  --radius: 10px;
  --maxw: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.15;
  color: var(--navy);
  font-weight: 600;
}

a { color: var(--gold); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }

.section { padding: 92px 0; }
.section-alt { background: var(--paper-alt); }

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 18px;
}
.section-title.center { text-align: center; }

.section-intro {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}
.section-intro.center { margin: 0 auto 48px; text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, color 0.2s ease;
}
.btn:hover { background: var(--navy-deep); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }

.btn-small { padding: 10px 18px; font-size: 0.86rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 8px;
  letter-spacing: 0.04em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 1.05rem; }
.brand-text small {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
}

.brand-logo {
  display: block;
  height: 54px;
  width: auto;
}

/* DATEV-Siegel */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.trust-badge img {
  width: 92px;
  height: auto;
  flex-shrink: 0;
}
.trust-badge p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-badge img {
  width: 96px;
  height: auto;
  border-radius: 8px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a:not(.btn):hover { color: var(--gold); }
.main-nav a.btn { color: #fff; }
.main-nav a.btn:hover { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(181, 137, 74, 0.28), transparent 70%);
}
.hero-inner { position: relative; max-width: 740px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 22px;
}
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.hero .btn-ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* Grid + cards */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20, 48, 77, 0.1);
  border-color: var(--gold);
}
.card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.card p { color: var(--muted); }

/* Split sections */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-text p { color: var(--muted); margin-bottom: 16px; }
.split-text .section-title { color: var(--navy); }

.media-card {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: #fff;
  border-radius: 16px;
  padding: 64px 40px;
  text-align: center;
  box-shadow: 0 24px 50px rgba(20, 48, 77, 0.22);
}
.media-mark {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-soft);
}
.media-card p { font-size: 1.5rem; font-family: "Cormorant Garamond", serif; }
.media-card small {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.7);
}

.check-list { list-style: none; margin-top: 22px; }
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Steps */
.steps .step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}
.step-num {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  background: var(--navy);
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 50%;
}
.step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* Contact */
.contact-list { list-style: none; margin-top: 24px; }
.contact-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.contact-list li:last-child { border-bottom: none; }
.contact-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-list a { text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fdfcfa;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181, 137, 74, 0.15);
}
.field textarea { resize: vertical; }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.consent input { margin-top: 4px; }

.contact-form .btn { width: 100%; }
.form-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong { color: #fff; }
.footer-brand small { color: var(--gold-soft); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-nav a:hover { color: var(--gold-soft); }
.footer-copy { font-size: 0.82rem; color: rgba(255, 255, 255, 0.55); }

/* Legal pages */
.legal {
  padding: 70px 0 90px;
}
.legal .container { max-width: 820px; }
.legal h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 28px;
}
.legal h2 {
  font-size: 1.5rem;
  margin: 34px 0 12px;
}
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.back-link {
  display: inline-block;
  margin-bottom: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.placeholder {
  background: #fff7e8;
  border-left: 3px solid var(--gold);
  padding: 4px 8px;
  border-radius: 3px;
  color: #8a6a30;
}

/* Landing / Visitenkarten-Seite */
.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 48px 24px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.landing-card {
  background: #fff;
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  padding: 44px 40px 40px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(8, 22, 38, 0.4);
}

.landing-logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto 30px;
  display: block;
}

.notice {
  display: flex;
  gap: 16px;
  text-align: left;
  background: #fdf3e3;
  border: 1px solid #e7c98c;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.notice-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
}
.notice-body strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.notice-body p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.notice-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 12px 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.notice-phone::before {
  content: "\260E";
  font-size: 1.5rem;
  font-weight: 400;
}
.notice-phone:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.landing-info { margin: 30px 0 26px; }
.landing-info h1 {
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  margin-bottom: 4px;
}
.landing-role {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.landing-info address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.7;
}

.landing-badge img {
  width: 120px;
  height: auto;
  border-radius: 10px;
}

.landing-footer {
  display: flex;
  gap: 10px;
  align-items: center;
}
.landing-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.88rem;
}
.landing-footer a:hover { color: var(--gold-soft); }
.landing-footer span { color: rgba(255, 255, 255, 0.4); }

/* Datenschutz-Hinweis-Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 -10px 34px rgba(8, 22, 38, 0.35);
  transform: translateY(115%);
  transition: transform 0.35s ease;
}
.cookie-banner--visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cookie-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}
.cookie-text strong { color: #fff; }
.cookie-text a {
  color: var(--gold-soft);
  text-decoration: underline;
}
.cookie-btn {
  flex-shrink: 0;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 13px 30px;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.cookie-btn:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 880px) {
  .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 38px; }
  .section { padding: 66px 0; }
  .hero { padding: 80px 0 90px; }
  .brand-logo { height: 42px; }
  .trust-badge { flex-direction: column; text-align: center; }
  .landing-card { padding: 32px 24px 30px; }
  .notice-phone { font-size: 1.6rem; padding: 11px 16px; }
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
  }
  .cookie-btn { width: 100%; }

  .nav-toggle { display: flex; }
  .main-nav ul {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    box-shadow: 0 18px 30px rgba(20, 48, 77, 0.1);
    display: none;
  }
  .main-nav ul.open { display: flex; }
  .main-nav li { padding: 8px 0; }
  .main-nav a.btn { text-align: center; margin-top: 8px; }
}
