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

:root {
  --orange:     #E8651A;
  --orange-dark:#C4510F;
  --orange-light:#F5874A;
  --orange-pale: #FFF0E8;
  --anthracite: #1E2227;
  --anthracite2:#2C3038;
  --gray-mid:   #4A4F5A;
  --gray-light: #9AA0AD;
  --gray-border:#DEE1E8;
  --white:      #FFFFFF;
  --off-white:  #F7F8FA;
  --nav-h:      72px;
}

html {
  scroll-behavior: smooth;
  background: var(--off-white);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--anthracite);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(30,34,39,0.97);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.35s ease;
}

.main-nav.nav-scrolled {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.nav-inner {
  position: relative;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 5%;
}

/* Oben: Logo mittig, Menüs nah daneben */
.main-nav:not(.nav-scrolled) .nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 28px;
}

.main-nav .nav-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 3;
  transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav:not(.nav-scrolled) .nav-logo {
  position: static;
  transform: none;
  grid-column: 2;
  justify-self: center;
}

.main-nav.nav-scrolled .nav-logo {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translate(0, -50%);
  grid-column: auto;
}

.main-nav.nav-scrolled .nav-inner {
  display: block;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: height 0.35s ease;
}

.main-nav.nav-scrolled .nav-logo-img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--orange-light); }

.nav-links-left,
.nav-links-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.main-nav:not(.nav-scrolled) .nav-links-left,
.main-nav:not(.nav-scrolled) .nav-links-right {
  position: static;
  transform: none;
  gap: 24px;
}

.main-nav:not(.nav-scrolled) .nav-links-left {
  justify-self: end;
}

.main-nav:not(.nav-scrolled) .nav-links-right {
  justify-self: start;
}

.nav-links-left {
  left: 5%;
  transform: translateY(-50%);
}

.nav-links-right {
  right: 5%;
}

.nav-links-combined {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease 0.05s, visibility 0.35s ease 0.05s;
}

.main-nav.nav-scrolled .nav-links-left,
.main-nav.nav-scrolled .nav-links-right {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.main-nav.nav-scrolled .nav-links-combined {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--anthracite);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,101,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,101,26,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(320px, 580px) 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,101,26,0.15);
  border: 1px solid rgba(232,101,26,0.3);
  color: var(--orange-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  color: #fff;
  line-height: 1.07;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.hero-title-line {
  display: block;
  white-space: nowrap;
}
.hero-title-meta {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  width: 100%;
}
.hero-title-year {
  display: block;
  flex-shrink: 0;
  font-size: clamp(44px, 6.5vw, 78px);
  letter-spacing: -2px;
  line-height: 0.95;
}
.hero-title-script {
  display: block;
  font-family: 'Allura', cursive;
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1;
  white-space: nowrap;
  transform: rotate(-10deg);
  transform-origin: center center;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 24px rgba(232, 101, 26, 0.18);
  align-self: center;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero h1 .js-years-since {
  color: var(--orange);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 44px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange-light); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat {
  min-width: 0;
}
.hero-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  margin-top: 2px;
}

/* ── HERO VIDEO ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.hero-video {
  width: 100%;
  max-width: min(680px, 100%);
  height: auto;
  display: block;
  border-radius: 16px;
  filter: drop-shadow(0 0 60px rgba(232,101,26,0.12));
}

/* ── SECTION BASE ── */
.section {
  padding: 100px 5%;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.1;
  color: var(--anthracite);
  margin-bottom: 20px;
}
.section-title em {
  font-style: normal;
  color: var(--orange);
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-mid);
  line-height: 1.65;
  max-width: 580px;
}
.section-header {
  margin-bottom: 64px;
}

/* ── ÜBER UNS ── */
.ueber-uns {
  background: var(--off-white);
}
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.timeline {
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-year {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}
.timeline-text {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.6;
}

.ueber-img-stack {
  position: relative;
}
.ueber-img-wrap {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 48px rgba(0,0,0,0.1);
}
.ueber-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.float-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}
.float-card-icon {
  width: 48px; height: 48px;
  background: var(--orange-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.float-card-text strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--anthracite);
}
.float-card-text span {
  font-size: 12px;
  color: var(--gray-light);
}

