/* ═══════════════════════════════════════════════════
   EISSING SCHMUCK – Hauptstylesheet
   Farbpalette: Navy #1E2347 · Creme #F5F0E8 · Gold #B8973A · Dunkelgrau #2A2A2A
   ═══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1E2347;
  --navy-light: #2C3560;
  --cream:   #F5F0E8;
  --cream-dark: #EDE7D9;
  --gold:    #B8973A;
  --gold-light: #D4AF5A;
  --white:   #FFFFFF;
  --dark:    #1A1A1A;
  --mid:     #6B6B6B;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', Helvetica, Arial, sans-serif;
  --max-w:   1160px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; color: inherit; }
a  { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }

.tilde { font-style: italic; color: var(--gold); }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.container.narrow { max-width: 720px; }
.center { text-align: center; }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-eyebrow.light { color: var(--gold-light); }

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  margin: 0.4rem 0.5rem 0.4rem 0;
  text-decoration: none;
}
.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-light:hover { background: transparent; color: var(--white); }

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

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover { background: transparent; color: var(--navy); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  padding: 1rem;
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--white); }

/* ── ANIMATIONS ── */
.animate-up, .animate-left, .animate-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-left  { transform: translateX(-30px); }
.animate-right { transform: translateX(30px); }
.animate-up.visible, .animate-left.visible, .animate-right.visible {
  opacity: 1;
  transform: none;
}
.timeline-item:nth-child(2) .animate-up { transition-delay: 0.1s; }
.timeline-item:nth-child(3) .animate-up { transition-delay: 0.2s; }
.gallery-item:nth-child(2)  { transition-delay: 0.1s; }
.gallery-item:nth-child(3)  { transition-delay: 0.2s; }
.gallery-item:nth-child(4)  { transition-delay: 0.3s; }
.service-card:nth-child(2)  { transition-delay: 0.1s; }
.service-card:nth-child(3)  { transition-delay: 0.2s; }
.service-card:nth-child(4)  { transition-delay: 0.3s; }
.service-card:nth-child(5)  { transition-delay: 0.4s; }
.service-card:nth-child(6)  { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(30, 35, 71, 0.0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(30, 35, 71, 0.97);
  backdrop-filter: blur(8px);
  border-bottom-color: rgba(184, 151, 58, 0.2);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 60px;
  width: auto;
  display: block;
  background: rgba(255,255,255,0.92);
  padding: 4px;
  filter: brightness(1.55) contrast(0.88);
  transition: opacity var(--transition);
}
.nav-logo:hover img { opacity: 0.85; }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--gold) !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover { background: transparent !important; color: var(--gold-light) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0D1128 40%, #1a1a2e 100%);
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(184,151,58,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(44,53,96,0.6) 0%, transparent 60%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="0.5" fill="rgba(255,255,255,0.15)"/></svg>') repeat;
  opacity: 0.5;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
  max-width: 800px;
}
.hero-content .hero-eyebrow { animation: fadeInUp 1s ease 0.6s both; }
.hero-content h1            { animation: fadeInUp 1s ease 0.75s both; }
.hero-content .hero-sub     { animation: fadeInUp 1s ease 0.9s both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  font-family: var(--font-sans);
}
#hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  margin-bottom: 0;
}
.hero-divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}
/* ── HERO BACKGROUND LOGO (großes Wasserzeichen) ── */
.hero-bg-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-logo img {
  width: min(600px, 90vw);
  height: auto;
  opacity: 0.04;
  filter: grayscale(100%) brightness(3);
  transform: scale(1.05);
}

