/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #b42f2f;
  --red-dk:   #a00e0e;
  --red-lt:   #e82020;
  --navy:     #284572;
  --navy-lt:  #254d8e;
  --bg:       #f5f5f5;
  --bg-2:     #ffffff;
  --bg-3:     #ececec;
  --border:   #dcdcdc;
  --text:     #505050;
  --dark:     #1a1a1a;
  --white:    #ffffff;
  --logo-blue: #043882;

  --nav-h:    72px;
  --max-w:    1200px;
  --gap:      clamp(1.5rem, 4vw, 3rem);
  --green:    #2e7d47;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  padding: .5rem 1.2rem;
  border-radius: 0 0 3px 3px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; outline: 2px solid var(--white); outline-offset: 2px; }

/* ===== GLOBAL FOCUS ===== */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

h1, h2, h3, h4 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

/* ===== PROGRESS BAR ===== */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-lt));
  z-index: 1000;
  transition: width .1s;
}

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .3s, box-shadow .3s;
}

#nav.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,.06);
  backdrop-filter: blur(12px);
}

#nav .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 2px;
  background: var(--red);
  transition: right .25s;
}

.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  padding: .5rem 1.4rem;
  background: var(--red);
  border-radius: 3px;
  color: var(--white) !important;
  transition: background .2s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dk) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav-burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--dark);
  transition: transform .3s, opacity .3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.99);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}

.mobile-menu a:hover { color: var(--red); }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--bg-2);
}

.hero-accent {
  position: absolute;
  top: -50%; right: 0;
  width: 45%;
  height: 200%;
  background:
    linear-gradient(160deg, rgba(180,47,47,0.35) 0%, rgba(40,69,114,0.2) 100%),
    url('Hero.jpeg') top center/cover no-repeat;
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  will-change: transform;
}

.hero-accent-stripe {
  position: absolute;
  top: -50%; right: 0;
  width: 6px;
  height: 200%;
  background: var(--red);
  will-change: transform;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow-line {
  width: 40px; height: 2px;
  background: var(--red);
}

.hero-eyebrow span {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

.hero-title { margin-bottom: 1.5rem; }

.hero-title em {
  font-style: normal;
  display: block;
  color: var(--red);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2rem;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all .25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,20,20,.25);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
}

.hero-stats {
  position: absolute;
  bottom: 3rem; right: 0;
  display: flex;
  gap: 3rem;
  z-index: 1;
}

.hero-stat { text-align: right; }

.hero-stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}

.hero-stat-num span {
  color: rgba(255,255,255,0.7);
  font-size: 1.8rem;
}

.hero-stat-label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: .3rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: var(--border);
}

/* ===== ABOUT ===== */
#about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.about-visual { position: relative; }

.about-frame {
  aspect-ratio: 4/5;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.about-frame-inner {
  width: 68%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hex {
  width: 100%; height: 100%;
  background: var(--logo-blue);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hex-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18%;
}

.about-hex-inner img {
  width: 100%;
  display: block;

}

.about-badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 3px;
  text-align: center;
  will-change: transform;
}

.about-badge-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge-text {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
}

.about-content { padding-left: 2rem; }
.about-content p { margin-bottom: 1.2rem; }

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
}

.pill {
  padding: .4rem 1rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  transition: border-color .2s, color .2s, background .2s;
}

.pill:hover { border-color: var(--red); color: var(--red); background: #fef5f5; }

/* ===== SERVICES ===== */
#services { background: var(--bg-2); }

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header p {
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* Event-Sicherheit primary hero card */
.service-hero {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 100%);
  border-radius: 4px;
  padding: 2.5rem 3rem;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border: 36px solid rgba(255,255,255,.05);
  border-radius: 50%;
}

.service-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: 120px;
  width: 220px; height: 220px;
  border: 36px solid rgba(255,255,255,.03);
  border-radius: 50%;
}

.service-hero:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(180,47,47,.22); }

.service-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.22);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.service-hero h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: .75rem;
}

.service-hero p { color: rgba(255,255,255,.85); font-size: 1rem; max-width: 620px; }

