/* ============================================================
   SCHREINEREI RIEGLER – Hauptstylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── Variablen ─────────────────────────────────────────────── */
:root {
  --blue:        #2B5EA7;
  --blue-light:  #57C4DC;
  --blue-dark:   #1A3F7A;
  --teal:        #00A8C8;
  --gray:        #878787;
  --dark:        #111111;
  --white:       #FFFFFF;
  --off-white:   #F8F9FA;
  --light-blue:  #EEF7FC;

  --font-h:      'Playfair Display', Georgia, serif;
  --font-b:      'Lato', Arial, sans-serif;

  --nav-h:       80px;
  --max-w:       1200px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:           0.4s var(--ease);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Page Loader ─────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.loader-inner img { filter: none; }
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block; height: 100%;
  background: var(--blue-light);
  animation: loadBar 1.2s var(--ease) forwards;
}
@keyframes loadBar {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── Navigation ──────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background var(--t), box-shadow var(--t);
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 2px 24px rgba(0,0,0,.07);
}
.navbar-logo { height: 53px; display: flex; align-items: center; }
.navbar-logo img { height: 53px; width: auto; display: block; }
.navbar-logo .logo-night { display: block; }
.navbar-logo .logo-day   { display: none; }
.navbar.scrolled .navbar-logo .logo-day   { display: block; }
.navbar.scrolled .navbar-logo .logo-night { display: none; }

.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 12px; font-weight: 400;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white);
  transition: color var(--t);
  position: relative; padding-bottom: 4px;
}
.navbar.scrolled .nav-links a { color: var(--dark); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--blue);
  transition: width var(--t);
}
.nav-links a:hover::after { width: 100%; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--t);
}
.navbar.scrolled .burger span { background: var(--dark); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Menü Overlay ────────────────────────────────────────────── */
.menu-overlay {
  position: fixed; top: 0; right: -100%; width: 100%; height: 100%;
  background: var(--dark);
  z-index: 99;
  display: flex; flex-direction: column;
  align-items: flex-end; justify-content: center;
  padding: 40px 60px;
  transition: right .55s cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-overlay.open { right: 0; }

.menu-close {
  position: absolute; top: 28px; right: 48px;
  background: none; border: none;
  color: var(--white); font-size: 42px; line-height: 1;
  cursor: pointer;
  transition: transform var(--t), color var(--t);
}
.menu-close:hover { transform: rotate(90deg); color: var(--blue-light); }

.menu-nav { list-style: none; text-align: right; }
.menu-nav li { overflow: hidden; margin-bottom: 20px; }
.menu-nav a {
  font-family: var(--font-h);
  font-size: clamp(30px, 5vw, 52px);
  color: var(--white);
  display: inline-block;
  transform: translateY(110%);
  transition: transform .45s var(--ease), color .3s;
}
.menu-overlay.open .menu-nav a { transform: translateY(0); }
.menu-nav li:nth-child(1) a { transition-delay: .08s; }
.menu-nav li:nth-child(2) a { transition-delay: .14s; }
.menu-nav li:nth-child(3) a { transition-delay: .20s; }
.menu-nav li:nth-child(4) a { transition-delay: .26s; }
.menu-nav a:hover { color: var(--blue-light); }

.menu-footer {
  margin-top: 48px; text-align: right;
  color: rgba(255,255,255,.4); font-size: 13px; line-height: 2;
}
.menu-footer a { color: rgba(255,255,255,.5); transition: color var(--t); }
.menu-footer a:hover { color: var(--blue-light); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto; object-fit: cover;
  z-index: 1;
}
/* Fallback wenn kein Video */
.hero-bg {
  z-index: 0;
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(43,94,167,.6) 0%, transparent 60%),
    linear-gradient(160deg, #0d1a2e 0%, #1a2f50 40%, #0a1520 100%);
  animation: bgPulse 8s ease-in-out infinite alternate;
}
/* Holzmaserung SVG-Muster als Hintergrundtextur */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 100 Q50 60 100 100 Q150 140 200 100' stroke='rgba(255,255,255,0.03)' stroke-width='1' fill='none'/%3E%3Cpath d='M0 80 Q50 40 100 80 Q150 120 200 80' stroke='rgba(255,255,255,0.025)' stroke-width='1' fill='none'/%3E%3Cpath d='M0 120 Q50 80 100 120 Q150 160 200 120' stroke='rgba(255,255,255,0.025)' stroke-width='1' fill='none'/%3E%3Cpath d='M0 60 Q50 20 100 60 Q150 100 200 60' stroke='rgba(255,255,255,0.02)' stroke-width='1' fill='none'/%3E%3Cpath d='M0 140 Q50 100 100 140 Q150 180 200 140' stroke='rgba(255,255,255,0.02)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 1;
}
@keyframes bgPulse {
  from { filter: brightness(1); }
  to   { filter: brightness(1.15); }
}
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.25) 0%,
    rgba(0,0,0,.45) 50%,
    rgba(0,0,0,.75) 100%);
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center; color: var(--white);
  padding: 0 24px; max-width: 900px;
}
.hero-label {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 20px;
  opacity: 0; animation: fadeUp .8s ease forwards .5s;
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(42px, 8vw, 90px);
  font-weight: 700; line-height: 1.08;
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp .8s ease forwards .7s;
}
.hero-sub {
  font-size: clamp(16px, 2.5vw, 22px); font-weight: 300;
  color: rgba(255,255,255,.8); margin-bottom: 44px;
  font-style: italic;
  opacity: 0; animation: fadeUp .8s ease forwards .9s;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s ease forwards 1.1s;
}

