/* ============================================================
   BEAUTY MUSTER — main.css
   Design System: Bergstraße Digital
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --color-primary:    #2a2a2a;
  --color-accent:     #c9a4a4;
  --color-accent-dark:#b08888;
  --color-bg:         #ffffff;
  --color-bg-alt:     #fdf6f6;
  --color-text:       #2a2a2a;
  --color-text-light: #888888;
  --color-border:     #f0e8e8;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;
  --font-size-base: 16px;
  --line-height:  1.7;

  --spacing-xs:  0.5rem;
  --spacing-sm:  1rem;
  --spacing-md:  2rem;
  --spacing-lg:  4rem;
  --spacing-xl:  6rem;

  --border-radius: 2px;
  --shadow:       0 2px 20px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.1);

  --header-height: 70px;
  --banner-height: 37px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: var(--font-size-base); }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: var(--line-height);
  padding-top: calc(var(--banner-height) + var(--header-height));
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
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 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1rem; }
.section-subtitle {
  color: var(--color-text-light);
  font-size: 1rem;
  max-width: 520px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,164,164,0.4);
}
.btn-outline {
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}
.btn-outline:hover {
  background: var(--color-accent);
  color: #fff;
}
.btn-dark {
  background: var(--color-primary);
  color: #fff;
}
.btn-dark:hover {
  background: #3d3d3d;
  transform: translateY(-1px);
}

/* --- Demo Banner --- */
.demo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  height: var(--banner-height);
}
.demo-banner a { color: var(--color-accent); font-weight: 600; text-decoration: none; }
.demo-banner a:hover { text-decoration: underline; }
.demo-logo { height: 20px; filter: brightness(0) invert(1); }

/* --- Header --- */
.site-header {
  position: fixed;
  top: var(--banner-height);
  left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  white-space: nowrap;
}
.site-logo span { color: var(--color-accent); }

.site-nav { display: flex; align-items: center; gap: var(--spacing-md); }
.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.site-nav a:hover, .site-nav a.active { color: var(--color-accent); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: var(--spacing-sm); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-primary);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* --- Sections --- */
.section { padding: var(--spacing-xl) 0; }
.section-alt { background: var(--color-bg-alt); }
.section-header { margin-bottom: var(--spacing-lg); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: calc(90vh - var(--banner-height) - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f8eded 0%, #fdf6f6 40%, #f5e8e8 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: linear-gradient(145deg, rgba(201,164,164,0.12) 0%, rgba(201,164,164,0.05) 100%);
  border-radius: 50%;
}
.hero-image-block {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
}
.hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #e8d5d5 0%, #d4b8b8 50%, #c9a4a4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-placeholder-inner {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-placeholder-inner svg {
  width: 60px;
  height: 60px;
  stroke: rgba(255,255,255,0.5);
  fill: none;
  stroke-width: 1;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 50%;
  padding: var(--spacing-xl) var(--spacing-md);
  padding-right: var(--spacing-xl);
}
.hero-content h1 { margin-bottom: var(--spacing-sm); }
.hero-content h1 em {
  font-style: italic;
  color: var(--color-accent);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  max-width: 440px;
}
.hero-actions { display: flex; gap: var(--spacing-sm); flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; stroke: var(--color-accent); fill: none; stroke-width: 1.5; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}
.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: var(--spacing-md) var(--spacing-md) calc(var(--spacing-md) * 1.2);
  border-radius: var(--border-radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--color-accent); fill: none; stroke-width: 1.5; }
.service-card h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.service-card p { color: var(--color-text-light); font-size: 0.9rem; }

/* --- Gallery Teaser (index) --- */
.gallery-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: var(--spacing-md);
}
.gallery-teaser-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--border-radius);
  position: relative;
}
.gallery-teaser-item .img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.gallery-teaser-item:hover .img-placeholder { transform: scale(1.05); }
.gallery-actions { text-align: center; }

