/* === HBT SHARED STYLES – DARK THEME === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1a2b5e;
  --navy-dark:   #122050;
  --navy-deeper: #0d1840;
  --navy-mid:    #0f1a48;
  --gold:        #e8a020;
  --gold-light:  #f0b84a;
  --white:       #ffffff;
  --text-muted:  rgba(255,255,255,0.6);
  --text-faint:  rgba(255,255,255,0.38);
  --border-gold: rgba(232,160,32,0.18);
  --border-grid: rgba(232,160,32,0.14);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy-dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5vw;
  background: rgba(17,28,68,0.97);
  border-bottom: 1px solid var(--border-gold);
  transition: background 0.3s;
}
nav.scrolled { background: rgba(10,18,52,0.98); }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo-mark { width: 42px; height: 42px; }
.nav-logo-mark svg { width: 100%; height: 100%; }
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.05rem; letter-spacing: 0.18em;
  color: var(--white); line-height: 1.1;
}
.nav-logo-text span { display: block; font-weight: 300; font-size: 0.65rem; color: var(--gold); letter-spacing: 0.22em; }
nav ul { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
nav ul a {
  text-decoration: none; color: rgba(255,255,255,0.72);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; transition: color 0.2s;
}
nav ul a:hover, nav ul a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy-dark) !important;
  padding: 0.5rem 1.2rem; font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── PAGE HERO ───────────────────────────── */
.page-hero {
  padding-top: 78px;
  background: var(--navy-deeper);
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(232,160,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 5rem 5vw 4.5rem;
  position: relative; z-index: 1;
}
.page-hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.page-hero-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.95; text-transform: uppercase; letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: normal; color: var(--gold); display: block; }
.page-hero-lead {
  margin-top: 1.5rem; font-size: 1rem; font-weight: 300;
  color: var(--text-muted); max-width: 540px; line-height: 1.7;
}

/* ── PHOTO HERO ──────────────────────────── */
.page-hero-photo {
  padding-top: 78px; min-height: 400px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.page-hero-photo-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,24,64,0.92) 0%, rgba(13,24,64,0.55) 100%);
}
.page-hero-photo-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 0 5vw 4.5rem;
}

/* ── SECTION ─────────────────────────────── */
.section { padding: 6rem 5vw; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1rem;
}
.section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.6rem);
  text-transform: uppercase; line-height: 1;
  margin-bottom: 3rem;
}

/* ── BUTTONS ─────────────────────────────── */
.btn-primary {
  background: var(--gold); color: var(--navy-dark);
  padding: 0.95rem 2.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  display: inline-block; transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.3); color: var(--white);
  padding: 0.95rem 2.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  display: inline-block; transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy-dark); color: var(--white);
  padding: 0.95rem 2.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  display: inline-block; transition: background 0.2s, transform 0.2s;
}
.btn-navy:hover { background: var(--navy); transform: translateY(-2px); }

