/* ============================================
   VARIANTE A — KLASSISCH (Bordeaux + Gold)
   JR-SMART, im Stil des Original-Flyers
   ============================================ */

:root {
  --bordeaux-deep: #4A2828;
  --bordeaux: #693C3C;   /* Echte Logo-Farbe */
  --bordeaux-warm: #8B4D4D;
  --gold: #C8A24A;
  --gold-light: #E5C783;
  --gold-soft: #F5E8C6;
  --green-icon: #95B85A;
  --green-icon-dark: #3D5E1F;
  --cream: #FBF8F2;
  --cream-border: #E5DDC8;
  --text-dark: #1C1C1C;
  --text-body: #4B4B4B;
  --text-muted: #807870;
  --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 880px; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--cream-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.03);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  width: 44px;
  height: auto;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--bordeaux);
  letter-spacing: 0.03em;
}
.brand-tag {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--bordeaux);
  border-bottom-color: var(--gold);
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bordeaux);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}
.header-phone:hover { background: var(--bordeaux-deep); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 620px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 80px 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 30% 50%, rgba(74,40,40,0.92) 0%, rgba(74,40,40,0.65) 50%, rgba(74,40,40,0.3) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  max-width: 700px;
  margin-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
}
.badge {
  display: inline-flex;
  align-items: center;
  background: rgba(200,162,74,0.2);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(200,162,74,0.4);
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero h1 .accent {
  color: var(--gold-light);
  font-weight: 400;
  font-style: italic;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background: var(--gold);
  color: var(--bordeaux-deep);
  padding: 14px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(200,162,74,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--cream);
  border-top: 4px solid var(--gold);
  padding: 28px 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-num {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--bordeaux);
}
.trust-lbl {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px 0; }
.section--services { background: var(--white); }
.section--dark {
  background:
    linear-gradient(180deg, var(--bordeaux-deep) 0%, var(--bordeaux) 100%);
  color: var(--white);
}
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.section-head--light { color: var(--white); }
.section-head--light h2 { color: var(--white); }
.section-head--light .section-sub { color: rgba(255,255,255,0.8); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bordeaux);
  font-weight: 600;
  margin-bottom: 12px;
}
.eyebrow--gold { color: var(--gold-light); }
.section h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section--dark h2 { color: var(--white); }
.section-sub {
  font-size: 16px;
  color: var(--text-body);
  max-width: 580px;
  margin: 0 auto;
}
.section-foot {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bordeaux), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(105,60,60,0.12);
  border-color: var(--gold-soft);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--green-icon-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-icon);
  position: relative;
  box-shadow: 0 0 24px rgba(149,184,90,0.2);
}
.service-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.4;
}
.service-icon svg { width: 32px; height: 32px; }
.service-card h3 { font-size: 19px; color: var(--text-dark); margin-bottom: 10px; }
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.card-arrow {
  font-size: 12px;
  color: var(--bordeaux);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   PROJECTS GRID
   ============================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-tile {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.project-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.project-tile:hover img { transform: scale(1.05); }
.project-tile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  color: var(--white);
}
.project-type {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 4px;
}
.project-tile-info h3 {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}

/* ============================================
   USP GRID
   ============================================ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.usp-item {
  padding: 24px 0;
  border-top: 1px solid var(--cream-border);
}
.usp-num {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.usp-item h3 {
  font-size: 20px;
  color: var(--bordeaux);
  margin-bottom: 8px;
}
.usp-item p { font-size: 14px; color: var(--text-body); line-height: 1.65; }

/* ============================================
   CTA BLOCK
   ============================================ */
.cta-block {
  background: var(--bordeaux-deep);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  border-top: 4px solid var(--gold);
}
.cta-block h2 { color: var(--white); font-size: 32px; margin-bottom: 12px; }
.cta-block p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 16px; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #1A1212;
  color: rgba(255,255,255,0.7);
  padding-top: 56px;
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p { margin-top: 16px; max-width: 280px; }
.footer-logo { width: 56px; opacity: 0.95; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col p, .footer-col a { line-height: 1.8; }
.footer-col a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   PAGE HEADER (für Unterseiten)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--bordeaux-deep) 0%, var(--bordeaux) 100%);
  color: var(--white);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,162,74,0.2) 0%, transparent 70%);
}
.page-header h1 { font-size: clamp(32px, 5vw, 48px); color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 600px; }

