/* ============================================================
   Patrick Zeller Photography — Designsystem
   Farbschema: Schwarz mit warmem Antik-Gold als Akzent
   ============================================================ */

/* --- fonts.css eingebettet (eingebunden statt per Import nachgeladen) --- */
/* ============================================================
   Lokale Webfonts (DSGVO-konform, kein Google-CDN)
   Dateien in /assets/fonts/ — Woff2-Format
   ============================================================ */

/* Inter — 300, 400, 500, 600 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}

/* Cormorant Garamond — 400, 500, 600 */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-400italic.woff2') format('woff2');
}

:root {
  /* Farben */
  --bg:           #0a0a0a;
  --surface:      #141414;
  --surface-2:   #1c1c1c;
  --border:       #2a2a2a;
  --border-soft:  #1f1f1f;

  --text:         #f4f4f0;
  --text-muted:   #a8a8a3;
  --text-dim:     #6e6e6a;

  --gold:         #c9a961;
  --gold-bright:  #d9b970;
  --gold-soft:    #8a7544;
  --gold-glow:    rgba(201, 169, 97, 0.18);

  /* Typografie */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;

  --radius:    2px;
  --radius-lg: 4px;

  /* Übergänge */
  --t-fast: 150ms ease;
  --t-med:  300ms ease;
}

/* ============================================================ */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--gold-bright); }

/* Typografie ------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold); }

p { color: var(--text-muted); margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.lead {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.55;
  max-width: 640px;
}

/* Layout ----------------------------------------------------- */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-md); }

section { padding: var(--space-2xl) 0; }
section.tight { padding: var(--space-xl) 0; }

.divider-gold {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: var(--space-md) 0;
}

/* Header ----------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}
.brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.brand span { color: var(--gold); }
nav.primary { display: flex; gap: var(--space-md); align-items: center; }
nav.primary a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.25rem 0;
}
nav.primary a:hover, nav.primary a.active { color: var(--text); }
nav.primary a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
}
nav.primary a.cta {
  color: var(--bg);
  background: var(--gold);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 500;
}
nav.primary a.cta:hover { background: var(--gold-bright); color: var(--bg); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  border-radius: var(--radius);
  font-size: 1rem;
}

@media (max-width: 880px) {
  nav.primary { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--surface); padding: var(--space-sm); border-bottom: 1px solid var(--border); }
  nav.primary.open { display: flex; }
  nav.primary a { padding: 0.75rem; border-bottom: 1px solid var(--border-soft); width: 100%; }
  nav.primary a:last-child { border-bottom: none; }
  .menu-toggle { display: block; }
}

/* Buttons ---------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--t-med);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover { background: var(--gold-bright); color: var(--bg); transform: translateY(-1px); box-shadow: 0 8px 24px var(--gold-glow); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Hero ------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-2xl) 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #181818 0%, #0e0e0e 50%, #1a1610 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 {
  max-width: 20ch;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 0 2px rgba(0,0,0,0.9);
}
.hero .lead {
  margin-bottom: var(--space-lg);
  text-shadow: 0 1px 8px rgba(0,0,0,0.7), 0 0 2px rgba(0,0,0,0.8);
}
.hero .eyebrow {
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

/* Service-Cards ---------------------------------------------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-med);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--gold-soft);
}
.service-card .img-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1a1a1a, #0e0e0e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 169, 97, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--space-sm);
  border-bottom: 1px solid var(--gold-soft);
}
.service-card-body { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: var(--space-xs); }
.service-card p { font-size: 0.95rem; margin-bottom: var(--space-md); flex: 1; }
.service-card-link {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.service-card-link::after { content: '→'; transition: transform var(--t-fast); }
.service-card-link:hover::after { transform: translateX(4px); }

/* Section Header --------------------------------------------- */

.section-header { text-align: center; max-width: 720px; margin: 0 auto var(--space-lg); }
.section-header.left { text-align: left; margin-left: 0; }
.section-header h2 { margin-bottom: var(--space-sm); }
.section-header p { color: var(--text-muted); }

/* Testimonials ----------------------------------------------- */

