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

:root {
  --dark: #1A1A1A;
  --dark-lighter: #222222;
  --dark-card: #2A2A2A;
  --gold: #C5A059;
  --gold-light: #d4b477;
  --light: #F2F2F2;
  --light-dim: #AAAAAA;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Cinzel', Georgia, serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(197, 160, 89, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  height: 40px;
  width: auto;
  transition: opacity 0.3s;
}

.logo-icon:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: var(--light);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Language switch */
.lang-switch {
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  padding: 4px 12px !important;
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 4px;
  color: var(--gold) !important;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.lang-switch:hover {
  background: var(--gold);
  color: var(--dark) !important;
  border-color: var(--gold);
}

.lang-switch::after {
  display: none !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.4) 0%,
    rgba(26, 26, 26, 0.2) 40%,
    rgba(26, 26, 26, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
}

.hero-logo {
  width: min(500px, 80vw);
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.5px;
  animation: fadeInUp 1s ease 0.5s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.6;
  animation: bounce 2s ease infinite;
  transition: opacity 0.3s;
}

.scroll-indicator:hover {
  opacity: 1;
  color: var(--gold);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-icon {
  margin-bottom: 16px;
}

.section-icon img {
  width: 40px;
  height: 40px;
  opacity: 0.8;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--light);
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: -32px auto 56px;
  font-size: 17px;
  color: var(--light-dim);
  line-height: 1.8;
}

/* ===== PHILOSOPHIE ===== */
.philosophie {
  background: var(--dark);
}

.philosophie-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.philosophie-text {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.philosophie-text.visible {
  opacity: 1;
  transform: translateX(0);
}

.philosophie-text .lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--light);
  margin-bottom: 24px;
  font-weight: 300;
}

.philosophie-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--light-dim);
  margin-bottom: 16px;
}

.philosophie-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease 0.2s;
}

.philosophie-visual.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Philosophie canvas animation */
.philosophie-canvas {
  width: 100%;
  height: 500px;
  display: block;
}

/* ===== BUSINESS UNITS ===== */
.business-units {
  background: var(--dark-lighter);
}

.bu-category {
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.bu-category.visible {
  opacity: 1;
  transform: translateY(0);
}

.bu-category:last-child {
  margin-bottom: 0;
}

.bu-category-header {
  text-align: center;
  margin-bottom: 40px;
}

.bu-category-icon {
  width: 40px;
  height: 40px;
  opacity: 0.7;
  margin-bottom: 16px;
}

.bu-category-header h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  color: var(--light);
  margin-bottom: 12px;
}

.bu-category-header p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--light-dim);
  max-width: 700px;
  margin: 0 auto;
}

.company-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.company-card {
  background: var(--dark-card);
  border: 1px solid rgba(197, 160, 89, 0.1);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.company-card:hover {
  border-color: rgba(197, 160, 89, 0.3);
  transform: translateY(-4px);
}

.company-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.company-logo-wrap {
  margin-bottom: 20px;
}

.company-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.company-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 12px;
}

.company-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--light-dim);
}

.company-card-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.company-card-link h4,
.company-card-link p {
  color: inherit;
}

.company-card-link h4 {
  color: var(--light);
}

.company-card-link p {
  color: var(--light-dim);
}