/* ============================================
   LEISTUNGEN DETAIL
   ============================================ */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--cream-border);
}
.service-detail:nth-child(even) { background: var(--cream); }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-detail-text .eyebrow { color: var(--bordeaux); }
.service-detail-text h2 { font-size: 36px; margin-bottom: 16px; }
.service-detail-text p { margin-bottom: 20px; color: var(--text-body); }
.service-detail-text ul { list-style: none; padding: 0; }
.service-detail-text ul li {
  padding: 8px 0 8px 28px;
  position: relative;
}
.service-detail-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-icon-dark);
  font-weight: bold;
  background: var(--green-icon);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  top: 10px;
}
.service-detail-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
}
.service-detail-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   PROJEKT-GALERIE (Projekte-Seite)
   ============================================ */
.projects-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.projects-page-grid .project-tile { aspect-ratio: 4/3; }

/* ============================================
   ÜBER UNS
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-intro img {
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  width: 100%;
}
.about-intro h2 { font-size: 36px; color: var(--bordeaux); margin-bottom: 20px; }
.about-intro .lead {
  font-size: 18px;
  color: var(--text-body);
  margin-bottom: 24px;
  font-weight: 500;
}
.about-intro p { color: var(--text-body); margin-bottom: 16px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
}
.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bordeaux);
}
.value-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.value-card h3 { font-size: 18px; color: var(--bordeaux); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--text-body); }

/* ============================================
   KONTAKT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h2 { font-size: 32px; color: var(--bordeaux); margin-bottom: 16px; }
.contact-info p { color: var(--text-body); margin-bottom: 32px; }
.contact-block {
  display: flex;
  align-items: start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-border);
}
.contact-block:last-child { border-bottom: none; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--bordeaux);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.contact-block-text strong { display: block; color: var(--text-dark); margin-bottom: 4px; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-block-text a, .contact-block-text p { color: var(--text-body); font-size: 15px; }
.contact-block-text a:hover { color: var(--bordeaux); }

.contact-form {
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: 8px;
  padding: 36px;
}
.contact-form h3 { font-size: 22px; color: var(--bordeaux); margin-bottom: 24px; }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--cream-border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(105,60,60,0.1);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row-double { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.form-row-double .form-row { margin-bottom: 0; }
.form-submit {
  width: 100%;
  background: var(--bordeaux);
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--bordeaux-deep); }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; gap: 12px; padding: 12px 16px; }
  .main-nav { order: 3; width: 100%; overflow-x: auto; padding-top: 8px; border-top: 1px solid var(--cream-border); gap: 18px; }
  .header-phone { padding: 8px 12px; font-size: 13px; }
  .brand-tag { display: none; }
  .hero { min-height: 540px; padding: 60px 0; }
  .hero-content { margin-left: 0; padding: 0 24px; }
  .section { padding: 56px 0; }
  .projects-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-inner.reverse { direction: ltr; }
  .about-intro { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row-double { grid-template-columns: 1fr; gap: 0; }
  .form-row-double .form-row { margin-bottom: 18px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-num { font-size: 22px; }
}

/* ============================================
   NEUE KOMPONENTEN — FINAL VERSION
   ============================================ */

/* --- FAQ Accordion --- */
.section--faq { background: var(--cream); padding: 80px 0; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item[open] {
  box-shadow: 0 8px 24px rgba(105,60,60,0.08);
  border-color: var(--gold-soft);
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--bordeaux); }
.faq-item[open] summary { color: var(--bordeaux); border-bottom: 1px solid var(--cream-border); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--bordeaux);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }
.faq-item[open] .faq-icon { background: var(--gold-soft); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer { padding: 20px 24px 24px; }
.faq-answer p { color: var(--text-body); line-height: 1.7; font-size: 15px; }

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  z-index: 9999;
  padding: 20px;
  animation: slideUp 0.4s ease-out;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 240px; }
