/* ============================================================
   Miller Consulting UG – Stylesheet
   ============================================================ */

/* Self-hosted fonts – keine externen Google-Server-Anfragen */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/playfair-display-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --gold: #B8960C;
  --gold-light: #F5ECD7;
  --gold-dark: #8B6E09;
  --dark: #1a1a1a;
  --dark2: #2d2d2d;
  --font-playfair: 'Playfair Display', serif;
  --font-inter: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-inter);
  color: #374151;
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  background: var(--dark);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}
#site-header.scrolled {
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  padding: 0.5rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img { height: 3rem; width: auto; object-fit: contain; }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  letter-spacing: 0.025em;
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--gold); }
.nav-desktop a[aria-current="page"] { color: var(--gold); }

.btn-termin {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 0.25rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all 0.2s;
}
.btn-termin:hover { background: var(--gold); color: #fff; }

/* Mobile burger */
.burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
}
@media (min-width: 768px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1f2937;
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1rem 1.25rem;
  background: #fff;
  border-top: 1px solid #f3f4f6;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile a[aria-current="page"] { color: var(--gold); }
.nav-mobile .btn-termin-mobile {
  text-align: center;
  padding: 0.5rem 1.25rem;
  border-radius: 0.25rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 3rem;
  background: #fff;
  overflow: hidden;
}
@media (min-width: 768px) { #hero { padding: 6rem 0 4rem; } }

.hero-bg1 {
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at top right, #B8960C 0%, transparent 70%);
  opacity: 0.05;
  pointer-events: none;
}
.hero-bg2 {
  position: absolute; bottom: 0; left: 0;
  width: 20rem; height: 20rem;
  background: radial-gradient(ellipse at bottom left, #B8960C 0%, transparent 70%);
  opacity: 0.05;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  color: var(--gold);
  background: var(--gold-light);
  margin-bottom: 1.25rem;
}
.hero-motto {
  font-family: var(--font-playfair);
  font-style: italic;
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .hero-motto { font-size: 1.125rem; } }
.hero-title {
  font-family: var(--font-playfair);
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.hero-title .gold { color: var(--gold); }
.hero-desc {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 32rem;
}
@media (min-width: 768px) { .hero-desc { font-size: 1.125rem; } }

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) { .hero-btns { flex-direction: row; } }

.btn-primary {
  display: inline-block;
  text-align: center;
  padding: 0.875rem 1.75rem;
  border-radius: 0.25rem;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
  display: inline-block;
  text-align: center;
  padding: 0.875rem 1.75rem;
  border-radius: 0.25rem;
  border: 1px solid #e5e7eb;
  color: #374151;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: #6b7280;
}
.hero-trust .check { color: var(--gold); }

/* Hero card */
.hero-card-wrap {
  display: none;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 768px) { .hero-card-wrap { display: flex; } }

.hero-card { position: relative; }
.hero-card-inner {
  width: 18rem; height: 18rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}
@media (min-width: 1024px) { .hero-card-inner { width: 24rem; height: 24rem; } }

.hero-card-logo {
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  margin-bottom: 0.5rem;
}
.hero-card-logo img { width: 13rem; height: auto; object-fit: contain; }
@media (min-width: 1024px) { .hero-card-logo img { width: 16rem; } }

.hero-card-line {
  width: 3.5rem; height: 2px;
  background: var(--gold);
  margin: 0.75rem auto 1rem;
}
.hero-card-text { font-size: 0.75rem; color: #9ca3af; }

.hero-deco1 {
  position: absolute; bottom: -1.25rem; left: -1.25rem;
  width: 5rem; height: 5rem;
  border-radius: 0.75rem;
  background: var(--gold-light);
  z-index: -1;
}
.hero-deco2 {
  position: absolute; top: -1.25rem; right: -1.25rem;
  width: 3.5rem; height: 3.5rem;
  border-radius: 0.75rem;
  border: 2px solid var(--gold);
  z-index: -1;
}

.hero-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid #f3f4f6;
}
.hero-quicklinks a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6b7280;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
}
.hero-quicklinks a:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  color: var(--gold);
  background: var(--gold-light);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-playfair);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.section-desc {
  color: #6b7280;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.75;
  font-size: 0.9375rem;
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
#leistungen {
  padding: 4rem 0;
  background: #F8F8F6;
}
@media (min-width: 768px) { #leistungen { padding: 6rem 0; } }

.leistungen-header { text-align: center; margin-bottom: 2rem; }

.leistungen-banner {
  position: relative;
  width: 100%;
  height: 10rem;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .leistungen-banner { height: 13rem; } }
@media (min-width: 768px) { .leistungen-banner { height: 16rem; margin-bottom: 3.5rem; } }

.leistungen-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.leistungen-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.1);
  border-radius: 1rem;
}

