/* ===========================================================
   SELBST GEHOSTETE SCHRIFTEN (kein Google-Fonts-Aufruf)
   Lora & Work Sans — SIL Open Font License 1.1
   =========================================================== */
@font-face {
  font-family: 'Lora';
  src: url('fonts/lora-var.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('fonts/lora-italic-var.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Work Sans';
  src: url('fonts/worksans-var.woff2') format('woff2-variations');
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}

/* ===========================================================
   ALTSTADT FRISEURE — Design tokens
   =========================================================== */
:root {
  --sage: #5C6B47;
  --sage-light: #8A9270;
  --sage-pale: #E8EAE0;
  --cream: #F6F1E7;
  --cream-deep: #EFE7D6;
  --charcoal: #2B2E2C;
  --charcoal-soft: #3A3D3A;
  --gold: #C2A875;
  --gold-soft: #D9C7A0;
  --white: #FFFFFF;
  --ink: #25271F;

  --font-display: 'Athelas', 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  --max-width: 1180px;
  --transition: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ===========================================================
   RESET
   =========================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, dl { list-style: none; }

button { font-family: inherit; border: none; background: none; cursor: pointer; }

:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }

.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ===========================================================
   UTILITY
   =========================================================== */
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-sm);
}
.section-eyebrow.center { text-align: center; }
.section-eyebrow.light { color: var(--gold-soft); }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}
.section-title.center { text-align: center; }
.section-title.light { color: var(--cream); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 2px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--sage);
  color: var(--cream);
  border: 1px solid var(--sage);
}
.btn-primary:hover { background: var(--charcoal); border-color: var(--charcoal); }

.btn-light {
  background: rgba(246, 241, 231, 0.12);
  color: var(--cream);
  border: 1px solid rgba(246, 241, 231, 0.55);
  backdrop-filter: blur(4px);
}
.btn-light:hover { background: var(--cream); color: var(--charcoal); border-color: var(--cream); }

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-ghost:hover { background: var(--charcoal); color: var(--cream); }

/* ===========================================================
   HEADER / NAV
   =========================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43, 46, 44, 0.07);
  transition: padding var(--transition), box-shadow var(--transition);
  padding: 1.1rem 0;
}
.site-header.scrolled {
  box-shadow: 0 2px 18px -6px rgba(43, 46, 44, 0.18);
  padding: 0.75rem 0;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-logo { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.nav-logo-mark { width: 34px; height: 34px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.nav-mobile-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: var(--space-md);
}

.nav-links { display: flex; gap: var(--space-md); flex: 1; justify-content: center; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--sage);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--sage); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal-soft);
  letter-spacing: 0.04em;
}
.lang-option { transition: color var(--transition); cursor: pointer; opacity: 0.6; }
.lang-option.active { opacity: 1; color: var(--sage); }
.lang-divider { opacity: 0.5; color: var(--gold-soft); }

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--charcoal); color: var(--cream); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav-burger span {
  width: 22px; height: 1.5px;
  background: var(--charcoal);
  transition: all var(--transition);
}

/* ===========================================================
   HERO (split layout)
   =========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--cream);
  overflow: hidden;
}

.hero-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem var(--space-lg) var(--space-lg);
  background:
    radial-gradient(ellipse 90% 70% at 30% 20%, rgba(92,107,71,0.07), transparent),
    linear-gradient(165deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.hero-content {
  max-width: 520px;
  animation: heroRise 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: var(--space-md);
}

.hero-wordmark {
  width: 100%;
  max-width: 460px;
  margin-bottom: var(--space-md);
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--charcoal-soft);
  max-width: 440px;
  margin-bottom: var(--space-lg);
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-media { position: relative; overflow: hidden; }
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 25%;
  transform: translateX(-50%);
  width: 1px; height: 50px;
  display: flex; justify-content: center;
  z-index: 2;
}
.scroll-cue span {
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--sage) 40%, transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

/* ===========================================================
   ABOUT
   =========================================================== */
.about { padding: var(--space-xl) var(--space-md); background: var(--cream); }
.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: var(--space-xl);
  align-items: center;
}

