/* =============================================
   CLIMB BY MOJO — Arash B. Pour
   Industriekletterer | Höhenarbeiten
   Industrial Design · Hi-Vis
   ============================================= */

@import url('fonts.css');   /* lokal gehostet — keine Google-Anfragen */

:root {
  /* Core industrial palette (names kept for backwards compatibility) */
  --primary:     #101214;   /* ink / near-black */
  --primary-mid: #1b1f23;   /* graphite */
  --accent:      #ffd400;   /* hi-vis yellow (fills, markers, text on dark) */
  --accent-dark: #e6bf00;   /* hi-vis yellow — hover/darker */
  --white:       #ffffff;
  --gray-50:     #f5f4f1;   /* concrete light */
  --gray-100:    #ecebe6;
  --gray-300:    #cdccc4;   /* muted border / nav text on dark */
  --gray-500:    #6c7178;   /* muted body text */
  --gray-700:    #2c3137;   /* dark body text */
  --gray-900:    #0c0e10;   /* footer ink */

  /* Industrial extras */
  --steel-800:   #1b1f23;
  --steel-700:   #262b31;
  --steel-600:   #353c44;
  --line-dark:   rgba(255,255,255,0.09);
  --line-light:  #e2e1db;
  --hivis:       #ffd400;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.18);
  --shadow-md:   0 6px 18px rgba(0,0,0,0.18);
  --shadow-lg:   0 16px 44px rgba(0,0,0,0.28);
  --radius:      3px;
  --radius-lg:   4px;
  --transition:  all 0.22s ease;

  /* Hi-vis hazard stripe */
  --hazard: repeating-linear-gradient(-45deg, #ffd400 0 16px, #101214 16px 32px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--primary);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 600; text-transform: uppercase; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

/* Section label = stamped hi-vis tag (readable on any background) */
.section-label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--hivis);
  padding: 0.28rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }
.section-dark  { background: var(--primary);  color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-light { background: var(--gray-50); }

/* Hi-vis hazard divider */
.hazard-bar { height: 8px; background: var(--hazard); background-size: 45px 45px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,212,0,0.30); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover { background: var(--steel-700); border-color: var(--steel-700); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: var(--accent); border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-2px); }

/* ---- NAVIGATION ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--primary);
  border-bottom: 1px solid var(--line-dark);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 128px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo img { height: 112px; width: auto; display: block; transform: translateZ(0); backface-visibility: hidden; }
.nav-logo span { color: var(--accent); }

/* Wortmarke neben dem Emblem (nur Navbar) */
.nav-logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text i {
  font-style: normal;
  font-size: 0.58em;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.footer-brand .nav-logo-text { display: inline-flex; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--gray-300);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a.nav-cta { color: var(--primary); }
.nav-links a.nav-cta:hover, .nav-links a.nav-cta.active { color: var(--primary); }

.nav-cta { margin-left: 1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(125deg, #0c0e10 0%, #1b1f23 55%, #101214 100%);
  display: flex;
  align-items: center;
  padding-top: 128px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 45%, rgba(255,212,0,0.10) 0%, transparent 62%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,212,0,0.10);
  border: 1px solid rgba(255,212,0,0.35);
  color: var(--accent);
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
/* Framed hero photo with industrial corner ticks */
.hero-photo {
  position: relative;
  width: 100%;
  max-width: 400px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px;
  background: rgba(255,255,255,0.02);
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.05);
}
.hero-photo::before,
.hero-photo::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border: 3px solid var(--accent);
}
.hero-photo::before { top: -3px; left: -3px; border-right: none; border-bottom: none; }
.hero-photo::after  { bottom: -3px; right: -3px; border-left: none; border-top: none; }
.hero-photo-tag {
  position: absolute;
  left: 14px; bottom: 22px;
  background: var(--accent);
  color: var(--primary);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}

/* Legacy hero card (still used as fallback) */
.hero-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 2.5rem;
  width: 100%;
  max-width: 380px;
}

/* Scroll-Hinweis: zeigt, dass es nach unten weitergeht */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--gray-300);
  transition: opacity 0.4s ease, color 0.25s ease;
}
.hero-scroll:hover { color: var(--accent); }
.hero-scroll-text {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-scroll-arrow {
  display: inline-flex;
  animation: heroScrollBounce 1.8s ease-in-out infinite;
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(7px); }
}
/* Indikator ausblenden, sobald der Nutzer scrollt */
.navbar.scrolled ~ .hero .hero-scroll,
body.scrolled .hero-scroll { opacity: 0; pointer-events: none; }
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-arrow { animation: none; }
}
.hero-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cert-icon {
  width: 32px;
  height: 32px;
  border-radius: 2px;
  background: rgba(255,212,0,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.cert-text { color: var(--gray-300); font-size: 0.875rem; }
.cert-text strong { color: var(--white); display: block; font-size: 0.8rem; font-family: 'Oswald', sans-serif; font-weight: 500; }

/* ---- USP BAR (hi-vis tape) ---- */
.usp-bar {
  background: var(--accent);
  padding: 0.9rem 0;
  border-top: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
}
.usp-bar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}
.usp-item svg { flex-shrink: 0; }

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header p {
  max-width: 620px;
  margin: 1rem auto 0;
  color: var(--gray-500);
  font-size: 1.05rem;
}
.section-dark .section-header p { color: var(--gray-300); }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary); }
.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.service-card p  { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 1rem; }
.service-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: var(--transition);
}
.service-link:hover { gap: 0.7rem; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--primary-mid);
  padding: 3rem 0;
  border-top: 1px solid var(--line-dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  color: var(--gray-300);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ---- CERTS GRID ---- */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
}
.cert-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}
.cert-card:hover {
  background: rgba(255,212,0,0.06);
  border-color: rgba(255,212,0,0.4);
}
.cert-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  background: rgba(255,212,0,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.cert-card-body h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.25rem; }
.cert-card-body p  { color: var(--gray-300); font-size: 0.82rem; line-height: 1.5; }
.cert-highlight { color: var(--accent) !important; font-weight: 500 !important; }

