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

:root {
  --black: #101215;
  --charcoal: #191c20;
  --charcoal-soft: #22262b;
  --accent: #c4202f;
  --accent-soft: #e2545f;
  --white: #f3f2ef;
  --muted: #a7abb1;
  --radius: 16px;
  --shadow: 0 20px 45px -20px rgba(0, 0, 0, 0.75);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

h1, h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-transform: uppercase;
}

h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.accent { color: var(--accent-soft); }

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}
.btn svg { width: 1.05rem; height: 1.05rem; }
.btn-accent {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: var(--white);
  box-shadow: 0 12px 30px -10px rgba(196, 32, 47, 0.55);
}
.btn-accent:hover { transform: translateY(-3px); }
.btn-ghost {
  border: 1.5px solid rgba(243, 242, 239, 0.35);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(243, 242, 239, 0.1); transform: translateY(-3px); }

/* ---------- Top fixed stack (language bar + header) ---------- */
.top-fixed { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }

/* ---------- Language bar ---------- */
.lang-bar { background: #08090a; border-bottom: 1px solid rgba(196, 32, 47, 0.25); }
.lang-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.lang-bar-label { font-size: 0.85rem; opacity: 0.55; }
.lang-buttons { display: flex; gap: 0.4rem; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
  border: 1px solid transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.lang-btn:hover { opacity: 0.9; }
.flag-icon { width: 1.15rem; height: auto; border-radius: 2px; display: block; box-shadow: 0 0 0 1px rgba(255,255,255,0.15); }
.lang-btn.active {
  opacity: 1;
  background: rgba(196, 32, 47, 0.18);
  border-color: var(--accent);
  color: var(--accent-soft);
}

/* ---------- Header ---------- */
.site-header {
  position: relative;
  backdrop-filter: blur(10px);
  background: rgba(16, 18, 21, 0.8);
  border-bottom: 1px solid rgba(196, 32, 47, 0.2);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-mini { display: flex; align-items: center; gap: 0.7rem; }
.logo-mini img { height: 44px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.main-nav a:hover { opacity: 1; }
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--accent-soft); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ---------- Social dock ---------- */
.social-dock {
  position: fixed;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.social-btn {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  border: 1px solid rgba(196, 32, 47, 0.25);
  color: var(--white);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}
.social-btn svg { width: 21px; height: 21px; }
.social-btn:hover {
  transform: translateX(-5px);
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}
.social-btn-label {
  position: absolute;
  right: calc(100% + 0.7rem);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--charcoal);
  border: 1px solid rgba(196, 32, 47, 0.25);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.social-btn:hover .social-btn-label { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-video.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,11,13,0.72) 0%, rgba(10,11,13,0.55) 45%, rgba(10,11,13,0.92) 100%),
    linear-gradient(100deg, rgba(10,11,13,0.55) 0%, rgba(10,11,13,0.15) 60%);
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
  max-width: 760px;
  padding: 9rem 1.5rem 5rem;
}
.hero-badge {
  width: 220px;
  margin: 0 auto 1.8rem;
}
.hero-badge img { width: 100%; height: auto; }
.hero-kicker {
  color: var(--accent-soft);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.3rem, 6.4vw, 3.7rem);
  margin-bottom: 1.2rem;
}
.hero-sub {
  max-width: 560px;
  margin: 0 auto 2.2rem;
  opacity: 0.85;
  line-height: 1.65;
  font-size: 1.02rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--accent);
  transform: rotate(-1.4deg) scale(1.03);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.85rem 0;
  margin: -1.3rem 0 1rem;
  position: relative;
  z-index: 3;
}
.marquee-track { display: inline-flex; gap: 3rem; animation: marquee-scroll 22s linear infinite; }
.marquee-track span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about { max-width: 1180px; margin: 6rem auto; padding: 0 1.5rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(196, 32, 47, 0.25);
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.about h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
.about-text { opacity: 0.85; line-height: 1.75; font-size: 1.02rem; margin-bottom: 1rem; }
.about-text:last-of-type { margin-bottom: 0; }
.about-text strong { color: var(--accent-soft); }

/* ---------- Features strip ---------- */
.features { max-width: 1180px; margin: 0 auto 6rem; padding: 0 1.5rem; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.feature-card {
  background: var(--charcoal);
  border: 1px solid rgba(196, 32, 47, 0.2);
  border-radius: var(--radius);
  padding: 1.6rem 1.3rem;
  text-align: center;
}
.feature-icon {
  width: 44px; height: 44px;
  margin: 0 auto 0.9rem;
  color: var(--accent-soft);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card p { font-size: 0.85rem; font-weight: 500; line-height: 1.5; opacity: 0.9; }

/* ---------- Services ---------- */
.services { background: var(--charcoal); padding: 6rem 1.5rem; }
.services h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 3rem; }
.service-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  background: var(--charcoal-soft);
  border: 1px solid rgba(196, 32, 47, 0.2);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.service-card:hover, .service-card:focus-visible { transform: translateY(-6px); border-color: var(--accent); }
.service-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.service-icon { width: 40px; height: 40px; color: var(--accent-soft); margin-bottom: 1.1rem; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.7rem; }
.service-card p { opacity: 0.75; font-size: 0.92rem; line-height: 1.65; font-family: 'Inter', sans-serif; text-transform: none; letter-spacing: normal; margin-bottom: 1rem; }
.service-more {
  margin-top: auto;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

/* ---------- Service detail modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(8, 9, 10, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  position: relative;
  background: var(--charcoal);
  border: 1px solid rgba(196, 32, 47, 0.3);
  border-radius: var(--radius);
  max-width: 760px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.6rem 2.4rem;
  box-shadow: var(--shadow);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(243, 242, 239, 0.2);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.modal-close svg { width: 18px; height: 18px; }
.modal-close:hover { background: rgba(196, 32, 47, 0.15); border-color: var(--accent); }
.modal-icon { width: 46px; height: 46px; color: var(--accent-soft); margin-bottom: 1rem; }
.modal-icon svg { width: 100%; height: 100%; }
.modal-title { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: 0.3rem; }
.modal-subtitle { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.03em; color: var(--muted); font-size: 1rem; margin-bottom: 1.4rem; }
.modal-intro { opacity: 0.85; line-height: 1.7; font-size: 0.98rem; margin-bottom: 1.4rem; }
.modal-intro strong { color: var(--accent-soft); }
.modal-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 2rem; margin-bottom: 1.4rem; }
.modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  line-height: 1.5;
  border-bottom: 1px dashed rgba(243, 242, 239, 0.1);
}
.modal-list li svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; margin-top: 0.15rem; color: var(--accent-soft); }
.modal-closing p { opacity: 0.8; line-height: 1.7; font-size: 0.92rem; margin-bottom: 0.8rem; }
.modal-closing p:last-child { margin-bottom: 0; }
.modal-closing strong { color: var(--accent-soft); }

/* ---------- Gallery ---------- */
.gallery { max-width: 1180px; margin: 6rem auto; padding: 0 1.5rem; }
.gallery h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 3rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 1rem; }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--charcoal-soft), #0e0f11);
  border: 1px solid rgba(196, 32, 47, 0.2);
  transition: transform 0.3s ease;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item:hover { transform: scale(1.03); border-color: var(--accent); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(0deg, rgba(10,11,13,0.85), transparent);
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Jobs ---------- */
.jobs { max-width: 780px; margin: 6rem auto; padding: 0 1.5rem; text-align: center; }
.jobs h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.jobs-intro { opacity: 0.85; line-height: 1.65; font-size: 1.02rem; margin-bottom: 2rem; }
.jobs-center { display: flex; justify-content: center; }
.job-listing { margin-top: 2.2rem; text-align: left; }
.job-card {
  background: var(--charcoal);
  border: 1px solid rgba(196, 32, 47, 0.25);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.job-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.job-teaser { opacity: 0.8; line-height: 1.65; font-size: 0.95rem; margin-bottom: 1.4rem; }
.job-subheading { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.05rem; color: var(--accent-soft); margin: 1.6rem 0 0.9rem; }
.job-type { font-size: 0.92rem; margin: 1.4rem 0 1.6rem; }
.job-type strong { color: var(--accent-soft); }

.job-apply-form-wrap { margin-top: 2rem; padding-top: 1.8rem; border-top: 1px dashed rgba(196, 32, 47, 0.25); }
.job-apply-heading { font-size: 1.3rem; margin-bottom: 1.3rem; }
.job-apply-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0 1.5rem; margin-bottom: 1.2rem; }
.job-apply-col { display: flex; flex-direction: column; }
.job-apply-col-message { grid-column: 3; }
.job-apply-form label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  margin-top: 1rem;
}
.job-apply-col > label:first-child { margin-top: 0; }
.job-apply-form .required { color: var(--accent-soft); font-weight: 500; font-size: 0.8rem; }
.job-apply-form input[type="text"],
.job-apply-form input[type="email"],
.job-apply-form input[type="tel"],
.job-apply-form textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(243, 242, 239, 0.18);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
}
.job-apply-form input:focus,
.job-apply-form textarea:focus { outline: none; border-color: var(--accent); }
.job-apply-col-message textarea { flex: 1; min-height: 220px; resize: vertical; }