/* ── DIENSTLEISTUNGEN ── */
.dienst-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.dienst-card:nth-child(-n+3) {
  grid-column: span 2;
}
.dienst-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.dienst-card:nth-child(5) {
  grid-column: 4 / span 2;
}
.dienst-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.dienst-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.dienst-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: rgba(232,101,26,0.2);
}
.dienst-card:hover::before { transform: scaleX(1); }

.dienst-icon {
  width: 52px; height: 52px;
  background: var(--orange-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.dienst-icon svg { color: var(--orange); }
.dienst-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--anthracite);
}
.dienst-card p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ── PROJEKTE ── */
.projekte { background: var(--anthracite); }
.projekte .section-title { color: #fff; }
.projekte .section-label { color: var(--orange-light); }
.projekte .section-subtitle { color: rgba(255,255,255,0.5); }

.projekte-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.projekt-card:nth-child(-n+3) {
  grid-column: span 2;
}
.projekt-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.projekt-card:nth-child(5) {
  grid-column: 4 / span 2;
}
.projekt-card {
  background: var(--anthracite2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.projekt-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232,101,26,0.3);
}
.projekt-card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.projekt-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.projekt-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px 20px;
}
@media (min-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.team-card {
  text-align: center;
}
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--orange-pale), #FFD8C0);
  border: 4px solid var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  position: relative;
  overflow: hidden;
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  inset: 0;
}
.team-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 4px;
}
.team-card p {
  font-size: 13px;
  color: var(--gray-light);
}

/* ── GERÜSTSTOLZ ── */
.stolz { background: var(--orange-pale); }
.stolz-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stolz-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stolz-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.stolz-point-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stolz-point h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 4px;
}
.stolz-point p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.55;
}

/* ── STELLEN ── */
.stellen-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: box-shadow 0.2s;
}
.stellen-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.stellen-card + .stellen-card { margin-top: 16px; }
.stellen-badge {
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  display: inline-block;
}
.stellen-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--anthracite);
}
.stellen-card p {
  font-size: 14px;
  color: var(--gray-mid);
  margin-top: 6px;
}

.btn-outline-dark {
  border-color: var(--gray-border);
  color: var(--anthracite);
}

/* ── KONTAKT ── */
.kontakt { background: var(--anthracite); }
.kontakt .section-title { color: #fff; }
.kontakt .section-label { color: var(--orange-light); }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.kontakt-info p {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.kontakt-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.kontakt-detail-icon {
  width: 44px; height: 44px;
  background: rgba(232,101,26,0.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kontakt-detail-text strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.kontakt-detail-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.kontakt-detail-text a {
  color: var(--orange-light);
  text-decoration: none;
}

.kontakt-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--anthracite2); }

.form-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
}
.form-submit:hover { background: var(--orange-dark); }

/* ── FOOTER ── */
footer {
  background: #13161A;
  padding: 48px 5% 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 32px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange-light); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--orange-light); }