.cookie-text strong {
  display: block;
  color: var(--bordeaux);
  font-size: 14px;
  margin-bottom: 4px;
  font-family: 'Outfit', sans-serif;
}
.cookie-text p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0;
}
.cookie-text a {
  color: var(--bordeaux);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-btn {
  background: var(--bordeaux);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.cookie-btn:hover { background: var(--bordeaux-deep); }

/* --- Legal Pages (Impressum / Datenschutz / AGB) --- */
.legal-content {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}
.legal-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  color: var(--bordeaux);
  margin: 40px 0 14px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-border);
}
.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-content p { margin-bottom: 16px; }
.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.legal-content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
}
.legal-content ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 18px;
  top: 4px;
}
.legal-content a {
  color: var(--bordeaux);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.legal-content a:hover { color: var(--bordeaux-deep); }
.legal-content strong { color: var(--text-dark); }
.legal-note {
  background: var(--gold-soft);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 4px;
  margin: 32px 0 0;
}
.legal-note p {
  margin: 0;
  font-size: 14px;
  color: var(--bordeaux-deep);
}

/* --- Erweitertes Kontaktformular --- */
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-checkbox-row {
  margin: 8px 0 20px;
}
.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-body);
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
}
.form-checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--bordeaux);
  flex-shrink: 0;
  cursor: pointer;
}
.form-checkbox-label a {
  color: var(--bordeaux);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-msg {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
}
.form-msg--success {
  background: rgba(149,184,90,0.15);
  border: 1px solid var(--green-icon);
  color: var(--green-icon-dark);
}
.form-msg--error {
  background: rgba(105,60,60,0.08);
  border: 1px solid var(--bordeaux);
  color: var(--bordeaux-deep);
}

/* Responsive für neue Komponenten */
@media (max-width: 768px) {
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 16px;
  }
  .cookie-inner { gap: 12px; }
  .cookie-btn { width: 100%; }
  .faq-item summary { padding: 18px 18px; font-size: 15px; }
  .faq-answer { padding: 16px 18px 20px; }
  .legal-content h2 { font-size: 19px; margin: 32px 0 12px; padding-top: 24px; }
}

/* ============================================
   ANIMIERTE HERO-SZENE
   ============================================ */
.hero--animated {
  background: #2E1818;
  background-image: none !important;
  overflow: hidden;
  min-height: 720px;
  position: relative;
}

.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-scene svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-overlay--animated {
  background:
    linear-gradient(90deg,
      rgba(46,24,24,0.96) 0%,
      rgba(46,24,24,0.92) 25%,
      rgba(46,24,24,0.70) 45%,
      rgba(46,24,24,0.25) 65%,
      rgba(46,24,24,0.05) 85%,
      rgba(46,24,24,0) 100%);
  z-index: 2;
}

.hero--animated .hero-content {
  z-index: 3;
  position: relative;
}

/* --- Sonnen-Animationen --- */
.anim-sun-glow {
  animation: sunPulse 4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes sunPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}

.anim-sun-rays {
  animation: sunRotate 60s linear infinite;
  transform-origin: center;
}
@keyframes sunRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* --- Sonnenstrahlen die "fallen" --- */
.anim-rays-to-pv line {
  stroke-dasharray: 8 12;
  animation: rayFall 1.2s linear infinite;
}
@keyframes rayFall {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -40; }
}

/* --- PV-Module Glühen --- */
.pv-module rect {
  animation: pvGlow 3.5s ease-in-out infinite;
}
.pv-module--delay1 rect { animation-delay: 0.4s; }
.pv-module--delay2 rect { animation-delay: 0.8s; }
.pv-module--delay3 rect { animation-delay: 1.2s; }

@keyframes pvGlow {
  0%, 100% { stroke: #C8A24A; filter: brightness(1); }
  50%      { stroke: #FFE9A8; filter: brightness(1.4); }
}

/* --- Wärmepumpen-Lüfter --- */
.wp-fan {
  animation: fanSpin 2s linear infinite;
  transform-origin: 60px 62px;
}
@keyframes fanSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* --- Energie-Hub Pulse --- */
.energy-hub {
  animation: hubFloat 3s ease-in-out infinite;
  transform-origin: 980px 440px;
}
@keyframes hubFloat {
  0%, 100% { transform: translate(980px, 440px) scale(1); }
  50%      { transform: translate(980px, 440px) scale(1.05); }
}

/* --- Bewegungs-Reduzierung respektieren --- */
@media (prefers-reduced-motion: reduce) {
  .anim-sun-glow,
  .anim-sun-rays,
  .anim-rays-to-pv line,
  .pv-module rect,
  .wp-fan,
  .energy-hub {
    animation: none;
  }
  .hero-scene svg circle[fill="#FFE9A8"],
  .hero-scene svg circle[fill="#FFD78A"],
  .hero-scene svg circle[fill="#7FCB6F"] {
    /* Energie-Partikel ausblenden bei Reduce-Motion */
    opacity: 0.5 !important;
  }
}

/* --- Mobile Anpassungen --- */
@media (max-width: 768px) {
  .hero--animated { min-height: 600px; }
  .hero--animated .hero-content {
    background: linear-gradient(180deg, rgba(46,24,24,0.85) 0%, rgba(46,24,24,0.95) 100%);
    margin: 0 !important;
    padding: 32px 24px;
  }
  /* Labels in der Szene auf Mobile ausblenden weil zu klein */
  .scene-labels { display: none; }
}

/* ============================================
   KI-VOICE-BERATER (schwebender Button + Modal)
   ============================================ */

/* Floating Action Button */
.voice-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 18px;
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
  color: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(105,60,60,0.35), 0 0 0 4px rgba(200,162,74,0.15);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.voice-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(105,60,60,0.5), 0 0 0 6px rgba(200,162,74,0.25);
}
.voice-fab svg {
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 2;
}
.voice-fab-label {
  position: relative;
  z-index: 2;
  letter-spacing: 0.02em;
}

/* Pulsierender Ring */
.voice-fab-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  opacity: 0.6;
  animation: voicePulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes voicePulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.voice-fab.speaking .voice-fab-pulse {
  animation-duration: 1s;
  border-color: #FFE9A8;
}

/* Modal */
.voice-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
}
.voice-modal.open { display: flex; }

