/* ===== Brandner Immobilien — Ohmstraße 2 Weißenhorn ===== */
/* Sachlich-industrieller Stil — Anthrazit + Stahlblau-Akzent */

:root {
  --ink: #15171a;
  --ink-soft: #3b3f44;
  --ink-mute: #6b7280;
  --accent: #1e3a8a;        /* steel blue */
  --accent-deep: #14296b;
  --accent-soft: #eef2ff;
  --bg: #ffffff;
  --surface: #f6f7f8;
  --surface-dark: #0f1217;
  --border: #e4e7ec;
  --border-strong: #cdd3da;
  --radius: 4px;
  --radius-lg: 6px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 8px 24px rgba(15, 23, 42, 0.06);
  --maxw: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; gap: 2rem;
  height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 0.65rem;
  font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink);
  font-size: 0.98rem;
  flex-shrink: 0;
}
.brand-line {
  display: block; width: 26px; height: 3px;
  background: var(--accent);
}
.primary-nav {
  display: flex; gap: 0.25rem;
  margin-left: auto;
}
.primary-nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
  border-radius: var(--radius);
  transition: color 120ms, background 120ms;
}
.primary-nav a:hover { color: var(--ink); background: var(--surface); }
.primary-nav .nav-cta {
  color: var(--accent);
  font-weight: 600;
}
.header-phone {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 120ms, background 120ms;
}
.header-phone:hover { border-color: var(--accent); background: var(--accent-soft); }

@media (max-width: 900px) {
  .primary-nav { display: none; }
  .header-phone span { display: none; }
  .header-phone { padding: 0.5rem; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: min(720px, 90vh);
  display: flex; align-items: flex-end;
  color: white;
  overflow: hidden;
}
.hero-image, .hero-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,18,23,0.20) 0%, rgba(15,18,23,0.10) 35%, rgba(15,18,23,0.85) 100%);
}
.hero-content {
  position: relative;
  padding: 7rem 0 4rem;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.6rem 0 1.2rem;
}
.muted-light { color: rgba(255,255,255,0.78); font-weight: 400; }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin: 0 0 1.8rem;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: white;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-weight: 500;
}
.eyebrow-dark {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.eyebrow-light {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.hero-content-top { align-self: flex-start; padding: 4.5rem 0 7rem; }

.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  font-weight: 600; font-size: 0.96rem;
  border-radius: var(--radius);
  transition: transform 140ms, background 140ms, border-color 140ms, color 140ms;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-ghost { color: white; border: 1px solid rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.1rem; }
.btn-ghost-dark {
  color: var(--ink); border: 1px solid var(--border-strong);
  padding: 0.7rem 1.1rem;
}
.btn-ghost-dark:hover { background: var(--surface); border-color: var(--accent); }

/* ===== Facts ===== */
.facts {
  background: var(--ink);
  color: white;
  padding: 2.5rem 0;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.fact {
  background: var(--ink);
  padding: 1.5rem 1.6rem;
}
.fact-num {
  display: block;
  font-size: clamp(1.5rem, 2.3vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  line-height: 1.1;
}
.fact-label {
  display: block;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
}
.fact-accent .fact-num { color: #93c5fd; }

/* ===== Sections ===== */
.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.section-alt { background: var(--surface); }
.section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 1.2rem;
  max-width: 32ch;
}
.section .lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 65ch;
  margin: 0 0 2.5rem;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
}
.col-text h2 { margin-bottom: 1.4rem; }
.col-text p { color: var(--ink-soft); margin: 0 0 1rem; }
.col-image picture, .col-image img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.col-image img { width: 100%; }

/* ===== Modules grid ===== */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0 3rem;
}
.module {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem 1.6rem;
  transition: border-color 160ms, box-shadow 160ms, transform 160ms;
}
.module:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.module-num {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.02em;
}
.module h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.15rem;
  letter-spacing: -0.01em;
}
.module-size {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.7rem;
  letter-spacing: -0.01em;
}
.module-add {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-mute);
  display: inline-block;
  margin-left: 0.3rem;
}
.module p:last-child {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}
.module-office {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.module-office .module-num {
  background: rgba(255,255,255,0.18);
  color: white;
}
.module-office h3, .module-office .module-size { color: white; }
.module-office .module-add, .module-office p:last-child { color: rgba(255,255,255,0.85); }
.module-office:hover { background: var(--accent-deep); }

.konzept-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.8rem 2rem;
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  margin-top: 2.5rem;
}
.konzept-cta p {
  margin: 0; font-size: 1.05rem; color: var(--ink-soft);
}