.footer-sep {
  color: rgba(255,255,255,0.15);
  font-size: 12px;
  user-select: none;
}
.footer-credit {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-credit a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-credit a:hover { color: var(--orange-light); }

/* ── LEGAL PAGES ── */
.legal-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(30,34,39,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
}
.legal-header-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.legal-page {
  min-height: 100vh;
  background: var(--off-white);
  padding: calc(var(--nav-h) + 48px) 5% 80px;
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-mid);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--orange); }
.legal-hero {
  margin-bottom: 40px;
}
.legal-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.legal-inner h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--anthracite);
  margin-bottom: 12px;
  letter-spacing: -0.6px;
  line-height: 1.1;
}
.legal-intro {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.65;
  max-width: 620px;
}
.legal-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 28px 28px 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px rgba(30,34,39,0.04);
}
.legal-card h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--anthracite);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange-pale);
}
.legal-card h2:not(:first-child) {
  margin-top: 24px;
}
.legal-meta {
  display: grid;
  gap: 16px;
}
.legal-meta-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.legal-meta-item span,
.legal-meta-item address {
  font-size: 15px;
  color: var(--anthracite);
  line-height: 1.6;
  font-style: normal;
}
.legal-inner p,
.legal-inner li {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-inner ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-inner li {
  margin-bottom: 6px;
}
.legal-inner a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}
.legal-inner a:hover {
  color: var(--orange-dark);
}
.legal-toc {
  background: var(--orange-pale);
  border: 1px solid rgba(232,101,26,0.15);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 28px;
}
.legal-toc-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--orange);
  margin-bottom: 12px;
}
.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
}
.legal-toc a {
  font-size: 14px;
  color: var(--anthracite);
  text-decoration: none;
  font-weight: 500;
}
.legal-toc a:hover {
  color: var(--orange);
}
.legal-section-anchor {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.legal-updated {
  font-size: 13px;
  color: var(--gray-light);
  margin-top: 32px;
}
@media (max-width: 600px) {
  .legal-card {
    padding: 22px 20px;
  }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (min-width: 1400px) {
  .hero-video {
    max-width: 720px;
  }
}

@media (max-width: 1200px) {
  .main-nav:not(.nav-scrolled) .nav-inner {
    column-gap: 20px;
  }
  .main-nav:not(.nav-scrolled) .nav-links-left,
  .main-nav:not(.nav-scrolled) .nav-links-right {
    gap: 18px;
  }
  .nav-links a {
    font-size: 13px;
  }
}

@media (max-width: 1100px) {
  .main-nav:not(.nav-scrolled) .nav-inner {
    display: block;
  }
  .main-nav:not(.nav-scrolled) .nav-logo {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translate(0, -50%);
    grid-column: auto;
  }
  .main-nav .nav-links-left,
  .main-nav .nav-links-right {
    display: none;
  }
  .main-nav .nav-logo,
  .main-nav.nav-scrolled .nav-logo {
    left: 5%;
    transform: translate(0, -50%);
  }
  .main-nav .nav-links-combined,
  .main-nav.nav-scrolled .nav-links-combined {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .hero-video {
    max-width: min(560px, 100%);
  }
}

@media (max-width: 900px) {
  .nav-links-left,
  .nav-links-right,
  .nav-links-combined { display: none; }
  .main-nav .nav-logo,
  .main-nav:not(.nav-scrolled) .nav-logo,
  .main-nav.nav-scrolled .nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    grid-column: auto;
    transition: none;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0 80px;
  }
  .hero-content {
    max-width: none;
  }
  .hero-visual {
    justify-content: center;
    order: 2;
  }
  .hero-video {
    max-width: min(520px, 100%);
  }
  .ueber-grid, .stolz-inner, .kontakt-grid { grid-template-columns: 1fr; }
  .dienst-grid,
  .projekte-grid {
    grid-template-columns: 1fr;
  }
  .dienst-card:nth-child(-n+5),
  .dienst-card:nth-child(4),
  .dienst-card:nth-child(5),
  .projekt-card:nth-child(-n+5),
  .projekt-card:nth-child(4),
  .projekt-card:nth-child(5) {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(8px, 3vw, 20px);
    align-items: start;
  }
  .hero-stat {
    text-align: center;
  }
  .hero-stat-num {
    font-size: clamp(22px, 7.5vw, 32px);
    letter-spacing: -0.5px;
  }
  .hero-stat-label {
    font-size: clamp(10px, 2.8vw, 13px);
    line-height: 1.3;
  }
}
@media (max-width: 600px) {
  .section { padding: 70px 5%; }
  .hero-inner { padding: 48px 0 64px; }
  .hero-video { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-title-line {
    white-space: normal;
  }
  .hero-title-meta {
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 14px;
  }
  .hero-title-script {
    font-size: clamp(22px, 6.5vw, 32px);
    transform: rotate(-9deg);
  }
  .btn-primary, .btn-outline { text-align: center; }
  .stellen-card { flex-direction: column; align-items: flex-start; }
}

/* Mobile nav (legacy fallback) */
.mobile-nav {
  display: none;
}

/* ── APP BOTTOM NAV (Mobile) ── */
.app-bottom-nav {
  display: none;
}

.app-sheet {
  display: none;
}

@media (max-width: 900px) {
  html {
    background: var(--app-chrome-bg, var(--off-white));
    transition: background 0.12s ease;
  }

  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    background: var(--app-chrome-bg, var(--white));
    transition: background 0.12s ease;
  }

  .hamburger {
    display: none !important;
  }

  .app-bottom-nav {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    padding: 0 14px max(10px, env(safe-area-inset-bottom, 0px));
    background: var(--app-chrome-bg, var(--off-white));
    transition: background 0.12s ease;
    pointer-events: none;
  }

  .app-bottom-nav-bar {
    pointer-events: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 2px;
    max-width: 420px;
    margin: 0 auto;
    padding: 8px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(30, 34, 39, 0.58);
    box-shadow:
      0 16px 48px rgba(0, 0, 0, 0.38),
      0 2px 8px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    transition:
      background 0.12s ease,
      border-color 0.12s ease,
      box-shadow 0.12s ease;
  }

  /* Dunkler Hintergrund: orange Icons */
  .app-bottom-nav.on-dark-bg .app-nav-btn:not(.is-active) {
    color: rgba(245, 135, 74, 0.78);
  }

  .app-bottom-nav.on-dark-bg .app-nav-btn:not(.is-active) .app-nav-icon {
    color: var(--orange);
    opacity: 0.82;
    filter: drop-shadow(0 0 5px rgba(232, 101, 26, 0.22));
  }

  /* Heller Hintergrund: schwarze Icons */
  .app-bottom-nav.on-light-bg .app-bottom-nav-bar {
    border-color: rgba(0, 0, 0, 0.07);
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
      0 12px 40px rgba(0, 0, 0, 0.1),
      0 2px 6px rgba(0, 0, 0, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }

  .app-bottom-nav.on-light-bg .app-nav-btn:not(.is-active) {
    color: rgba(30, 34, 39, 0.62);
  }

  .app-bottom-nav.on-light-bg .app-nav-btn:not(.is-active) .app-nav-icon {
    color: var(--anthracite);
    opacity: 0.88;
    filter: none;
  }

  .app-nav-btn {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 2px;
    border: 0;
    background: transparent;
    text-decoration: none;
    color: rgba(245, 135, 74, 0.72);
    font-family: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: color 0.12s ease, transform 0.22s ease;
  }

  .app-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    color: var(--orange);
    opacity: 0.72;
    filter: drop-shadow(0 0 4px rgba(232, 101, 26, 0.18));
    transition: color 0.12s ease, opacity 0.12s ease, filter 0.12s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .app-nav-icon svg {
    display: block;
    width: 22px;
    height: 22px;
  }

  .app-nav-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    color: inherit;
    opacity: 0.85;
    transition: opacity 0.12s ease, color 0.12s ease;
  }

  /* Aktiv: immer orange leuchtend */
  .app-nav-btn.is-active {
    color: var(--orange-light);
  }

  .app-nav-btn.is-active .app-nav-icon {
    color: var(--orange) !important;
    opacity: 1 !important;
    filter:
      drop-shadow(0 0 4px rgba(232, 101, 26, 0.85))
      drop-shadow(0 0 12px rgba(232, 101, 26, 0.65))
      drop-shadow(0 0 22px rgba(232, 101, 26, 0.45)) !important;
    transform: scale(1.1);
  }

  .app-nav-btn.is-active .app-nav-label {
    opacity: 1;
    font-weight: 700;
    color: var(--orange) !important;
  }

  /* App Sheet */
  .app-sheet {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 210;
    pointer-events: none;
  }

  .app-sheet[aria-hidden="true"] {
    visibility: hidden;
  }

  .app-sheet-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .app-sheet-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 16px calc(88px + env(safe-area-inset-bottom, 0px));
    border-radius: 24px 24px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: none;
    background: rgba(38, 42, 48, 0.72);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .app-sheet.is-open {
    pointer-events: auto;
  }

  .app-sheet.is-open .app-sheet-backdrop {
    opacity: 1;
  }

  .app-sheet.is-open .app-sheet-panel {
    transform: translateY(0);
  }

  body.app-sheet-open {
    overflow: hidden;
  }

  .app-sheet-grab {
    width: 36px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 16px;
  }

  .app-sheet-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 4px 14px;
  }

  .app-sheet-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .app-sheet-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .app-sheet-link:active {
    background: rgba(232, 101, 26, 0.12);
    border-color: rgba(232, 101, 26, 0.25);
  }

  .app-sheet-link-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 101, 26, 0.14);
    color: var(--orange);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .app-sheet-link-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .app-sheet-link-text strong {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
  }

  .app-sheet-link-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Mobile Footer */
  footer {
    padding: 28px 16px 24px;
    background: linear-gradient(180deg, #13161A 0%, #0f1215 100%);
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
    gap: 0;
  }

  .footer-links {
    display: none;
  }

  .footer-copy {
    font-size: 12px;
    line-height: 1.55;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.35);
  }

  .footer-bottom {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-top: none;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }

  .footer-legal {
    justify-content: center;
  }

  .footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
  }

  .footer-credit {
    text-align: center;
    font-size: 11px;
    line-height: 1.5;
  }

  .footer-credit a {
    color: var(--orange-light);
    font-weight: 600;
  }
}