.voice-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,14,14,0.4);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.voice-modal-panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-top: 4px solid var(--gold);
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 88px; /* Platz für den FAB */
}
@keyframes modalSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.voice-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: var(--cream);
  border: none;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  padding-bottom: 3px;
  transition: background 0.2s, color 0.2s;
}
.voice-close:hover { background: var(--bordeaux); color: var(--white); }

.voice-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.voice-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(105,60,60,0.3);
}
.voice-avatar svg { width: 24px; height: 24px; }
.voice-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  color: var(--bordeaux);
  margin: 0 0 4px 0;
  font-weight: 600;
}
.voice-status {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.03em;
}

.voice-message {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 16px;
  min-height: 68px;
}

.voice-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.voice-chip {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-family: inherit;
  color: var(--bordeaux);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  font-weight: 500;
}
.voice-chip:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.voice-start-btn {
  width: 100%;
  background: var(--bordeaux);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 14px;
}
.voice-start-btn:hover {
  background: var(--bordeaux-deep);
  transform: translateY(-2px);
}

.voice-privacy {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 12px 0;
}
.voice-privacy a { color: var(--bordeaux); text-decoration: underline; }

.voice-demo-note {
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 11px;
  color: var(--bordeaux-deep);
  line-height: 1.5;
}

/* Mobile-Anpassungen */
@media (max-width: 640px) {
  .voice-fab {
    bottom: 16px;
    right: 16px;
    padding: 12px 16px 12px 14px;
    font-size: 13px;
  }
  .voice-fab-label { display: none; } /* Nur Icon auf Mobile */
  .voice-fab { padding: 14px; }

  .voice-modal { padding: 0; }
  .voice-modal-panel {
    max-width: 100%;
    height: 100%;
    border-radius: 0;
    margin: 0;
  }
}

/* Nicht mit Cookie-Banner kollidieren */
.cookie-banner { z-index: 9999; } /* Cookie über FAB, unter Modal */

/* ============================================
   VIDEO-HERO
   ============================================ */
.hero--video {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  background: #2E1818;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 1;
}

/* Sanfterer Overlay als beim Foto — Video ist hell, Text steht links */
.hero-overlay--video {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg,
      rgba(46,24,24,0.82) 0%,
      rgba(46,24,24,0.65) 30%,
      rgba(46,24,24,0.25) 55%,
      rgba(46,24,24,0.05) 75%,
      rgba(46,24,24,0) 100%),
    linear-gradient(180deg,
      rgba(46,24,24,0.15) 0%,
      rgba(46,24,24,0) 30%);
}

.hero--video .hero-content {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .hero--video { min-height: 620px; }
  /* Auf Mobile stärkerer Overlay weil Text über dem Video liegt */
  .hero-overlay--video {
    background: linear-gradient(180deg,
      rgba(46,24,24,0.75) 0%,
      rgba(46,24,24,0.82) 100%);
  }
}

/* ============================================
   ANFRAGE-KONFIGURATOR (Wizard)
   ============================================ */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.wizard-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.wizard-step-dot span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--cream-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s;
}
.wizard-step-dot label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.wizard-step-dot.active span {
  background: var(--bordeaux);
  border-color: var(--gold);
  color: var(--gold-light);
}
.wizard-step-dot.active label { color: var(--bordeaux); font-weight: 600; }
.wizard-line {
  width: 60px;
  height: 2px;
  background: var(--cream-border);
  margin-bottom: 22px;
}