.services-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

.service-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.service-card-img {
  position: relative;
  height: 11rem;
  overflow: hidden;
}
@media (min-width: 640px) { .service-card-img { height: 12rem; } }
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}
.service-card-body { padding: 1.25rem 1.5rem; }
.service-card-title {
  font-family: var(--font-playfair);
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.625rem;
}
.service-card-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-card-points { list-style: none; display: flex; flex-direction: column; gap: 0.375rem; }
.service-card-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}
.service-card-points li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.625rem;
  flex-shrink: 0;
}

/* ============================================================
   ÜBER UNS
   ============================================================ */
#ueber-uns {
  padding: 4rem 0;
  background: #fff;
  overflow: hidden;
}
@media (min-width: 768px) { #ueber-uns { padding: 6rem 0; } }

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) { .about-visual { justify-content: flex-start; } }

.about-deco1 {
  position: absolute; bottom: -1rem; right: -1rem;
  width: 6rem; height: 6rem;
  border-radius: 1rem;
  background: var(--gold-light);
  z-index: 0;
}
@media (min-width: 768px) { .about-deco1 { width: 8rem; height: 8rem; } }
.about-deco2 {
  position: absolute; top: -1rem; left: -1rem;
  width: 4rem; height: 4rem;
  border-radius: 0.75rem;
  border: 2px solid var(--gold);
  z-index: 0;
}
@media (min-width: 768px) { .about-deco2 { width: 5rem; height: 5rem; } }

.about-card {
  position: relative;
  width: 100%;
  max-width: 22rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  z-index: 1;
}
.about-card-img {
  position: relative;
  height: 18rem;
}
@media (min-width: 640px) { .about-card-img { height: 22rem; } }
@media (min-width: 768px) { .about-card-img { height: 26rem; } }
.about-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.about-name-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}
.about-initials {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-playfair);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  flex-shrink: 0;
}
.about-name { color: #fff; font-weight: 600; font-size: 0.875rem; font-family: var(--font-playfair); }
.about-role { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
.about-logo-badge {
  margin-left: auto;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
}
.about-logo-badge img { height: 1.75rem; width: auto; object-fit: contain; }

.about-text .section-badge { margin-bottom: 1rem; }
.about-text .section-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.25rem; }
.about-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .about-desc { font-size: 1rem; } }

.about-subtitle {
  font-family: var(--font-playfair);
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-top: 1.75rem;
}

