* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --teal:        #2b8a8a;
  --teal-dark:   #1d6b6b;
  --teal-light:  #e0f7f7;
  --orange:      #f5a623;
  --orange-dark: #d4891a;
  --navy:        #1b2a5e;
  --lime:        #8bc34a;
  --white:       #ffffff;
  --bg:          #f8fffe;
  --text:        #1a1a2e;
  --text-soft:   #5a6a7a;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow:      0 8px 32px rgba(43,138,138,0.13);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: #0d1b3e; line-height: 1.6; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ─────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(43,138,138,0.12);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px; gap: 16px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-svg  { width: 50px; height: 50px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-flexi    { font-size: 1.2rem; font-weight: 900; color: var(--teal); letter-spacing: -0.5px; }
.logo-all      { font-size: 1.2rem; font-weight: 900; color: var(--navy); letter-spacing: -0.5px; }
.logo-sub      { font-size: 0.62rem; font-weight: 700; color: var(--text-soft); text-transform: uppercase; letter-spacing: 1.5px; }

nav { display: flex; gap: 20px; }
nav a { text-decoration: none; color: var(--text); font-weight: 700; font-size: 0.88rem; transition: color .2s; padding-bottom: 2px; }
nav a:hover { color: var(--teal); }
nav a.nav-active { color: var(--teal); border-bottom: 2.5px solid var(--teal); }

.btn-call {
  display: flex; align-items: center; gap: 6px;
  background: var(--orange); color: var(--white);
  padding: 10px 18px; border-radius: 50px;
  text-decoration: none; font-weight: 800; font-size: 0.85rem;
  transition: background .2s, transform .15s; white-space: nowrap;
}
.btn-call:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 14px 30px; border-radius: 50px;
  text-decoration: none; font-weight: 800; font-size: 1rem;
  border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(245,166,35,0.45); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 30px; border-radius: 50px;
  text-decoration: none; font-weight: 800; font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 30px; border-radius: 50px;
  text-decoration: none; font-weight: 800; font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color .2s, background .2s;
}
.btn-phone:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-teal {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: white;
  padding: 13px 28px; border-radius: 50px;
  text-decoration: none; font-weight: 800; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: background .2s, color .2s, border-color .2s;
}
.btn-outline-teal:hover { background: var(--orange); color: white; border-color: var(--orange); }

.btn-full { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; border-radius: 14px; }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative; background: linear-gradient(135deg, var(--navy) 0%, #0f3460 50%, #16213e 100%);
  padding: 90px 0 120px; overflow: hidden; text-align: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('foto-banner.jpg') center/cover no-repeat; opacity: 0.25;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block; background: rgba(245,166,35,0.2);
  border: 2px solid var(--orange); color: var(--orange);
  padding: 8px 22px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 800; margin-bottom: 28px;
}
.hero h1 { font-size: 3.4rem; font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero-highlight { color: var(--orange); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 600px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; }
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #0f3460 100%);
  padding: 56px 0 80px; text-align: center; overflow: hidden;
}
.page-hero h1 { font-size: 2.4rem; font-weight: 900; color: white; margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,0.78); font-size: 1rem; }
.page-hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; }
.page-hero-wave svg { display: block; width: 100%; height: 60px; }

/* ── TRUST BAR ───────────────────────────────── */
.trust-bar {
  background: linear-gradient(rgba(11,27,70,0.55), rgba(11,27,70,0.55)),
              url('foto-arbeit3.jpg') center/cover no-repeat;
  padding: 28px 0;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
}
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1rem; color: white; }
.trust-divider { color: var(--orange); font-size: 1.5rem; }

