/* ══════════════════════════════════════════════════════════
   FRISEUR TEMPLATE — Design System
   volt Digitalagentur · Vanilla CSS · Kein Build-Step
   ══════════════════════════════════════════════════════════ */

/* ── 1. CSS VARIABLEN (aus config.json übernehmen) ── */
:root {
  /* Farben */
  --color-bg:        #faf8f5;
  --color-surface:   #ffffff;
  --color-surface-alt: #f4f0eb;
  --color-border:    #e8e0d6;
  --color-heading:   #1a1714;
  --color-text:      #2d2420;
  --color-text-muted:#6b6560;

  /* Akzent: Terrakotta / Kupfer */
  --accent:          #c8956c;
  --accent-dark:     #a3704d;
  --accent-light:    #f5ede5;
  --accent-hover:    #b8804e;

  /* Sekundärfarbe */
  --secondary:       #2c1810;

  /* Fonts */
  --font-display:    'Playfair Display', Georgia, serif;
  --font-body:       'DM Sans', system-ui, sans-serif;

  /* Layout */
  --container-width: 1200px;
  --radius:          12px;
  --radius-lg:       20px;
  --radius-full:     9999px;

  /* Schatten */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.16);

  /* Abstände */
  --section-py: 96px;
  --section-py-sm: 64px;

  /* Transitions */
  --transition: 0.22s ease;
  --transition-slow: 0.4s ease;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── 3. TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.75; }

/* ── 4. LAYOUT ── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 28px;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: var(--section-py) 0;
}

.section-alt {
  background: var(--color-surface-alt);
}

/* ── 5. SECTION LABELS ── */
.section-label-group { margin-bottom: 48px; }
.section-label-group.center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-label-group.center .section-subtitle {
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── 6. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,149,108,.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.15);
  border-color: white;
}

.btn-sm { padding: 10px 20px; font-size: 0.88rem; min-height: 40px; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; min-height: 56px; }
.btn-full { width: 100%; }

/* ── 7. NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,248,245,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-heading);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
  background: var(--accent-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition);
}

.nav-phone:hover { color: var(--accent); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.hamburger:hover { background: var(--color-surface-alt); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 20px 28px 28px;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.mobile-menu.active { display: block; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all var(--transition);
}

.mobile-menu a:hover { background: var(--accent-light); color: var(--accent); }

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.mobile-phone-link {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 10px;
}

/* ── 8. HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2c1810;
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,16,8,.72) 0%,
    rgba(28,16,8,.45) 60%,
    rgba(28,16,8,.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 80px 28px;
  color: white;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,.9);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-headline {
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.hero-subline {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,.9);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.trust-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  animation: bounce 2s infinite;
  transition: color var(--transition);
  z-index: 1;
}

.hero-scroll:hover { color: white; }

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

/* ── 9. SERVICES ── */
.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.services-tab {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-surface);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-tab:hover,
.services-tab.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-heading);
  line-height: 1.3;
}

.service-price-wrap {
  text-align: right;
  flex-shrink: 0;
}

.service-price-type {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 2px;
}

.service-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-dark);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

.service-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-meta svg { width: 13px; height: 13px; }

.service-book-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 8px 18px;
  font-size: 0.82rem;
  min-height: 36px;
}

.services-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--color-surface-alt);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

/* ── 10. TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-surface-alt);
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-photo img { transform: scale(1.03); }

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-light), var(--color-border));
}

.team-initials {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.6;
}

.team-info {
  padding: 20px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.team-tag {
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.team-instagram {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.team-instagram:hover { color: var(--accent); }
.team-instagram svg { width: 14px; height: 14px; }

/* ── 11. GALERIE ── */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.gallery-filter-btn {
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-surface);
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--accent-light);
}

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

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  background: var(--color-surface-alt);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,16,8,.5);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 16px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-zoom-icon {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.gallery-zoom-icon svg { width: 18px; height: 18px; }

.gallery-item.hidden { display: none; }

/* ── 12. BEWERTUNGEN ── */
.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  padding: 24px 32px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
}

.google-logo { font-size: 0.85rem; font-weight: 700; color: var(--color-text-muted); }

.google-score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1;
}

.google-stars {
  display: flex;
  gap: 3px;
}

.google-stars .star svg { width: 20px; height: 20px; }