/* ── LEISTUNGEN ──────────────────────────── */
.leistungen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--border-grid);
  border: 1.5px solid var(--border-grid);
}
.leistung-card {
  background: var(--navy-dark); padding: 2.5rem 2rem;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.leistung-card:hover { background: var(--navy); }
.leistung-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 3rem; color: rgba(232,160,32,0.08);
  line-height: 1; margin-bottom: 0.5rem; transition: color 0.3s;
}
.leistung-card:hover .leistung-num { color: rgba(232,160,32,0.15); }
.leistung-icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem; transition: background 0.3s;
}
.leistung-card:hover .leistung-icon { background: var(--gold); }
.leistung-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.leistung-card:hover .leistung-icon svg { stroke: var(--navy-dark); }
.leistung-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--white); margin-bottom: 0.6rem;
}
.leistung-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── LEISTUNG DETAIL (leistungen.html) ───── */
.ld-jump { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2.2rem; }
.ld-jump a {
  padding: 0.5rem 1.1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(232,160,32,0.25); color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.ld-jump a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.ld-item {
  padding: 6rem 5vw; background: var(--navy-dark);
  border-top: 1px solid var(--border-grid);
  scroll-margin-top: 78px; /* Höhe der fixierten Navigation */
}
.ld-item:nth-child(even) { background: var(--navy-mid); }
.ld-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.ld-item:nth-child(even) .ld-media { order: 2; }
.ld-media {
  position: relative; aspect-ratio: 4/3;
  background: var(--navy); border: 1.5px solid rgba(232,160,32,0.25);
}
.ld-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ld-media::before, .ld-media::after {
  content: ''; position: absolute; z-index: 1; pointer-events: none;
  width: 48px; height: 48px; border: 3px solid var(--gold);
}
.ld-media::before { top: -12px; left: -12px; border-right: none; border-bottom: none; }
.ld-media::after { bottom: -12px; right: -12px; border-left: none; border-top: none; }
.ld-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  background-image:
    linear-gradient(rgba(232,160,32,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,160,32,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--text-faint);
}
.ld-placeholder svg { width: 56px; height: 56px; stroke: rgba(232,160,32,0.4); fill: none; stroke-width: 1.2; }
.ld-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 4.5rem; line-height: 1;
  color: rgba(232,160,32,0.14); margin-bottom: 0.2rem; transition: color 0.6s;
}
.ld-item:target .ld-num { color: var(--gold); }
.ld-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase; line-height: 1; margin-bottom: 1.5rem;
}
.ld-lead { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 1rem; }
.ld-text p:not(.ld-lead) { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }
.ld-points-label { margin-top: 2rem; }
.ld-points { list-style: none; display: grid; gap: 0.7rem; margin-bottom: 2.2rem; }
.ld-points li { display: flex; gap: 0.9rem; font-size: 0.92rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.ld-points li::before { content: ''; width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; margin-top: 0.5rem; }
.ld-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── LEISTUNG UNTERSEITE (z. B. altbausanierung.html) ── */
.section[id] { scroll-margin-top: 78px; }
.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 1.6rem;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.6rem; color: var(--gold); }
.sub-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.bereich-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5px; background: var(--border-grid); border: 1.5px solid var(--border-grid);
}
.bereich-card { background: var(--navy-mid); padding: 2.4rem 2.2rem; transition: background 0.3s; }
.bereich-card:hover { background: var(--navy); }
.bereich-card:hover .leistung-icon { background: var(--gold); }
.bereich-card:hover .leistung-icon svg { stroke: var(--navy-dark); }
.bereich-head { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.4rem; }
.bereich-head .leistung-icon { margin-bottom: 0; flex-shrink: 0; }
.bereich-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold);
}
.bereich-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.3rem; letter-spacing: 0.04em;
  text-transform: uppercase; line-height: 1.15;
}
.bereich-card .ld-points { margin-bottom: 0; }
.bereich-note { font-size: 0.85rem; font-style: italic; color: var(--gold-light); margin: 0 0 1rem; }
.bereich-card .ld-points + .bereich-note { margin: 1.2rem 0 0; }
/* Letzte Karte bei ungerader Anzahl: volle Breite, Liste zweispaltig */
.bereich-card--wide { grid-column: 1 / -1; }
.bereich-card--wide .ld-points { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
.bereich-link {
  display: inline-block; margin-top: 1.4rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  text-decoration: none; border-bottom: 1px solid rgba(232,160,32,0.3); padding-bottom: 0.2rem;
  transition: border-color 0.2s;
}
.bereich-link:hover { border-color: var(--gold); }
.tag-optional {
  display: inline-block; vertical-align: middle; margin-left: 0.5rem;
  padding: 0.15rem 0.5rem; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em;
  border: 1px solid var(--border-gold); color: var(--text-muted);
}
.hinweis-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--border-grid); border: 1.5px solid var(--border-grid);
}
.hinweis-card { background: var(--navy-deeper); padding: 2.5rem 2.2rem; border-top: 3px solid var(--gold); }
.hinweis-card .bereich-title { margin-bottom: 0.9rem; }
.hinweis-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.hinweis-card .ld-points { margin-bottom: 0; }
.hinweis-grid--2 { grid-template-columns: repeat(2, 1fr); }
.hinweis-card--wide { grid-column: 1 / -1; }