.service-hero-icon {
  width: 80px; height: 80px;
  background: rgba(255,255,255,.12);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-icon svg {
  width: 40px; height: 40px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Featured services row */
.services-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card-featured {
  background: var(--navy);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.service-card-featured:first-child { background: var(--red); }

.service-card-featured::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 20px solid rgba(255,255,255,.06);
  border-radius: 50%;
}

.service-card-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.service-card-featured .service-icon {
  background: rgba(255,255,255,.15);
  margin-bottom: 1.5rem;
}

.service-card-featured .service-icon svg { stroke: var(--white); }

.service-card-featured h3 { color: var(--white); margin-bottom: .75rem; font-size: 1.4rem; }
.service-card-featured p { color: rgba(255,255,255,.8); font-size: .95rem; }

.service-card-featured .service-tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* Standard services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--bg-2);
  padding: 2rem 1.8rem;
  transition: background .25s;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 100%;
  height: 2px;
  background: var(--red);
  transition: right .35s;
}

.service-card:hover { background: #fafafa; }
.service-card:hover::before { right: 0; }

.service-icon {
  width: 50px; height: 50px;
  background: var(--bg-3);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.service-icon svg {
  width: 24px; height: 24px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 { margin-bottom: .6rem; }
.service-card p { font-size: .875rem; }

.service-link {
  display: inline-block;
  margin-top: .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  letter-spacing: .02em;
  transition: opacity .2s;
}
.service-link:hover { opacity: .7; }

/* ===== CERTIFICATIONS ===== */
.certs-heading {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 3rem;
  margin-bottom: 0;
}

.certs-heading span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}

.certs-heading-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.certs-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 0;
  margin-top: 0;
  padding: 2rem 2.5rem;
  background: var(--bg-2);
  border-top: 2px solid var(--red);
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2.5rem;
}

.cert-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon svg {
  width: 36px; height: 36px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cert-text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.cert-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .03em;
}

.cert-text span {
  font-size: .78rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.cert-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== PORTFOLIO ===== */
#portfolio { background: var(--bg); }

.portfolio-subsection-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.4rem;
}

.portfolio-subsection-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.events-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 3.5rem;
}

.event-chip {
  padding: .6rem 1.2rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  transition: border-color .2s, color .2s, background .2s, transform .2s;
  cursor: default;
}

.event-chip:hover {
  border-color: var(--red);
  color: var(--red);
  background: #fef5f5;
  transform: translateY(-1px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 5; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 4; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e4e4e4 0%, #d5d5d5 100%);
  position: relative;
}

.gallery-placeholder-pattern {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: repeating-linear-gradient(45deg, var(--navy) 0, var(--navy) 1px, transparent 0, transparent 50%);
  background-size: 16px 16px;
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,26,26,.88) 0%, transparent 100%);
  padding: 1.8rem 1rem .8rem;
  pointer-events: none;
}

.gallery-caption-cat {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-lt);
  margin-bottom: .2rem;
  font-weight: 700;
}

.gallery-caption-title {
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
}

/* ===== TEAM ===== */
#team { background: var(--bg-2); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}

.team-card { text-align: center; }

.team-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid var(--border);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.03em;
  transition: border-color .25s, box-shadow .25s;
  overflow: hidden;
}

.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-card:hover .team-avatar {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(196,20,20,.08);
}

.team-card h3 { margin-bottom: .2rem; }

.team-role {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .8rem;
  font-weight: 700;
}

.team-card p { font-size: .9rem; margin-bottom: 1rem; }

.team-contact { font-size: .82rem; color: var(--text); }
.team-contact a { transition: color .2s; }
.team-contact a:hover { color: var(--red); }

