/* ============================================================
   CASTUR – Design System mit Dark/Light Theme Toggle
   ============================================================ */

/* ---------- LIGHT THEME (default) ---------- */
:root,
[data-theme="light"] {
  --black:  #f5f3ef;
  --dark:   #edeae4;
  --dark2:  #ffffff;
  --mid:    #e4e0d8;
  --border: #d6d1c8;
  --text:   #1a1a18;
  --muted:  #6b6560;
  --gold:   #a8882e;
  --gold-l: #c8a84b;
  --white:  #1a1a18;
  --radius: 4px;

  --nav-bg:         rgba(245, 243, 239, 0.96);
  --nav-border:     rgba(168, 136, 46, 0.2);
  --hero-overlay:   linear-gradient(to bottom, rgba(245,243,239,0.72) 0%, rgba(245,243,239,0.38) 42%, rgba(245,243,239,0.88) 100%);
  --hero-text:      rgba(26, 26, 24, 0.72);
  --hero-muted:     rgba(26, 26, 24, 0.5);
  --hero-dot:       rgba(26, 26, 24, 0.25);
  --scroll-hint:    rgba(26, 26, 24, 0.35);
  --logo-filter:    none;
  --footer-filter:  opacity(0.6);
  --map-filter:     none;
  --overlay-bg:     rgba(26, 26, 24, 0.6);
  --ov-box-bg:      #ffffff;
  --shadow-soft:    0 14px 30px rgba(0, 0, 0, 0.08);
  --shadow-overlay: 0 20px 60px rgba(0, 0, 0, 0.12);
  --kontakt-bg:     linear-gradient(to right, rgba(245,243,239,0.97) 42%, rgba(245,243,239,0.82));
  --form-input-bg:  #ffffff;
  --privacy-date:   #b0aca5;
  --opening-note:   #9a9590;
  --footer-copy:    #b0aca5;
  --whatsapp-color: #1a9e4e;
  --whatsapp-hover: #168c43;
  --lightbox-bg:    rgba(26, 26, 24, 0.88);
  --toggle-icon:    "🌙";
  --toggle-label:   "Dark";
  --cta-bg:         linear-gradient(135deg, rgba(168,136,46,0.1), rgba(26,26,24,0.03));
  --cta-border:     rgba(168, 136, 46, 0.28);
  --feature-bg:     #ffffff;
  --target-bg:      #ffffff;
}

/* ---------- DARK THEME ---------- */
[data-theme="dark"] {
  --black:  #0d0d0d;
  --dark:   #141414;
  --dark2:  #1c1c1c;
  --mid:    #282828;
  --border: #2e2e2e;
  --text:   #e8e8e8;
  --muted:  #888888;
  --gold:   #c8a84b;
  --gold-l: #e4c96d;
  --white:  #ffffff;
  --radius: 4px;

  --nav-bg:         rgba(10, 10, 10, 0.95);
  --nav-border:     rgba(200, 168, 75, 0.18);
  --hero-overlay:   linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 42%, rgba(0,0,0,0.8) 100%);
  --hero-text:      rgba(255, 255, 255, 0.72);
  --hero-muted:     rgba(255, 255, 255, 0.4);
  --hero-dot:       rgba(255, 255, 255, 0.22);
  --scroll-hint:    rgba(255, 255, 255, 0.3);
  --logo-filter:    invert(1) brightness(1.1);
  --footer-filter:  invert(1) brightness(0.55);
  --map-filter:     grayscale(1) invert(0.9) contrast(0.9);
  --overlay-bg:     rgba(0, 0, 0, 0.84);
  --ov-box-bg:      #1c1c1c;
  --shadow-soft:    0 14px 30px rgba(0, 0, 0, 0.22);
  --shadow-overlay: none;
  --kontakt-bg:     linear-gradient(to right, rgba(13,13,13,0.97) 42%, rgba(13,13,13,0.75));
  --form-input-bg:  #1c1c1c;
  --privacy-date:   #3a3a3a;
  --opening-note:   #3a3a3a;
  --footer-copy:    #383838;
  --whatsapp-color: #25D366;
  --whatsapp-hover: #40e57f;
  --lightbox-bg:    rgba(0, 0, 0, 0.92);
  --toggle-icon:    "☀️";
  --toggle-label:   "Light";
  --cta-bg:         linear-gradient(135deg, rgba(200,168,75,0.12), rgba(255,255,255,0.03));
  --cta-border:     rgba(200, 168, 75, 0.24);
  --feature-bg:     #1c1c1c;
  --target-bg:      #1c1c1c;
}