/* ── TEAM PAGE ── */
.team-page-hero {
  position: relative;
  min-height: clamp(420px, 72vh, 640px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 48px) 5% 64px;
  overflow: hidden;
  background: var(--anthracite);
}
.team-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.team-page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.team-page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(30,34,39,0.96) 0%, rgba(30,34,39,0.55) 45%, rgba(30,34,39,0.25) 100%),
    linear-gradient(90deg, rgba(30,34,39,0.5) 0%, transparent 60%);
}
.team-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 52px;
}
.team-page-hero-content h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
  margin-top: 0;
}
.team-page-hero-content h1 em {
  font-style: normal;
  color: var(--orange);
}
.team-page-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  max-width: 520px;
}
.team-gen--alt {
  background: var(--off-white);
}
.team-founder {
  background: var(--orange-pale);
}
.team-gen-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: start;
  margin-bottom: 56px;
}
.team-gen-num {
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  color: rgba(232,101,26,0.14);
  user-select: none;
}
.team-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px 24px;
}
@media (min-width: 900px) {
  .team-page-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 32px 28px;
  }
  .team-page-grid--owners {
    grid-template-columns: repeat(3, 1fr);
    max-width: 960px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .team-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
}
.team-page-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  box-shadow: 0 4px 24px rgba(30,34,39,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-gen--alt .team-page-card,
.team-founder .team-page-card {
  background: var(--white);
}
.team-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(232,101,26,0.12);
}
.team-page-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange-pale), #FFD8C0);
}
.team-page-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.team-page-card:hover .team-page-photo img {
  transform: scale(1.04);
}
.team-page-info {
  padding: 18px 16px 20px;
  text-align: center;
}
.team-page-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.team-page-info p {
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.2px;
}
/* Startseite: gleiche Karten wie Team-Seite, etwas kompakter */
.team-page-grid--home {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px 16px;
}
@media (min-width: 900px) {
  .team-page-grid--home {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px 20px;
  }
}
@media (max-width: 600px) {
  .team-page-grid--home {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }
}
.team-home .team-page-card {
  border-radius: 16px;
}
.team-home .team-page-info {
  padding: 14px 12px 16px;
}
.team-home .team-page-info h3 {
  font-size: 15px;
}
.team-home .team-page-info p {
  font-size: 12px;
}
.team-page-card--featured .team-page-photo {
  aspect-ratio: 3 / 4;
}
.team-page-card--featured .team-page-info h3 {
  font-size: 19px;
}
.team-page-card--featured .team-page-info {
  padding: 22px 20px 24px;
}
.team-founder-inner {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(232,101,26,0.15);
  box-shadow: 0 8px 48px rgba(232,101,26,0.08);
}
.team-founder-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--orange-pale), #FFD8C0);
  box-shadow: 0 8px 32px rgba(30,34,39,0.12);
}
.team-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-founder-year {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.team-founder-text h3 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.6px;
  margin-bottom: 6px;
}
.team-founder-role {
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 20px;
}
.team-founder-text p {
  font-size: 16px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}