.team-card-hire .team-avatar {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.team-card-hire:hover .team-avatar {
  background: var(--red-dk);
  border-color: var(--red-dk);
}

.team-card-hire .team-role { color: var(--navy); }

/* ===== CONTACT ===== */
#kontakt { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }

.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon svg {
  width: 20px; height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .2rem;
  font-weight: 700;
}

.contact-item-val { color: var(--dark); font-size: .95rem; }
.contact-item-val a { transition: color .2s; }
.contact-item-val a:hover { color: var(--red); }

.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: .75rem 1rem;
  color: var(--dark);
  font-size: .9rem;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(180, 47, 47, .18);
  outline: none;
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-logo { height: 38px; width: auto; margin-bottom: .8rem; }

.footer-brand p { font-size: .85rem; max-width: 280px; color: #888; }

.footer-links h4 {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 1rem;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }

.footer-links a {
  font-size: .875rem;
  color: #888;
  transition: color .2s;
}

.footer-links a:hover { color: var(--white); }

.footer-links li:not(:has(a)) { font-size: .875rem; color: #888; }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #2a2a2a;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .8rem;
  color: #666;
}

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #666; transition: color .2s; }
.footer-legal a:hover { color: var(--white); }

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 1;
  opacity: .45;
}

.scroll-indicator span {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid var(--text);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 3px; height: 6px;
  background: var(--red);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: .3; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-dot { animation: none; }
  .btn:hover, .service-hero:hover, .service-card-featured:hover { transform: none; }
  .hero-accent, .hero-accent-stripe, .about-frame, .about-badge { will-change: auto; }
}

/* ===== FORM MESSAGES ===== */
.form-success {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--green);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.6;
}

.form-error {
  margin-top: .75rem;
  font-size: .85rem;
  color: var(--red);
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: .5rem;
}

.legal-hero p {
  color: var(--text);
  font-size: 1rem;
}

.legal-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.legal-eyebrow-line {
  width: 32px; height: 2px;
  background: var(--red);
}

.legal-eyebrow span {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 2.5rem);
}

.legal-content h2 {
  font-size: 1.15rem;
  color: var(--dark);
  margin: 2.5rem 0 .6rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  margin-bottom: .9rem;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li { margin-bottom: .4rem; }

.legal-content a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color .2s;
}

.legal-content a:hover { text-decoration-color: var(--red); }

.legal-info-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 0 3px 3px 0;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-info-block p { margin-bottom: .3rem; }
.legal-info-block p:last-child { margin-bottom: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-strip { flex-direction: column; gap: 1.5rem; padding: 2rem 1.5rem; }
  .cert-divider { width: 48px; height: 1px; }
  .cert-badge { padding: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-content { padding-left: 0; }
  .about-visual { max-width: 200px; margin: 0 auto 3rem; padding: 0 1rem 2rem 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-featured { grid-template-columns: 1fr; }
  .service-hero { grid-template-columns: 1fr; }
  .service-hero-icon { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item:nth-child(n) { grid-column: span 1; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-stats { position: static; flex-wrap: wrap; justify-content: flex-start; gap: 2rem; margin-top: 3rem; }
  .hero-stat { text-align: left; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item:nth-child(n) { grid-column: span 1; }
}

/* ===== UTILITY ===== */
.hero-container { width: 100%; position: relative; z-index: 1; }
.btn-full { width: 100%; justify-content: center; }

/* ===== KARRIERE ===== */
#karriere { background: var(--bg); }

.karriere-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}

.karriere-intro h2 { margin-bottom: 1rem; }
.karriere-intro > p { margin-bottom: 2rem; }

.karriere-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.5rem;
}

.job-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.job-card-head {
  background: var(--navy);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.job-card-head h3 { color: var(--white); margin-bottom: .2rem; font-size: 1.15rem; }

.job-type {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  font-weight: 700;
}

.job-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.job-card-body { padding: 1.8rem 2rem; }

.job-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
  font-size: .82rem;
  color: var(--text);
}

.job-requirements {
  list-style: none;
  margin-bottom: 1.6rem;
}

.job-requirements li {
  font-size: .875rem;
  color: var(--text);
  padding: .3rem 0 .3rem 1.2rem;
  position: relative;
  border-bottom: 1px solid var(--bg-3);
}

.job-requirements li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.job-requirements li:last-child { border-bottom: none; }

.mietpark-list {
  list-style: none;
  margin-top: .8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem;
}

.mietpark-list li {
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  padding-left: 1rem;
  position: relative;
}

.mietpark-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 900px) {
  .karriere-grid { grid-template-columns: 1fr; }
  .mietpark-list { grid-template-columns: 1fr; }
}