/* Messverfahren (leckortung.html) */
.verfahren-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5px; background: var(--border-grid); border: 1.5px solid var(--border-grid);
}
.verfahren-card { background: var(--navy-dark); padding: 2rem 1.6rem; transition: background 0.3s; }
.verfahren-card:hover { background: var(--navy); }
.verfahren-card:hover .leistung-icon { background: var(--gold); }
.verfahren-card:hover .leistung-icon svg { stroke: var(--navy-dark); }
.verfahren-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.15rem;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.verfahren-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }
.verfahren-tag {
  display: inline-block; margin-top: 0.9rem; padding: 0.2rem 0.55rem;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--border-gold);
}
.verfahren-intro { background: var(--gold); display: flex; flex-direction: column; justify-content: flex-end; }
.verfahren-intro:hover { background: var(--gold-light); }
.verfahren-big {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 5rem;
  line-height: 0.9; color: var(--navy-dark); margin-bottom: 0.8rem;
}
.verfahren-intro p { color: var(--navy-dark); font-size: 0.95rem; font-weight: 500; }
/* Bildplätze */
.sub-hero-split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: center; }
.sub-hero-media { aspect-ratio: 1 / 1; }
.ld-placeholder small {
  max-width: 80%; text-align: center; font-family: 'Barlow', sans-serif;
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.02em; text-transform: none;
  color: rgba(255,255,255,0.3); margin-top: -0.4rem;
}
.img-slot {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--navy); border: 1.5px solid rgba(232,160,32,0.25);
}
.img-slot--portrait { aspect-ratio: 4 / 5; }
.img-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.img-slot:hover img { transform: scale(1.04); }
.img-slot .vn-label { z-index: 2; }
.foto-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.foto-item:nth-child(2) { margin-top: 3rem; } /* versetzt für einen lebendigeren Look */
.foto-item figcaption {
  display: flex; align-items: center; gap: 0.8rem; margin-top: 1rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.foto-item figcaption span { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.2em; }
.vn-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* Zeitstrahl (Reihenfolge der Gewerke) */
.timeline { position: relative; max-width: 1000px; margin: 0 auto; }
.timeline::before, .timeline-progress {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; margin-left: -1px;
}
.timeline::before { background: rgba(232,160,32,0.15); }
.timeline-progress {
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  transform: scaleY(0); transform-origin: top; will-change: transform;
}
.tl-list { list-style: none; position: relative; }
.tl-phase { display: flex; justify-content: center; margin: 3rem 0 2rem; }
.tl-phase:first-child { margin-top: 0; }
.tl-phase span {
  position: relative; z-index: 1; background: var(--navy-mid);
  border: 1px solid var(--border-gold); padding: 0.5rem 1.1rem;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.tl-step {
  display: grid; grid-template-columns: 1fr 104px 1fr; align-items: center;
  margin-bottom: 2.2rem;
}
.tl-node {
  grid-column: 2; grid-row: 1; justify-self: center;
  position: relative; z-index: 1; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-mid); border: 2px solid rgba(232,160,32,0.35);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--gold);
  transition: background 0.4s, border-color 0.4s, color 0.4s;
}
.tl-node.is-active { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
/* Pfeil nach unten zum nächsten Schritt */
.tl-step .tl-node::after {
  content: ''; position: absolute; left: 50%; top: calc(100% + 0.75rem);
  width: 8px; height: 8px; margin-left: -4px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg); opacity: 0.6;
}
.tl-card {
  grid-column: 1; grid-row: 1; position: relative; text-align: right;
  background: var(--navy-dark); border: 1px solid var(--border-grid);
  padding: 1.4rem 1.6rem; transition: border-color 0.3s;
}
.tl-card:hover { border-color: var(--border-gold); }
.tl-step--right .tl-card { grid-column: 3; text-align: left; }
/* Verbindungslinie Karte → Knoten */
.tl-card::after {
  content: ''; position: absolute; top: 50%; width: 26px; height: 2px;
  background: rgba(232,160,32,0.35); right: -27px;
}
.tl-step--right .tl-card::after { right: auto; left: -27px; }
.tl-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.2rem;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.4rem;
}
.tl-card h3 small {
  display: inline-block; margin-left: 0.4rem; padding: 0.1rem 0.45rem; vertical-align: middle;
  font-size: 0.62rem; letter-spacing: 0.14em; color: var(--gold); border: 1px solid var(--border-gold);
}
.tl-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.tl-end { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; margin-top: 3rem; position: relative; z-index: 1; }
.tl-end-node { width: 60px; height: 60px; border-radius: 50%; }
.tl-end-node svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.tl-end-text {
  text-align: center; background: var(--navy-mid); padding: 0 1rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.5rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.tl-end-text span { display: block; font-weight: 400; font-size: 0.85rem; letter-spacing: 0.12em; color: var(--text-muted); }

@media (max-width: 760px) {
  .timeline::before, .timeline-progress { left: 26px; }
  .tl-phase { justify-content: flex-start; }
  .tl-step { grid-template-columns: 52px 1fr; column-gap: 1.2rem; }
  .tl-node { grid-column: 1; }
  .tl-card, .tl-step--right .tl-card { grid-column: 2; text-align: left; padding: 1.2rem 1.2rem; }
  .tl-card::after, .tl-step--right .tl-card::after { left: -1.2rem; right: auto; width: 1.2rem; }
  .tl-end { align-items: flex-start; }
  .tl-end-node { margin-left: -4px; }
  .tl-end-text { text-align: left; padding: 0; }
}

/* ── STATS BAND ──────────────────────────── */
.stats-band { background: var(--navy-deeper); padding: 5rem 5vw; }
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid var(--border-gold);
}
.stat-block {
  padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid rgba(232,160,32,0.1);
  transition: background 0.3s;
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: rgba(232,160,32,0.04); }
.stat-big {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 3.5rem; color: var(--gold); line-height: 1;
}
.stat-lbl {
  font-size: 0.72rem; color: var(--text-faint);
  letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.4rem;
}