.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.5);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: nudge 2.5s ease infinite;
}
.hero-scroll-hint::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}
@keyframes nudge {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 14px 38px;
  font-family: var(--font-b); font-size: 12px;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary {
  background: var(--blue); color: var(--white);
}
.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,168,200,.35);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark); color: var(--white);
}
.btn-dark:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

/* ── Container & Allgemeines ─────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
section { padding: 100px 0; }

.label {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
  display: block;
}
.h2 {
  font-family: var(--font-h);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700; line-height: 1.15;
  color: var(--dark); margin-bottom: 20px;
}
.h2.light { color: var(--white); }
.lead {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: #555; max-width: 680px;
}
.lead.light { color: rgba(255,255,255,.75); }

/* ── Scroll-Animation ────────────────────────────────────────── */
.anim {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.anim.in { opacity: 1; transform: none; }
.anim-d1 { transition-delay: .1s; }
.anim-d2 { transition-delay: .2s; }
.anim-d3 { transition-delay: .3s; }
.anim-d4 { transition-delay: .4s; }
.anim-d5 { transition-delay: .5s; }
.anim-d6 { transition-delay: .6s; }

/* ── Werte-Sektion ───────────────────────────────────────────── */
.values { background: var(--white); }
.values-intro { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.value-card {
  padding: 56px 40px; text-align: center;
  background: var(--off-white);
  border-top: 3px solid transparent;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t), background var(--t);
}
.value-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  background: var(--white);
}
.value-icon {
  width: 64px; height: 64px; margin: 0 auto 28px;
  color: var(--blue);
}
.value-icon svg { width: 100%; height: 100%; }
.value-title {
  font-family: var(--font-h); font-size: 22px;
  margin-bottom: 14px; color: var(--dark);
}
.value-text { font-size: 15px; color: #666; line-height: 1.75; }

/* ── Leistungen-Kacheln (Startseite) ─────────────────────────── */
.services-section { background: var(--dark); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
}
.svc-card {
  position: relative; height: 360px; overflow: hidden; cursor: pointer;
  display: block;
}
.svc-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .9s var(--ease);
}
.svc-card:hover .svc-card-bg { transform: scale(1.07); }