/* ===== Konzept Interactive Stage ===== */
.konzept-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 0;
  --c1: #1e3a8a; /* Hochregallager */
  --c2: #0f766e; /* Lager 2 / Halle Ost */
  --c3: #b45309; /* Versand */
  --c4: #6d28d9; /* Büro Halle OG */
  --c5: #9d174d; /* Verwaltung */
}
.konzept-stage-view {
  position: relative;
}
.konzept-canvas {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0c0f14;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}
.konzept-base, .konzept-detail {
  position: absolute; inset: 0;
}
.konzept-base img, .konzept-detail img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.konzept-detail {
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 520ms ease, transform 780ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  z-index: 1;
}
.konzept-canvas.is-detail .konzept-detail { opacity: 1; transform: scale(1); }
.konzept-canvas.is-detail .konzept-base { filter: blur(2px) brightness(0.85); transform: scale(1.04); transition: filter 420ms, transform 780ms; }
.konzept-base { transition: filter 420ms, transform 780ms; }

.konzept-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}
.konzept-svg .hotspot {
  fill: var(--c-soft, rgba(30,58,138,0.10));
  stroke: var(--c-stroke, rgba(255,255,255,0.85));
  stroke-width: 2.5;
  stroke-linejoin: round;
  cursor: pointer;
  pointer-events: auto;
  transition: fill 220ms, stroke 220ms, stroke-width 220ms, transform 200ms;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.55));
  transform-origin: center;
  transform-box: fill-box;
}
.konzept-svg .hotspot:hover,
.konzept-svg .hotspot.is-active {
  fill: var(--c, rgba(30,58,138,0.42));
  stroke: #fff;
  stroke-width: 4;
}
.konzept-svg .hotspot[data-id="hochregallager"] { --c: rgba(30,58,138,0.50); --c-soft: rgba(30,58,138,0.15); --c-stroke: rgba(96,165,250,0.95); }
.konzept-svg .hotspot[data-id="lager2"]         { --c: rgba(15,118,110,0.50); --c-soft: rgba(15,118,110,0.16); --c-stroke: rgba(45,212,191,0.95); }
.konzept-svg .hotspot[data-id="versand"]        { --c: rgba(180,83,9,0.50);  --c-soft: rgba(180,83,9,0.16);  --c-stroke: rgba(251,191,36,0.95); }
.konzept-svg .hotspot[data-id="buero-halle"]    { --c: rgba(109,40,217,0.50); --c-soft: rgba(109,40,217,0.18); --c-stroke: rgba(196,181,253,0.95); }
.konzept-svg .hotspot[data-id="verwaltung"]     { --c: rgba(157,23,77,0.50);  --c-soft: rgba(157,23,77,0.18);  --c-stroke: rgba(244,114,182,0.95); }

.konzept-svg .label-bubble {
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms;
}
.konzept-svg .label-bubble.is-visible { opacity: 1; }
.konzept-svg .label-bubble rect {
  fill: rgba(15,18,23,0.92);
  rx: 4; ry: 4;
}
.konzept-svg .label-bubble text {
  fill: #fff;
  font: 600 22px var(--font);
  dominant-baseline: middle;
}

.konzept-canvas.is-detail .konzept-svg .hotspot,
.konzept-canvas.is-detail .konzept-svg .label-bubble {
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}

/* Edit mode disables normal hotspot interaction so clicks land on the canvas */
.konzept-stage.edit-mode .konzept-svg .hotspot { pointer-events: none; opacity: 0.45; }

.konzept-back {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 4;
  display: none;
  align-items: center; gap: 0.45rem;
  padding: 0.65rem 1.05rem;
  background: var(--accent);
  color: white;
  font-size: 0.92rem; font-weight: 600;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
}
.konzept-back:hover { background: var(--accent-deep); }
.konzept-canvas.is-detail .konzept-back { display: inline-flex; }