/* ── ABOUT ───────────────────────────────── */
.about-section { background: var(--navy-deeper); }
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.2rem; }
.about-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.about-item { display: flex; align-items: flex-start; gap: 1rem; }
.about-bullet { width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; margin-top: 0.55rem; }
.about-item-text { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
.about-item-text strong { color: var(--white); font-weight: 600; }
.about-visual { }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; display: block; }
.about-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  border: 1.5px solid rgba(232,160,32,0.25); pointer-events: none;
}
.about-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--border-grid); margin-top: 1.5px;
}
.about-card {
  background: var(--navy); padding: 1.5rem; text-align: center;
}
.about-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 2rem; color: var(--gold);
}
.about-card-lbl { font-size: 0.7rem; color: var(--text-faint); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.15rem; }

/* ── VALUES ──────────────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5px; background: var(--border-grid);
  border: 1.5px solid var(--border-grid); margin-top: 3rem;
}
.value-card {
  background: var(--navy-dark); padding: 2.5rem 2rem; transition: background 0.3s;
}
.value-card:hover { background: var(--navy); }
.value-icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; transition: background 0.3s;
}
.value-card:hover .value-icon { background: var(--gold); }
.value-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.value-card:hover .value-icon svg { stroke: var(--navy-dark); }
.value-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--white); margin-bottom: 0.6rem;
}
.value-desc { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── PROCESS ─────────────────────────────── */
.process-section { background: var(--navy-mid); }
.process-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5px; background: var(--border-grid);
  border: 1.5px solid var(--border-grid);
}
.process-step {
  background: var(--navy-mid); padding: 2.5rem 2rem; transition: background 0.3s;
}
.process-step:hover { background: var(--navy); }
.step-circle {
  width: 52px; height: 52px;
  border: 1.5px solid rgba(232,160,32,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: border-color 0.3s, background 0.3s;
}
.process-step:hover .step-circle { border-color: var(--gold); background: rgba(232,160,32,0.1); }
.step-n {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.4rem; color: var(--gold);
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--white); margin-bottom: 0.6rem;
}
.step-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* ── PROCESS DETAIL ──────────────────────── */
.pdi-list {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1.5px;
  background: var(--border-grid); border: 1.5px solid var(--border-grid);
}
.pdi {
  background: var(--navy-mid);
  display: grid; grid-template-columns: 80px 1fr;
  transition: background 0.3s;
}
.pdi:hover { background: var(--navy); }
.pdi-n {
  background: var(--navy-deeper);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 1.8rem; color: var(--gold);
  border-right: 1.5px solid var(--border-grid); transition: background 0.3s;
}
.pdi:hover .pdi-n { background: rgba(232,160,32,0.08); }
.pdi-body { padding: 2rem 2.5rem; }
.pdi-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--white); margin-bottom: 0.5rem;
}
.pdi-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ── PROJEKTE ────────────────────────────── */
.projekte-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--border-grid);
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; border: 1px solid rgba(232,160,32,0.2);
  background: transparent; color: rgba(255,255,255,0.6);
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold); color: var(--navy-dark); border-color: var(--gold);
}
.projekt-card {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  background: var(--navy); cursor: pointer;
}
.projekt-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
}
.projekt-card:hover .projekt-bg { transform: scale(1.07); }
.projekt-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,18,48,0.92) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.projekt-cat { font-size: 0.63rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.projekt-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.1rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--white);
}
.projekt-sub { font-size: 0.76rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }
.projekt-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.projekt-card:hover::after { transform: scaleX(1); }