/* ── HERO LOGO (zentriert, prominent) ── */
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.8rem;
  animation: fadeInDown 1s ease 0.2s both;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: none; }
}
.hero-logo-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(184,151,58,0.6);
  filter: brightness(1.55) contrast(0.88);
  box-shadow:
    0 0 0 6px rgba(184,151,58,0.12),
    0 0 0 12px rgba(184,151,58,0.06),
    0 20px 50px rgba(0,0,0,0.5);
  animation: logoPulse 4s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(184,151,58,0.12), 0 0 0 12px rgba(184,151,58,0.06), 0 20px 50px rgba(0,0,0,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(184,151,58,0.22), 0 0 0 16px rgba(184,151,58,0.10), 0 20px 60px rgba(0,0,0,0.5); }
}
.hero-logo-ring {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(184,151,58,0.35);
  animation: ringRotate 20s linear infinite;
  pointer-events: none;
}
.hero-logo-ring::before,
.hero-logo-ring::after {
  content: '◆';
  position: absolute;
  font-size: 7px;
  color: var(--gold);
  top: 50%; left: -6px;
  transform: translateY(-50%);
}
.hero-logo-ring::after { left: auto; right: -6px; }
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── ORNAMENT TRENNLINIEN ── */
.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  animation: fadeInUp 1s ease 0.5s both;
}
.hero-ornament.bottom { animation-delay: 0.9s; }
.orn-line {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,151,58,0.7), transparent);
}
.orn-diamond {
  font-size: 8px;
  color: var(--gold);
  opacity: 0.8;
}
.hero-buttons {
  animation: fadeInUp 1s ease 1.1s both;
  margin-top: 0.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: color var(--transition);
}
.hero-scroll:hover { color: var(--gold-light); }
.scroll-arrow {
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  margin-top: 0.3rem;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ═══════════════════════════════════════════════════
   QUOTE BAND
   ═══════════════════════════════════════════════════ */
.quote-band {
  background: var(--gold);
  padding: 2.5rem 0;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--white);
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════ */
.section-light  { background: var(--white);    padding: 6rem 0; }
.section-cream  { background: var(--cream);    padding: 6rem 0; }
.section-dark   { background: var(--navy);     padding: 6rem 0; }
.section-dark h2, .section-dark h3, .section-dark p, .section-dark .section-eyebrow.light {
  color: var(--white);
}
.section-dark p { color: rgba(255,255,255,0.75); }
.section-intro {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--mid);
  max-width: 600px;
  margin: 0 auto 3rem;
}
.hide-mobile { display: inline; }

/* ── SPLIT LAYOUT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  box-shadow: 12px 12px 40px rgba(0,0,0,0.12);
}
.split-text p {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════════ */
.timeline {
  position: relative;
  margin-top: 3rem;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
}
.timeline-item {
  display: grid;
  grid-template-columns: 140px 1rem 1fr;
  gap: 0 1.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
  position: relative;
}
.timeline-year {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-align: right;
  padding-top: 0.2rem;
}
.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
  margin-top: 0.3rem;
  position: relative;
  left: -0.5rem;
}
.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--navy);
}
.timeline-content p {
  font-size: 0.88rem;
  color: var(--mid);
  margin: 0;
}
.timeline-item.highlight .timeline-content {
  background: var(--navy);
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
}
.timeline-item.highlight .timeline-content h3 { color: var(--white); }
.timeline-item.highlight .timeline-content p  { color: rgba(255,255,255,0.7); }
.timeline-item.highlight .timeline-dot { background: var(--gold-light); width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════
   CREDENTIALS (Urkunden)
   ═══════════════════════════════════════════════════ */
.credentials-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream-dark);
}
.credential-item {
  text-align: center;
}
.credential-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  filter: saturate(0.9);
}
.credential-item p {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   WERKSTATT-EINBLICKE
   ═══════════════════════════════════════════════════ */
.workshop-feature {
  position: relative;
  margin: 2.5rem 0 3rem;
  overflow: hidden;
  max-height: 480px;
}
.workshop-feature img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.workshop-feature-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem 1.5rem;
  background: linear-gradient(to top, rgba(13,17,40,0.92) 10%, rgba(13,17,40,0.5) 60%, transparent);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  max-width: 600px;
}
.workshop-feature-caption .orn-diamond {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 10px;
  color: var(--gold-light);
}
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.workshop-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.workshop-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.workshop-item:hover img { transform: scale(1.06); }
.workshop-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.7rem 1rem;
  background: linear-gradient(to top, rgba(13,17,40,0.88), transparent);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.workshop-caption span {
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  margin-right: 0.5rem;
}

/* ═══════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,151,58,0.2);
  padding: 2rem 1.5rem;
  transition: border-color var(--transition), background var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  background: rgba(184,151,58,0.06);
}
.service-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.5rem; }
.service-card p  { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.7; margin: 0; }

.materials-strip {
  margin-top: 3.5rem;
  text-align: center;
  border-top: 1px solid rgba(184,151,58,0.25);
  padding-top: 2rem;
}
.materials-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.materials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
}
.materials-list span { padding: 0 0.5rem; }
.materials-list .sep { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-dark);
}
.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(to top, rgba(30,35,71,0.85), transparent);
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-label { opacity: 1; }
.gallery-note {
  font-size: 0.82rem;
  color: var(--mid);
  font-style: italic;
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════
   ÖFFNUNGSZEITEN
   ═══════════════════════════════════════════════════ */