/* ---- ABOUT PREVIEW ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--gray-300);
  border: 1px solid var(--line-light);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-label { display: inline-block; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p  { color: var(--gray-500); margin-bottom: 1rem; }
.about-checks { margin: 1.5rem 0 2rem; }
.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-weight: 500;
}
.check-icon {
  color: var(--primary);
  background: var(--accent);
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- VIDEO SECTION ---- */
.video-section { background: var(--gray-50); }
.video-placeholder {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--primary);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  padding: 2rem;
  border: 2px dashed rgba(255,212,0,0.35);
}
.video-play-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}
.video-play-icon:hover { transform: scale(1.1); background: var(--accent-dark); }
.video-placeholder p { color: var(--gray-300); font-size: 0.9rem; }

/* ---- CTA SECTION ---- */
.cta-section {
  position: relative;
  background: linear-gradient(120deg, #15181b 0%, #262b31 100%);
  padding: 5rem 0;
  text-align: center;
  border-top: 8px solid transparent;
  border-image: var(--hazard) 8;
  border-image-slice: 8;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,0.78); font-size: 1.1rem; margin-bottom: 2rem; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
footer {
  background: var(--gray-900);
  padding: 3rem 0 1.5rem;
  color: var(--gray-300);
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .nav-logo img { height: 112px; }
.footer-brand p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.8; }
.footer-social { margin-top: 1.25rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-300);
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.footer-social a:hover { color: var(--accent); }
.footer-social svg { flex-shrink: 0; }
.footer-col h4 {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  color: var(--gray-500);
  font-size: 0.875rem;
  padding: 0.3rem 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: var(--gray-500);
}
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}
.footer-bottom a { color: var(--gray-500); transition: var(--transition); }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ---- GALERIE ---- */
.gallery-cat { margin: 2.75rem 0 1.1rem; }
.gallery-cat:first-of-type { margin-top: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  cursor: pointer;
  position: relative;
  border: 1px solid var(--line-light);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16,18,20,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 2rem;
  color: var(--accent);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.15); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 50px; height: 50px;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); color: var(--primary); }

/* ---- CONTACT FORM ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 2px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  display: block;
  margin-bottom: 0.2rem;
}
.contact-info-text a, .contact-info-text span { font-weight: 600; color: var(--primary); font-size: 1rem; }
.contact-info-text a:hover { color: var(--primary); text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 3px; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,212,0,0.22);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; justify-content: center; }
.form-note { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.75rem; text-align: center; }

.form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #065f46;
  font-weight: 600;
  margin-bottom: 1rem;
}
.form-error {
  display: none;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #991b1b;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ---- SERVICES DETAIL PAGE ---- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line-light);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--line-light);
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-content h3 { font-size: 1.7rem; margin-bottom: 1rem; }
.service-detail-content p  { color: var(--gray-500); margin-bottom: 1rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.service-tag {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  border-left: 3px solid var(--accent);
}

/* ---- PAGE HERO (Unterseiten) ---- */
.page-hero {
  background: linear-gradient(125deg, #0c0e10 0%, #1b1f23 100%);
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
  border-bottom: 4px solid transparent;
  border-image: var(--hazard) 4;
  border-image-slice: 4;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p   { color: var(--gray-300); max-width: 620px; margin: 0 auto; font-size: 1.1rem; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-300);
  margin-bottom: 1rem;
  justify-content: center;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---- IMPRESSUM / DATENSCHUTZ ---- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 1.3rem; margin: 2rem 0 0.75rem; padding-top: 2rem; border-top: 1px solid var(--line-light); text-transform: none; }
.legal-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content p, .legal-content li { color: var(--gray-500); margin-bottom: 0.75rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; }
.legal-content a { color: var(--gray-700); text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; }

/* ---- SUCCESS / ERROR MESSAGE ---- */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.alert-success { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; }
.alert-error   { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }

/* ---- SVG ICONS (ersetzen Emojis — geräteunabhängig) ---- */
.service-icon svg      { width: 26px; height: 26px; stroke: var(--accent);  fill: none; }
.cert-card-icon svg    { width: 22px; height: 22px; stroke: var(--accent);  fill: none; }
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--accent);  fill: none; }
.footer-contact-item svg { width: 16px; height: 16px; stroke: currentColor; fill: none; flex-shrink: 0; }
.btn svg               { width: 18px; height: 18px; stroke: currentColor;   fill: none; }
.gallery-overlay svg   { width: 30px; height: 30px; stroke: var(--accent);  fill: none; }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.feature-icon svg { width: 40px; height: 40px; stroke: var(--primary); fill: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .service-detail { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-detail.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 128px; left: 0; right: 0; background: var(--primary); padding: 1.5rem; gap: 1rem; border-top: 1px solid var(--line-dark); }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .nav-logo img { height: 78px; }
  .nav-logo-text { font-size: 1.2rem; }
  .usp-bar .container { flex-direction: column; gap: 0.75rem; text-align: center; }
  .usp-item { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
}