.file-field { display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap; }
.file-input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.file-btn {
  display: inline-flex;
  align-items: center;
  background: var(--black);
  border: 1px solid rgba(243, 242, 239, 0.25);
  border-radius: 6px;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0 !important;
  transition: border-color 0.2s ease;
}
.file-btn:hover { border-color: var(--accent); }
.file-name { font-size: 0.82rem; opacity: 0.65; }

.job-apply-filenote { font-size: 0.8rem; opacity: 0.6; line-height: 1.5; margin-bottom: 1.2rem; }

.job-apply-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.6rem;
  cursor: pointer;
}
.job-apply-consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 0.15rem; accent-color: var(--accent); flex-shrink: 0; }

.job-apply-submit { display: block; width: 100%; text-align: center; justify-content: center; border: none; cursor: pointer; }

/* ---------- Contact / Hours ---------- */
.hours { background: var(--charcoal); padding: 6rem 1.5rem; }
.hours-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
.hours-card { max-width: 480px; padding: 1rem 2rem 1rem 0; }
.hours-card h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-bottom: 1.5rem; }
.hours-list { margin-bottom: 1.5rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed rgba(196, 32, 47, 0.25);
  font-weight: 500;
}
.hours-list li span:first-child { opacity: 0.7; }
.address { font-weight: 600; margin-bottom: 0.9rem; line-height: 1.6; }
.hours-btns { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.contact-form { margin-top: 2rem; padding-top: 1.6rem; border-top: 1px dashed rgba(196, 32, 47, 0.25); }
.contact-form-note { font-size: 0.85rem; opacity: 0.65; margin-bottom: 0.8rem; }
.contact-form .form-row { display: flex; gap: 0.8rem; margin-bottom: 0.8rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(243, 242, 239, 0.18);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-form textarea { margin-bottom: 1rem; }
.contact-form button { width: 100%; justify-content: center; border: none; cursor: pointer; }
.hours-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 340px; border: 1px solid rgba(196, 32, 47, 0.2); }
.hours-map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Social ---------- */
.social { padding: 6rem 1.5rem; max-width: 1180px; margin: 0 auto; }
.social h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 3rem; }
.social-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.social-card {
  background: var(--charcoal);
  border: 1px solid rgba(196, 32, 47, 0.2);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.social-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.social-icon { width: 2.6rem; height: 2.6rem; color: var(--accent-soft); margin-bottom: 0.3rem; }
.social-icon svg { width: 100%; height: 100%; }
.social-card span:nth-child(2) { font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.03em; font-family: 'Oswald', sans-serif; }
.social-card small { opacity: 0.6; }

/* ---------- Impressum ---------- */
.impressum { max-width: 1000px; margin: 8rem auto 6rem; padding: 0 1.5rem; }
.impressum h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 2rem; }
.impressum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; margin-bottom: 2.2rem; }
.impressum-item {
  background: var(--charcoal-soft);
  border: 1px solid rgba(196, 32, 47, 0.2);
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
}
.impressum-item h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--accent-soft); margin-bottom: 0.4rem; font-weight: 500; }
.impressum-item p { font-size: 0.95rem; opacity: 0.9; }
.impressum-item a { text-decoration: underline; text-underline-offset: 2px; }
.impressum-back { display: inline-flex; }