.about-image-frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 18px 40px -18px rgba(43,46,44,0.35);
}
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

.about-image-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--sage);
  margin-top: var(--space-sm);
  font-style: italic;
}

.about-paragraphs p {
  font-size: 1.02rem;
  color: var(--charcoal-soft);
  margin-bottom: 1.1rem;
  max-width: 560px;
}
.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem !important;
  color: var(--sage) !important;
  margin-top: 1.6rem !important;
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
}

/* ===========================================================
   SERVICES / PRICES
   =========================================================== */
.services { padding: var(--space-xl) var(--space-md); background: var(--cream-deep); }
.services-inner { max-width: 980px; margin: 0 auto; }

.price-tables {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.price-table-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--gold-soft);
}

.price-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(43,46,44,0.12);
}
.price-list li:last-child { border-bottom: none; }

.price-name { font-size: 0.96rem; color: var(--charcoal-soft); flex-shrink: 0; }
.price-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(92,107,71,0.35);
  height: 0;
  transform: translateY(-4px);
}
.price-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--sage);
  flex-shrink: 0;
  white-space: nowrap;
}

.services-note {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  font-style: italic;
  opacity: 0.8;
}

/* ===========================================================
   GALLERY
   =========================================================== */
.gallery { padding: var(--space-xl) var(--space-md); background: var(--cream); }
.gallery-inner { max-width: var(--max-width); margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.gallery-item {
  overflow: hidden;
  border-radius: 3px;
  background: var(--sage-pale);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-feature {
  margin-top: var(--space-sm);
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 21 / 10;
  background: var(--sage-pale);
}
.gallery-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.gallery-feature:hover img { transform: scale(1.03); }

/* ===========================================================
   TEAM (dark section)
   =========================================================== */
.team { padding: var(--space-xl) var(--space-md); background: var(--charcoal); }
.team-inner { max-width: 820px; margin: 0 auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.team-card { text-align: center; }

.team-photo {
  aspect-ratio: 3/4;
  margin-bottom: var(--space-sm);
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(217,199,160,0.2);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }

.team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  position: relative;
}
.team-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(217,199,160,0.22);
}
.team-photo-placeholder span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-soft);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.team-role { font-size: 0.85rem; color: var(--sage-light); letter-spacing: 0.03em; }
.team-note {
  font-size: 0.8rem;
  color: rgba(246,241,231,0.42);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonials { padding: var(--space-xl) var(--space-md); background: var(--cream); }
.testimonials-inner { max-width: var(--max-width); margin: 0 auto; }

.testimonials-source {
  text-align: center;
  font-size: 0.85rem;
  color: var(--sage-light);
  font-style: italic;
  margin-top: -1rem;
  margin-bottom: var(--space-lg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(92,107,71,0.14);
  border-radius: 3px;
  padding: var(--space-md);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem; left: 1.2rem;
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--gold-soft);
  line-height: 1;
}
.testimonial-card blockquote {
  font-size: 0.98rem;
  color: var(--charcoal-soft);
  margin-top: 1.6rem;
  margin-bottom: var(--space-sm);
  font-style: italic;
}
.testimonial-card figcaption { font-size: 0.84rem; color: var(--sage); font-weight: 600; }

/* ===========================================================
   CONTACT / LOCATION
   =========================================================== */
.contact { padding: var(--space-xl) var(--space-md); background: var(--cream-deep); }
.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-xl);
  align-items: center;
}

.contact-list { margin: var(--space-md) 0 var(--space-lg); }
.contact-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: var(--space-sm);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(92,107,71,0.15);
}
.contact-row:last-child { border-bottom: none; }
.contact-row dt {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sage);
}
.contact-row dd { font-size: 1rem; color: var(--charcoal-soft); }
.contact-row a:hover { color: var(--sage); }
.contact-muted { font-size: 0.9rem; opacity: 0.75; }

.contact-map {
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4/3.4;
  border: 1px solid rgba(92,107,71,0.2);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: sepia(8%) saturate(85%); }