.konzept-hint {
  position: absolute;
  bottom: 0.9rem; right: 0.9rem;
  z-index: 3;
  padding: 0.4rem 0.8rem;
  background: rgba(15,18,23,0.75);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  pointer-events: none;
  transition: opacity 240ms;
}
.konzept-canvas.is-detail .konzept-hint { opacity: 0; }

/* ----- Right panel ----- */
.konzept-panel {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 92px;
  align-self: start;
  min-height: 360px;
}
.konzept-panel-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}
.konzept-panel h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.konzept-panel-add {
  display: block;
  font-size: 1rem;
  color: var(--ink-mute);
  font-weight: 400;
  margin-top: 0.2rem;
}
.konzept-panel p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.konzept-areal-list {
  list-style: none;
  padding: 0; margin: 1.4rem 0 0;
  border-top: 1px solid var(--border);
}
.konzept-areal-list li {
  display: flex; align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  transition: color 120ms, padding-left 120ms;
}
.konzept-areal-list li:hover {
  color: var(--accent);
  padding-left: 0.4rem;
}
.konzept-areal-list li em {
  font-style: normal;
  margin-left: auto;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
}
.bullet {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bullet-1 { background: var(--c1); }
.bullet-2 { background: var(--c2); }
.bullet-3 { background: var(--c3); }
.bullet-4 { background: var(--c4); }
.bullet-5 { background: var(--c5); }

.konzept-panel-detail .konzept-d-meta {
  display: flex; align-items: baseline; gap: 1rem;
  margin: 0 0 1rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.konzept-d-area {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.konzept-d-price {
  font-size: 0.92rem;
  color: var(--ink-mute);
  margin-left: auto;
  font-variant-numeric: tabular-nums;
}
.konzept-d-figure {
  margin: 0 0 1.2rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.konzept-d-figure img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
}
.konzept-d-figure figcaption {
  font-size: 0.84rem;
  color: var(--ink-mute);
  padding: 0.5rem 0.7rem;
}
.btn-block { display: block; width: 100%; text-align: center; }

/* ----- Edit mode (URL hash #edit-hotspots) ----- */
.konzept-stage.edit-mode .konzept-svg { pointer-events: auto; cursor: crosshair; }
.konzept-stage.edit-mode .hotspot { stroke: rgba(255,255,0,0.7); }
.konzept-edit-point { fill: #fde047; stroke: #000; stroke-width: 1; cursor: grab; pointer-events: auto; }
.konzept-edit-poly { fill: rgba(253,224,71,0.18); stroke: #fde047; stroke-width: 2; pointer-events: none; }
.konzept-edit-banner {
  position: absolute; top: 0.9rem; right: 0.9rem; z-index: 5;
  padding: 0.6rem 0.9rem;
  background: rgba(253,224,71,0.95); color: #15171a;
  font-size: 0.85rem; font-weight: 600;
  border-radius: var(--radius);
  max-width: 280px;
  line-height: 1.4;
}

/* ----- Mobile ----- */
@media (max-width: 860px) {
  .konzept-stage {
    grid-template-columns: 1fr;
  }
  .konzept-panel {
    position: static;
    min-height: 0;
  }
  .konzept-canvas { aspect-ratio: 16 / 11; }
}
@media (max-width: 560px) {
  .konzept-canvas { aspect-ratio: 4 / 3; }
  .konzept-svg .label-bubble { display: none; }
  .konzept-hint { font-size: 0.72rem; }
}

/* ===== Galerie ===== */
.tabs {
  display: flex; gap: 0.25rem;
  border-bottom: 1px solid var(--border);
  margin: 1.5rem 0 2rem;
}
.tab {
  padding: 0.7rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-mute);
  border-bottom: 2px solid transparent;
  transition: color 120ms, border-color 120ms;
  margin-bottom: -1px;
}
.tab:hover { color: var(--ink); }
.tab-active { color: var(--accent); border-color: var(--accent); font-weight: 600; }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.6rem;
}
.gallery.hidden { display: none; }
.gallery-item {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 300ms, filter 200ms;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18));
  opacity: 0; transition: opacity 160ms;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

/* ===== Gallery Carousel (full-width slider) ===== */
.gallery-carousel { position: relative; margin-top: 1.6rem; }
.gc-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-dark);
  box-shadow: 0 12px 36px rgba(15,18,23,0.18);
}
.gc-track {
  display: flex;
  transition: transform 460ms cubic-bezier(0.4, 0.0, 0.2, 1);
  will-change: transform;
}
.gc-slide {
  flex: 0 0 100%;
  display: block;
  aspect-ratio: 16 / 9;
  position: relative;
  cursor: zoom-in;
}
.gc-slide picture, .gc-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gc-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 54px;
  background: rgba(255, 255, 255, 0.95);
  border: 0; border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15,18,23,0.28);
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: background 160ms, transform 160ms;
}
.gc-prev { left: 1rem; }
.gc-next { right: 1rem; }
.gc-arrow:hover { background: white; transform: translateY(-50%) scale(1.06); }
.gc-arrow:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.gc-counter {
  position: absolute; right: 1rem; bottom: 1rem;
  background: rgba(15,18,23,0.78);
  color: white;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
  z-index: 3;
  pointer-events: none;
}
.gc-caption {
  text-align: center;
  margin: 1rem 0 0;
  color: var(--ink-mute);
  font-size: 0.98rem;
  min-height: 1.3em;
}
@media (max-width: 640px) {
  .gc-arrow { width: 44px; height: 44px; }
  .gc-arrow svg { width: 18px; height: 18px; }
  .gc-prev { left: 0.5rem; }
  .gc-next { right: 0.5rem; }
  .gc-counter { right: 0.6rem; bottom: 0.6rem; font-size: 0.78rem; padding: 0.3rem 0.7rem; }
}

