/* TriWork Baum & Garten — Dark Forest Craftsman
   Farben: #1A1A1A (BG) | #CC794F (Akzent) | #EEEBE5 (Text)
   Fonts: Outfit (Headlines) + Work Sans (Body)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Work+Sans:wght@300;400;500;600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: #1A1A1A;
  color: #EEEBE5;
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: #EEEBE5;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1200px) { .container { padding: 0 2.5rem; } }

/* ── Colors ── */
:root {
  --accent: #CC794F;
  --accent-dark: #b5653c;
  --bg: #1A1A1A;
  --bg-card: #222222;
  --bg-card2: #252525;
  --text: #EEEBE5;
  --text-muted: rgba(238,235,229,0.65);
  --text-dim: rgba(238,235,229,0.4);
  --border: rgba(238,235,229,0.1);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.18s cubic-bezier(0.23,1,0.32,1);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(238,235,229,0.35);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 1.25rem 0;
}
.nav.scrolled {
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.875rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav-logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav-phone:hover { color: var(--accent); }
.nav-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #1A1A1A;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.15s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,26,26,0.88) 0%,
    rgba(26,26,26,0.72) 50%,
    rgba(26,26,26,0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(204,121,79,0.15);
  border: 1px solid rgba(204,121,79,0.35);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.hero-trust-item svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 600px) {
  .hero-trust { grid-template-columns: 1fr; }
}

/* ── Section Utilities ── */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 6.5rem 0; }

.section-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}

/* ── Services Grid ── */
.services-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-intro .section-sub { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: rgba(204,121,79,0.4);
  transform: translateY(-3px);
}
.service-card-icon {
  width: 64px; height: 64px;
  border-radius: 0;
  overflow: visible;
  margin-bottom: 1rem;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  flex-shrink: 0;
}
.service-card-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  object-position: center;
}
.service-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
}
.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── About / Split Layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse { direction: ltr; }
}

.split-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}
.split-img-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: rgba(26,26,26,0.9);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.split-img-badge-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.split-img-badge-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 1.5rem 0 2rem;
}
.about-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.about-bullet svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Problem / Solution ── */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 860px) { .problem-solution { grid-template-columns: 1fr; } }

.problem-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}
.problem-box h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}
.problem-box p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.problem-item svg {
  width: 16px; height: 16px;
  color: #e05555;
  flex-shrink: 0;
  margin-top: 2px;
}

.solution-box {
  background: rgba(204,121,79,0.06);
  border: 1px solid rgba(204,121,79,0.25);
  border-radius: 4px;
  padding: 2rem;
}
.solution-box h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}
.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.solution-item svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Quote Banner ── */
.quote-banner {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.quote-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
}
.quote-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.82);
}
.quote-banner-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.quote-mark {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 1rem;
}
.quote-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.quote-author {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars {
  display: flex;
  gap: 2px;
  color: #f5a623;
  font-size: 0.875rem;
}
.review-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.review-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
}
.review-location {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.review-service {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(204,121,79,0.1);
  border-radius: 2px;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
}

.reviews-cta {
  text-align: center;
}
.reviews-cta a {
  font-size: 0.875rem;
  color: var(--accent);
  border-bottom: 1px solid rgba(204,121,79,0.4);
  padding-bottom: 1px;
  transition: border-color 0.15s;
}
.reviews-cta a:hover { border-color: var(--accent); }

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg-card);
  cursor: pointer;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--bg-card2); }