/* ---------- THEME TRANSITION ---------- */
*, *::before, *::after {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Ausnahmen: Animationen sollen nicht gebremst werden */
.hero-content > *,
.scroll-hint,
.sort-item,
.gallery-grid img,
.btn,
.nav-links a,
.theme-toggle,
.hero-contact-item,
.whatsapp-float,
.lightbox,
.faq-question span,
.sort-item::after {
  transition: unset;
}

.sort-item {
  transition: background 0.2s, transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-grid img { transition: filter 0.3s; }
.btn { transition: all 0.2s; }
.nav-links a { transition: color 0.2s, background 0.2s; }
.hero-contact-item { transition: color 0.2s ease, transform 0.2s ease; }
.whatsapp-float { transition: transform 0.2s ease, background 0.2s ease; }
.lightbox { transition: opacity 0.25s ease; }
.faq-question span { transition: transform 0.2s ease; }
.sort-item::after { transition: opacity 0.2s, transform 0.2s; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 72px;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nav-border);
}

.nav-logo { display: flex; align-items: center; overflow: visible; }

.nav-logo img {
  height: 48px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  filter: var(--logo-filter);
  display: block;
  transition: filter 0.3s ease;
}

.nav-links { display: flex; gap: 0.1rem; align-items: center; }

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--gold);
  background: rgba(200, 168, 75, 0.08);
}

/* ---------- THEME TOGGLE BUTTON ---------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 1rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 168, 75, 0.07);
}

.theme-toggle .toggle-icon { font-size: 0.85rem; line-height: 1; }

/* ============================================================
   HERO
   ============================================================ */
#HERO {
  height: 100vh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-overlay),
  url('https://images.unsplash.com/photo-1556911220-bff31c812dba?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}

.hero-content { position: relative; z-index: 2; padding: 2rem; }

.hero-logo {
  margin: 0 auto 2rem;
  width: min(260px, 80vw);
  height: auto;
  overflow: visible;
}

.hero-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: var(--logo-filter);
  transition: filter 0.3s ease;
}

.hero-tag {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.38rem 1.1rem;
  margin-bottom: 1.6rem;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-title em {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
}

.hero-sub {
  font-size: 0.97rem;
  font-weight: 300;
  color: white;
  max-width: 500px;
  margin: 0 auto 1.8rem;
  line-height: 1.78;
}

.hero-times {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hero-muted);
  margin-bottom: 2.4rem;
}

.hero-times strong { color: var(--gold); }

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.82rem 2rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-gold { background: var(--gold); color: #ffffff; }
.btn-gold:hover { background: var(--gold-l); }

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline2 {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline2:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   SCROLL HINT
   ============================================================ */
.scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--scroll-hint);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: sbounce 2.4s ease-in-out infinite;
}

.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.6;
}

@keyframes sbounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   LAYOUT
   ============================================================ */
section { padding: 96px 0; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }

.section-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.9rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.3rem;
}

.section-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.88;
  max-width: 560px;
}

.section-text-spaced { margin-top: 1rem; }
.btn-inline-spaced { margin-top: 2rem; display: inline-block; }

hr.gl {
  border: none;
  border-top: 1px solid var(--gold);
  width: 42px;
  margin-bottom: 1.3rem;
}

/* ============================================================
   VIDEO
   ============================================================ */
#VIDEO { background: var(--black); padding: 0; }