/* ── KONTAKT BAND ────────────────────────── */
.kontakt-band { background: var(--gold); padding: 4rem 5vw; }
.kontakt-band-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
}
.kontakt-band-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-dark); text-transform: uppercase; line-height: 1;
}
.kontakt-band-text span { display: block; font-weight: 300; font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.kontakt-details { display: flex; flex-direction: column; gap: 0.7rem; }
.kontakt-row { display: flex; align-items: center; gap: 0.8rem; font-size: 0.95rem; color: var(--navy-dark); font-weight: 500; }
.kontakt-row svg { width: 18px; height: 18px; stroke: var(--navy-dark); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.kontakt-row a { color: var(--navy-dark); text-decoration: none; font-weight: 600; }
.kontakt-row a:hover { text-decoration: underline; }

/* ── FORM SECTION ────────────────────────── */
.form-section { background: var(--navy-mid); }
.form-section-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start;
}
.form-info-rows { display: flex; flex-direction: column; gap: 1.3rem; margin-top: 2rem; }
.form-info-row { display: flex; align-items: flex-start; gap: 0.9rem; }
.form-info-icon {
  width: 36px; height: 36px; border: 1px solid rgba(232,160,32,0.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.form-info-icon svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.form-info-text { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.form-info-text strong { display: block; color: rgba(255,255,255,0.9); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.1rem; }
.form-info-text a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.form-info-text a:hover { color: var(--gold); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.form-field input, .form-field textarea, .form-field select {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(232,160,32,0.2);
  padding: 0.8rem 1rem; font-family: 'Barlow', sans-serif; font-size: 0.9rem;
  color: var(--white); outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-field select option { background: var(--navy-dark); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--gold); background: rgba(255,255,255,0.07);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: var(--gold); color: var(--navy-dark);
  padding: 0.95rem 2.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.14em;
  text-transform: uppercase; border: none; cursor: pointer;
  margin-top: 1rem; transition: background 0.2s, transform 0.2s;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── MAP ─────────────────────────────────── */
.map-section { background: var(--navy-deeper); }
.map-wrapper {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 340px;
}
.map-frame { position: relative; height: 420px; overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.7) contrast(1.1); }
.map-frame::after { content: ''; position: absolute; inset: 0; border: 1.5px solid rgba(232,160,32,0.25); pointer-events: none; }
.map-info {
  background: var(--navy); padding: 3rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1.8rem;
  border: 1.5px solid rgba(232,160,32,0.15); border-left: none;
}
.map-info-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.3rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); }
.map-info-title span { color: var(--gold); }
.map-info-rows { display: flex; flex-direction: column; gap: 1rem; }
.map-info-row { display: flex; align-items: flex-start; gap: 0.9rem; font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.map-info-row svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }
.map-info-row a { color: rgba(255,255,255,0.7); text-decoration: none; }
.map-info-row a:hover { color: var(--gold); }
.map-directions {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  text-decoration: none; border-bottom: 1px solid rgba(232,160,32,0.3);
  padding-bottom: 0.2rem; transition: border-color 0.2s;
}
.map-directions:hover { border-color: var(--gold); }

/* ── CTA BAND ────────────────────────────── */
.cta-band { background: var(--navy-deeper); padding: 6rem 5vw; text-align: center; }
.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.5rem);
  text-transform: uppercase; line-height: 1; margin-bottom: 1rem;
}
.cta-band p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ─────────────────────────────────── */
.faq-section { background: var(--navy-dark); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list {
  margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5px;
  background: var(--border-grid); border: 1.5px solid var(--border-grid);
}
.faq-item { background: var(--navy-dark); }
.faq-q {
  padding: 1.4rem 1.8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--white);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  user-select: none; transition: background 0.2s;
}
.faq-q:hover { background: var(--navy); }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--gold); font-weight: 300; transition: transform 0.25s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.75;
  padding: 0 1.8rem; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.8rem 1.4rem; }

