/* ===================================================
   WOLKENSTEINER MÖBELMONTAGEN — Variation 1
   Klassisch · Hochwertig · Hero-Zentriert
   Brand Colors: #3F7582 (Teal) | #383838 (Dark) | #ffffff (White)
   Fonts: Montserrat (body) | Display custom
=================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

/* --- CSS Variables (Brand) --- */
:root {
  --teal:       #3F7582;
  --teal-dark:  #2e5a65;
  --teal-light: #5a98a7;
  --dark:       #383838;
  --dark-deep:  #1e1e1e;
  --white:      #ffffff;
  --off-white:  #f7f6f4;
  --light-gray: #e8e6e3;
  --mid-gray:   #888888;
  --text:       #2a2a2a;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;

  --radius:  4px;
  --shadow:  0 4px 32px rgba(56,56,56,0.10);
  --shadow-lg: 0 12px 48px rgba(56,56,56,0.18);

  --max-width: 1240px;
  --section-pad: 96px 24px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad); }
.text-teal { color: var(--teal); }
.text-center { text-align: center; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1rem; color: var(--mid-gray); }

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 12px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
  border-radius: var(--radius);
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-dark:hover {
  background: var(--teal);
  color: var(--white);
}

/* ==============================
   NAVIGATION
============================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(30,30,30,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(63,117,130,0.2);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg { width: 44px; height: 44px; }
.nav-logo img { height: 48px; width: auto; display: block; }
.nav-logo-text { color: var(--white); }
.nav-logo-text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links .btn { margin-left: 8px; padding: 10px 24px; }

/* Hamburger (CSS-only via checkbox) */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger {
  display: none;
  width: 32px; height: 32px;
  cursor: pointer;
  position: relative;
  z-index: 110;
}
.nav-burger span {
  position: absolute;
  left: 4px; right: 4px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s, top 0.3s;
}
.nav-burger span:nth-child(1) { top: 9px; }
.nav-burger span:nth-child(2) { top: 15px; }
.nav-burger span:nth-child(3) { top: 21px; }
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* ==============================
   HERO — STARTSEITE
============================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(13,31,35,0.42), rgba(20,20,20,0.64)), url('assets/images/hero/kueche-titelbild.jpg');
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.06), rgba(0,0,0,0.28));
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.38) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 800px;
}
.hero-logo {
  display: block;
  margin: 0 auto 28px;
  width: clamp(240px, 34vw, 380px);
  height: auto;
  filter: drop-shadow(0 6px 28px rgba(0,0,0,0.5));
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 20px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ==============================
   INTRO STRIP
============================== */
.intro-strip {
  background: var(--teal);
  padding: 28px 24px;
}
.intro-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.strip-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.strip-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.strip-stat .desc {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.85;
  text-transform: uppercase;
}
.strip-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.25); }

/* ==============================
   LEISTUNGEN
============================== */
.leistungen { padding: var(--section-pad); background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 520px; margin: 0 auto; font-size: 1rem; }

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.leistung-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.leistung-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  position: relative;
  overflow: hidden;
  height: 210px;
}
.card-img-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.leistung-card:hover .card-img-bg { transform: scale(1.05); }
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(56,56,56,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.leistung-card:hover .card-img-overlay { opacity: 1; }
.card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 { margin-bottom: 10px; font-size: 1.25rem; }
.card-body p { font-size: 0.88rem; margin-bottom: 24px; flex: 1; }
.card-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.card-link::after { content: '→'; }
.leistung-card:hover .card-link { gap: 14px; }

/* Karten-Einblendung (CSS-only, gestaffelt) */
@keyframes cardFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.arbeit-card { animation: cardFadeUp 0.7s ease backwards; }
.arbeit-grid .arbeit-card:nth-child(2) { animation-delay: 0.1s; }
.arbeit-grid .arbeit-card:nth-child(3) { animation-delay: 0.2s; }
.arbeit-grid .arbeit-card:nth-child(4) { animation-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .arbeit-card { animation: none; }
}

/* ==============================
   UNSERE ARBEIT – Leistungen & Referenzen zusammengeführt
============================== */
.arbeit { padding: var(--section-pad); background: var(--off-white); }
.arbeit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.arbeit-card {
  position: relative;
  display: block;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--dark);
  transition: transform 0.35s, box-shadow 0.35s;
  min-height: 440px;
}
.arbeit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.arbeit-card .card-img { height: 100%; position: absolute; inset: 0; }
.arbeit-card .card-img-bg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.arbeit-card:hover .card-img-bg { transform: scale(1.05); }
.arbeit-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.92) 0%, rgba(20,20,20,0.4) 55%, rgba(20,20,20,0.1) 100%);
  transition: background 0.35s;
}
.arbeit-card:hover .arbeit-card-overlay {
  background: linear-gradient(to top, rgba(15,30,34,0.95) 0%, rgba(63,117,130,0.45) 60%, rgba(63,117,130,0.15) 100%);
}
.arbeit-card-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 28px 28px 30px;
  color: var(--white);
}
.arbeit-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--teal-light);
}
.arbeit-card-caption h3 { color: var(--white); margin: 4px 0 12px; font-size: 1.5rem; }
.arbeit-card-caption p {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 18px;
}
.arbeit-card-caption .card-link { color: var(--white); }
.arbeit-card:hover .card-link { gap: 14px; }

