/* ─────────────────────────────────────────────────────────────────────────────
   Glaesker Fotobox · Website · Hell & Elegant
───────────────────────────────────────────────────────────────────────────── */

:root {
  --gold:    #b8912a;
  --gold-lt: #f5e8c8;
  --gold-dk: #8a6a1a;
  --text:    #1a1a1a;
  --muted:   #6b7280;
  --border:  #e5e7eb;
  --bg:      #ffffff;
  --bg-soft: #fafaf8;
  --radius:  12px;
  --max-w:   1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Georgia, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a   { color: var(--gold); }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-alt { background: var(--bg-soft); }

.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; line-height: 1.2;
  color: var(--text); margin: 0 0 20px;
}
.section-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 580px; margin: 0 0 48px;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .18s;
}
.btn-gold  { background: var(--gold); color: #fff; }
.btn-gold:hover  { background: var(--gold-dk); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold-lt); }

/* ── Nav ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  height: 64px;
  display: flex; align-items: stretch; /* stretch statt center → Kinder füllen volle Höhe */
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
}
.nav-logo img { height: 32px; width: auto; }
.nav-logo-text { font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; }
.nav-links {
  display: flex; align-items: stretch; /* Listenelemente auf volle Nav-Höhe dehnen */
  gap: 32px; list-style: none; margin: 0; padding: 0;
}
/* Jedes li füllt die volle 64px-Höhe → kein toter Bereich unterhalb des Textes */
.nav-links > li {
  display: flex; align-items: center;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--muted); text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: 8px; }

/* ── Hero ── */
.hero {
  min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #1a1510;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,8,5,.75) 0%, rgba(26,21,16,.65) 100%);
}

/* ── Page Hero (Unterseiten) ── */
.page-hero {
  min-height: 56vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative; overflow: hidden;
  padding-top: 64px;
}
.page-hero-short { min-height: 42vh; }
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #1a1510;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,8,5,.7) 0%, rgba(20,16,10,.8) 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
  max-width: 800px; padding: 40px 24px;
}
.page-hero-content h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 800; line-height: 1.15;
  color: #fff; margin: 0 0 20px;
  letter-spacing: -.02em;
}
.page-hero-content h1 em { font-style: normal; color: var(--gold); }
.page-hero-content p {
  font-size: 1.1rem; color: rgba(255,255,255,.75);
  margin: 0; line-height: 1.7;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 760px; padding: 0 24px;
}
.hero-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(184,145,42,.4);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800; line-height: 1.1;
  color: #fff; margin: 0 0 24px;
  letter-spacing: -.02em;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p {
  font-size: 1.15rem; color: rgba(255,255,255,.7);
  margin: 0 0 40px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn-hero-outline {
  background: transparent; color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.25);
}
.btn-hero-outline:hover { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.06); }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.35); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none; transition: color .15s;
  animation: bounce 2s infinite;
}
.hero-scroll:hover { color: rgba(255,255,255,.7); }
.hero-scroll svg { width: 16px; height: 16px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── USP Streifen ── */
.usp-strip {
  background: var(--gold);
  padding: 0;
  overflow: hidden;
}
.usp-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.usp-item {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 32px;
  font-size: 0.87rem; font-weight: 600; color: #fff;
  border-right: 1px solid rgba(255,255,255,.2);
}
.usp-item:last-child { border-right: none; }
.usp-item svg { flex-shrink: 0; opacity: .85; }

/* ── Über uns ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-img {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--border); font-size: 3rem;
}
.about-text .section-sub { margin-bottom: 28px; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px;
}
.stat-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

/* ── Leistungen ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-3px); }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--gold-lt); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 22px;
}
.service-title { font-size: 1.1rem; font-weight: 700; margin: 0 0 10px; }
.service-desc  { font-size: 0.9rem; color: var(--muted); margin: 0; line-height: 1.6; }
.service-features {
  list-style: none; margin: 16px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.service-features li {
  font-size: 0.85rem; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.service-features li::before {
  content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0;
}

/* ── Leistungen 4er-Grid ── */
.services-grid-4 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}

/* ── Galerie / Referenzen ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
  border-radius: 16px; overflow: hidden;
}
.gallery-grid-ref {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  border-radius: 0; overflow: visible;
}
.gallery-item {
  overflow: hidden; position: relative;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--border); font-size: 2rem;
}
.gallery-item:first-child {
  grid-column: span 2; grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #f5f0e8, #ede5d0);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gold-lt);
}
/* Referenz-spezifische Items */
.gallery-item-lg {
  border-radius: var(--radius); overflow: hidden;
  height: 340px; position: relative;
  grid-column: auto; grid-row: auto;
}
.gallery-item-map {
  border-radius: var(--radius); overflow: hidden;
  height: 340px;
  background: #f9f6ef;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item-map img { object-fit: contain; padding: 12px; height: 100%; width: auto; max-width: 100%; }
.gallery-item-label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 6px;
  backdrop-filter: blur(4px);
}