/* ── FOOTER ──────────────────────────────── */
footer { background: var(--navy-deeper); padding: 3rem 5vw; border-top: 1px solid rgba(232,160,32,0.15); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; letter-spacing: 0.18em; color: var(--white); }
.footer-brand span { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 960px) {
  .leistungen-grid { grid-template-columns: 1fr 1fr; }
  .ld-item { padding: 4.5rem 5vw; }
  .ld-inner { grid-template-columns: 1fr; gap: 3rem; }
  .ld-item:nth-child(even) .ld-media { order: 0; }
  .hinweis-grid { grid-template-columns: 1fr; }
  .verfahren-grid { grid-template-columns: 1fr 1fr; }
  .sub-hero-split { grid-template-columns: 1fr; gap: 3rem; }
  .sub-hero-media { aspect-ratio: 4 / 3; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .form-section-inner { grid-template-columns: 1fr; gap: 3rem; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .projekte-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-band-inner { flex-direction: column; }
  .map-wrapper { grid-template-columns: 1fr; }
  .map-info { border-left: 1.5px solid rgba(232,160,32,0.15); border-top: none; }
  .map-frame { height: 300px; }
}
@media (max-width: 640px) {
  nav ul { display: none; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .bereich-grid { grid-template-columns: 1fr; }
  .bereich-card { padding: 2rem 1.5rem; }
  .bereich-card--wide .ld-points { grid-template-columns: 1fr; }
  .verfahren-grid { grid-template-columns: 1fr; }
  .foto-band { grid-template-columns: 1fr; }
  .foto-item:nth-child(2) { margin-top: 0; }
  .img-slot--portrait { aspect-ratio: 4 / 3; }
  .vn-pair { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .projekte-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .pdi { grid-template-columns: 60px 1fr; }
  .about-cards { grid-template-columns: 1fr 1fr; }
}

/* ── VORHER/NACHHER LABELS ───────────────── */
.vn-label {
  position: absolute; top: 0.8rem; padding: 0.25rem 0.7rem;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; z-index: 12; pointer-events: none;
}
.vn-label--before { left: 0.8rem; background: rgba(13,24,64,0.88); color: rgba(255,255,255,0.7); border: 1px solid var(--border-gold); }
.vn-label--after  { right: 0.8rem; background: var(--gold); color: var(--navy-dark); }

/* ── GALLERY CARDS (multi-angle) ─────────── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--border-grid); border: 1.5px solid var(--border-grid);
}
.gallery-card { background: var(--navy-dark); overflow: hidden; }
.gallery-main-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--navy); }
.gallery-main-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease, object-position 0.4s ease;
}
.gallery-card:hover .gallery-main-img { transform: scale(1.04); }
.gallery-main-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,18,48,0.85) 0%, transparent 50%);
  pointer-events: none; z-index: 1;
}
.gallery-main-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.2rem; z-index: 2; pointer-events: none;
}
.gallery-cat { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.gallery-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; }
.gallery-sub { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 0.1rem; }
.gallery-thumbs { display: flex; gap: 2px; padding: 6px; background: var(--navy-deeper); }
.gallery-thumb {
  flex: 0 1 25%; aspect-ratio: 4/3; overflow: hidden; cursor: pointer;
  opacity: 0.45; transition: opacity 0.2s; border: 1.5px solid transparent;
}
.gallery-thumb:hover { opacity: 0.75; }
.gallery-thumb.active { opacity: 1; border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── LIGHTBOX (Bilder vergroessern) ───────── */
.gallery-main-wrap { cursor: zoom-in; }
.gallery-zoom {
  position: absolute; top: 0.8rem; right: 0.8rem; z-index: 3;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  background: rgba(13,24,64,0.72); border: 1px solid var(--border-gold);
  opacity: 0; transition: opacity 0.25s; pointer-events: none;
}
.gallery-card:hover .gallery-zoom { opacity: 1; }
.gallery-zoom svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  background: rgba(8,14,36,0.95); padding: 4.5rem 1rem 3.5rem;
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: min(1200px, 92vw); max-height: 82vh;
  object-fit: contain; display: block; border: 1.5px solid var(--border-gold);
}
.lb-btn {
  position: absolute; display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; cursor: pointer;
  background: rgba(13,24,64,0.85); border: 1.5px solid var(--border-gold);
  transition: background 0.2s, border-color 0.2s;
}
.lb-btn:hover { background: var(--gold); border-color: var(--gold); }
.lb-btn svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }
.lb-btn:hover svg { stroke: var(--navy-dark); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-bar {
  position: absolute; left: 0; right: 0; bottom: 1.1rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.08em; text-transform: uppercase;
  pointer-events: none;
}
.lb-title { font-weight: 700; font-size: 0.95rem; color: #fff; }
.lb-counter { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); }
@media (max-width: 640px) {
  .lightbox { padding: 4rem 0.5rem 4.5rem; }
  .lb-btn { width: 42px; height: 42px; }
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
  .lb-img { max-height: 72vh; }
}

/* ── PREVIEW CAROUSEL (landing page) ─────── */
.preview-outer { overflow: hidden; border: 1.5px solid var(--border-gold); }
.preview-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.preview-slide {
  min-width: 33.333%; flex-shrink: 0;
  position: relative; aspect-ratio: 4/3; background: var(--navy); overflow: hidden;
  border-right: 1.5px solid var(--border-grid);
}
.preview-slide:last-child { border-right: none; }
.preview-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.preview-slide:hover img { transform: scale(1.06); }
.preview-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,18,48,0.9) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.2rem; pointer-events: none;
}
.preview-cat { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.preview-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; }
.preview-year { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 0.1rem; }
.preview-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem; }
.preview-dots { display: flex; gap: 0.4rem; align-items: center; }
.preview-dot { width: 24px; height: 2px; background: rgba(255,255,255,0.18); cursor: pointer; transition: background 0.25s; border: none; padding: 0; }
.preview-dot.active { background: var(--gold); }
.preview-arrows { display: flex; gap: 0.5rem; }
.preview-arrow {
  width: 40px; height: 40px; background: transparent;
  border: 1px solid rgba(232,160,32,0.3); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: all 0.2s;
}
.preview-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.preview-arrow svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; pointer-events: none; }

@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .preview-slide { min-width: 50%; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .preview-slide { min-width: 100%; }
}