.hours-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  padding: 2.5rem 3rem;
  margin-top: 2.5rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
}
.hours-row:last-of-type { border-bottom: none; }
.hours-day {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--navy);
}
.hours-time {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--mid);
}
.hours-row.closed .hours-day,
.hours-row.closed .hours-time { color: #aaa; }
.hours-note {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--mid);
  font-style: italic;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}
.payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}
.payment-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
}
.payment-icons {
  display: flex;
  gap: 0.75rem;
}
.payment-badge {
  font-size: 0.82rem;
  color: var(--navy);
  background: var(--cream-dark);
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(30,35,71,0.1);
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
}
@media (max-width: 640px) {
  .payment-row { flex-direction: column; gap: 0.75rem; text-align: center; }
  .payment-icons { justify-content: center; }
}

/* ═══════════════════════════════════════════════════
   KONTAKT
   ═══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.contact-block {
  margin-bottom: 1.8rem;
}
.contact-block h3 {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.contact-block p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; }
.contact-block a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.contact-block a:hover { color: var(--gold-light); }

/* ── FORM ── */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,151,58,0.2);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  border-radius: 0;
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group textarea { resize: vertical; min-height: 120px; }
.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.checkbox-group a { color: var(--gold); text-decoration: underline; }
.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(184,151,58,0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.88rem;
  text-align: center;
}

/* ── MAP ── */
.map-embed {
  margin-top: 3.5rem;
}
.map-embed iframe {
  width: 100%;
  height: 340px;
  border: none;
  display: block;
  filter: grayscale(30%) invert(5%);
  opacity: 0.85;
}
.map-consent {
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(184,151,58,0.08), rgba(30,35,71,0.4)),
    #12162e;
  border: 1px solid rgba(184,151,58,0.25);
  padding: 2rem;
}
.map-consent-inner { max-width: 440px; }
.map-consent-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.map-consent-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.map-consent-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.map-consent-text a { color: var(--gold-light); text-decoration: underline; }
.map-consent-btn {
  width: auto;
  padding: 0.8rem 2rem;
}
.map-caption {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
#footer {
  background: #0D1128;
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img {
  height: 56px;
  filter: brightness(0) invert(1);
  margin-bottom: 0.8rem;
  opacity: 0.7;
}
.footer-logo p {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a, .footer-contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 0.4rem; }
.footer-bottom {
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   IMPRESSUM / DATENSCHUTZ PAGES
   ═══════════════════════════════════════════════════ */
.legal-page {
  padding: 8rem 0 5rem;
  min-height: 80vh;
}
.legal-page h1 { font-size: 2.5rem; margin-bottom: 2rem; color: var(--navy); }
.legal-page h2 { font-size: 1.4rem; margin: 2rem 0 0.8rem; color: var(--navy); }
.legal-page h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; color: var(--navy); }
.legal-page p, .legal-page li { font-size: 0.93rem; color: var(--mid); line-height: 1.8; margin-bottom: 0.8rem; }
.legal-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page a { color: var(--navy); text-decoration: underline; }
.legal-page .back-link {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.legal-page .back-link:hover { color: var(--navy); }
.legal-page .platzhalter-hinweis {
  background: #FFF8E1;
  border-left: 4px solid var(--gold);
  padding: 0.9rem 1.1rem;
  font-size: 0.85rem;
  color: #6b5a1e;
  border-radius: 2px;
}
.legal-page .platzhalter-hinweis strong { color: #4a3d10; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-img { order: -1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .workshop-grid { grid-template-columns: 1fr 1fr; }
  .credentials-strip { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .timeline-item { grid-template-columns: 100px 1rem 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
               background: rgba(13,17,40,0.98); padding: 1.5rem 2rem; gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .workshop-grid { grid-template-columns: 1fr; }
  .workshop-feature, .workshop-feature img { height: 320px; max-height: 320px; }
  .workshop-feature-caption { font-size: 1rem; padding: 1.5rem 1.2rem 1.2rem; }
  .gallery-item.large { grid-column: span 1; aspect-ratio: 4/3; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hours-card { padding: 1.5rem; }
  .hours-row { flex-direction: column; gap: 0.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
  .timeline { padding-left: 1rem; }
  .timeline-item { grid-template-columns: 90px 0.8rem 1fr; gap: 0 1rem; }
  .timeline-year { font-size: 0.68rem; }
  .hide-mobile { display: none; }
}