.faq-question.open { color: var(--accent); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.25s;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--bg-card);
}
.faq-answer.open { display: block; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(204,121,79,0.12);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--accent); }
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0.25rem;
}
.contact-info-value {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-info-value a { color: var(--text); transition: color 0.15s; }
.contact-info-value a:hover { color: var(--accent); }

.contact-region {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.contact-region-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0.5rem;
}
.contact-region-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Form */
.form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}
.form-title {
  font-size: 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
}
.form-input,
.form-textarea,
.form-select {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color 0.15s;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23CC794F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-select option { background: #222; color: var(--text); }

.form-submit {
  margin-top: 1.25rem;
  width: 100%;
  justify-content: center;
  font-size: 0.9375rem;
  padding: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 56px; height: 56px;
  background: rgba(204,121,79,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.form-success-icon svg { width: 28px; height: 28px; color: var(--accent); }
.form-success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9375rem; color: var(--text-muted); }

/* ── Footer ── */
.footer {
  background: #141414;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
}
.footer-brand-logo img { height: 32px; }
.footer-brand-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
}
.footer-brand-logo-text span { color: var(--accent); }
.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.625rem;
  line-height: 1.5;
}
.footer-contact-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--text-muted); transition: color 0.15s; }
.footer-contact-item a:hover { color: var(--accent); }

.footer-region-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}
.footer-region-item a { color: var(--text-muted); transition: color 0.15s; }
.footer-region-item a:hover { color: var(--accent); }
.footer-region-item.active a { color: var(--accent); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-dim);
}
.footer-legal {
  display: flex;
  gap: 1.25rem;
}
.footer-legal a {
  font-size: 0.8125rem;
  color: var(--text-dim);
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--text-muted); }

/* ── Utility ── */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.bg-dark2 { background: var(--bg-card); }

/* ── Scroll animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.23,1,0.32,1), transform 0.55s cubic-bezier(0.23,1,0.32,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ── Legal pages ── */
.legal-page {
  padding: 8rem 0 5rem;
  min-height: 80vh;
}
.legal-page h1 {
  font-size: 2.25rem;
  margin-bottom: 2.5rem;
}
.legal-section {
  margin-bottom: 2rem;
}
.legal-section h2 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 0.75rem;
}
.legal-section p,
.legal-section address {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: normal;
}
.legal-section a { color: var(--accent); }
.legal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

/* ── Nav Dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown-toggle svg { transition: transform 0.2s; flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
/* Unsichtbare Brücke zwischen Toggle und Menü verhindert Gap-Problem */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.75rem; /* Abstand als padding, nicht als top-Offset */
  background: transparent;
  z-index: 100;
  min-width: 250px;
}
.nav-dropdown-menu::before {
  /* Sichtbares Menü-Panel als Pseudo-Element */
  content: '';
  display: none;
}
.nav-dropdown-menu-inner {
  background: #1f1f1f;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
/* Dropdown wird per JS gesteuert (siehe main.js) — kein CSS-Hover nötig */
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu li a { display: block; padding: 0.55rem 0.9rem; font-size: 0.875rem; color: var(--text-muted); border-radius: 6px; transition: background 0.15s, color 0.15s; white-space: nowrap; }
.nav-dropdown-menu li a:hover { background: rgba(204,121,79,0.12); color: var(--accent); }

/* ============================================================
   COOKIE-BANNER (DSGVO / Consent Mode v2)
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #1a1a1a;
  border-top: 1px solid rgba(204,121,79,0.3);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { margin: 0; font-size: 0.875rem; color: #c8c4bc; line-height: 1.5; flex: 1; min-width: 200px; }
#cookie-banner p a { color: #CC794F; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept { background: #CC794F; color: #fff; border: none; padding: 0.6rem 1.25rem; border-radius: 6px; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: background 0.2s, transform 0.1s; white-space: nowrap; }
.cookie-btn-accept:hover { background: #b8622e; }
.cookie-btn-accept:active { transform: scale(0.97); }
.cookie-btn-decline { background: transparent; color: #c8c4bc; border: 1px solid rgba(200,196,188,0.3); padding: 0.6rem 1.25rem; border-radius: 6px; font-size: 0.875rem; cursor: pointer; transition: border-color 0.2s, color 0.2s, transform 0.1s; white-space: nowrap; }
.cookie-btn-decline:hover { border-color: rgba(200,196,188,0.6); color: #fff; }
.cookie-btn-decline:active { transform: scale(0.97); }
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}