/* ── Anfrage ── */
.anfrage-wrap {
  display: grid; grid-template-columns: 1fr 1.8fr; gap: 64px; align-items: flex-start;
}
.anfrage-info { padding-top: 8px; }
.anfrage-info .section-sub { margin-bottom: 32px; }
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px; font-size: 0.9rem;
}
.contact-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--gold-lt); color: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-label { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.contact-val { font-weight: 600; color: var(--text); }
.contact-val a { color: var(--text); text-decoration: none; }
.contact-val a:hover { color: var(--gold); }

.iframe-wrap {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  border: 1px solid var(--border);
  background: #fff;
}
.iframe-wrap iframe {
  display: block; width: 100%; min-height: 900px; border: none;
}

/* ── Service Card Link ── */
.service-card-link { text-decoration: none; display: block; color: inherit; }
.service-link {
  display: inline-block; margin-top: 16px;
  font-size: .85rem; font-weight: 600; color: var(--gold); text-decoration: none;
}
.service-link:hover { text-decoration: underline; }

/* ── CTA Section ── */
.cta-section { background: var(--gold-lt); }

/* ── Feature List (Produktseiten) ── */
.feature-list {
  list-style: none; margin: 24px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 20px;
}
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  font-size: 1.3rem; flex-shrink: 0; width: 36px; text-align: center;
  margin-top: 2px;
}
.feature-list li div p {
  margin: 4px 0 0; font-size: .88rem; color: var(--muted); line-height: 1.5;
}
.feature-list li div strong { font-size: .95rem; color: var(--text); }

/* ── Pricing ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}
.pricing-card {
  border: 2px solid var(--border); border-radius: 16px;
  padding: 32px; text-align: center;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
}
.pricing-card:hover { border-color: var(--gold-lt); box-shadow: 0 8px 32px rgba(184,145,42,.1); }
.pricing-card.pricing-featured { border-color: var(--gold); background: var(--gold-lt); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: .05em; padding: 3px 12px; border-radius: 20px;
}
.pricing-title { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.pricing-price {
  font-size: 2.4rem; font-weight: 800; color: var(--gold);
  margin: 12px 0 4px; line-height: 1;
}
.pricing-price-sub { font-size: .82rem; color: var(--muted); margin-bottom: 20px; }
.pricing-features {
  list-style: none; margin: 0; padding: 0; text-align: left;
  display: flex; flex-direction: column; gap: 8px;
}
.pricing-features li {
  font-size: .88rem; color: var(--muted);
  display: flex; gap: 8px; align-items: flex-start;
}
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.pricing-note {
  text-align: center; font-size: .82rem; color: var(--muted);
  margin-top: 24px;
}

/* ── Info Cards ── */
.info-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px;
  margin-top: 40px;
}
.info-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.info-card-icon { font-size: 1.6rem; margin-bottom: 12px; }
.info-card h3 { font-size: .95rem; font-weight: 700; margin: 0 0 8px; }
.info-card p { font-size: .87rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ── Highlight Box ── */
.highlight-box {
  background: var(--gold-lt); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 24px 0;
}
.highlight-box strong { font-size: .95rem; color: var(--text); display: block; margin-bottom: 8px; }
.highlight-box p { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.65; }

/* ── Background Grid (Hintergründe-Seite) ── */
.bg-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.bg-card {
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.bg-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-2px); }
.bg-card-img {
  height: 200px; overflow: hidden;
}
.bg-card-img img { width: 100%; height: 100%; object-fit: cover; }
.bg-card-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.bg-card-body { padding: 20px; }
.bg-card-body h3 { font-size: 1rem; font-weight: 700; margin: 0 0 8px; }
.bg-card-body p { font-size: .87rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ── Testimonials ── */
.review-cta-box {
  background: var(--gold-lt); border: 2px solid var(--gold);
  border-radius: 16px; padding: 40px;
  text-align: center;
}
.review-stars { font-size: 2rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review-cta-box h3 { font-size: 1.3rem; font-weight: 700; margin: 0 0 12px; }
.review-cta-box p { font-size: .95rem; color: var(--muted); max-width: 480px; margin: 0 auto; line-height: 1.7; }
.testimonial-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.testimonial-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  margin: 0; text-align: left;
}
.testimonial-card p { font-size: .9rem; color: var(--text); line-height: 1.65; margin: 0 0 12px; font-style: italic; }
.testimonial-card footer { font-size: .8rem; color: var(--gold); font-weight: 600; font-style: normal; }

/* ── Footer ── */
.site-footer {
  background: #111; color: rgba(255,255,255,.5);
  padding: 64px 0 32px;
  font-size: 0.85rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer-logo img { height: 24px; filter: brightness(0) invert(1); opacity: .6; }
.footer-logo-text { color: rgba(255,255,255,.7); font-weight: 600; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.35); margin: 0 0 20px; line-height: 1.5; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: background .15s, color .15s;
}
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-col-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-col-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col-links li { display: flex; align-items: center; gap: 6px; }
.footer-col-links a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .15s; font-size: .85rem; }
.footer-col-links a:hover { color: rgba(255,255,255,.85); }
.footer-col-links svg { flex-shrink: 0; opacity: .4; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.35); text-decoration: none; font-size: .8rem; transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }
.footer-copy { color: rgba(255,255,255,.25); font-size: .8rem; }
/* Legacy alias */
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }

/* ── Nav Scrolled ── */
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

/* ── Nav Dropdown ── */
.nav-has-dropdown { position: relative; }
/* Unsichtbare Brücke, die den 12px-Gap zwischen Nav-Link und Dropdown überbrückt */
.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px; right: -16px;
  height: 14px;
}
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 4px; cursor: pointer;
}
.nav-dropdown {
  display: none;
  position: absolute; top: calc(100% + 12px); left: -16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  min-width: 240px;
  padding: 8px 0;
  list-style: none; margin: 0;
  z-index: 200;
}
.nav-has-dropdown:focus-within .nav-dropdown,
.nav-has-dropdown.open .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  text-decoration: none; color: var(--text);
  transition: background .12s;
}
.nav-dropdown li a:hover { background: var(--bg-soft); color: var(--gold); }
.nav-drop-icon { font-size: 1.1rem; flex-shrink: 0; width: 24px; text-align: center; }
.nav-dropdown li a strong { display: block; font-size: .88rem; }
.nav-dropdown li a small { display: block; font-size: .77rem; color: var(--muted); margin-top: 1px; }
.nav-dropdown-divider { border-top: 1px solid var(--border); margin: 4px 0; }

/* Mobile nav */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .2s;
}
.nav-mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.4); z-index: 299;
}
.nav-mobile-overlay.open { display: block; }
.nav-mobile {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
  background: #fff; z-index: 300;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  transition: right .28s ease;
  overflow-y: auto;
}
.nav-mobile.open { right: 0; }
.nav-mobile-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-bottom: 1px solid var(--border);
  font-weight: 700;
}
.nav-mobile-close {
  background: none; border: none; font-size: 1.2rem;
  cursor: pointer; color: var(--muted); padding: 4px 8px;
}
.nav-mobile-links {
  list-style: none; margin: 0; padding: 8px 0;
}
.nav-mobile-links li a {
  display: block; padding: 12px 20px;
  text-decoration: none; color: var(--text); font-size: .95rem;
  transition: background .12s;
}
.nav-mobile-links li a:hover { background: var(--bg-soft); color: var(--gold); }
.nav-mobile-group-title {
  padding: 12px 20px 4px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted);
}
.nav-mobile-divider { border-top: 1px solid var(--border); margin: 8px 0; }
.nav-mobile-cta {
  background: var(--gold) !important; color: #fff !important;
  border-radius: 8px; margin: 12px 16px !important;
  padding: 13px 20px !important; font-weight: 600; text-align: center;
}

/* ── FAQ ── */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  max-width: 960px; margin: 0 auto;
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.faq-item:nth-child(even) { border-right: none; }
.faq-item:nth-last-child(-n+2) { border-bottom: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; cursor: pointer;
  padding: 24px 28px;
  font-weight: 600; font-size: 0.95rem; color: var(--text);
  list-style: none; user-select: none;
  transition: background .15s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.4rem; font-weight: 300; color: var(--gold);
  line-height: 1; transition: transform .2s;
}
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-item:hover .faq-q { background: var(--bg-soft); }
details[open] .faq-q { background: var(--bg-soft); color: var(--gold); }
.faq-a {
  padding: 0 28px 24px;
  font-size: 0.9rem; color: var(--muted); line-height: 1.75;
  background: var(--bg-soft);
}
.faq-a p { margin: 0; }
.faq-a a { color: var(--gold); }

/* ── Mobile ── */
@media (max-width: 900px) {
  .about-grid, .anfrage-wrap { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; height: 260px; }
  .gallery-grid-ref { grid-template-columns: 1fr 1fr; }
  .gallery-item-map { grid-column: span 2; height: 220px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { border-right: none !important; }
  .faq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .faq-item:last-child { border-bottom: none; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero h1 { font-size: 2.2rem; }
  .page-hero { min-height: 48vh; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .gallery-grid-ref { grid-template-columns: 1fr; }
  .gallery-item-map { grid-column: span 1; height: 200px; }
  .gallery-item-lg { height: 260px; }
  .usp-item { padding: 14px 20px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .faq-q { padding: 20px; font-size: 0.9rem; }
  .faq-a { padding: 0 20px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .bg-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
}