/* Zwei-Klick-Lösung für Google Maps */
.map-consent {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.9rem;
  padding: var(--space-md);
  background: linear-gradient(150deg, var(--sage-pale) 0%, var(--cream-deep) 100%);
}
.map-consent-mark { width: 42px; height: 42px; opacity: 0.5; }
.map-consent-address {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--charcoal);
}
.map-consent-text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--charcoal-soft);
  max-width: 340px;
  opacity: 0.85;
}
.map-consent-btn { margin-top: 0.2rem; }
.map-consent-link {
  font-size: 0.8rem;
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.map-consent-link:hover { color: var(--charcoal); }

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer { background: var(--charcoal); padding: var(--space-lg) var(--space-md) var(--space-md); text-align: center; }
.footer-emblem { width: 46px; height: 46px; margin: 0 auto var(--space-sm); opacity: 0.9; }
.footer-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); margin-bottom: 0.2rem; }
.footer-tagline { font-size: 0.85rem; color: var(--gold-soft); margin-bottom: var(--space-md); }
.footer-meta { font-size: 0.85rem; color: var(--sage-light); margin-bottom: var(--space-sm); }
.footer-meta a:hover { color: var(--gold-soft); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(246,241,231,0.35);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(246,241,231,0.1);
}

/* ===========================================================
   SCROLL-REVEAL
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 980px) {
  .about-inner { grid-template-columns: minmax(0, 1fr); gap: var(--space-lg); }
  .about-image { max-width: 360px; margin: 0 auto; width: 100%; }
  .price-tables { grid-template-columns: minmax(0, 1fr); gap: var(--space-xl); }
  .testimonial-grid { grid-template-columns: minmax(0, 1fr); gap: var(--space-md); }
  .contact-inner { grid-template-columns: minmax(0, 1fr); gap: var(--space-lg); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hero { grid-template-columns: minmax(0, 1fr); min-height: auto; }
  .hero-text { padding: 8rem var(--space-lg) var(--space-lg); order: 2; }
  .hero-content { max-width: 620px; margin: 0 auto; }
  .hero-media { order: 1; height: 52vh; min-height: 340px; }
  .scroll-cue { display: none; }
}

@media (max-width: 768px) {
  .nav-mobile-panel { display: none; }
  .nav-burger { display: flex; }

  .nav-mobile-panel.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    padding: var(--space-md);
    gap: var(--space-md);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .nav-mobile-panel.open .nav-links { flex-direction: column; gap: var(--space-sm); }
  .nav-mobile-panel.open .nav-links a { color: var(--charcoal-soft); text-shadow: none; }
  .nav-mobile-panel.open .nav-right {
    justify-content: center;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(92,107,71,0.15);
  }
  .nav-mobile-panel.open .lang-toggle { color: var(--charcoal-soft); text-shadow: none; }
  .nav-mobile-panel.open .lang-option.active { color: var(--sage); }
  .nav-mobile-panel.open .nav-cta { border-color: var(--charcoal); color: var(--charcoal); }

  .hero { grid-template-columns: minmax(0, 1fr); min-height: auto; }
  .hero-text { padding: 7rem var(--space-md) var(--space-lg); order: 2; }
  .hero-media { order: 1; height: 46vh; min-height: 280px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .scroll-cue { display: none; }

  .team-grid { grid-template-columns: minmax(0, 1fr); max-width: 320px; margin: var(--space-lg) auto 0; width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; }
  .gallery-feature { aspect-ratio: 16 / 10; }

  .contact-row { grid-template-columns: minmax(0, 1fr); gap: 0.2rem; }

  .price-name, .price-value { font-size: 0.88rem; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.7rem; }
  .hero-sub { font-size: 1rem; }
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.16em; }
}


/* ===========================================================
   RECHTSSEITEN (Impressum / Datenschutz)
   =========================================================== */
.legal {
  padding: 9rem var(--space-md) var(--space-xl);
  background: var(--cream);
}
.legal-inner { max-width: 760px; margin: 0 auto; }

.legal h1.section-title { margin-bottom: var(--space-lg); }