.svc-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
  transition: background var(--t);
}
.svc-card:hover .svc-card-overlay {
  background: linear-gradient(to top, rgba(27,62,120,.9) 0%, rgba(43,94,167,.4) 60%, transparent 100%);
}
.svc-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px;
}
.svc-card-title {
  font-family: var(--font-h); font-size: 26px;
  color: var(--white); margin-bottom: 8px;
}
.svc-card-arrow {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-light); display: flex; align-items: center; gap: 8px;
  opacity: 0; transform: translateX(-8px);
  transition: opacity var(--t), transform var(--t);
}
.svc-card:hover .svc-card-arrow { opacity: 1; transform: none; }

/* Service-Hintergründe (Platzhalter-Gradienten) */
.svc-bau    { background: linear-gradient(145deg, #2a1a0e 0%, #6b4226 100%); }
.svc-trepp  { background: linear-gradient(145deg, #1c1208 0%, #4a3220 100%); }
.svc-fenst  { background: linear-gradient(145deg, #0d1f3a 0%, #2B5EA7 100%); }
.svc-tuer   { background: linear-gradient(145deg, #180f08 0%, #3d2b1f 100%); }
.svc-gastro { background: linear-gradient(145deg, #111 0%, #2d2d2d 100%); }
.svc-bad    { background: linear-gradient(145deg, #0e1f28 0%, #1e4558 100%); }

/* ── Zitat-Banner ────────────────────────────────────────────── */
.quote-banner {
  position: relative; height: 480px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.quote-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0d1a2e 0%, #1e3660 50%, #0a1828 100%);
  background-size: cover; background-position: center;
  /* TODO: Hintergrundbild: background-image: url('assets/img/werkstatt.jpg'); */
  transition: transform .1s linear;
}
.quote-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='300' height='300' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='150' cy='150' r='140' stroke='rgba(255,255,255,0.03)' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='150' cy='150' r='110' stroke='rgba(255,255,255,0.025)' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='150' cy='150' r='80' stroke='rgba(255,255,255,0.02)' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='150' cy='150' r='50' stroke='rgba(255,255,255,0.015)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}
.quote-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.6);
}
.quote-content {
  position: relative; z-index: 1; text-align: center;
  padding: 0 40px; color: var(--white);
}
.quote-mark {
  font-family: var(--font-h); font-size: 80px; color: var(--blue-light);
  line-height: .6; margin-bottom: 16px; opacity: .6;
}
.quote-text {
  font-family: var(--font-h); font-size: clamp(22px, 3.5vw, 40px);
  font-style: italic; font-weight: 400; line-height: 1.45;
  max-width: 820px; margin: 0 auto 24px;
}
.quote-author {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--blue-light); opacity: .8;
}

/* ── Prozess-Sektion ─────────────────────────────────────────── */
.process { background: var(--light-blue); }
.process-header { text-align: center; margin-bottom: 80px; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 39px; left: calc(12.5% + 10px); right: calc(12.5% + 10px);
  height: 1px; background: var(--blue); opacity: .25;
}
.process-step { text-align: center; }
.process-num {
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-h); font-size: 28px; color: var(--blue);
  background: var(--white); position: relative; z-index: 1;
  transition: background var(--t), color var(--t);
}
.process-step:hover .process-num { background: var(--blue); color: var(--white); }
.process-step-title {
  font-family: var(--font-h); font-size: 22px;
  margin-bottom: 14px; color: var(--dark);
}
.process-step-text { font-size: 14px; color: #666; line-height: 1.75; }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: #0c0c0c; color: rgba(255,255,255,.65);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px; margin-bottom: 60px;
}
.footer-grid > div:first-child img { opacity: .85; }
.footer-brand-tagline {
  font-family: var(--font-h); font-style: italic;
  font-size: 15px; color: rgba(255,255,255,.35);
  margin-top: 20px; line-height: 1.6;
}
.footer-h {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,.55);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--blue-light); }
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px;
  font-size: 14px;
}
.footer-contact-row svg {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  color: var(--blue-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.25);
}
.footer-bottom-links {
  display: flex; gap: 24px; list-style: none;
}
.footer-bottom-links a {
  color: rgba(255,255,255,.25);
  transition: color var(--t);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ── Innen-Seiten: Page-Hero ─────────────────────────────────── */
.page-hero {
  height: 55vh; min-height: 380px;
  position: relative; display: flex; align-items: flex-end;
  padding-bottom: 60px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
  padding-top: var(--nav-h); color: var(--white);
}
.page-hero-content .label { color: var(--blue-light); }
.page-hero-content .h2  { color: var(--white); }

/* ── Über Uns – Geschichte ───────────────────────────────────── */
.timeline { position: relative; padding-left: 48px; margin-top: 56px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--blue), var(--blue-light), transparent);
}
.timeline-item { position: relative; padding-bottom: 56px; }
.timeline-item::before {
  content: ''; position: absolute; left: -53px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--blue); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue);
}
.timeline-year {
  font-size: 11px; letter-spacing: 3px; color: var(--blue);
  margin-bottom: 8px; text-transform: uppercase;
}
.timeline-title {
  font-family: var(--font-h); font-size: 22px; margin-bottom: 12px;
}
.timeline-text { font-size: 15px; color: #666; line-height: 1.75; }

/* ── Team ────────────────────────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  margin-top: 56px;
}
.team-card {
  padding: 48px; background: var(--off-white);
  border-left: 4px solid var(--blue);
  transition: transform var(--t), box-shadow var(--t);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,.08);
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 24px;
  margin-bottom: 24px;
}
.team-name { font-family: var(--font-h); font-size: 26px; margin-bottom: 4px; }
.team-role {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 24px; display: block;
}
.team-contacts { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: #666; }
.team-contacts a:hover { color: var(--blue); }

/* ── Leistungen-Sektion (Unterseite) ─────────────────────────── */
.leistung-item {
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}
.leistung-item:nth-child(even) { background: var(--off-white); }
.leistung-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.leistung-grid.flip { direction: rtl; }
.leistung-grid.flip > * { direction: ltr; }
.leistung-imgs {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 6px; height: 420px;
}
.leistung-img {
  background-size: cover; background-position: center;
  overflow: hidden;
  transition: transform .8s var(--ease);
}
.leistung-img:hover { transform: scale(1.03); }
.leistung-img:first-child { grid-row: span 2; }
.leistung-text .h2 { margin-bottom: 16px; }
.leistung-text .lead { margin-bottom: 28px; }

/* ── Kontakt ─────────────────────────────────────────────────── */
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.kontakt-info-item {
  display: flex; gap: 18px; margin-bottom: 32px;
}
.kontakt-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kontakt-icon svg { width: 20px; height: 20px; }
.kontakt-info-title {
  font-family: var(--font-h); font-size: 18px; margin-bottom: 4px;
}
.kontakt-info-text { font-size: 14px; color: #666; line-height: 1.7; }
.kontakt-info-text a:hover { color: var(--blue); }

/* Formular */
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #888;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 1px solid #ddd; background: var(--white);
  font-family: var(--font-b); font-size: 15px; color: var(--dark);
  outline: none; border-radius: 0;
  transition: border-color var(--t);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 12px; color: #aaa; line-height: 1.6; }

.map-placeholder {
  margin-top: 40px; height: 280px; background: #e5e8ec;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #999; position: relative; overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #d8dde3 25%, #e5e8ec 25%, #e5e8ec 50%, #d8dde3 50%, #d8dde3 75%, #e5e8ec 75%);
  background-size: 40px 40px; opacity: .5;
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .burger    { display: flex; }
  .container { padding: 0 32px; }
  .navbar    { padding: 0 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .leistung-grid,
  .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
  .leistung-grid.flip { direction: ltr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .navbar { padding: 0 20px; }
  .menu-overlay { padding: 40px 32px; }

  .values-grid,
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps::before { display: none; }

  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .leistung-imgs { height: 260px; }
  .svc-card { height: 280px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