/* --- Image Placeholder (generic) --- */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.img-placeholder-1 { background: linear-gradient(135deg, #d4b5b5, #c9a4a4); }
.img-placeholder-2 { background: linear-gradient(135deg, #c9a4a4, #d4b5b5); }
.img-placeholder-3 { background: linear-gradient(135deg, #e0c8c8, #d4b5b5); }
.img-placeholder-4 { background: linear-gradient(135deg, #b89090, #c9a4a4); }
.img-placeholder-5 { background: linear-gradient(135deg, #dbc5c5, #c9a4a4); }
.img-placeholder-6 { background: linear-gradient(135deg, #c9a4a4, #b89090); }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}
.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-accent);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--spacing-sm);
}
.testimonial-stars span { color: var(--color-accent); font-size: 1rem; }
.testimonial-text {
  color: var(--color-text-light);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
}
.testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.cta-banner h2 em { color: var(--color-accent); font-style: italic; }
.cta-banner p {
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
}

/* --- Footer --- */
.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.7);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}
.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: var(--spacing-sm);
}
.footer-brand .footer-logo span { color: var(--color-accent); }
.footer-brand p { font-size: 0.875rem; line-height: 1.8; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--color-accent); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--color-accent); }
.footer-legal { display: flex; gap: var(--spacing-md); }

/* ============================================================
   LEISTUNGEN (Services Page)
   ============================================================ */
.page-hero {
  background: var(--color-bg-alt);
  padding: var(--spacing-xl) 0;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.page-hero .section-label { margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--color-text-light); max-width: 500px; margin: 0 auto; }

.leistungen-kategorie { padding: var(--spacing-xl) 0; }
.leistungen-kategorie + .leistungen-kategorie { padding-top: 0; }

.kategorie-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-border);
}
.kategorie-icon {
  width: 56px;
  height: 56px;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kategorie-icon svg { width: 26px; height: 26px; stroke: var(--color-accent); fill: none; stroke-width: 1.5; }

.leistungen-table { width: 100%; border-collapse: collapse; }
.leistungen-table thead th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  border-bottom: 1px solid var(--color-border);
}
.leistungen-table thead th:last-child { text-align: right; }
.leistungen-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}
.leistungen-table tbody tr:hover { background: var(--color-bg-alt); }
.leistungen-table tbody tr:last-child { border-bottom: none; }
.leistungen-table td {
  padding: 1.1rem 1rem;
  vertical-align: top;
}
.leistungen-table .leistung-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.2rem;
}
.leistungen-table .leistung-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
}
.leistungen-table .leistung-dauer {
  color: var(--color-text-light);
  font-size: 0.875rem;
  white-space: nowrap;
}
.leistungen-table .leistung-preis {
  text-align: right;
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--color-primary);
}
.leistungen-cta { padding: var(--spacing-xl) 0; background: var(--color-bg-alt); }

/* ============================================================
   GALERIE (Gallery Page)
   ============================================================ */
.gallery-filter {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 20px;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-light);
  background: var(--color-bg);
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(201,164,164,0.05);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.gallery-item-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  aspect-ratio: 2 / 1;
}
.gallery-before, .gallery-after {
  position: relative;
  overflow: hidden;
}
.gallery-before .img-placeholder,
.gallery-after .img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.gallery-item:hover .img-placeholder { transform: scale(1.04); }
.gallery-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 2px 8px;
  border-radius: 2px;
}

/* Lightbox (CSS-only, :target) */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
}
.lightbox-overlay:target { display: flex; }
.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}
.lightbox-panel {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.lightbox-panel .img-placeholder { width: 100%; height: 100%; }
.lightbox-panel-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}
.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.gallery-item a.gallery-trigger {
  display: block;
  cursor: zoom-in;
}
.gallery-caption {
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  font-size: 0.875rem;
}
.gallery-caption strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  display: block;
}
.gallery-caption span { color: var(--color-text-light); font-size: 0.8rem; }