.legal-lead {
  font-size: 1.02rem;
  color: var(--charcoal-soft);
  padding: var(--space-md);
  background: var(--cream-deep);
  border-left: 2px solid var(--gold);
  border-radius: 2px;
  margin-bottom: var(--space-lg);
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: var(--space-lg) 0 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(92,107,71,0.18);
}

.legal p {
  font-size: 0.98rem;
  color: var(--charcoal-soft);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.legal ul {
  margin: 0 0 1rem 0;
  padding-left: 1.1rem;
}
.legal li {
  font-size: 0.98rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin-bottom: 0.35rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.legal li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.68em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage-light);
}

.legal a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.legal a:hover { color: var(--charcoal); }

.legal strong { color: var(--charcoal); font-weight: 600; }

.legal-back {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(92,107,71,0.18);
}
.legal-back a { font-weight: 500; text-decoration: none; }
.legal-back a:hover { text-decoration: underline; }

.legal-nav-right { margin-left: auto; }

/* Footer-Rechtslinks */
.footer-legal {
  font-size: 0.83rem;
  margin-top: var(--space-sm);
}
.footer-legal a {
  color: var(--gold-soft);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.footer-sep { color: rgba(246,241,231,0.3); margin: 0 0.6rem; }

@media (max-width: 768px) {
  .legal { padding: 7.5rem var(--space-md) var(--space-lg); }
  .legal-nav-right { display: flex; }
}

/* ===========================================================
   GALERIE — Klick-Trigger
   =========================================================== */
.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  position: relative;
}
.gallery-trigger img { width: 100%; height: 100%; object-fit: cover; }

.gallery-trigger::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(43,46,44,0.18);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-trigger:hover::after,
.gallery-trigger:focus-visible::after { opacity: 1; }

.gallery-trigger::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 46px; height: 46px;
  transform: translate(-50%,-50%) scale(0.8);
  border-radius: 50%;
  background: rgba(246,241,231,0.92) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232B2E2C' stroke-width='1.6'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cpath d='M20 20l-4.35-4.35'/%3E%3Cpath d='M11 8.5v5M8.5 11h5'/%3E%3C/svg%3E") center/20px no-repeat;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 1;
}
.gallery-trigger:hover::before,
.gallery-trigger:focus-visible::before { opacity: 1; transform: translate(-50%,-50%) scale(1); }

.gallery-trigger:focus-visible { outline: 2px solid var(--sage); outline-offset: -2px; }

/* ===========================================================
   LIGHTBOX
   =========================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(20,21,19,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 4rem);
  animation: lightboxFade 0.25s ease both;
}
.lightbox[hidden] { display: none; }

@keyframes lightboxFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  max-width: min(1100px, 92vw);
  max-height: 100%;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
  animation: lightboxZoom 0.3s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes lightboxZoom {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-caption {
  color: rgba(246,241,231,0.88);
  font-size: 0.9rem;
  text-align: center;
  max-width: 640px;
}
.lightbox-counter {
  color: rgba(246,241,231,0.45);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.lightbox-close {
  position: absolute;
  top: clamp(0.8rem, 3vw, 1.8rem);
  right: clamp(0.8rem, 3vw, 1.8rem);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(246,241,231,0.1);
  border: 1px solid rgba(246,241,231,0.3);
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(246,241,231,0.2); }

.lightbox-nav {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(246,241,231,0.1);
  border: 1px solid rgba(246,241,231,0.3);
  color: var(--cream);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
  z-index: 1;
}
.lightbox-nav:hover { background: rgba(246,241,231,0.2); }
.lightbox-prev { margin-right: clamp(0.5rem, 2vw, 2rem); }
.lightbox-next { margin-left: clamp(0.5rem, 2vw, 2rem); }

@media (max-width: 640px) {
  .lightbox { flex-direction: column; padding: 1rem; }
  .lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); }
  .lightbox-prev { left: 0.5rem; margin: 0; }
  .lightbox-next { right: 0.5rem; margin: 0; }
  .lightbox-close { top: 0.8rem; right: 0.8rem; }
  .lightbox-stage img { max-height: 68vh; }
}