.wizard-title {
  font-size: 26px;
  color: var(--bordeaux);
  margin-bottom: 28px;
  text-align: center;
}

.project-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.choice-card {
  background: var(--white);
  border: 2px solid var(--cream-border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.choice-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 32px rgba(105,60,60,0.12);
}
.choice-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  background: var(--green-icon-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-icon);
}
.choice-icon svg { width: 34px; height: 34px; }
.choice-card h3 {
  font-size: 20px;
  color: var(--bordeaux);
  margin-bottom: 8px;
}
.choice-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.wizard-panel { animation: wizFade 0.3s ease-out; }
@keyframes wizFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wizard-field { margin-bottom: 24px; }
.wizard-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.wizard-field input[type="number"],
.wizard-field input[type="text"],
.wizard-field input[type="tel"],
.wizard-field input[type="email"],
.wizard-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--cream-border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
  transition: border-color 0.2s;
}
.wizard-field input:focus, .wizard-field textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(105,60,60,0.1);
}
.wizard-field small { color: var(--text-muted); font-size: 12px; margin-top: 4px; display: block; }

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wizard-chip {
  background: var(--white);
  border: 1.5px solid var(--cream-border);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.15s;
}
.wizard-chip:hover { border-color: var(--gold); }
.wizard-chip.selected {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--gold-light);
}

.wizard-checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400 !important;
  font-size: 13px !important;
  color: var(--text-body) !important;
  cursor: pointer;
  line-height: 1.5;
}
.wizard-checkbox input { width: auto !important; margin-top: 3px; accent-color: var(--bordeaux); }
.wizard-checkbox a { color: var(--bordeaux); text-decoration: underline; }

.foerder-box {
  background: linear-gradient(135deg, var(--gold-soft) 0%, #FDF6E3 100%);
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  padding: 24px;
  margin-top: 8px;
  animation: wizFade 0.3s ease-out;
}
.foerder-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bordeaux);
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
}
.foerder-value {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  color: var(--bordeaux-deep);
  line-height: 1.5;
  margin-bottom: 12px;
}
.foerder-value strong { font-size: 34px; color: var(--bordeaux); }
.foerder-euro { font-size: 15px; font-weight: 600; }
.foerder-detail { font-size: 12px; color: var(--text-muted); font-family: 'Manrope', sans-serif; }
.foerder-note { font-size: 11px; color: var(--text-muted); line-height: 1.5; margin: 0; }

.wizard-summary {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 14px;
}
.wizard-summary ul { list-style: none; padding: 0; margin: 8px 0 0; }
.wizard-summary li { padding: 3px 0 3px 20px; position: relative; color: var(--text-body); }
.wizard-summary li::before { content: '✓'; position: absolute; left: 0; color: var(--green-icon-dark); font-weight: bold; }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 36px;
}
.wizard-back {
  background: transparent;
  border: 1.5px solid var(--cream-border);
  border-radius: 6px;
  padding: 13px 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  transition: border-color 0.2s;
}
.wizard-back:hover { border-color: var(--bordeaux); color: var(--bordeaux); }
.wizard-next, .wizard-submit {
  background: var(--bordeaux);
  border: none;
  border-radius: 6px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  margin-left: auto;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wizard-next:hover, .wizard-submit:hover { background: var(--bordeaux-deep); transform: translateY(-2px); }
.wizard-submit { background: var(--gold); color: var(--bordeaux-deep); }
.wizard-submit:hover { background: var(--gold-light); }

@media (max-width: 640px) {
  .project-choice { grid-template-columns: 1fr; }
  .wizard-line { width: 30px; }
}

/* --- Foto-Upload im Wizard --- */
.upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px dashed var(--bordeaux);
  border-radius: 8px;
  padding: 14px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--bordeaux);
  cursor: pointer;
  transition: background 0.2s;
}
.upload-btn:hover { background: var(--gold-soft); }
.upload-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.upload-thumb {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--cream-border);
}
.upload-thumb img { width: 100%; height: 100%; object-fit: cover; }
.upload-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 22px;
  height: 22px;
  background: rgba(46,24,24,0.85);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  line-height: 1;
}

/* --- Header Login-Link (dezent) --- */
.header-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.header-login:hover { color: var(--bordeaux); background: var(--cream); }
@media (max-width: 768px) {
  .header-login span { display: none; }
}