.values { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.25rem; }
.value-item { display: flex; gap: 0.75rem; }
.value-bar {
  width: 3px;
  border-radius: 9999px;
  background: var(--gold);
  flex-shrink: 0;
  min-height: 2.5rem;
}
.value-title { font-weight: 600; color: #111827; font-size: 0.9rem; margin-bottom: 2px; }
.value-text { font-size: 0.8rem; color: #6b7280; line-height: 1.6; }

/* ============================================================
   KARRIERE-TEASER
   ============================================================ */
#karriere-teaser {
  padding: 3.5rem 0;
  background: #fff;
  border-top: 1px solid #f3f4f6;
}
.karriere-teaser-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 768px) { .karriere-teaser-box { flex-direction: row; align-items: center; } }
.karriere-teaser-box .section-title { margin-bottom: 0.5rem; }
.karriere-teaser-desc { color: #6b7280; max-width: 34rem; line-height: 1.7; font-size: 0.9375rem; }
.karriere-teaser-box .btn-primary { flex-shrink: 0; }

/* ============================================================
   ABSCHLUSS-CTA
   ============================================================ */
#cta-abschluss {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  text-align: center;
}
.cta-abschluss-box { max-width: 40rem; margin: 0 auto; }
.cta-abschluss-title {
  font-family: var(--font-playfair);
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-abschluss-desc { color: #9ca3af; line-height: 1.7; margin-bottom: 2rem; }

/* ============================================================
   KONTAKT
   ============================================================ */
#kontakt {
  padding: 4rem 0;
  background: #F8F8F6;
}
@media (min-width: 768px) { #kontakt { padding: 6rem 0; } }

.kontakt-header { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .kontakt-header { margin-bottom: 4rem; } }

.kontakt-banner {
  position: relative;
  width: 100%;
  height: 11rem;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .kontakt-banner { height: 14rem; } }
@media (min-width: 768px) { .kontakt-banner { height: 16rem; margin-bottom: 2.5rem; } }
.kontakt-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.kontakt-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.1));
}
.kontakt-banner-text {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 3rem;
}
.kontakt-banner-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}
.kontakt-banner-title {
  font-family: var(--font-playfair);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  margin-bottom: 0.25rem;
}
.kontakt-banner-addr { color: rgba(255,255,255,0.8); font-size: 0.875rem; }

.kontakt-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .kontakt-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }

.contact-cards { display: flex; flex-direction: column; gap: 1rem; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #f3f4f6;
  transition: all 0.2s;
}
.contact-card:hover { border-color: var(--gold); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.contact-card-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--gold-light);
  color: var(--gold);
}
.contact-card-icon svg { width: 1.25rem; height: 1.25rem; }
.contact-card-label { font-size: 0.7rem; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.contact-card-value { font-weight: 500; color: #1f2937; font-size: 0.9375rem; transition: color 0.2s; }
.contact-card:hover .contact-card-value { color: var(--gold); }

.termin-note {
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: var(--gold-light);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}

/* Contact form */
.contact-form-wrap {
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
@media (min-width: 640px) { .contact-form-wrap { padding: 1.75rem; } }
@media (min-width: 768px) { .contact-form-wrap { padding: 2rem; } }

.form-title {
  font-family: var(--font-playfair);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: #9ca3af; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: var(--font-inter);
  color: #111827;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: none; }
.btn-submit {
  width: 100%;
  padding: 0.75rem;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: opacity 0.2s;
  font-family: var(--font-inter);
}
.btn-submit:hover { opacity: 0.9; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}
.form-success.show { display: flex; }
.form-success-icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: var(--gold-light);
  color: var(--gold);
}
.form-success-title {
  font-family: var(--font-playfair);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.form-success-text { font-size: 0.875rem; color: #6b7280; }

/* ============================================================
   MAP EMBED
   ============================================================ */
.map-wrap {
  margin-top: 2.5rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.map-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}
.map-header-icon {
  width: 2rem; height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  color: var(--gold);
  flex-shrink: 0;
}
.map-header-name { font-weight: 600; font-size: 0.875rem; color: #111827; }
.map-header-addr { font-size: 0.75rem; color: #9ca3af; }
.map-header-link {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
}
.map-header-link:hover { text-decoration: underline; }

.map-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: #f3f4f6;
  min-height: 24rem;
}
.map-consent-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  color: var(--gold);
}
.map-consent-title {
  font-family: var(--font-playfair);
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.map-consent-text { font-size: 0.875rem; color: #6b7280; line-height: 1.7; max-width: 24rem; }
.map-consent-text a { text-decoration: underline; }
.btn-load-map {
  padding: 0.625rem 1.5rem;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-family: var(--font-inter);
  transition: opacity 0.2s;
}
.btn-load-map:hover { opacity: 0.9; }
.map-consent-ext { font-size: 0.75rem; color: #9ca3af; }
.map-consent-ext:hover { color: #6b7280; text-decoration: underline; }

.map-frame-wrap { display: none; }
.map-frame-wrap.show { display: block; }
.map-frame-wrap iframe { width: 100%; height: 20rem; border: none; display: block; }
@media (min-width: 640px) { .map-frame-wrap iframe { height: 24rem; } }
.map-revoke-bar {
  background: #f9fafb;
  padding: 0.5rem 1.25rem;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #f3f4f6;
}
.btn-revoke-map {
  font-size: 0.75rem;
  color: #9ca3af;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--font-inter);
}
.btn-revoke-map:hover { color: #6b7280; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #1a1a1a;
  color: #9ca3af;
  padding: 3rem 0;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; } }

.footer-logo-wrap {
  display: inline-block;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-wrap img { height: 2.25rem; width: auto; object-fit: contain; }
.footer-tagline { font-size: 0.875rem; color: #6b7280; line-height: 1.7; }

.footer-col-title {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links li a, .footer-links li {
  font-size: 0.875rem;
  color: #9ca3af;
  transition: color 0.2s;
}
.footer-links li a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #4b5563;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #4b5563; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

.footer-bottom > p a { text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
.footer-bottom > p a:hover { color: var(--gold); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  display: none;
}
#cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 56rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
  border: 1px solid #f3f4f6;
  overflow: hidden;
}
.cookie-main {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .cookie-main { flex-direction: row; align-items: flex-start; } }
.cookie-content { display: flex; gap: 0.75rem; flex: 1; }
.cookie-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: var(--gold-light);
  margin-top: 2px;
}
.cookie-title { font-weight: 600; font-size: 0.875rem; color: #111827; margin-bottom: 0.25rem; }
.cookie-text { font-size: 0.75rem; color: #6b7280; line-height: 1.6; }
.cookie-text a { text-decoration: underline; }
.cookie-toggle {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  display: inline-block;
  font-family: var(--font-inter);
}
.cookie-toggle:hover { text-decoration: underline; }
.cookie-btns { display: flex; flex-direction: row; gap: 0.5rem; flex-shrink: 0; align-items: flex-start; }
@media (min-width: 640px) { .cookie-btns { flex-direction: column; } }
.btn-cookie-necessary {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  background: #fff;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-inter);
  transition: border-color 0.2s;
}
.btn-cookie-necessary:hover { border-color: #9ca3af; }
.btn-cookie-all {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border: none;
  color: #fff;
  background: var(--gold);
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-inter);
  transition: opacity 0.2s;
}
.btn-cookie-all:hover { opacity: 0.9; }

.cookie-details {
  display: none;
  border-top: 1px solid #f3f4f6;
  background: #f9fafb;
  padding: 1rem 1.5rem;
}
.cookie-details.open { display: block; }
.cookie-details-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 0.75rem;
}
.cookie-entry {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #f3f4f6;
  margin-bottom: 0.75rem;
}
.cookie-entry:last-child { margin-bottom: 0; }
.cookie-entry.disabled { opacity: 0.5; }
.cookie-toggle-vis {
  width: 2rem; height: 1rem;
  border-radius: 9999px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-toggle-vis.off { background: #e5e7eb; justify-content: flex-start; }
.cookie-toggle-dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; background: #fff; }
.cookie-entry-title { font-size: 0.75rem; font-weight: 600; color: #1f2937; margin-bottom: 2px; }
.cookie-entry-text { font-size: 0.7rem; color: #6b7280; line-height: 1.5; }
.cookie-entry-status { margin-left: auto; font-size: 0.7rem; color: #9ca3af; white-space: nowrap; flex-shrink: 0; }

/* ============================================================
   PLATZHALTER-UNTERSEITEN (Aktuelles, Karriere, Formulare)
   ============================================================ */
.subpage-hero {
  padding: 8rem 0 2.5rem;
  background: #F8F8F6;
  text-align: center;
}
@media (min-width: 768px) { .subpage-hero { padding: 9rem 0 3rem; } }

.subpage-content {
  padding: 3rem 0 5rem;
  background: #fff;
}
.placeholder-box {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  background: #F8F8F6;
  text-align: center;
}
.placeholder-box-icon {
  width: 3rem; height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 1.25rem;
}
.placeholder-box p { color: #6b7280; line-height: 1.75; font-size: 0.9375rem; }
.placeholder-box p + p { margin-top: 0.75rem; }
.placeholder-box a { color: var(--gold); text-decoration: underline; }

.subpage-back { max-width: 40rem; margin: 0 auto; text-align: center; }
.subpage-back a { font-size: 0.875rem; color: var(--gold); }
.subpage-back a:hover { text-decoration: underline; }

.news-section-title {
  font-family: var(--font-playfair);
  font-size: 1.375rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}
.news-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .news-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

.news-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  background: #fff;
  transition: all 0.3s ease;
}
.news-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08); transform: translateY(-2px); }
.news-date {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.625rem;
}
.news-title {
  font-family: var(--font-playfair);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.625rem;
}
.news-desc { font-size: 0.875rem; color: #6b7280; line-height: 1.7; margin-bottom: 0.875rem; }
.news-source { font-size: 0.8125rem; font-weight: 500; color: var(--gold); }
.news-source:hover { text-decoration: underline; }

/* ============================================================
   IMPRESSUM / DATENSCHUTZ PAGES
   ============================================================ */
.legal-header {
  background: #1a1a1a;
  padding: 1rem 1.5rem;
}
.legal-header a {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.25rem 0.75rem;
}
.legal-header img { height: 2.25rem; width: auto; object-fit: contain; }

.legal-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}
@media (min-width: 640px) { .legal-content { padding: 2.5rem 1.5rem; } }
@media (min-width: 768px) { .legal-content { padding: 4rem 1.5rem; } }

.legal-title {
  font-family: var(--font-playfair);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}
.legal-date { font-size: 0.875rem; color: #9ca3af; margin-bottom: 2.5rem; }

.legal-sections { display: flex; flex-direction: column; gap: 2.5rem; color: #374151; }
.legal-section h2 {
  font-family: var(--font-playfair);
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}
.legal-section h3 { font-weight: 600; color: #1f2937; margin-bottom: 0.5rem; margin-top: 1.25rem; }
.legal-section p { line-height: 1.8; margin-bottom: 0.75rem; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--gold); }
.legal-section a:hover { text-decoration: underline; }
.legal-section em { font-style: italic; color: #6b7280; }
.legal-section ul { line-height: 1.8; margin-bottom: 0.75rem; padding-left: 1.25rem; }
.legal-section ul:last-child { margin-bottom: 0; }
.legal-section li { margin-bottom: 0.25rem; }

.legal-table { width: 100%; border-collapse: collapse; font-size: 0.8125rem; overflow-x: auto; display: block; }
.legal-table th {
  background: #f9fafb;
  text-align: left;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  font-weight: 600;
  color: #374151;
  font-size: 0.75rem;
}
.legal-table td { padding: 0.5rem 0.75rem; border: 1px solid #e5e7eb; color: #4b5563; }
.legal-table tr:nth-child(even) td { background: #f9fafb; }
.legal-table code { font-family: monospace; color: #374151; }

.legal-back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.legal-back a { font-size: 0.875rem; color: var(--gold); }
.legal-back a:hover { text-decoration: underline; }
.legal-back-links { display: flex; gap: 1.5rem; }

/* ============================================================
   HARDENING / UTILITIES
   (ehemalige Inline-Styles, ausgelagert für strikte CSP ohne
   'unsafe-inline' im style-src)
   ============================================================ */
.img-pos-bottom { object-position: center bottom; }
.about-card-img img.img-pos-top { object-position: top; }

.form-consent-text {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.75rem;
  line-height: 1.5;
}
.form-consent-text a { color: var(--gold); text-decoration: underline; }

.btn-reopen-cookie {
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  color: inherit;
  padding: 0;
  text-decoration: underline;
}

#map-iframe { border: none; display: block; }