.testimonials {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.testimonial {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: -10px; left: 12px;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
}
.testimonial p {
  font-style: italic;
  margin-bottom: var(--space-sm);
  color: var(--text);
  font-weight: 300;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Trust-Sektion ---------------------------------------------- */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.trust-item { padding: var(--space-md) 0; }
.trust-item .number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}
.trust-item .h-accent { margin-bottom: var(--space-xs); }
.trust-item p { font-size: 0.95rem; }

/* Cross-Sell-Block ------------------------------------------- */

.cross-sell {
  background: linear-gradient(135deg, #1a1410 0%, #0e0e0e 100%);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-md);
  align-items: center;
}
@media (max-width: 720px) {
  .cross-sell { grid-template-columns: 1fr; }
}
.cross-sell h3 { margin-bottom: var(--space-xs); }
.cross-sell .price { font-family: var(--font-display); color: var(--gold); font-size: 1.5rem; margin-top: var(--space-xs); }

/* Pakete-Tabelle --------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
}
.pricing-card.featured { border-color: var(--gold); position: relative; }
.pricing-card.featured::before {
  content: 'Beliebt';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  font-weight: 600;
}
.pricing-card h3 { margin-bottom: var(--space-xs); }
.pricing-card .price-tag {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  margin: var(--space-sm) 0;
  line-height: 1;
}
.pricing-card .price-tag small { font-size: 0.9rem; color: var(--text-muted); display: block; font-family: var(--font-body); margin-top: 0.25rem; }
.pricing-card ul { list-style: none; margin: var(--space-sm) 0 var(--space-md); flex: 1; }
.pricing-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  gap: 0.5rem;
}
.pricing-card ul li::before { content: '✓'; color: var(--gold); font-weight: 600; }

/* Galerie-Grid (Masonry) ------------------------------------- */

.gallery-grid {
  columns: 3;
  column-gap: 6px;
  margin-top: var(--space-lg);
}
@media (max-width: 900px) {
  .gallery-grid { columns: 2; }
}
@media (max-width: 500px) {
  .gallery-grid { columns: 1; max-width: 400px; margin-left: auto; margin-right: auto; }
}
.gallery-grid .img-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 169, 97, 0.3);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--space-xs);
  break-inside: avoid;
  margin-bottom: 6px;
}
.gallery-grid .img-placeholder.tall { aspect-ratio: 3 / 4; }
.gallery-grid .img-placeholder.wide { aspect-ratio: 16 / 10; }

/* FAQ -------------------------------------------------------- */

.faq-list { max-width: 760px; margin: var(--space-lg) auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--space-md) 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.6rem;
  font-family: var(--font-body);
  font-weight: 300;
  transition: transform var(--t-fast);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: var(--space-sm); }

/* Footer ----------------------------------------------------- */

.site-footer {
  background: #050505;
  border-top: 1px solid var(--border-soft);
  padding: var(--space-xl) 0 var(--space-md);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col .h-accent { color: var(--gold); margin-bottom: var(--space-sm); font-size: 0.85rem; }
.footer-col a { color: var(--text-muted); display: block; padding: 0.25rem 0; font-size: 0.9rem; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* Prototyp-Banner -------------------------------------------- */

.prototype-banner {
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  padding: 0.5rem var(--space-sm);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.prototype-banner a { color: var(--bg); text-decoration: underline; }

/* ============================================================
   Ergänzungen – Patch 2026-04-16
   Fehlende Komponenten-Styles für Templates
   ============================================================ */

/* Packages-Grid (Hochzeit, Fotobox) --------------------------- */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.package {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-med), transform var(--t-med);
}

.package:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}

.package.is-highlighted {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 32px var(--gold-glow);
}

.package h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.package .price {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.package .hours,
.package .duration {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}

.package ul,
.package .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
  flex: 1;
}

.package ul li,
.package .features-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.package ul li::before,
.package .features-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.package .badge {
  position: absolute;
  top: -10px;
  right: var(--space-md);
  background: var(--gold);
  color: var(--bg);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* FAQ --------------------------------------------------------- */

.faq {
  max-width: var(--container-narrow);
  margin: var(--space-xl) auto;
}

.faq details {
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) 0;
}

.faq details:first-of-type {
  border-top: 1px solid var(--border);
}

.faq summary {
  cursor: pointer;
  padding: var(--space-sm) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 2rem;
  transition: color var(--t-fast);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform var(--t-med);
}

.faq details[open] summary::after {
  content: "−";
}

.faq summary:hover {
  color: var(--gold);
}

.faq details[open] summary {
  color: var(--gold);
}

.faq details p,
.faq details div {
  padding: 0 0 var(--space-sm);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Pricing-Table (Business) ------------------------------------ */

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}

.pricing-table th {
  background: var(--surface-2);
  color: var(--gold);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background: rgba(201, 169, 97, 0.04);
}

.pricing-table td:last-child {
  color: var(--gold);
  font-weight: 500;
  text-align: right;
}

/* Cross-Sell-Block -------------------------------------------- */

.cross-sell {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--gold-soft);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
  text-align: center;
}

.cross-sell h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.cross-sell p {
  color: var(--text);
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

/* Portfolio-Filter -------------------------------------------- */

.portfolio-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-xl);
}

.portfolio-filter-bar .btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.portfolio-filter-bar .btn.is-active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.js-filter-active [data-category].is-hidden {
  display: none;
}

/* Gallery-Grid Items ------------------------------------------ */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  break-inside: avoid;
  margin-bottom: 6px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--t-med), filter var(--t-med);
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.08);
}

/* Lightbox ---------------------------------------------------- */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: zoom-out;
}
.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}
.lightbox-prev { left: var(--space-md); }
.lightbox-next { right: var(--space-md); }
.lightbox-caption {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-align: center;
  max-width: 80vw;
}

/* ============================================================
   Kontakt-Seite – v2 Redesign
   ============================================================ */

.kontakt-section {
  padding: var(--space-2xl) 0;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 960px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.kontakt-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: sticky;
  top: calc(var(--space-lg) + 60px);
}