.video-wrap { position: relative; width: 100%; max-height: 580px; overflow: hidden; }

.video-wrap video { width: 100%; display: block; max-height: 580px; object-fit: cover; }

.video-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-caption { text-align: center; }

.video-caption h3 {
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.video-caption p {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   ÜBER UNS
   ============================================================ */
#UEBER { background: var(--dark); }

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

.ueber-img { position: relative; }

.ueber-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }

.ueber-img::after {
  content: '';
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1px solid rgba(168, 136, 46, 0.28);
  z-index: -1;
}

/* ============================================================
   ZAHLEN
   ============================================================ */
#ZAHLEN {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }

.stat { padding: 1.5rem; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }

.stat-num {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   GALERIE
   ============================================================ */
#GALERIE { background: var(--dark2); padding-bottom: 80px; }

.gallery-header { margin-bottom: 2.5rem; }

.gallery-wrap { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  cursor: zoom-in;
  transition: filter 0.3s;
}

.gallery-grid img:hover { filter: brightness(1); }
.gallery-grid .tall { height: 310px; }


/* ============================================================
   MARKEN
   ============================================================ */
#MARKEN { background: var(--dark2); padding-top: 0; padding-bottom: 90px; }

.brand-text { margin-bottom: 2.4rem; }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(172px, 1fr));
  gap: 5px;
}