.company-link-url {
  display: block;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.company-card-link:hover .company-link-url {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TEAM ===== */
.team {
  background: var(--dark);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.team-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.team-card:nth-child(2) { transition-delay: 0.1s; }
.team-card:nth-child(3) { transition-delay: 0.2s; }
.team-card:nth-child(4) { transition-delay: 0.3s; }
.team-card:nth-child(5) { transition-delay: 0.4s; }
.team-card:nth-child(6) { transition-delay: 0.5s; }

.team-photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(197, 160, 89, 0.2);
  transition: border-color 0.4s, box-shadow 0.4s;
}

.team-card:hover .team-photo {
  border-color: transparent;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4), 0 0 40px rgba(197, 160, 89, 0.15);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.team-photo-bw {
  z-index: 2;
  transition: opacity 0.4s ease;
}

.team-photo-color {
  z-index: 1;
}

.team-card:hover .team-photo-bw {
  opacity: 0;
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 6px;
}

.team-role {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 4px;
}

.team-desc {
  font-size: 14px;
  color: var(--light-dim);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}

.team-card:hover .team-desc,
.team-card.active .team-desc {
  max-height: 300px;
  opacity: 1;
  margin-top: 8px;
}

/* ===== KONTAKT ===== */
.kontakt {
  background: var(--dark-lighter);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.kontakt-block {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.kontakt-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.kontakt-block:nth-child(2) { transition-delay: 0.1s; }
.kontakt-block:nth-child(3) { transition-delay: 0.2s; }

.kontakt-block h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 12px;
}

.kontakt-block p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--light-dim);
}

.kontakt-block a {
  color: var(--light);
  transition: color 0.3s;
}

.kontakt-block a:hover {
  color: var(--gold);
}

.kontakt-map {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.1);
  cursor: pointer;
}