/* ---------- Footer ---------- */
.site-footer { background: #08090a; text-align: center; padding: 2.5rem 1.5rem; opacity: 0.9; }
.footer-logo { display: inline-flex; align-items: center; gap: 0.6rem; justify-content: center; margin-bottom: 0.8rem; }
.footer-logo img { height: 34px; width: auto; }
.footer-note { font-size: 0.75rem; opacity: 0.5; margin-top: 0.6rem; }
.footer-legal { margin-top: 0.9rem; }
.footer-legal a { font-size: 0.78rem; opacity: 0.6; text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { opacity: 1; color: var(--accent-soft); }

/* ---------- Scroll offset for fixed header (anchor nav) ---------- */
section[id] { scroll-margin-top: 100px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo img { aspect-ratio: 16 / 10; }
  .hours-grid { grid-template-columns: 1fr; }
  .hours-card { padding: 1rem 0; max-width: 100%; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    border-bottom: 1px solid rgba(196, 32, 47, 0.2);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
  }
  .main-nav.open .nav-cta { text-align: center; }
}

@media (max-width: 600px) {
  section[id] { scroll-margin-top: 80px; }

  .social-dock { right: 0.7rem; gap: 0.6rem; }
  .social-btn { width: 42px; height: 42px; }
  .social-btn svg { width: 18px; height: 18px; }
  .social-btn-label { display: none; }

  .lang-bar-label { display: none; }
  .lang-bar-inner { padding: 0.35rem 1rem; justify-content: center; gap: 1.2rem; }
  .lang-btn span { display: none; }
  .lang-btn { padding: 0.3rem 0.5rem; font-size: 1rem; }

  .header-inner { padding: 0.6rem 1.2rem; }
  .logo-mini img { height: 36px; }

  .hero-content { padding: 7rem 1.2rem 3.5rem; }
  .hero-badge { width: 150px; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; text-align: center; }

  .marquee { transform: rotate(-1.4deg) scale(1.08); margin: -1rem 0 0.5rem; }
  .marquee-track { gap: 1.6rem; }
  .marquee-track span { font-size: 0.8rem; }

  .about { margin: 3.5rem auto; }
  .about-text { font-size: 0.98rem; }
  .jobs { margin: 3.5rem auto; padding: 0 1.2rem; }
  .job-card { padding: 1.6rem 1.3rem; }
  .features { margin-bottom: 3.5rem; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .feature-card { padding: 1.2rem 0.9rem; }

  .services, .social { padding: 3.5rem 1.2rem; }
  .team, .gallery { margin: 3.5rem auto; padding: 0 1.2rem; }
  .service-grid { grid-template-columns: 1fr; }

  .modal-box { padding: 2rem 1.4rem; max-height: 90vh; }
  .modal-columns { grid-template-columns: 1fr; gap: 0; }
  .job-apply-grid { grid-template-columns: 1fr; gap: 0; }
  .job-apply-col-message { grid-column: 1; }
  .job-apply-col-message textarea { min-height: 140px; }

  .gallery-grid { grid-auto-rows: 140px; gap: 0.7rem; grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; }

  .hours { padding: 3.5rem 1.2rem; }
  .hours-grid { gap: 2rem; }
  .hours-btns { flex-direction: column; align-items: stretch; }
  .hours-btns .btn { justify-content: center; text-align: center; }
  .hours-map { min-height: 240px; }
  .contact-form .form-row { flex-direction: column; }

  .site-footer { padding: 2rem 1.2rem; }

  .impressum { margin: 6.5rem auto 3.5rem; }
  .impressum-grid { grid-template-columns: 1fr; }
}