.brand-card {
  min-height: 168px;
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.brand-card::after {
  content: 'Website öffnen';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-card:hover,
.brand-card:focus-visible {
  background: var(--mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.brand-card:hover::after,
.brand-card:focus-visible::after { opacity: 1; transform: translateY(0); }

.brand-logo-wrap {
  width: 100%;
  max-width: 148px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 0.7rem;
}

.brand-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
  line-height: 1.45;
}

/* ============================================================
   SORTIMENT
   ============================================================ */
#SORTIMENT { background: var(--dark); }

.sort-title { margin-bottom: 0.7rem; }
.sort-text  { margin-bottom: 3rem; }

.sort-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(172px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
}

.sort-item {
  background: var(--dark2);
  padding: 1.7rem 1.25rem;
  text-align: center;
  transition: background 0.2s, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: 0;
  outline: none;
}

.sort-item:hover {
  background: var(--mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.sort-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
  background: var(--mid);
}

.sort-item::after {
  content: 'Mehr erfahren';
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}

.sort-item:hover::after,
.sort-item:focus-visible::after { opacity: 1; transform: translateY(0); }

.sort-icon { font-size: 2rem; margin-bottom: 0.62rem; display: block; }

.sort-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.sort-sub { font-size: 0.7rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   ANFAHRT
   ============================================================ */
#ANFAHRT {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.map-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.2rem;
}

.map-box {
  background: var(--dark2);
  border: 1px solid var(--border);
  padding: 6px;
  overflow: hidden;
}

.map-box iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  filter: var(--map-filter);
  transition: filter 0.3s ease;
}

/* ============================================================
   KONTAKT
   ============================================================ */
#KONTAKT {
  background: var(--kontakt-bg),
  url('https://images.unsplash.com/photo-1515003197210-e0cd71810b5f?w=1600&q=80') right center/cover no-repeat;
}

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

.k-info p { font-size: 0.87rem; font-weight: 300; color: var(--muted); line-height: 2.1; margin-bottom: 1.4rem; }
.k-info strong { color: var(--text); font-weight: 600; }
.k-info a { color: var(--gold); text-decoration: none; }
.k-info a:hover { text-decoration: underline; }

.hours-tbl { width: 100%; border-collapse: collapse; margin: 0.4rem 0 2rem; }
.hours-tbl tr { border-bottom: 1px solid var(--border); }
.hours-tbl td { padding: 0.58rem 0; font-size: 0.82rem; color: var(--muted); }
.hours-tbl td:last-child { text-align: right; font-weight: 600; color: var(--text); }

.opening-note { font-size: 0.78rem; color: var(--opening-note); line-height: 1.7; }

.fg { margin-bottom: 0.9rem; }

.fg label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.42rem;
}

.fg input, .fg textarea {
  width: 100%;
  background: var(--form-input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.86rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.fg input:focus, .fg textarea:focus { border-color: var(--gold); }
.fg textarea { resize: vertical; min-height: 100px; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

.chk { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 1.2rem; }
.chk input { margin-top: 0.2rem; accent-color: var(--gold); flex-shrink: 0; }
.chk label { font-size: 0.74rem; color: var(--muted); line-height: 1.55; }
.chk a { color: var(--gold); text-decoration: none; }

.form-submit { width: 100%; padding: 1rem; }

.form-ok {
  display: none;
  border: 1px solid var(--gold);
  background: rgba(168, 136, 46, 0.08);
  padding: 1rem 1.25rem;
  color: var(--gold);
  font-size: 0.82rem;
  margin-top: 1rem;
}
.form-ok.show { display: block; }

/* ============================================================
   OVERLAYS
   ============================================================ */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--overlay-bg);
  backdrop-filter: blur(8px);
  overflow-y: auto;
}
.overlay.open { display: block; }

.ov-box {
  max-width: 740px;
  margin: 56px auto;
  background: var(--ov-box-bg);
  border: 1px solid var(--border);
  padding: 3rem;
  position: relative;
  box-shadow: var(--shadow-overlay);
}

.ov-close {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  background: none; border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
}
.ov-close:hover { color: var(--gold); }

.ov-box h1 { font-size: 1.6rem; font-weight: 900; text-transform: uppercase; margin-bottom: 2rem; color: var(--text); }
.ov-box h2 { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; color: var(--gold); margin: 1.6rem 0 0.5rem; }
.ov-box p, .ov-box li { font-size: 0.86rem; color: var(--muted); line-height: 1.82; margin-bottom: 0.45rem; }
.ov-box ul { padding-left: 1.5rem; }
.ov-box a { color: var(--gold); }
.privacy-date { margin-top: 2rem; font-size: 0.75rem; color: var(--privacy-date); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 2.2rem 2rem;
  text-align: center;
}

footer img {
  height: 36px;
  filter: var(--footer-filter);
  margin-bottom: 1.2rem;
  transition: filter 0.3s ease;
}

.foot-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 0.8rem; }

.foot-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.foot-links a:hover { color: var(--gold); }

footer p { font-size: 0.68rem; color: var(--footer-copy); }

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

.hero-content > * { animation: fadeUp 0.8s ease both; }
.hero-logo    { animation-delay: 0.05s; }
.hero-tag     { animation-delay: 0.2s; }
.hero-title   { animation-delay: 0.32s; }
.hero-sub     { animation-delay: 0.44s; }
.hero-times   { animation-delay: 0.54s; }
.hero-buttons { animation-delay: 0.64s; }

/* ============================================================
   HERO CONTACT + WHATSAPP
   ============================================================ */
.hero-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--hero-text);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.hero-contact-item:hover { color: var(--gold); transform: translateY(-1px); }
.hero-contact-item strong { font-size: 0.72rem; letter-spacing: 0.08em; }

.hero-dot { color: var(--hero-dot); }

.whatsapp-link { color: var(--whatsapp-color); }
.whatsapp-link:hover { color: var(--whatsapp-hover); }
.whatsapp-link svg { width: 18px; height: 18px; display: block; }

/* ============================================================
   WARUM / STIMMEN / FAQ / ZIELGRUPPEN / CTA
   ============================================================ */
#WARUM, #STIMMEN, #FAQ { background: var(--dark); }

#ZIELGRUPPEN, #CTA {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-grid, .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  margin-top: 2.4rem;
}

.feature-card, .testimonial-card {
  background: var(--feature-bg);
  padding: 1.8rem;
}

.feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid rgba(200, 168, 75, 0.45);
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.feature-card h3 {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text); margin-bottom: 0.7rem;
}