.team-page-cta {
  background: var(--anthracite);
  padding: 72px 5%;
  text-align: center;
}
.team-page-cta h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.team-page-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.nav-links a.nav-active {
  color: var(--orange-light);
}
.app-sheet-link.is-current {
  border-color: rgba(232,101,26,0.35);
  background: rgba(232,101,26,0.08);
}
.team-section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.team-section-link:hover {
  color: var(--orange-dark);
  gap: 12px;
}

/* ── KONTAKT PAGE ── */
.kontakt-page-hero.team-page-hero {
  min-height: clamp(320px, 48vh, 460px);
  background: var(--anthracite);
}
.kontakt-page-hero .team-page-hero-bg {
  display: none;
}
.kontakt-page-main {
  background: var(--off-white);
}
.kontakt-page-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.kontakt-page-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 4px 24px rgba(30,34,39,0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.kontakt-page-card:hover {
  box-shadow: 0 8px 32px rgba(232,101,26,0.08);
  transform: translateY(-2px);
}
.kontakt-page-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--orange-pale);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kontakt-page-card h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--orange);
  margin-bottom: 8px;
}
.kontakt-page-card p {
  font-size: 15px;
  color: var(--anthracite);
  line-height: 1.55;
  margin: 0;
}
.kontakt-page-card a {
  color: var(--anthracite);
  text-decoration: none;
  font-weight: 500;
}
.kontakt-page-card a:hover {
  color: var(--orange);
}
.kontakt-page-card-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange) !important;
}
.kontakt-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 32px;
  align-items: start;
}
.kontakt-page-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 4px 24px rgba(30,34,39,0.04);
}
.kontakt-page-form-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--anthracite);
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.kontakt-page-form-intro {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 28px;
}
.kontakt-page-form .form-group label {
  color: var(--gray-mid);
}
.kontakt-page-form .form-group input,
.kontakt-page-form .form-group textarea,
.kontakt-page-form .form-group select {
  background: var(--off-white);
  border: 1.5px solid var(--gray-border);
  color: var(--anthracite);
}
.kontakt-page-form .form-group input::placeholder,
.kontakt-page-form .form-group textarea::placeholder {
  color: var(--gray-light);
}
.kontakt-page-form .form-group input:focus,
.kontakt-page-form .form-group textarea:focus,
.kontakt-page-form .form-group select:focus {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,101,26,0.1);
}
.kontakt-page-form .form-group select option {
  background: var(--white);
  color: var(--anthracite);
}
.kontakt-page-submit {
  border-radius: 12px;
}
.kontakt-page-map-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.kontakt-page-map {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  box-shadow: 0 8px 40px rgba(30,34,39,0.08);
  aspect-ratio: 4 / 5;
  min-height: 420px;
  background: var(--gray-border);
}
.kontakt-page-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.kontakt-page-map-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-light);
  text-align: center;
}

@media (max-width: 900px) {
  .kontakt-page-cards {
    grid-template-columns: 1fr;
  }
  .kontakt-page-layout {
    grid-template-columns: 1fr;
  }
  .kontakt-page-map-wrap {
    position: static;
  }
  .kontakt-page-map {
    aspect-ratio: 16 / 10;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  .team-gen-header {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .team-gen-num {
    font-size: 48px;
  }
  .team-founder-inner {
    grid-template-columns: 1fr;
  }
  .team-founder-photo {
    max-width: 320px;
    margin: 0 auto;
  }
  .team-page-hero {
    min-height: 380px;
    padding-bottom: 48px;
  }
  .team-page-hero-content {
    padding-top: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .main-nav .nav-logo,
  .nav-links-left,
  .nav-links-right,
  .nav-links-combined {
    transition: none;
  }
  .app-sheet-panel,
  .app-sheet-backdrop {
    transition: none;
  }
}