.map-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.map-img:hover {
  opacity: 0.6;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img {
  height: 30px;
  opacity: 0.5;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 13px;
  color: var(--light-dim);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

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

.footer-copy {
  font-size: 13px;
  color: var(--light-dim);
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */

/* Global overflow protection for long words (esp. German) */
.bu-category-header h3,
.company-card h4,
.team-card h4,
.kontakt-block p,
.section-intro,
.philosophie-text p,
.team-desc {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

/* --- Tablet landscape (≤968px) --- */
@media (max-width: 968px) {
  .philosophie-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .philosophie-visual {
    order: -1;
  }

  .philosophie-canvas {
    height: 320px;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .company-card {
    padding: 32px;
  }

  .nav-links {
    gap: 28px;
  }

  .nav-links a {
    font-size: 13px;
    letter-spacing: 1px;
  }
}

/* --- Tablet portrait / mobile menu (≤768px) --- */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(197, 160, 89, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 16px;
    letter-spacing: 1.5px;
  }

  .section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-intro {
    font-size: 16px;
    margin: -20px auto 40px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-tagline {
    font-size: clamp(16px, 3.5vw, 20px);
  }

  .philosophie-text .lead {
    font-size: 18px;
  }

  .philosophie-text p {
    font-size: 15px;
  }

  .philosophie-canvas {
    height: 280px;
  }

  .bu-category {
    margin-bottom: 48px;
  }

  .bu-category-header {
    margin-bottom: 28px;
  }

  .bu-category-header h3 {
    font-size: clamp(20px, 4vw, 28px);
  }

  .bu-category-header p {
    font-size: 15px;
  }

  .company-card {
    padding: 28px;
  }

  .company-card h4 {
    font-size: 18px;
  }

  .company-card p {
    font-size: 14px;
  }

  .company-logo {
    height: 42px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .team-photo {
    width: 130px;
    height: 130px;
  }

  .team-card h4 {
    font-size: 17px;
  }

  .team-role {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .team-desc {
    font-size: 13px;
  }

  .kontakt-block {
    margin-bottom: 32px;
  }

  .kontakt-block h3 {
    font-size: 18px;
  }

  .kontakt-block p {
    font-size: 15px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer {
    padding: 32px 0;
  }

  .scroll-indicator {
    bottom: 24px;
  }
}

/* --- Large phones (≤600px) --- */
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-logo {
    width: min(320px, 75vw);
    margin-bottom: 28px;
  }

  .philosophie-content {
    gap: 36px;
  }

  .philosophie-canvas {
    height: 240px;
  }

  .company-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .company-card {
    padding: 24px;
  }

  .team-grid {
    gap: 28px;
  }

  .team-photo {
    width: 120px;
    height: 120px;
  }
}

/* --- Small phones (≤480px) --- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .nav-links {
    width: 100%;
    border-left: none;
  }

  .section {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: clamp(26px, 7vw, 36px);
  }

  .section-header h2::after {
    width: 40px;
    margin-top: 14px;
  }

  .section-intro {
    font-size: 15px;
    margin: -16px auto 32px;
    line-height: 1.7;
  }

  .hero {
    min-height: 480px;
  }

  .hero-logo {
    width: min(260px, 70vw);
    margin-bottom: 24px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .philosophie-text .lead {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .philosophie-text p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .philosophie-canvas {
    height: 200px;
  }

  .bu-category {
    margin-bottom: 40px;
  }

  .bu-category-header {
    margin-bottom: 20px;
  }

  .bu-category-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
  }

  .bu-category-header p {
    font-size: 14px;
    line-height: 1.7;
  }

  .company-card {
    padding: 20px;
    border-radius: 12px;
  }

  .company-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .company-card p {
    font-size: 13px;
    line-height: 1.7;
  }

  .company-logo {
    height: 38px;
  }

  .company-logo-wrap {
    margin-bottom: 14px;
  }

  .company-link-url {
    font-size: 12px;
    margin-top: 12px;
    padding-top: 10px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .team-photo {
    width: 140px;
    height: 140px;
  }

  .team-card h4 {
    font-size: 18px;
  }

  .team-role {
    font-size: 12px;
  }

  .team-desc {
    font-size: 13px;
    max-width: 300px;
    margin: 0 auto;
  }

  .kontakt-block {
    margin-bottom: 28px;
  }

  .kontakt-block h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .kontakt-block p {
    font-size: 14px;
  }

  .kontakt-map {
    border-radius: 8px;
  }

  .footer {
    padding: 24px 0;
  }

  .footer-logo img {
    height: 24px;
  }

  .footer-links {
    gap: 20px;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-copy {
    font-size: 12px;
  }

  .section-icon img {
    width: 32px;
    height: 32px;
  }
}

/* --- Extra small phones (≤360px) --- */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .nav-container {
    padding: 0 12px;
  }

  .logo-icon {
    height: 32px;
  }

  .navbar {
    padding: 14px 0;
  }

  .navbar.scrolled {
    padding: 8px 0;
  }

  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .hero {
    min-height: 420px;
  }

  .hero-logo {
    width: 200px;
    margin-bottom: 20px;
  }

  .hero-tagline {
    font-size: 15px;
    padding: 0 8px;
  }

  .hero-content {
    padding: 0 12px;
  }

  .philosophie-text .lead {
    font-size: 15px;
  }

  .philosophie-text p {
    font-size: 13px;
  }

  .philosophie-canvas {
    height: 170px;
  }

  .bu-category-header h3 {
    font-size: 18px;
  }

  .bu-category-header p {
    font-size: 13px;
  }

  .company-card {
    padding: 16px;
  }

  .company-card h4 {
    font-size: 15px;
  }

  .company-card p {
    font-size: 12px;
  }

  .company-logo {
    height: 32px;
  }

  .team-photo {
    width: 120px;
    height: 120px;
  }

  .team-card h4 {
    font-size: 16px;
  }

  .team-desc {
    font-size: 12px;
  }

  .section-intro {
    font-size: 14px;
    margin: -12px auto 24px;
  }

  .kontakt-block h3 {
    font-size: 16px;
  }

  .kontakt-block p {
    font-size: 13px;
  }

  .scroll-indicator {
    bottom: 16px;
  }

  .scroll-indicator svg {
    width: 20px;
    height: 20px;
  }
}

/* --- Minimum supported width (≤320px) --- */
@media (max-width: 320px) {
  html {
    scroll-padding-top: 60px;
  }

  .container {
    padding: 0 10px;
  }

  .nav-container {
    padding: 0 10px;
  }

  .logo-icon {
    height: 28px;
  }

  .hero {
    min-height: 380px;
  }

  .hero-logo {
    width: 180px;
    margin-bottom: 16px;
  }

  .hero-tagline {
    font-size: 13px;
  }

  .section {
    padding: 40px 0;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .philosophie-canvas {
    height: 140px;
  }

  .bu-category-header h3 {
    font-size: 16px;
  }

  .company-card {
    padding: 14px;
    border-radius: 10px;
  }

  .company-card h4 {
    font-size: 14px;
  }

  .company-card p {
    font-size: 12px;
    line-height: 1.6;
  }

  .company-logo {
    height: 28px;
  }

  .team-photo {
    width: 100px;
    height: 100px;
  }

  .team-card h4 {
    font-size: 15px;
  }

  .team-role {
    font-size: 10px;
  }

  .team-desc {
    font-size: 11px;
    max-width: 240px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===== WIDE (1440px+) ===== */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .nav-container {
    max-width: 1400px;
  }

  .section {
    padding: 160px 0;
  }

  .section-header {
    margin-bottom: 80px;
  }

  .section-header h2 {
    font-size: 56px;
  }

  .section-intro {
    font-size: 19px;
    max-width: 800px;
  }

  .hero-logo {
    width: min(600px, 80vw);
  }

  .hero-tagline {
    font-size: 26px;
  }

  .philosophie-text .lead {
    font-size: 22px;
  }

  .philosophie-text p {
    font-size: 17px;
  }

  .philosophie-content {
    gap: 100px;
  }

  .bu-category {
    margin-bottom: 80px;
  }

  .bu-category-header h3 {
    font-size: 36px;
  }

  .bu-category-header p {
    font-size: 17px;
  }

  .company-cards {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
  }

  .company-card {
    padding: 48px;
  }

  .company-card h4 {
    font-size: 22px;
  }

  .company-card p {
    font-size: 16px;
  }

  .team-grid {
    gap: 56px;
  }

  .team-photo {
    width: 190px;
    height: 190px;
  }

  .team-card h4 {
    font-size: 22px;
  }

  .team-desc {
    font-size: 15px;
  }

  .kontakt-grid {
    gap: 100px;
  }

  .kontakt-block h3 {
    font-size: 22px;
  }

  .kontakt-block p {
    font-size: 17px;
  }
}

/* ===== ULTRAWIDE (1920px+) ===== */
@media (min-width: 1920px) {
  .container {
    max-width: 1680px;
    padding: 0 48px;
  }

  .nav-container {
    max-width: 1680px;
    padding: 0 48px;
  }

  .section {
    padding: 200px 0;
  }

  .section-header {
    margin-bottom: 96px;
  }

  .section-header h2 {
    font-size: 64px;
  }

  .section-intro {
    font-size: 20px;
    max-width: 900px;
    margin-bottom: 72px;
  }

  .hero-logo {
    width: min(720px, 70vw);
  }

  .hero-tagline {
    font-size: 30px;
  }

  .philosophie-text .lead {
    font-size: 24px;
  }

  .philosophie-text p {
    font-size: 18px;
  }

  .philosophie-content {
    gap: 120px;
  }

  .philosophie-canvas {
    height: 500px;
  }

  .bu-category {
    margin-bottom: 100px;
  }

  .bu-category-header h3 {
    font-size: 40px;
  }

  .bu-category-header p {
    font-size: 18px;
    max-width: 850px;
  }

  .company-cards {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
  }

  .company-card {
    padding: 56px;
  }

  .company-card h4 {
    font-size: 24px;
  }

  .company-card p {
    font-size: 17px;
  }

  .team-grid {
    gap: 64px;
  }

  .team-photo {
    width: 220px;
    height: 220px;
  }

  .team-card h4 {
    font-size: 24px;
  }

  .team-role {
    font-size: 14px;
  }

  .team-desc {
    font-size: 16px;
  }

  .kontakt-grid {
    gap: 120px;
  }

  .kontakt-block h3 {
    font-size: 24px;
  }

  .kontakt-block p {
    font-size: 18px;
  }

  .nav-links {
    gap: 48px;
  }

  .nav-links a {
    font-size: 15px;
  }

  .logo-icon {
    height: 48px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-copy {
    font-size: 14px;
  }
}