@media (max-width: 960px) {
  .kontakt-sidebar { position: static; }
}

.kontakt-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.kontakt-block h2,
.kontakt-block h3 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 0.4rem 0 0;
  line-height: 1.2;
}

.kontakt-block h2 { font-size: 1.5rem; }
.kontakt-block h3 { font-size: 1.25rem; }

.kontakt-block .divider-gold {
  margin: var(--space-sm) 0;
}

.kontakt-intro {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 var(--space-md);
}

/* Kontaktliste (Telefon/E-Mail/Adresse) ----------------------- */

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--space-sm);
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.contact-list li:last-child { border-bottom: none; }

.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.contact-value {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.4;
}

a.contact-value { transition: color var(--t-fast); }
a.contact-value:hover { color: var(--gold); }

/* Region (Städte-Chips) --------------------------------------- */

.region-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.region-list li {
  padding: 0.55rem 0.4rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  transition: border-color var(--t-fast), color var(--t-fast);
}

.region-list li:hover {
  border-color: var(--gold-soft);
  color: var(--text);
}

/* Formular-Card ----------------------------------------------- */

.kontakt-main { min-width: 0; }

.form-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

@media (max-width: 640px) {
  .form-card { padding: var(--space-lg) var(--space-md); }
}

.form-card h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--text);
  margin: 0.4rem 0 0;
  line-height: 1.2;
}

.form-card .divider-gold { margin: var(--space-sm) 0 var(--space-md); }

/* Feedback-Banner --------------------------------------------- */

.form-success,
.form-error {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius);
  margin: var(--space-md) 0 var(--space-lg);
  font-size: 0.95rem;
  line-height: 1.55;
}

.form-success {
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid var(--gold-soft);
  border-left: 3px solid var(--gold);
  color: var(--text);
}

.form-error {
  background: rgba(220, 80, 80, 0.06);
  border: 1px solid rgba(220, 80, 80, 0.3);
  border-left: 3px solid #d94b4b;
  color: #f0c4c4;
}

.form-error ul { margin: 0.4rem 0 0 1.2rem; }

/* Form-Layout ------------------------------------------------- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: var(--space-md); }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.form-field label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.form-field label .optional,
.form-field label .required {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: none;
  font-weight: 400;
  margin-left: 0.2rem;
}

.form-field label .optional { color: var(--text-muted); }
.form-field label .required { color: var(--gold-bright); }

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  width: 100%;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

.form-field input:hover,
.form-field textarea:hover,
.form-field select:hover {
  border-color: var(--gold-soft);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #0d0d0d;
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

/* Date-Input Kalender-Icon gold --------------------------------- */
.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(76%) sepia(22%) saturate(723%) hue-rotate(5deg) brightness(95%);
  cursor: pointer;
}

/* Feld-Fehlerzustand ------------------------------------------ */

.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select {
  border-color: #d94b4b;
}

.field-error {
  font-size: 0.82rem;
  color: #e89a9a;
  margin-top: 0.1rem;
}

/* Consent-Checkbox -------------------------------------------- */

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: var(--space-md);
  background: rgba(201, 169, 97, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  margin-top: var(--space-xs);
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  margin-top: 0.15rem;
  cursor: pointer;
}

.form-consent label {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  cursor: pointer;
  margin: 0;
}

.form-consent label a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent label a:hover { color: var(--gold-bright); }

.form-consent.has-error {
  border-color: #d94b4b;
  background: rgba(220, 80, 80, 0.04);
}

/* Submit-Leiste ----------------------------------------------- */

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}

.form-actions .btn {
  min-width: 200px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Rechtstexte (Impressum, Datenschutz, AGB) ------------------- */

.legal-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: var(--space-xl) 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin: var(--space-lg) 0 var(--space-sm);
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: var(--space-md) 0 var(--space-xs);
}

.legal-content p { margin-bottom: var(--space-sm); }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content a:hover { color: var(--gold-bright); }

.legal-content ul,
.legal-content ol {
  margin: var(--space-sm) 0 var(--space-sm) 1.5rem;
}

.legal-content li { margin-bottom: 0.35rem; }

/* Divider Gold ------------------------------------------------ */

.divider-gold {
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: var(--space-lg) auto;
}

/* Fehlerseite ------------------------------------------------- */

.error-page {
  text-align: center;
  padding: var(--space-2xl) 0;
}

/* Generische Section-Hilfsklassen ----------------------------- */

.section-alt {
  background: var(--surface);
  padding: var(--space-xl) 0;
  margin: var(--space-xl) 0;
}

/* Responsive Hero: kleines Bild fuer Mobil, grosses fuer Desktop ------------ */
.hero-bg[style*="--hero"] { background-image: var(--hero-sm); }
@media (min-width: 768px) {
  .hero-bg[style*="--hero"] { background-image: var(--hero-lg); }
}

/* Akzent-Ueberschrift (frueheres h4-Aussehen, tag-unabhaengig fuer korrekte Heading-Reihenfolge) */
.h-accent {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}