/* ============================================================
   TEAM Page
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}
.team-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.team-photo {
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
}
.team-photo .img-placeholder { width: 100%; height: 100%; }
.team-info { padding: var(--spacing-md); }
.team-info h3 { margin-bottom: 0.25rem; font-size: 1.4rem; }
.team-speciality {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
  display: block;
}
.team-info p { font-size: 0.875rem; color: var(--color-text-light); }

.team-values { background: var(--color-bg-alt); padding: var(--spacing-xl) 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}
.value-item { text-align: center; padding: var(--spacing-md); }
.value-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.value-item h4 { margin-bottom: 0.5rem; }
.value-item p { color: var(--color-text-light); font-size: 0.9rem; }

/* ============================================================
   KONTAKT Page
   ============================================================ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-xl);
  align-items: start;
}
.kontakt-info { }
.kontakt-info h2 { margin-bottom: var(--spacing-sm); }
.kontakt-info > p { color: var(--color-text-light); margin-bottom: var(--spacing-lg); }

.kontakt-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-border);
}
.kontakt-detail:last-of-type { border-bottom: none; }
.kontakt-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kontakt-detail-icon svg { width: 20px; height: 20px; stroke: var(--color-accent); fill: none; stroke-width: 1.5; }
.kontakt-detail-text h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}
.kontakt-detail-text p, .kontakt-detail-text a {
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1.6;
}
.kontakt-detail-text a:hover { color: var(--color-accent); }

.oeffnungszeiten-table { width: 100%; border-collapse: collapse; }
.oeffnungszeiten-table tr { border-bottom: 1px solid var(--color-border); }
.oeffnungszeiten-table tr:last-child { border-bottom: none; }
.oeffnungszeiten-table td { padding: 0.5rem 0; font-size: 0.9rem; }
.oeffnungszeiten-table td:last-child { text-align: right; color: var(--color-text-light); }
.oeffnungszeiten-table .today { color: var(--color-accent); font-weight: 500; }

/* Booking Form */
.booking-form-wrap {
  background: var(--color-bg-alt);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
}
.booking-form-wrap h2 { margin-bottom: 0.5rem; }
.booking-form-wrap > p { color: var(--color-text-light); margin-bottom: var(--spacing-md); font-size: 0.9rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
}
.form-group select { 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='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-privacy { font-size: 0.78rem; color: var(--color-text-light); margin-bottom: var(--spacing-sm); }
.form-privacy a { color: var(--color-accent); text-decoration: underline; }
.form-submit { width: 100%; padding: 1rem; font-size: 0.9rem; }

/* Maps */
.maps-section { padding: var(--spacing-lg) 0; background: var(--color-bg-alt); }
.maps-iframe {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: var(--border-radius);
  filter: grayscale(20%);
}

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

/* 1024px */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--spacing-lg) var(--spacing-md); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .kontakt-grid { grid-template-columns: 1fr 1fr; gap: var(--spacing-lg); }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* 768px */
@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  /* Header */
  .site-nav {
    position: fixed;
    top: calc(var(--banner-height) + var(--header-height));
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: var(--spacing-md);
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    transition: transform var(--transition);
    box-shadow: var(--shadow);
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
  }
  .site-nav a::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: var(--spacing-sm); }
  .nav-cta .btn { width: 100%; text-align: center; display: block; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { min-height: auto; padding: var(--spacing-lg) 0; }
  .hero-image-block { display: none; }
  .hero-content { width: 100%; padding: var(--spacing-lg) var(--spacing-md); }
  .hero-bg::before { display: none; }
  .hero-scroll { display: none; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .gallery-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer-legal { flex-direction: column; gap: 0.5rem; }

  /* Leistungen */
  .leistungen-table thead { display: none; }
  .leistungen-table tbody tr { display: block; padding: 1rem 0; }
  .leistungen-table td { display: block; padding: 0.25rem 0; }
  .leistungen-table .leistung-preis { text-align: left; font-size: 1.1rem; color: var(--color-accent); }
  .leistungen-table .leistung-dauer::before { content: "Dauer: "; color: var(--color-text-light); }

  /* Booking form */
  .booking-form-wrap { padding: var(--spacing-md); }

  /* Gallery */
  .gallery-item-inner { grid-template-columns: 1fr 1fr; }
  .lightbox-content { grid-template-columns: 1fr; }

  /* Page hero */
  .page-hero { padding: var(--spacing-lg) 0; }
}

@media (max-width: 480px) {
  .gallery-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .demo-banner { font-size: 11px; padding: 8px 10px; gap: 6px; }
}

/* --- Utility --- */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.divider { border: none; border-top: 1px solid var(--color-border); margin: var(--spacing-md) 0; }