/* Icon-Variante (für Kategorien ohne Foto, z. B. Büroeinrichtung) */
.arbeit-card--icon { background: linear-gradient(160deg, #2e5a65 0%, #1c3a42 100%); }
.arbeit-card--icon .card-img { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.card-img-pattern {
  width: 56%;
  max-width: 220px;
  color: rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.35s, transform 0.5s;
}
.card-img-pattern svg { width: 100%; height: auto; }
.arbeit-card--icon:hover .card-img-pattern { color: rgba(255,255,255,0.36); transform: scale(1.05); }
.arbeit-card--icon .arbeit-card-overlay {
  background: linear-gradient(to top, rgba(15,30,34,0.55) 0%, rgba(15,30,34,0.1) 100%);
}

/* ==============================
   ÜBER UNS
============================== */
.ueber-uns { padding: var(--section-pad); }
.ueber-uns-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ueber-uns-img {
  position: relative;
}
.ueber-uns-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 2px;
}
.ueber-uns-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  background: var(--teal);
  border-radius: 2px;
  z-index: -1;
}
.ueber-uns-text h2 { margin-bottom: 24px; }
.ueber-uns-text p { margin-bottom: 20px; line-height: 1.8; }
.ueber-uns-features {
  margin: 32px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(63,117,130,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; }
.feature-text strong { display: block; font-size: 0.9rem; color: var(--dark); margin-bottom: 2px; }
.feature-text span { font-size: 0.83rem; color: var(--mid-gray); }

/* ==============================
   DARK SECTION (Quote/Trust)
============================== */
.trust-section {
  background: var(--dark);
  padding: var(--section-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20rem;
  font-family: var(--font-display);
  color: rgba(63,117,130,0.06);
  line-height: 1;
  pointer-events: none;
}
.trust-section h2 { color: var(--white); max-width: 700px; margin: 0 auto 20px; }
.trust-section p { color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto; }
.trust-section .label { color: var(--teal-light); margin-bottom: 20px; }

/* ==============================
   KONTAKT
============================== */
.kontakt { padding: var(--section-pad); background: var(--off-white); }
.kontakt-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.kontakt-info h2 { margin-bottom: 20px; }
.kontakt-info p { margin-bottom: 32px; line-height: 1.8; }
.kontakt-details { display: flex; flex-direction: column; gap: 20px; }
.kontakt-detail {
  display: flex;
  align-items: center;
  gap: 14px;
}
.kontakt-detail-icon {
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kontakt-detail-icon svg { width: 18px; height: 18px; stroke: white; fill: none; }
.kontakt-detail-text strong { display: block; font-size: 0.8rem; color: var(--dark); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.kontakt-detail-text span { font-size: 0.9rem; color: var(--mid-gray); }

/* Form */
.kontakt-form {
  background: var(--white);
  padding: 48px;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-submit { width: 100%; padding: 15px; background: var(--teal); color: var(--white); border: none; font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; border-radius: var(--radius); transition: background 0.3s; }
.form-submit:hover { background: var(--teal-dark); }

/* ==============================
   FOOTER
============================== */
.site-footer {
  background: var(--dark-deep);
  color: rgba(255,255,255,0.7);
  padding: 72px 24px 32px;
}
.footer-top {
  max-width: var(--max-width);
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .nav-logo-text strong { font-size: 1rem; }
.footer-logo img { height: 60px; width: auto; display: block; margin-bottom: 6px; }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-top: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--teal-light); }

/* ==============================
   SUBPAGE HERO
============================== */
.page-hero {
  padding-top: 72px;
  height: 480px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.08) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 56px;
  width: 100%;
}
.page-hero-content .label { color: var(--teal-light); }
.page-hero-content h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); }
.breadcrumb { display: flex; gap: 8px; font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: var(--teal-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* Seiten-Hero ohne Foto (z. B. Büroeinrichtung) */
.page-hero--solid { background: linear-gradient(160deg, #2e5a65 0%, #1c3a42 100%); }
.page-hero--solid::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1px, transparent 0);
  background-size: 22px 22px;
}

/* Icon-Panel als Foto-Ersatz */
.leistung-iconpanel {
  width: 100%;
  height: 420px;
  border-radius: 2px;
  box-shadow: var(--shadow);
  background: linear-gradient(160deg, #2e5a65 0%, #1c3a42 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.28);
}
.leistung-iconpanel svg { width: 45%; max-width: 200px; height: auto; }

/* Leistung Description */
.leistung-desc { padding: var(--section-pad); }
.leistung-desc-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.leistung-desc h2 { margin-bottom: 24px; }
.leistung-desc p { margin-bottom: 16px; line-height: 1.85; }
.leistung-desc .btn { margin-top: 24px; }
.leistung-benefits { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text);
}
.benefit::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Gallery */
.galerie { padding: var(--section-pad); background: var(--off-white); }
.galerie-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.galerie-item {
  display: block;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  color: inherit;
  text-decoration: none;
}
.galerie-item:first-child {
  grid-column: span 2;
}
.galerie-item-bg {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s;
}
.galerie-item:first-child .galerie-item-bg { height: 360px; }
.galerie-item:hover .galerie-item-bg { transform: scale(1.04); }
.galerie-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(63,117,130,0.6);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.galerie-item:hover .galerie-item-overlay { opacity: 1; }
.galerie-item-overlay span {
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 96px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox:target {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13,31,35,0.92);
}
.lightbox img {
  position: relative;
  z-index: 1;
  max-width: min(100%, 1180px);
  max-height: calc(100vh - 144px);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.42);
}
.lightbox-close,
.lightbox-nav {
  position: fixed;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  background: rgba(20,20,20,0.58);
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.2s, transform 0.2s;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(63,117,130,0.88);
  transform: translateY(-1px);
}
.lightbox-close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  width: 56px;
  height: 72px;
  margin-top: -36px;
  font-size: 3rem;
  line-height: 1;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* CTA Section */
.cta-section {
  background: var(--teal);
  padding: 72px 24px;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); margin-bottom: 36px; }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
  .arbeit-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .arbeit-card { min-height: 360px; }
  .ueber-uns-inner { grid-template-columns: 1fr; gap: 48px; }
  .ueber-uns-img img { height: 380px; }
  .kontakt-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .leistung-desc-inner { grid-template-columns: 1fr; gap: 40px; }
  .intro-strip-inner { justify-content: center; }
  .strip-divider { display: none; }
}
@media (max-width: 860px) {
  /* Hamburger aktivieren */
  .nav-burger { display: block; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(20,20,20,0.98);
    backdrop-filter: blur(10px);
    padding: 12px 24px 28px;
    border-bottom: 1px solid rgba(63,117,130,0.25);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.25s;
  }
  .nav-toggle:checked ~ .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links li:last-child { border-bottom: none; padding-top: 18px; }
  .nav-links a { display: block; font-size: 0.9rem; }
  .nav-links a::after { display: none; }
  .nav-links .btn { display: inline-block; margin-left: 0; }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }
  .arbeit-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 430px;
  }
  .arbeit-card {
    min-height: 430px;
  }
  .arbeit-card-caption {
    top: 0;
    bottom: 0;
    padding: 34px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .arbeit-num {
    font-size: 0.86rem;
  }
  .arbeit-card-caption h3 {
    max-width: 100%;
    margin: 8px auto 14px;
    font-size: clamp(1.65rem, 7.2vw, 2.05rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }
  .arbeit-card-caption p {
    max-width: 24ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.6;
  }
  .arbeit-card-caption .card-link {
    justify-content: center;
    margin-top: 4px;
  }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .galerie-item:first-child { grid-column: span 2; }
  .lightbox { padding: 72px 20px; }
  .lightbox img { max-height: calc(100vh - 144px); }
  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }
  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
    margin-top: 0;
    font-size: 2.4rem;
  }
  .lightbox-prev { left: calc(50% - 58px); }
  .lightbox-next { right: calc(50% - 58px); }
  .kontakt-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .galerie-grid { grid-template-columns: 1fr; }
  .galerie-item:first-child { grid-column: span 1; }
  .hero-ctas { flex-direction: column; align-items: center; }
}


.leistung-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