.feature-card p, .testimonial-card p { color: var(--muted); font-size: 0.82rem; line-height: 1.75; }

.target-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  margin-top: 2.4rem;
}

.target-card {
  background: var(--target-bg);
  padding: 1.6rem 1rem;
  text-align: center;
  font-size: 1.9rem;
}

.target-card strong {
  display: block; margin-top: 0.7rem;
  font-size: 0.68rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--text);
}

.testimonial-grid { grid-template-columns: repeat(3, 1fr); }

.testimonial-card p {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--hero-text);
  margin-bottom: 1.2rem;
}

.testimonial-card strong { color: var(--gold); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; }

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--cta-bg);
  border: 1px solid var(--cta-border);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 880px; margin-top: 2.4rem; border: 1px solid var(--border); }
.faq-item + .faq-item { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: var(--dark2);
  color: var(--text);
  border: 0;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
}

.faq-question span {
  color: var(--gold);
  font-size: 1.2rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

.faq-answer { display: none; background: var(--black); padding: 0 1.4rem 1.3rem; }
.faq-answer p { color: var(--muted); font-size: 0.85rem; line-height: 1.8; }

.faq-item.open .faq-answer  { display: block; }
.faq-item.open .faq-question span { transform: rotate(45deg); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--lightbox-bg);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open { opacity: 1; pointer-events: auto; }

.lightbox img { max-width: 92vw; max-height: 86vh; object-fit: contain; box-shadow: 0 16px 60px rgba(0,0,0,0.4); }

.lightbox-close {
  position: absolute;
  top: 22px; right: 24px;
  background: none; border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}

.lightbox-close:hover, .lightbox-arrow:hover { color: var(--gold-l); }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.5);
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 350;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 14px 36px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ============================================================
   NAV RIGHT + BURGER
   ============================================================ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Burger versteckt auf Desktop */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

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

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
}

/* X-Zustand wenn offen */
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 190;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--nav-border);
  padding: 0.5rem 0 1rem;

  /* Animation */
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
  opacity 0.32s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-link {
  display: block;
  padding: 0.85rem 1.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}

.mobile-link:last-child { border-bottom: none; }

.mobile-link:hover,
.mobile-link.is-active {
  color: var(--gold);
  background: rgba(200, 168, 75, 0.06);
}

/* Burger einblenden auf Mobile */
@media (max-width: 768px) {
  .burger { display: flex; }
}

@media (max-width: 980px) {
  .feature-grid  { grid-template-columns: repeat(2, 1fr); }
  .target-grid   { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .cta-box       { flex-direction: column; align-items: flex-start; }
  .cta-actions   { justify-content: flex-start; }
}

@media (max-width: 768px) {
  nav {
    padding: 0 1.25rem;
    height: 64px;
  }
  .nav-links { display: none; }
  .toggle-text { display: none; }
  .theme-toggle { padding: 0.4rem 0.6rem; }
  .frow { grid-template-columns: 1fr; }
  .ov-box { margin: 24px 1rem; padding: 2rem 1.25rem; }
  .map-head { display: block; }
  .map-head .btn { margin-top: 1.5rem; }
  .map-box iframe { min-height: 320px; }
  .hero-contact { flex-direction: column; gap: 0.9rem; }
  .hero-dot { display: none; }
  .ueber-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .target-grid { grid-template-columns: 1fr; }
  .lightbox { padding: 1rem; }
  .lightbox-arrow { width: 42px; height: 42px; font-size: 2rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 14px; right: 16px; }
  .whatsapp-float { right: 14px; bottom: 14px; padding: 0.85rem; }
  .whatsapp-float span { display: none; }
}

@media (max-width: 600px) {
  .hero-logo { width: min(220px, 75vw); }
  .nav-logo img { max-width: 120px; height: auto; }
}

@media (max-width: 580px) {
  .gallery-grid, .brand-grid { grid-template-columns: 1fr 1fr; }
  .brand-card { min-height: 150px; }
}