.star svg { fill: #d1d5db; stroke: none; }
.star.filled svg { fill: #f59e0b; }

.google-count {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.google-link {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-stars .star svg { width: 16px; height: 16px; }

.review-text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-text::before { content: '"'; }
.review-text::after { content: '"'; }

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-source {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  background: var(--color-surface-alt);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.review-date {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.presse-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.presse-logo-item {
  text-align: center;
}

.presse-quote {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 6px;
}

/* ── 13. ÜBER UNS ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-surface-alt);
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5ede5, #e8d5c4, #c8956c33);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.about-content .section-label { display: block; margin-bottom: 8px; }

.about-title {
  margin-bottom: 20px;
}

.about-text {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-philosophy {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 28px;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.about-badge svg { width: 15px; height: 15px; color: var(--accent); }

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.brand-logo-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

/* ── 14. ÖFFNUNGSZEITEN + KONTAKT ── */
.hours-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.hours-block,
.contact-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.block-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.block-title svg { color: var(--accent); width: 22px; height: 22px; }

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--color-surface-alt);
}

.hours-row:last-child { border-bottom: none; }

.hours-day { font-weight: 600; color: var(--color-heading); }
.hours-time { color: var(--color-text-muted); }
.hours-time.closed { color: #e74c3c; font-weight: 600; }

.hours-note {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--accent-light);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
}

.contact-item-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-item-icon svg { width: 18px; height: 18px; }

.contact-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.contact-item-value {
  font-weight: 500;
  color: var(--color-text);
}

.contact-item-value a {
  color: var(--accent);
  transition: color var(--transition);
}

.contact-item-value a:hover { color: var(--accent-dark); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: white;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
  transition: all var(--transition);
}

.whatsapp-btn:hover { background: #128c7e; transform: translateY(-1px); }
.whatsapp-btn svg { width: 16px; height: 16px; }

.map-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-surface-alt);
  box-shadow: var(--shadow-sm);
}

.map-block iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  background: linear-gradient(135deg, #f4f0eb, #e8e0d6);
}

.map-placeholder svg { width: 40px; height: 40px; color: var(--accent); }

/* ── 15. FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item.active { box-shadow: var(--shadow-md); border-color: var(--accent); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
  min-height: 44px;
}

.faq-question:hover { background: var(--color-surface-alt); }
.faq-item.active .faq-question { background: var(--accent-light); color: var(--accent-dark); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--color-text-muted);
}

.faq-item.active .faq-icon {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
  transform: rotate(45deg);
}

.faq-icon svg { width: 12px; height: 12px; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.faq-answer.open {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ── 16. BOOKING CTA BANNER ── */
.section-booking-cta {
  background: linear-gradient(135deg, var(--secondary) 0%, #4a2518 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-booking-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.08;
}

.booking-cta-inner {
  position: relative;
  text-align: center;
  color: white;
}

.booking-cta-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.booking-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 16px;
}

.booking-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.booking-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.booking-fallback {
  margin-top: 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.5);
}

.booking-fallback a { color: rgba(255,255,255,.8); text-decoration: underline; }

/* ── 17. NEWS ── */
.section-news {
  background: var(--color-surface-alt);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.news-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.news-card-img {
  aspect-ratio: 16/9;
  background: var(--color-surface-alt);
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news-card:hover .news-card-img img { transform: scale(1.04); }

.news-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--accent-light), var(--color-border));
}

.news-card-body { padding: 24px; }

.news-type-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.news-type-angebot { background: #fef3c7; color: #92400e; }
.news-type-blog { background: #e0f2fe; color: #0c4a6e; }
.news-type-news { background: var(--accent-light); color: var(--accent-dark); }
.news-type-stellenangebot { background: #d1fae5; color: #065f46; }

.news-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
  color: var(--color-heading);
}

.news-card-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.news-card-date {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.news-card-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--transition);
}

.news-card-cta:hover { color: var(--accent-dark); }

/* ── 18. FOOTER ── */
.site-footer {
  background: var(--secondary);
  color: rgba(255,255,255,.8);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: white;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}

.footer-social-link:hover { background: var(--accent); color: white; }
.footer-social-link svg { width: 18px; height: 18px; }

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent); }

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}

.footer-contact-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.footer-hours-mini {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,.6);
  gap: 8px;
}

.footer-hours-row .day { font-weight: 600; color: rgba(255,255,255,.8); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}

.footer-legal-links a:hover { color: rgba(255,255,255,.8); }

/* ── 19. LIGHTBOX ── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9000;
  cursor: pointer;
}

.lightbox-overlay.active { display: block; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9001;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.lightbox.active {
  display: flex;
}

.lightbox-figure {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  pointer-events: all;
  text-align: center;
}

.lightbox-figure img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: var(--shadow-xl);
}

.lightbox-caption {
  color: rgba(255,255,255,.7);
  font-size: 0.9rem;
  margin-top: 12px;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  pointer-events: all;
  z-index: 9002;
}

.lightbox-close:hover { background: rgba(255,255,255,.2); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: white;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  pointer-events: all;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.2); }

/* ── 20. SCROLL ANIMATIONEN ── */
.anim-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* ── 21. RESPONSIVE BREAKPOINTS ── */

/* 1280px — großer Desktop */
@media (max-width: 1280px) {
  .container { padding: 0 40px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 36px; }
  .footer-grid > *:last-child { display: none; }
}

/* 1024px — Laptop */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .container { padding: 0 28px; }
  .about-grid { gap: 48px; }
  .hours-contact-grid { grid-template-columns: 1fr 1fr; }
  .map-block { grid-column: span 2; aspect-ratio: 16/5; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:last-child { display: block; }
}

/* 768px — Tablet: Hamburger */
@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image { max-height: 360px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hours-contact-grid { grid-template-columns: 1fr; }
  .map-block { grid-column: span 1; aspect-ratio: 16/7; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .booking-cta-actions { flex-direction: column; align-items: center; }
}

/* 640px — Mobile L */
@media (max-width: 640px) {
  :root { --section-py: 48px; }

  .hero-content { padding: 60px 28px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }

  .google-rating { flex-direction: column; gap: 8px; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-cta .btn { width: 100%; justify-content: center; }
}

/* 375px — iPhone SE */
@media (max-width: 375px) {
  .container, .container-narrow { padding: 0 16px; }
  .logo-name { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }

  .hero-trust { flex-direction: column; }
  .trust-badge { font-size: 0.75rem; }
}

/* Touch: Hover-Effekte deaktivieren */
@media (hover: none) {
  .service-card:hover,
  .team-card:hover,
  .news-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }
  .gallery-item-overlay { display: none; }
}