/* ===== Grundrisse / Downloads ===== */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.download-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 160ms, transform 160ms, box-shadow 160ms;
}
.download-card:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.download-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
}
.download-body { display: flex; flex-direction: column; gap: 0.2rem; }
.download-body strong { font-size: 1rem; color: var(--ink); }
.download-body span { font-size: 0.88rem; color: var(--ink-mute); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.plans-grid figure {
  margin: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.plans-grid img {
  width: 100%;
  background: white;
}
.plans-grid figcaption {
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--border);
}

/* ===== Lage ===== */
.anfahrt-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.anfahrt-list li {
  display: flex; gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
}
.anfahrt-list li span {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--ink);
  min-width: 130px;
}

/* ===== Kontakt ===== */
.section-contact {
  background: var(--surface-dark);
  color: white;
}
.section-contact h2 { color: white; }
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2.5rem 0;
}
@media (max-width: 700px) {
  .contact-cards { grid-template-columns: 1fr; }
}
.contact-card {
  display: flex; flex-direction: column;
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  color: white;
  transition: background 160ms, border-color 160ms, transform 160ms;
}
.contact-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.contact-icon {
  width: 56px; height: 56px;
  background: var(--accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
}
.contact-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
}
.contact-value {
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.contact-hint { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.contact-foot {
  margin: 0;
  color: rgba(255,255,255,0.75);
  max-width: 65ch;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.site-footer .brand { color: white; margin-bottom: 0.6rem; }
.site-footer p { margin: 0; line-height: 1.6; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { color: rgba(255,255,255,0.7); transition: color 120ms; }
.footer-nav a:hover { color: white; }
.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ===== Mobile sticky CTA ===== */
.mobile-cta { display: none; }
@media (max-width: 700px) {
  .mobile-cta {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(15, 18, 23, 0.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .mobile-cta a {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.9rem 0.6rem;
    color: white;
    font-weight: 600; font-size: 0.95rem;
  }
  .mobile-cta a + a { border-left: 1px solid rgba(255,255,255,0.1); }
  body { padding-bottom: 60px; }
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 12, 16, 0.95);
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: min(100%, 1400px);
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  color: white;
  font-size: 2.5rem;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: background 120ms;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.18); }
.lb-close { top: 1.5rem; right: 1.5rem; font-size: 1.8rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-caption {
  position: absolute;
  bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  background: rgba(0,0,0,0.4);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
}

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