/* ── SHARED SECTION HEADER ───────────────────── */
.section-header { text-align: center; margin-bottom: 44px; }
.section-tag {
  display: inline-block; background: var(--teal-light); color: var(--teal-dark);
  padding: 5px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-header h2 { font-size: 2.2rem; font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.section-header p  { color: var(--text-soft); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ── LEISTUNGEN TEASER (home) ────────────────── */
.leistungen-teaser {
  padding: 70px 0 50px;
  background: linear-gradient(rgba(11,27,70,0.58), rgba(11,27,70,0.58)),
              url('foto-garten.jpg') center/cover no-repeat fixed;
}
.leistungen-teaser .section-header h2 { color: white; }
.leistungen-teaser .section-header p  { color: rgba(255,255,255,0.72); }
.leistungen-teaser .section-tag { background: rgba(245,166,35,0.25); color: var(--orange); border: 1px solid var(--orange); }
.teaser-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-bottom: 32px; }
.teaser-karte {
  border-radius: var(--radius-xl); padding: 28px 22px;
  box-shadow: var(--shadow-card); color: white;
  transition: transform .2s, box-shadow .2s;
}
.teaser-karte:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); }
.teaser-teal   { background: linear-gradient(135deg, #2b8a8a, #1d6b6b); }
.teaser-green  { background: linear-gradient(135deg, #22c55e, #15803d); }
.teaser-orange { background: linear-gradient(135deg, #f5a623, #d97706); }
.teaser-blue   { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.teaser-icon { font-size: 2.4rem; margin-bottom: 12px; }
.teaser-karte h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.teaser-karte p  { font-size: 0.88rem; opacity: 0.88; }

/* ── LEISTUNGEN GRID ─────────────────────────── */
.leistungen {
  padding: 40px 0 70px;
  background: linear-gradient(rgba(11,27,70,0.58), rgba(11,27,70,0.58)),
              url('foto-verputz.jpg') center/cover no-repeat fixed;
}
.leistungen .section-header h2 { color: white; }
.leistungen .section-header p  { color: rgba(255,255,255,0.72); }
.leistungen .section-tag { background: rgba(245,166,35,0.25); color: var(--orange); border: 1px solid var(--orange); }
.leistungen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.karte {
  border-radius: var(--radius-xl); padding: 28px 24px;
  box-shadow: var(--shadow-card); color: white;
  transition: transform .2s, box-shadow .2s; position: relative; overflow: hidden;
}
.karte::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 100px; height: 100px; border-radius: 50%; opacity: 0.12; background: white;
}
.karte:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); }
.karte-teal   { background: linear-gradient(135deg, #2b8a8a, #1d6b6b); }
.karte-orange { background: linear-gradient(135deg, #f5a623, #d97706); }
.karte-blue   { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.karte-green  { background: linear-gradient(135deg, #22c55e, #15803d); }
.karte-purple { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.karte-lime   { background: linear-gradient(135deg, #84cc16, #4d7c0f); }
.karte-red    { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.karte-amber  { background: linear-gradient(135deg, #f59e0b, #92400e); }
.karte-slate  { background: linear-gradient(135deg, #64748b, #334155); }
.karte-teal2  { background: linear-gradient(135deg, #0891b2, #0e7490); }
.karte-icon-wrap {
  width: 68px; height: 68px; background: rgba(255,255,255,0.2);
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.karte-icon-wrap svg { width: 44px; height: 44px; }
.karte h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.karte p  { font-size: 0.87rem; opacity: 0.88; line-height: 1.5; }

/* ── GALERIE PREVIEW (home) ──────────────────── */
.galerie-preview {
  padding: 50px 0 70px;
  background: linear-gradient(rgba(11,27,70,0.55), rgba(11,27,70,0.55)),
              url('foto-reinigung.jpg') center/cover no-repeat fixed;
}
.galerie-preview .section-header h2 { color: white; }
.galerie-preview .section-header p  { color: rgba(255,255,255,0.72); }
.galerie-preview .section-tag { background: rgba(245,166,35,0.25); color: var(--orange); border: 1px solid var(--orange); }
.preview-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.preview-big { grid-row: span 1; }
.preview-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-card);
}
.preview-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.preview-item:hover img { transform: scale(1.06); }
.preview-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.72));
  display: flex; flex-direction: column; justify-content: flex-end; padding: 14px;
  opacity: 0; transition: opacity .3s;
}
.preview-item:hover .preview-overlay { opacity: 1; }
.preview-overlay p { color: white; font-weight: 700; font-size: 0.85rem; }

/* ── GALERIE PAGE ────────────────────────────── */
.galerie-seite {
  padding: 60px 0 80px;
  background: linear-gradient(rgba(11,27,70,0.60), rgba(11,27,70,0.60)),
              url('foto-garten.jpg') center/cover no-repeat fixed;
}
.galerie-seite .section-header h2 { color: white; }
.galerie-seite .section-header p  { color: rgba(255,255,255,0.72); }
.galerie-seite .section-tag { background: rgba(245,166,35,0.25); color: var(--orange); border: 1px solid var(--orange); }

.galerie-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 22px; border-radius: 50px;
  background: rgba(255,255,255,0.1); color: white;
  border: 2px solid rgba(255,255,255,0.3); font-family: inherit;
  font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all .2s;
  backdrop-filter: blur(4px);
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); color: white; border-color: var(--orange); box-shadow: 0 4px 16px rgba(245,166,35,0.4); }

.galerie-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }

.galerie-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-card);
  transition: transform .2s, opacity .3s;
}
.galerie-item:hover { transform: translateY(-4px); }
.galerie-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.galerie-item:hover img { transform: scale(1.06); }
.galerie-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 35%, rgba(0,0,0,0.75));
  opacity: 0; transition: opacity .3s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
}
.galerie-item:hover .galerie-overlay { opacity: 1; }
.galerie-cat {
  display: inline-block; background: var(--teal); color: white;
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 800; margin-bottom: 6px; width: fit-content;
}
.galerie-overlay p { color: white; font-weight: 700; font-size: 0.88rem; }

.galerie-item.hidden-item { display: none; }

.galerie-hinweis { margin-top: 40px; }
.hinweis-box {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.08); border: 2px dashed rgba(245,166,35,0.6);
  border-radius: var(--radius-lg); padding: 22px 28px;
  backdrop-filter: blur(4px);
}
.hinweis-icon { font-size: 2rem; }
.hinweis-box strong { display: block; font-size: 1rem; color: white; margin-bottom: 4px; }
.hinweis-box p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* ── CTA SECTION ─────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0f3460 100%);
  padding: 70px 0; text-align: center;
}
.cta-section h2 { color: white; font-size: 1.9rem; font-weight: 900; margin-bottom: 12px; }
.cta-section p  { color: rgba(255,255,255,0.78); margin-bottom: 28px; }

/* ── WAVE DIVIDERS ───────────────────────────── */
.wave-divider { line-height: 0; }
.wave-divider svg { display: block; width: 100%; height: 80px; }

/* ── AUFTRAG PAGE ────────────────────────────── */
.auftrag-seite {
  padding: 60px 0 80px;
  background: linear-gradient(rgba(11,27,70,0.58), rgba(11,27,70,0.58)),
              url('foto-arbeit2.jpg') center/cover no-repeat fixed;
}
.auftrag-seite .col-header h2 { color: white; }
.auftrag-seite .col-sub { color: rgba(255,255,255,0.72); }
.auftrag-divider { background: linear-gradient(to bottom, transparent, rgba(245,166,35,0.4), transparent); }
.auftrag-layout {
  display: grid; grid-template-columns: 1fr 2px 1fr; gap: 48px; align-items: start;
}
.auftrag-col { display: flex; flex-direction: column; }
.auftrag-divider { background: linear-gradient(to bottom, transparent, var(--teal-light), transparent); border-radius: 2px; }

.col-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.col-header h2 { font-size: 1.6rem; font-weight: 900; color: var(--navy); }
.col-sub { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 24px; }

.auftrag-form { background: var(--white); padding: 32px 28px; border-radius: var(--radius-xl); box-shadow: var(--shadow); border: 2px solid rgba(245,166,35,0.12); }

.form-row { display: flex; gap: 14px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; flex: 1; }
.form-group-small { flex: 0 0 100px; }
label { font-size: 0.8rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
input, select, textarea {
  padding: 12px 14px; border: 2px solid #e4edf0; border-radius: 12px;
  font-size: 0.93rem; font-family: inherit; color: var(--text);
  transition: border-color .2s, box-shadow .2s; background: var(--white);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43,138,138,0.1);
}
textarea { resize: vertical; }

.form-success {
  margin-top: 14px; padding: 14px; border-radius: 12px;
  background: linear-gradient(135deg, #e0f7f7, #d4edda);
  color: #155724; font-weight: 800; text-align: center;
}
.hidden { display: none !important; }

/* Kalender */
.kalender-wrapper { max-width: 560px; margin: 0 auto; background: var(--white); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow); }
.kalender-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.kalender-monat { font-size: 1.1rem; font-weight: 900; color: var(--navy); }
.kalender-btn { background: var(--teal); color: white; border: none; border-radius: 10px; width: 36px; height: 36px; font-size: 1.3rem; cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; }
.kalender-btn:hover { background: var(--teal-dark); }
.kalender-wochentage { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 8px; }
.kalender-wochentage span { text-align: center; font-size: 0.7rem; font-weight: 800; color: var(--text-soft); text-transform: uppercase; padding: 6px 0; }
.kalender-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.kalender-tag { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 10px; cursor: pointer; font-size: 0.88rem; font-weight: 700; background: #f4fafa; color: var(--text); border: 2px solid transparent; transition: all .15s; }
.kalender-tag:hover:not(.vergangen):not(.leer) { background: var(--teal); color: white; transform: scale(1.1); }
.kalender-tag.aktiv { background: var(--teal); color: white; border-color: var(--teal-dark); }
.kalender-tag.vergangen { color: #ccc; cursor: not-allowed; background: transparent; }
.kalender-tag.leer { background: transparent; cursor: default; border: none; }
.kalender-tag.heute { border-color: var(--orange); font-weight: 900; }
.termin-form { margin-top: 24px; padding-top: 20px; border-top: 2px dashed var(--teal-light); }
.termin-datum { font-size: 0.95rem; color: var(--navy); font-weight: 700; background: var(--teal-light); padding: 10px 14px; border-radius: 10px; margin-bottom: 18px; }

.direktkontakt { margin-top: 28px; padding-top: 24px; border-top: 2px dashed rgba(255,255,255,0.2); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.direktkontakt p { color: rgba(255,255,255,0.65); font-weight: 700; font-size: 0.9rem; }

/* ── FOOTER ──────────────────────────────────── */
footer { background: var(--navy); padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; }
.footer-logo-wrap .logo-svg { width: 50px; height: 50px; }
.footer-logo-wrap .logo-flexi { color: var(--teal); }
.footer-logo-wrap .logo-all { color: white; }
.footer-logo-wrap .logo-sub { color: rgba(255,255,255,0.45); }
.footer-slogan { font-size: 1.05rem; font-weight: 800; color: var(--orange); font-style: italic; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: rgba(255,255,255,0.6); text-decoration: none; font-weight: 700; font-size: 0.85rem; transition: color .2s; }
.footer-nav a:hover { color: var(--orange); }
.footer-kontakt { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-kontakt a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.82); text-decoration: none; font-weight: 700; font-size: 0.88rem; transition: color .2s; }
.footer-kontakt a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 16px; justify-content: center; margin-top: 16px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.12); color: white; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--orange); transform: translateY(-3px); }
.footer-name { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.45); }
.footer-copy { font-size: 0.74rem; color: rgba(255,255,255,0.28); }

/* ── PROJEKT KARTEN (Vorher/Nachher) ─────────────── */
.projekt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 36px;
  margin-bottom: 60px;
}
.projekt-karte {
  background: white; border-radius: 20px;
  padding: 22px 20px 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.projekt-karte:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,0.16); }
.pk-ecke { position: absolute; width: 16px; height: 52px; background: #a8d8d8; border-radius: 4px; opacity: 0.9; }
.pk-ecke-tl { top: 10px; left: 10px; }
.pk-ecke-tr { top: 10px; right: 10px; }
.pk-ecke-bl { bottom: 10px; left: 10px; }
.pk-ecke-br { bottom: 10px; right: 10px; }
.pk-header { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0 34px 10px; position: relative; z-index: 1; }
.pk-logo-svg { width: 30px; height: 30px; flex-shrink: 0; }
.pk-logo-name { font-size: 0.9rem; font-weight: 900; color: var(--navy); letter-spacing: 0.5px; }
.pk-cat-tag { display: block; text-align: center; font-size: 0.7rem; font-weight: 800; color: var(--teal-dark); background: var(--teal-light); border-radius: 50px; padding: 3px 14px; width: fit-content; margin: 0 auto 10px; position: relative; z-index: 1; }
.pk-fotos { display: grid; grid-template-columns: 1fr 4px 1fr; gap: 8px; position: relative; z-index: 1; }
.pk-seite { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 5px; }
.pk-seite.duo { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
.pk-seite.solo { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.pk-seite img { width: 100%; height: 110px; object-fit: cover; border-radius: 8px; display: block; }
.pk-linie { background: var(--teal); border-radius: 4px; align-self: stretch; }
.pk-pfeil { text-align: center; padding: 10px 0 2px; position: relative; z-index: 1; }
.pk-titel { text-align: center; font-weight: 800; font-size: 0.88rem; color: var(--navy); padding-bottom: 4px; position: relative; z-index: 1; }
.projekt-karte.hidden-item { display: none; }
.pk-header { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.pk-logo-svg { width: 32px; height: 32px; flex-shrink: 0; }
.pk-logo-name { font-size: 0.7rem; font-weight: 900; color: var(--navy); letter-spacing: 0.04em; }
.pk-cat-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; color: var(--teal); background: #e8f7f7; border-radius: 20px; padding: 2px 10px; margin-bottom: 8px; }
.galerie-hinweis { margin-top: 48px; }
.hinweis-box { display: flex; align-items: center; gap: 16px; background: #e8f7f7; border-radius: 16px; padding: 20px 28px; max-width: 520px; margin: 0 auto; }
.hinweis-icon { font-size: 2rem; flex-shrink: 0; }
.hinweis-box strong { color: var(--navy); font-weight: 800; }
.hinweis-box p { color: #555; font-size: 0.9rem; margin: 4px 0 0; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  .auftrag-layout { grid-template-columns: 1fr; gap: 32px; }
  .auftrag-divider { display: none; }
  .preview-grid { grid-template-columns: 1fr 1fr; }
  .preview-big { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .projekt-grid { grid-template-columns: 1fr; }
  .pk-seite img { height: 90px; }
}
@media (max-width: 700px) {
  .hero h1 { font-size: 2.1rem; }
  .page-hero h1 { font-size: 1.8rem; }
  nav { display: none; }
  .form-row { flex-direction: column; }
  .form-group-small { flex: 1; }
  .auftrag-form { padding: 20px 16px; }
  .preview-grid { grid-template-columns: 1fr; }
  .galerie-full-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 10px; }
  .trust-divider { display: none; }
  .teaser-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .teaser-grid { grid-template-columns: 1fr; }
}
