:root {
  --ink: #070707;
  --anth: #050b10;
  --gold: #b89b5e;
  --paper: #f2eee6;
  --paper2: #e7ddcf;
  --card: #fbf9f4;
  --line: rgba(184,155,94,.28);
  --shadow: 0 28px 70px rgba(7,12,18,.10);
  --max: min(1760px, 100vw);
  --nav: 112px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* KORREKTUR: LUXUS-NADELSTREIFEN-HINTERGRUND FÜR HOHE C-LEVEL ÄSTHETIK */
body {
  margin: 0;
  background-color: var(--paper);
  background-image: linear-gradient(90deg, rgba(184, 155, 94, 0.03) 1px, transparent 1px);
  background-size: 40px 100%;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

/* KORREKTUR RESPONSIVE PADDING */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 58px; width: 100%; }
@media (max-width: 768px) {
  .wrap { padding: 0 24px; }
}

.smallcap { font-size: 13px; letter-spacing: .20em; text-transform: uppercase; color: var(--gold); font-weight: 900; }
.eyeline { display: none !important; } /* Dicke Linien global eliminiert */
.gold { color: var(--gold); }

/* HEADER & NAVIGATION */
.site-header {
  height: var(--nav);
  background: linear-gradient(90deg, #04090d, #071018 62%, #04090d);
  border-bottom: 1px solid rgba(184,155,94,.32);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav { height: var(--nav); display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { display: flex; align-items: center; gap: 20px; }
.brand .ct {
  font-family: Georgia, 'Times New Roman', serif; font-size: 68px; line-height: .86; letter-spacing: -.06em;
  background: linear-gradient(105deg, #fff 0%, #d8d5ce 27%, #85837e 50%, #f7f2e9 72%, #9a968f 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (max-width: 1024px) {
  .brand .ct { font-size: 48px; }
  .brand .bar, .brand-text { display: none !important; } /* Mobil sauber auf CT reduziert */
}

.brand .bar { width: 1px; height: 66px; background: linear-gradient(#575b5c, #e7e0d7, #575b5c); }
.brand-text strong { display: block; font-family: Georgia, 'Times New Roman', serif; color: #f1eee8; letter-spacing: .13em; font-size: 29px; font-weight: 500; }
.brand-text span { display: block; color: #d6cec1; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; margin-top: 9px; }

/* KORREKTUR: FILIGRANE, GEWICHTSREDUZIERTE EDEL-NAVIGATION UND RESPONSIVE HANDLING */
.menu { 
  margin-left: auto; 
  display: flex; 
  align-items: center; 
  gap: 32px; 
  font-size: 12px; 
  text-transform: uppercase; 
  font-weight: 400; 
  letter-spacing: 0.14em; 
  color: #f1eee8; 
}
.menu a { 
  padding: 41px 0 37px; 
  position: relative; 
  white-space: nowrap; 
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.menu a.active, .menu a:hover { color: #d8bd83; opacity: 1; }
.menu a.active:after { 
  content: ""; 
  position: absolute; 
  left: 0; 
  right: 0; 
  bottom: 24px; 
  height: 1px; 
  background: var(--gold); 
}

/* KORREKTUR: HAMBURGER STELLUNG FÜR MOBILGERÄTE */
.menu-toggle { 
  display: none; 
  background: none; 
  border: none; 
  color: #ffffff; 
  font-size: 28px; 
  cursor: pointer; 
}

@media (max-width: 1024px) {
  .menu { display: none; } /* Standardmenü ausblenden, wenn mobil */
  .menu-toggle { display: block; } /* Hamburger einblenden */
}

/* HERO GRID STRUCTURE & FIXED ALIGNMENT */
.hero { background: linear-gradient(90deg, var(--paper) 0%, var(--paper2) 100%); border-bottom: 1px solid rgba(184,155,94,.18); overflow: hidden; position: relative; }
.hero-grid { display: grid; grid-template-columns: 50% 50%; min-height: 650px; }
.hero-copy { position: relative; z-index: 5; padding: 60px 40px 60px 0; display: flex; flex-direction: column; justify-content: center; }

/* KORREKTUR: SCHRIFTGRÖSSE GEGEN HÄSSLICHE WORTUMBRÜCHE MOBIL */
.hero-copy h1 { 
  font-family: Georgia, 'Times New Roman', serif; 
  font-size: clamp(32px, 4vw, 54px); /* Skaliert flüssig ohne harten Bruch */
  line-height: 1.15; 
  font-weight: 500; 
  margin: 0 0 32px; 
  text-wrap: balance;
  word-break: keep-all; 
  hyphens: none;
}
.hero-copy p { font-size: 17px; line-height: 1.72; max-width: 690px; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.tagline { margin-top: 40px; font-size: 15px; letter-spacing: .24em; text-transform: uppercase; font-weight: 900; }

/* RECHTSBÜNDIGES BILD OHNE ABSCHNEIDEN */
.hero-media { position: relative; width: 100%; height: 100%; background: var(--paper2); overflow: hidden; display: flex; justify-content: flex-end; }
.hero-media img {
  width: auto; height: 100%; max-width: 100%; object-fit: contain;
  object-position: right bottom !important; 
  position: absolute; bottom: 0; right: 0; z-index: 1;
  mask-image: linear-gradient(to right, transparent 0%, black 15%) !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%) !important;
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 100%; min-height: auto; }
  .hero-copy { padding: 40px 0; }
  .hero-media { display: none; } /* Verhindert das zerschossene Bild mobil im Standard-Hero */
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; width: 100%; max-width: 320px; min-height: 58px; padding: 0 26px;
  border: 1px solid rgba(7, 16, 24, .8); font-size: 13px; text-transform: uppercase; letter-spacing: .14em; font-weight: 900;
  transition: all 0.3s ease; cursor: pointer; background: transparent; color: var(--ink); margin-bottom: 5px;
}
.btn.gold { background: transparent; border-color: rgba(7,16,24,.8); color: var(--ink); }
.btn.gold:hover { background: rgba(255,255,255,0.15); border-color: rgba(7,16,24,.8); color: var(--ink); }
.btn.outline { background: rgba(255, 255, 255, 0.15); }
.linkline { display: inline-block; margin-top: 20px; text-transform: uppercase; font-weight: 900; letter-spacing: .13em; font-size: 12px; border-bottom: 1px solid var(--gold); padding-bottom: 6px; color: var(--gold); }

/* SEKTIONEN */
.section { padding: 90px 0; position: relative; border-bottom: 1px solid rgba(184, 155, 94, 0.15); }
.two-paths { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 70px; }
@media (max-width: 768px) {
  .two-paths { grid-template-columns: 100%; gap: 40px; }
  .divider { display: none; }
}
.divider { background: linear-gradient(transparent, var(--line), transparent); }
.path h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 36px; line-height: 1.2; margin: 16px 0; }

/* RASTER STRUKTUREN - MOBIL ANPASSUNG */
.principles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
@media (max-width: 1024px) { .principles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .principles { grid-template-columns: 100%; } }

.principle { padding-top: 15px; border-top: none !important; }

/* KORREKTUR: ICONS SIGNIFIKANT VERGRÖSSERT */
.icon { font-size: 46px; color: var(--gold); margin-bottom: 20px; display: block; }

.principle h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .15em; margin: 0 0 10px; font-weight: 900; }
.principle p { font-size: 15px; line-height: 1.6; margin: 0; color: rgba(7, 7, 7, 0.8); }

/* KORREKTUR: HIERARCHIE BRANCHENFOKUS & MOBIL-RESPONSIV */
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
@media (max-width: 768px) { .focus-grid { grid-template-columns: 100%; gap: 30px; } }

.focus-card { padding-top: 15px; border-top: none !important; }

/* KORREKTUR: TEXTHÖHE OPTIMIERT, DAMIT DER TITEL HIERARCHISCH RELEVANT BLEIBT */
.focus-card h2.section-title { font-family: Georgia, 'Times New Roman', serif; font-size: 32px; line-height: 1.2; margin-bottom: 24px; font-weight: 500; }
.focus-card h3 { font-size: 18px; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 16px; font-weight: 900; }
.focus-card ul { padding-left: 16px; line-height: 1.6; }

.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 1024px) { .packages { grid-template-columns: 100%; } }

.package { background: rgba(250, 248, 243, .92); border: 1px solid rgba(184, 155, 94, .22); padding: 42px 38px; box-shadow: var(--shadow); display: flex; flex-direction: column; min-height: 540px; }
.package-top { display: flex; justify-content: space-between; align-items: flex-start; }
.num { font-family: Georgia, 'Times New Roman', serif; font-size: 74px; color: rgba(184, 155, 94, .26); line-height: .8; }
.upload-box { max-width: 800px; margin: 40px auto 0; background: #ffffff; border: 1px solid rgba(184, 155, 94, 0.25); padding: 50px 60px; box-shadow: var(--shadow); width: 100%; }

/* COOKIE BANNER STYLE */
.cookie-banner { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(150px); width: calc(100% - 48px); max-width: 600px; background: #fbf9f4; border: 1px solid var(--gold); padding: 28px 34px; box-shadow: 0 24px 60px rgba(0,0,0,0.15); z-index: 9999; opacity: 0; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease; pointer-events: none; }
.cookie-banner.show { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner strong { display: block; font-size: 16px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 10px; color: var(--ink); }
.cookie-banner p { font-size: 14px; line-height: 1.5; margin: 0 0 20px; color: rgba(7,7,7,0.75) !important; }
.cookie-actions { display: flex; gap: 16px; }
.cookie-actions .btn { height: 46px; min-height: 46px; font-size: 11px; }

/* BOUTIQUE FOOTER FIXED */
.site-footer { background: #000000 !important; color: #ffffff !important; padding: 50px 0; border-top: 1px solid var(--gold); }


/* BASIS-FIX 2026-06-11: globale Struktur, Footer, Mobile-Menü, Hero-Breiten */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-header,
.site-footer,
main,
section {
  width: 100%;
}

.nav {
  min-width: 0;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0;
  background: #f1eee8;
}

@media (max-width: 1024px) {
  :root { --nav: 82px; }

  .brand { gap: 12px; min-width: 0; }
  .brand .ct { font-size: 44px; }
  .brand .bar { display: block !important; height: 42px; }
  .brand-text { display: block !important; min-width: 0; }
  .brand-text strong {
    font-size: 13px;
    letter-spacing: .12em;
    line-height: 1.15;
    white-space: nowrap;
  }
  .brand-text span { display: none; }

  #main-menu.menu {
    display: none;
  }

  #main-menu.menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #050b10;
    z-index: 99;
    padding: 34px 24px;
    gap: 0;
    overflow-y: auto;
  }

  #main-menu.menu.open a {
    display: block;
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(184,155,94,.22);
  }

  #main-menu.menu.open a.active:after {
    display: none;
  }
}

@media (min-width: 769px) {
  .hero-grid {
    width: 100%;
    align-items: stretch;
  }

  .hero-media {
    min-width: 0;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center !important;
  }
}

@media (max-width: 768px) {
  .section { padding: 58px 0; }
  .hero-copy h1 { font-size: clamp(30px, 9vw, 42px); }
  .hero-actions .btn { max-width: none; }
}

.site-footer {
  background: #050b10 !important;
  color: #f1eee8 !important;
  padding: 34px 0 !important;
  border-top: 1px solid rgba(184,155,94,.45) !important;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #f1eee8;
  opacity: .82;
}

.footer-links a:hover {
  color: #d8bd83;
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 14px 18px;
  }
}

.form-card,
.contact-card,
.upload-box {
  max-width: 100%;
}


/* VERIFIED BASIS FIX 2 - 2026-06-11
   Korrekturen nur zu gemeldeten Punkten: Hero-Bilder, rechter Desktop-Abstand,
   Footer global, Formularausrichtung, mobile Bilder, Kandidaten-Headline. */

/* Hero auf Desktop bis zum rechten Viewport-Rand führen */
@media (min-width: 769px) {
  .hero > .wrap.hero-grid {
    max-width: none;
    width: 100%;
    margin: 0;
    padding-left: clamp(58px, 4vw, 92px);
    padding-right: 0;
    grid-template-columns: minmax(520px, 50%) minmax(0, 50%);
  }

  .hero-media {
    width: 100%;
    min-width: 0;
    min-height: 650px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    background: #2b2925;
  }

  .hero-media img {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center 43% !important;
    mask-image: linear-gradient(to right, transparent 0%, black 17%) !important;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 17%) !important;
  }

  .hero-home .hero-media img,
  .hero-company .hero-media img,
  .hero-insights .hero-media img,
  .hero-portrait .hero-media img {
    object-position: center 44% !important;
  }
}

/* Mobile: Hero-Bilder wieder anzeigen, aber erst unter dem Text */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 100%;
  }

  .hero-media {
    display: block !important;
    height: 360px;
    width: 100%;
    background: var(--paper2);
  }

  .hero-media img {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center 28% !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }

  .hero-candidate .hero-media img {
    object-position: center 18% !important;
  }

  .hero-copy {
    min-width: 0;
    overflow-wrap: normal;
  }

  .hero-copy h1 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-candidate .hero-copy h1 {
    font-size: clamp(29px, 7.4vw, 34px) !important;
    line-height: 1.15;
  }
}

/* Formulare an das Seitenraster anbinden */
.upload-box {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 780px !important;
}

.contact-grid {
  grid-template-columns: minmax(300px, 34%) minmax(520px, 760px) !important;
  justify-content: start;
  gap: clamp(54px, 6vw, 96px) !important;
}

.form-card,
.contact-card {
  width: 100%;
  max-width: 760px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Footer global: einheitliche Höhe, Schrift und Achse auf allen Seiten */
.site-footer {
  min-height: 150px;
  display: flex;
  align-items: center;
}

.site-footer > .wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 32px;
  width: 100%;
}

.footer-copy,
.footer-links,
.footer-links a {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.footer-copy {
  white-space: nowrap;
}

.footer-links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 24px !important;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .site-footer {
    min-height: auto;
    padding: 30px 0 !important;
  }
  .site-footer > .wrap {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 18px;
  }
  .footer-copy,
  .footer-links,
  .footer-links a {
    font-size: 14px !important;
  }
  .footer-copy,
  .footer-links {
    white-space: normal;
  }
}

/* VERIFIED BASIS FIX 3 - 2026-06-11
   Priorität B: zoom-stabile Desktop-Hero-Bereiche + mobile Text-/DSGVO-Sicherheit.
   Korrigiert nur gemeldete Punkte: Home/Unternehmen Text zu tief, Zoom-Verschiebung,
   Footer global, mobile Rechtsüberläufe. */

/* Global: keine horizontale Deformation durch überbreite Inhalte */
html, body {
  min-width: 0;
  overflow-x: clip;
}

.wrap,
.nav,
.hero-grid,
.hero-copy,
.hero-media,
.section,
.footer-inner,
.footer-links,
.contact-grid,
.upload-box,
.form-card,
.contact-card {
  min-width: 0;
}

/* Desktop: Hero zoom-stabil statt fester 650px-Logik */
@media (min-width: 769px) {
  .hero > .wrap.hero-grid {
    display: grid;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: clamp(42px, 4vw, 86px);
    padding-right: 0;
    grid-template-columns: minmax(0, 50%) minmax(0, 50%);
    min-height: clamp(500px, calc(100svh - var(--nav)), 650px);
    align-items: stretch;
  }

  .hero-copy {
    justify-content: flex-start !important;
    padding: clamp(46px, 6.2vh, 78px) clamp(28px, 4vw, 62px) clamp(34px, 4.5vh, 60px) 0 !important;
    max-width: 720px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 3.15vw, 54px) !important;
    line-height: 1.12 !important;
    margin-bottom: clamp(20px, 2.6vh, 30px) !important;
  }

  .hero-copy p {
    font-size: clamp(15px, 1.05vw, 17px) !important;
    line-height: 1.62 !important;
    margin-bottom: clamp(22px, 3vh, 30px) !important;
    max-width: 660px;
  }

  .hero-actions {
    gap: 18px !important;
    margin-bottom: 0 !important;
  }

  .hero-actions .btn {
    width: auto;
    min-width: min(300px, 100%);
    max-width: 320px;
    min-height: clamp(48px, 5.2vh, 58px);
  }

  .tagline {
    margin-top: clamp(22px, 3.5vh, 38px) !important;
  }

  .hero-media {
    min-height: 0 !important;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }

  .hero-media img {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center 44% !important;
  }
}

/* Desktop-Zoom: Navigation und Hero bleiben proportional, statt zu springen */
@media (min-width: 769px) and (max-width: 1320px) {
  :root { --nav: 96px; }

  .wrap { padding-left: 42px; padding-right: 42px; }
  .brand { gap: 14px; }
  .brand .ct { font-size: 52px; }
  .brand .bar { height: 52px; }
  .brand-text strong { font-size: 20px; letter-spacing: .11em; }
  .brand-text span { font-size: 10px; }
  .menu { gap: 18px; font-size: 10.5px; letter-spacing: .11em; }
  .menu a { padding-top: 34px; padding-bottom: 32px; }

  .hero > .wrap.hero-grid {
    padding-left: 42px;
    min-height: clamp(480px, calc(100svh - var(--nav)), 610px);
  }

  .hero-copy {
    padding-top: clamp(34px, 5vh, 60px) !important;
    padding-right: 28px !important;
  }

  .hero-copy h1 { font-size: clamp(31px, 3.1vw, 44px) !important; }
  .hero-copy p { font-size: 15px !important; line-height: 1.55 !important; }
  .hero-actions .btn { min-height: 48px; font-size: 11px; letter-spacing: .11em; padding: 0 18px; }
}

/* Sehr enge Desktop-/Zoom-Breite: Bild/Text bleiben nebeneinander stabil */
@media (min-width: 769px) and (max-width: 1080px) {
  .hero > .wrap.hero-grid {
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
    padding-left: 34px;
  }

  .hero-copy h1 { font-size: clamp(28px, 3vw, 38px) !important; }
  .hero-copy p { font-size: 14.5px !important; }
  .hero-actions { gap: 12px !important; }
  .hero-actions .btn { min-width: 0; max-width: 260px; }
}

/* Kontaktformular: schöne aktuelle Optik behalten, nur Raster/Zoom stabilisieren */
.contact-grid {
  align-items: start;
}

/* Footer: auf allen Seiten identische Klassenlogik, auch Detailseiten ohne footer-copy-Klasse */
.site-footer .footer-inner > span:first-child {
  white-space: nowrap;
}

.site-footer .footer-inner,
.site-footer .footer-inner > span:first-child,
.site-footer .footer-links,
.site-footer .footer-links a {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* Mobile: grundsätzlich gut, nur Rechtsüberläufe verhindern */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }

  .wrap { padding-left: 22px !important; padding-right: 22px !important; }

  .hero-copy,
  .section,
  .path,
  .principle,
  .focus-card,
  .package,
  .detail-box,
  .contact-card,
  .form-card,
  .upload-box,
  .cookie-banner,
  main p,
  main li,
  main h1,
  main h2,
  main h3,
  main a {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-copy h1 {
    text-wrap: balance;
    overflow-wrap: normal;
  }

  .cookie-banner {
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-width: none !important;
    transform: translateY(150px) !important;
    padding: 22px 20px !important;
  }

  .cookie-banner.show {
    transform: translateY(0) !important;
  }

  .cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .cookie-actions .btn {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .site-footer .footer-inner,
  .site-footer .footer-inner > span:first-child,
  .site-footer .footer-links,
  .site-footer .footer-links a {
    font-size: 14px !important;
    white-space: normal !important;
  }
}


/* VERIFIED BASIS FIX 4 - 2026-06-11
   Umsetzung gemeldeter Mängel nach ZIP 3:
   - Priorität B: Desktop-Zoom stabiler, keine übergroßen Hero-Bilder
   - Hero-Schriftblöcke seitenübergreifend auf gleiche vertikale Achse
   - Home/Unternehmen/Kandidaten/Insights/Christian/Kontakt Hero stabilisiert
   - Kontakt-Hero-Bild stärker bis Bauchhöhe zugeschnitten
   - Mobile Formularfeld-Ausrichtung und DSGVO-/Footer-Überlauf abgesichert
*/

@media (min-width: 769px) {
  :root { --nav: 112px; }

  .site-header { height: var(--nav); }
  .nav { height: var(--nav); }

  .hero > .wrap.hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 52%) minmax(0, 48%) !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: clamp(44px, 4vw, 72px) !important;
    padding-right: 0 !important;
    min-height: 0 !important;
    height: clamp(520px, 62vh, 610px) !important;
    align-items: stretch !important;
  }

  .hero-copy {
    justify-content: center !important;
    align-self: stretch !important;
    padding: 0 clamp(30px, 4vw, 64px) 0 0 !important;
    max-width: 780px !important;
  }

  .hero-copy .smallcap {
    margin-bottom: 10px !important;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 3.35vw, 58px) !important;
    line-height: 1.08 !important;
    margin: 0 0 26px !important;
    max-width: 760px !important;
  }

  .hero-copy p {
    font-size: clamp(15px, 1vw, 17px) !important;
    line-height: 1.62 !important;
    margin: 0 0 28px !important;
    max-width: 720px !important;
  }

  .hero-actions {
    display: flex !important;
    gap: 22px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
  }

  .hero-actions .btn {
    width: auto !important;
    min-width: 240px !important;
    max-width: 330px !important;
    min-height: 56px !important;
    margin-bottom: 0 !important;
  }

  .tagline {
    margin-top: 28px !important;
  }

  .hero-media {
    height: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: #2b2925 !important;
  }

  .hero-media img {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center 42% !important;
    mask-image: linear-gradient(to right, transparent 0%, black 16%) !important;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 16%) !important;
  }

  .hero-home .hero-media img,
  .hero-company .hero-media img,
  .hero-insights .hero-media img,
  .hero-portrait .hero-media img {
    object-position: center 40% !important;
  }

  .hero-candidate .hero-media img {
    object-position: center center !important;
  }

  .hero-contact .hero-media img {
    height: 128% !important;
    object-position: right top !important;
  }
}

@media (min-width: 769px) and (max-width: 1320px) {
  :root { --nav: 96px; }

  .site-header { height: var(--nav); }
  .nav { height: var(--nav); }
  .brand .ct { font-size: 52px !important; }
  .brand .bar { height: 52px !important; }
  .brand-text strong { font-size: 20px !important; }
  .brand-text span { font-size: 10px !important; }
  .menu { gap: 18px !important; font-size: 10.5px !important; }
  .menu a { padding-top: 34px !important; padding-bottom: 32px !important; }

  .hero > .wrap.hero-grid {
    grid-template-columns: minmax(0, 52%) minmax(0, 48%) !important;
    height: clamp(480px, 60vh, 560px) !important;
    padding-left: 34px !important;
  }

  .hero-copy {
    padding-right: 28px !important;
    max-width: 680px !important;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 3.15vw, 44px) !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
  }

  .hero-copy p {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    margin-bottom: 22px !important;
  }

  .hero-actions {
    gap: 12px !important;
  }

  .hero-actions .btn {
    min-width: 0 !important;
    width: min(260px, 48%) !important;
    min-height: 48px !important;
    font-size: 11px !important;
    letter-spacing: .11em !important;
    padding: 0 16px !important;
  }

  .tagline { margin-top: 22px !important; }
}

@media (min-width: 769px) and (max-width: 1080px) {
  .hero > .wrap.hero-grid {
    height: clamp(440px, 58vh, 520px) !important;
    padding-left: 28px !important;
  }

  .hero-copy h1 { font-size: clamp(26px, 3vw, 36px) !important; }
  .hero-copy p { font-size: 13.5px !important; }
  .hero-actions .btn { width: min(230px, 48%) !important; }
}

@media (max-width: 768px) {
  .wrap { padding-left: 20px !important; padding-right: 20px !important; }

  main, section, .wrap, .hero-copy, .section, .upload-box, .form-card, .contact-card {
    max-width: 100% !important;
  }

  .form textarea,
  .form textarea::placeholder {
    text-align: left !important;
  }

  .form textarea {
    padding-left: 4px !important;
    padding-right: 4px !important;
    line-height: 1.45 !important;
  }

  .cookie-banner,
  .cookie-banner *,
  .site-footer,
  .site-footer *,
  .footer-links,
  .footer-links a,
  .footer-copy {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  .footer-links {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
  }
}


/* VERIFIED BASIS FIX 5 - 2026-06-11
   Umsetzung gemeldeter Mängel nach ZIP 4:
   - Alle Hero-Bilder vorerst identisch und mit Fokus Kopf/Gesicht
   - Desktop-Zoom robuster: Hero nicht übergroß, Text/Buttons bleiben sichtbar
   - Kontakt/Kandidaten/Portrait-Bereiche kein Sonder-Crop mehr
   - Kandidatenformular: gleichmäßige Feldabstände und Label-Ausrichtung
*/

@media (min-width: 769px) {
  .hero > .wrap.hero-grid {
    grid-template-columns: minmax(0, 54%) minmax(0, 46%) !important;
    height: clamp(500px, 58vh, 590px) !important;
    min-height: 0 !important;
  }

  .hero-copy {
    justify-content: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 3vw, 54px) !important;
    line-height: 1.1 !important;
  }

  .hero-actions .btn {
    min-height: 54px !important;
  }

  .hero-media img,
  .hero-home .hero-media img,
  .hero-company .hero-media img,
  .hero-candidate .hero-media img,
  .hero-insights .hero-media img,
  .hero-portrait .hero-media img,
  .hero-contact .hero-media img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center 22% !important;
  }
}

@media (min-width: 769px) and (max-width: 1320px) {
  .hero > .wrap.hero-grid {
    grid-template-columns: minmax(0, 54%) minmax(0, 46%) !important;
    height: clamp(460px, 56vh, 540px) !important;
  }

  .hero-copy h1 {
    font-size: clamp(29px, 2.75vw, 42px) !important;
  }

  .hero-copy p {
    max-width: 640px !important;
  }

  .hero-actions .btn {
    min-height: 46px !important;
  }
}

@media (min-width: 769px) and (max-width: 1080px) {
  .hero > .wrap.hero-grid {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%) !important;
    height: clamp(420px, 54vh, 500px) !important;
  }

  .hero-copy h1 {
    font-size: clamp(25px, 2.8vw, 34px) !important;
  }
}

.form {
  width: 100%;
}

.form input,
.form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(7, 7, 7, .22);
  background: transparent;
  font: inherit;
  color: var(--ink);
  padding: 0 4px 16px 4px;
  margin: 0 0 30px 0;
  text-align: left;
  border-radius: 0;
}

.form input:not([type="file"]) {
  min-height: 44px;
}

.form textarea {
  min-height: 110px;
  resize: vertical;
  padding-top: 0;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(7, 7, 7, .58);
  opacity: 1;
  text-align: left;
}

.form input[type="file"] {
  border-bottom: 1px dashed rgba(184,155,94,.35);
  padding: 0 4px 18px 4px;
  margin-bottom: 18px;
}

.form small {
  display: block;
  margin: 0 0 34px 0;
  color: rgba(7, 7, 7, .58);
}

@media (max-width: 768px) {
  .hero-media img,
  .hero-home .hero-media img,
  .hero-company .hero-media img,
  .hero-candidate .hero-media img,
  .hero-insights .hero-media img,
  .hero-portrait .hero-media img,
  .hero-contact .hero-media img {
    object-position: center 18% !important;
  }

  .form input,
  .form textarea {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 28px !important;
    text-align: left !important;
  }

  .form textarea {
    min-height: 104px !important;
  }
}

/* VERIFIED BASIS FIX 6 - 2026-06-11
   Kernkorrektur: Desktop-Zoom darf die Seite nicht in Einzelteile zerlegen.
   Mobile bleibt unverändert. Hero, Text und Bild laufen auf Desktop wieder in einem
   gemeinsamen, zentrierten Max-Width-Raster statt getrennt über den Viewport.
*/

@media (min-width: 769px) {
  :root {
    --max: min(1760px, 100vw);
    --nav: 112px;
  }

  .site-header {
    height: var(--nav) !important;
  }

  .nav {
    height: var(--nav) !important;
    max-width: var(--max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: clamp(48px, 4vw, 72px) !important;
    padding-right: clamp(48px, 4vw, 72px) !important;
  }

  .hero {
    overflow: hidden !important;
  }

  .hero > .wrap.hero-grid {
    max-width: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: clamp(48px, 4vw, 72px) !important;
    padding-right: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 52%) minmax(0, 48%) !important;
    height: clamp(520px, 39vw, 640px) !important;
    min-height: 0 !important;
    align-items: stretch !important;
  }

  .hero-copy {
    align-self: stretch !important;
    justify-content: center !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: 0 clamp(32px, 4vw, 64px) 0 0 !important;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 3.05vw, 56px) !important;
    line-height: 1.1 !important;
    margin: 0 0 24px !important;
    max-width: 760px !important;
  }

  .hero-copy p {
    font-size: clamp(15px, 1vw, 17px) !important;
    line-height: 1.58 !important;
    max-width: 700px !important;
    margin: 0 0 26px !important;
  }

  .hero-actions {
    display: flex !important;
    align-items: center !important;
    gap: 22px !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
  }

  .hero-actions .btn {
    flex: 0 1 300px !important;
    width: auto !important;
    min-width: 240px !important;
    max-width: 320px !important;
    min-height: 54px !important;
    margin: 0 !important;
  }

  .tagline {
    margin-top: 28px !important;
  }

  .hero-media {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: #2b2925 !important;
  }

  .hero-media img,
  .hero-home .hero-media img,
  .hero-company .hero-media img,
  .hero-candidate .hero-media img,
  .hero-insights .hero-media img,
  .hero-portrait .hero-media img,
  .hero-contact .hero-media img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: right top !important;
    mask-image: linear-gradient(to right, transparent 0%, black 16%) !important;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 16%) !important;
  }

  .wrap:not(.hero-grid):not(.nav) {
    max-width: var(--max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 769px) and (max-width: 1320px) {
  :root { --nav: 96px; }

  .nav {
    padding-left: 42px !important;
    padding-right: 42px !important;
  }

  .hero > .wrap.hero-grid {
    padding-left: 42px !important;
    grid-template-columns: minmax(0, 54%) minmax(0, 46%) !important;
    height: clamp(480px, 38vw, 560px) !important;
  }

  .hero-copy {
    padding-right: 30px !important;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 2.75vw, 44px) !important;
    margin-bottom: 20px !important;
  }

  .hero-copy p {
    font-size: 14.5px !important;
    line-height: 1.54 !important;
    margin-bottom: 22px !important;
  }

  .hero-actions {
    gap: 14px !important;
  }

  .hero-actions .btn {
    flex-basis: 260px !important;
    min-width: 220px !important;
    min-height: 48px !important;
    font-size: 11px !important;
    letter-spacing: .11em !important;
  }

  .tagline { margin-top: 22px !important; }
}

@media (min-width: 769px) and (max-width: 1080px) {
  .hero > .wrap.hero-grid {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%) !important;
    height: clamp(430px, 37vw, 500px) !important;
    padding-left: 34px !important;
  }

  .hero-copy h1 {
    font-size: clamp(26px, 2.65vw, 36px) !important;
  }

  .hero-copy p {
    font-size: 13.5px !important;
  }

  .hero-actions .btn {
    flex-basis: 220px !important;
    min-width: 190px !important;
  }
}


/* FINAL MOBILE HEADLINE FIX - 2026-06-11 */
@media (max-width: 768px) {
  h1,
  h2,
  .section-title,
  .legal-content h1.section-title,
  .legal-content h2,
  .thankyou-box h1.section-title,
  .hero-copy h1 {
    font-size: clamp(22px, 5.4vw, 28px) !important;
    line-height: 1.16 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .legal-content,
  .thankyou-box {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}
/* FINAL DESKTOP ZOOM FIX */
@media (min-width: 769px) {
  #main-menu.menu {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    padding: 0 !important;
    gap: 32px !important;
    overflow: visible !important;
  }

  #main-menu.menu a {
    display: inline-flex !important;
    width: auto !important;
    padding: 41px 0 37px !important;
    border-bottom: 0 !important;
  }

  .menu-toggle {
    display: none !important;
  }

  .brand .bar,
  .brand-text {
    display: block !important;
  }

  .brand .ct {
    font-size: 68px !important;
  }

  .brand .bar {
    height: 66px !important;
  }

  .brand-text strong {
    font-size: 29px !important;
    letter-spacing: .13em !important;
  }

  .brand-text span {
    display: block !important;
    font-size: 13px !important;
  }

  .nav {
    max-width: var(--max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
:root {
  --ink: #070707;
  --anth: #050b10;
  --gold: #b89b5e;
  --paper: #f2eee6;
  --paper2: #e7ddcf;
  --card: #fbf9f4;
  --line: rgba(184,155,94,.28);
  --shadow: 0 28px 70px rgba(7,12,18,.10);
  --max: min(1760px, 100vw);
  --nav: 112px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* KORREKTUR: LUXUS-NADELSTREIFEN-HINTERGRUND FÜR HOHE C-LEVEL ÄSTHETIK */
body {
  margin: 0;
  background-color: var(--paper);
  background-image: linear-gradient(90deg, rgba(184, 155, 94, 0.03) 1px, transparent 1px);
  background-size: 40px 100%;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

/* KORREKTUR RESPONSIVE PADDING */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 58px; width: 100%; }
@media (max-width: 768px) {
  .wrap { padding: 0 24px; }
}

.smallcap { font-size: 13px; letter-spacing: .20em; text-transform: uppercase; color: var(--gold); font-weight: 900; }
.eyeline { display: none !important; } /* Dicke Linien global eliminiert */
.gold { color: var(--gold); }

/* HEADER & NAVIGATION */
.site-header {
  height: var(--nav);
  background: linear-gradient(90deg, #04090d, #071018 62%, #04090d);
  border-bottom: 1px solid rgba(184,155,94,.32);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav { height: var(--nav); display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.brand { display: flex; align-items: center; gap: 20px; }
.brand .ct {
  font-family: Georgia, 'Times New Roman', serif; font-size: 68px; line-height: .86; letter-spacing: -.06em;
  background: linear-gradient(105deg, #fff 0%, #d8d5ce 27%, #85837e 50%, #f7f2e9 72%, #9a968f 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (max-width: 1024px) {
  .brand .ct { font-size: 48px; }
  .brand .bar, .brand-text { display: none !important; } /* Mobil sauber auf CT reduziert */
}

.brand .bar { width: 1px; height: 66px; background: linear-gradient(#575b5c, #e7e0d7, #575b5c); }
.brand-text strong { display: block; font-family: Georgia, 'Times New Roman', serif; color: #f1eee8; letter-spacing: .13em; font-size: 29px; font-weight: 500; }
.brand-text span { display: block; color: #d6cec1; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; margin-top: 9px; }

/* KORREKTUR: FILIGRANE, GEWICHTSREDUZIERTE EDEL-NAVIGATION UND RESPONSIVE HANDLING */
.menu { 
  margin-left: auto; 
  display: flex; 
  align-items: center; 
  gap: 32px; 
  font-size: 12px; 
  text-transform: uppercase; 
  font-weight: 400; 
  letter-spacing: 0.14em; 
  color: #f1eee8; 
}
.menu a { 
  padding: 41px 0 37px; 
  position: relative; 
  white-space: nowrap; 
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.menu a.active, .menu a:hover { color: #d8bd83; opacity: 1; }
.menu a.active:after { 
  content: ""; 
  position: absolute; 
  left: 0; 
  right: 0; 
  bottom: 24px; 
  height: 1px; 
  background: var(--gold); 
}

/* KORREKTUR: HAMBURGER STELLUNG FÜR MOBILGERÄTE */
.menu-toggle { 
  display: none; 
  background: none; 
  border: none; 
  color: #ffffff; 
  font-size: 28px; 
  cursor: pointer; 
}

@media (max-width: 1024px) {
  .menu { display: none; } /* Standardmenü ausblenden, wenn mobil */
  .menu-toggle { display: block; } /* Hamburger einblenden */
}

/* HERO GRID STRUCTURE & FIXED ALIGNMENT */
.hero { background: linear-gradient(90deg, var(--paper) 0%, var(--paper2) 100%); border-bottom: 1px solid rgba(184,155,94,.18); overflow: hidden; position: relative; }
.hero-grid { display: grid; grid-template-columns: 50% 50%; min-height: 650px; }
.hero-copy { position: relative; z-index: 5; padding: 60px 40px 60px 0; display: flex; flex-direction: column; justify-content: center; }

/* KORREKTUR: SCHRIFTGRÖSSE GEGEN HÄSSLICHE WORTUMBRÜCHE MOBIL */
.hero-copy h1 { 
  font-family: Georgia, 'Times New Roman', serif; 
  font-size: clamp(32px, 4vw, 54px); /* Skaliert flüssig ohne harten Bruch */
  line-height: 1.15; 
  font-weight: 500; 
  margin: 0 0 32px; 
  text-wrap: balance;
  word-break: keep-all; 
  hyphens: none;
}
.hero-copy p { font-size: 17px; line-height: 1.72; max-width: 690px; margin: 0 0 34px; }
.hero-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.tagline { margin-top: 40px; font-size: 15px; letter-spacing: .24em; text-transform: uppercase; font-weight: 900; }

/* RECHTSBÜNDIGES BILD OHNE ABSCHNEIDEN */
.hero-media { position: relative; width: 100%; height: 100%; background: var(--paper2); overflow: hidden; display: flex; justify-content: flex-end; }
.hero-media img {
  width: auto; height: 100%; max-width: 100%; object-fit: contain;
  object-position: right bottom !important; 
  position: absolute; bottom: 0; right: 0; z-index: 1;
  mask-image: linear-gradient(to right, transparent 0%, black 15%) !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%) !important;
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 100%; min-height: auto; }
  .hero-copy { padding: 40px 0; }
  .hero-media { display: none; } /* Verhindert das zerschossene Bild mobil im Standard-Hero */
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; width: 100%; max-width: 320px; min-height: 58px; padding: 0 26px;
  border: 1px solid rgba(7, 16, 24, .8); font-size: 13px; text-transform: uppercase; letter-spacing: .14em; font-weight: 900;
  transition: all 0.3s ease; cursor: pointer; background: transparent; color: var(--ink); margin-bottom: 5px;
}
.btn.gold { background: transparent; border-color: rgba(7,16,24,.8); color: var(--ink); }
.btn.gold:hover { background: rgba(255,255,255,0.15); border-color: rgba(7,16,24,.8); color: var(--ink); }
.btn.outline { background: rgba(255, 255, 255, 0.15); }
.linkline { display: inline-block; margin-top: 20px; text-transform: uppercase; font-weight: 900; letter-spacing: .13em; font-size: 12px; border-bottom: 1px solid var(--gold); padding-bottom: 6px; color: var(--gold); }

/* SEKTIONEN */
.section { padding: 90px 0; position: relative; border-bottom: 1px solid rgba(184, 155, 94, 0.15); }
.two-paths { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 70px; }
@media (max-width: 768px) {
  .two-paths { grid-template-columns: 100%; gap: 40px; }
  .divider { display: none; }
}
.divider { background: linear-gradient(transparent, var(--line), transparent); }
.path h2 { font-family: Georgia, 'Times New Roman', serif; font-size: 36px; line-height: 1.2; margin: 16px 0; }

/* RASTER STRUKTUREN - MOBIL ANPASSUNG */
.principles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
@media (max-width: 1024px) { .principles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .principles { grid-template-columns: 100%; } }

.principle { padding-top: 15px; border-top: none !important; }

/* KORREKTUR: ICONS SIGNIFIKANT VERGRÖSSERT */
.icon { font-size: 46px; color: var(--gold); margin-bottom: 20px; display: block; }

.principle h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .15em; margin: 0 0 10px; font-weight: 900; }
.principle p { font-size: 15px; line-height: 1.6; margin: 0; color: rgba(7, 7, 7, 0.8); }

/* KORREKTUR: HIERARCHIE BRANCHENFOKUS & MOBIL-RESPONSIV */
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 40px; }
@media (max-width: 768px) { .focus-grid { grid-template-columns: 100%; gap: 30px; } }

.focus-card { padding-top: 15px; border-top: none !important; }

/* KORREKTUR: TEXTHÖHE OPTIMIERT, DAMIT DER TITEL HIERARCHISCH RELEVANT BLEIBT */
.focus-card h2.section-title { font-family: Georgia, 'Times New Roman', serif; font-size: 32px; line-height: 1.2; margin-bottom: 24px; font-weight: 500; }
.focus-card h3 { font-size: 18px; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); margin-bottom: 16px; font-weight: 900; }
.focus-card ul { padding-left: 16px; line-height: 1.6; }

.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 1024px) { .packages { grid-template-columns: 100%; } }

.package { background: rgba(250, 248, 243, .92); border: 1px solid rgba(184, 155, 94, .22); padding: 42px 38px; box-shadow: var(--shadow); display: flex; flex-direction: column; min-height: 540px; }
.package-top { display: flex; justify-content: space-between; align-items: flex-start; }
.num { font-family: Georgia, 'Times New Roman', serif; font-size: 74px; color: rgba(184, 155, 94, .26); line-height: .8; }
.upload-box { max-width: 800px; margin: 40px auto 0; background: #ffffff; border: 1px solid rgba(184, 155, 94, 0.25); padding: 50px 60px; box-shadow: var(--shadow); width: 100%; }

/* COOKIE BANNER STYLE */
.cookie-banner { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(150px); width: calc(100% - 48px); max-width: 600px; background: #fbf9f4; border: 1px solid var(--gold); padding: 28px 34px; box-shadow: 0 24px 60px rgba(0,0,0,0.15); z-index: 9999; opacity: 0; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease; pointer-events: none; }
.cookie-banner.show { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner strong { display: block; font-size: 16px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 10px; color: var(--ink); }
.cookie-banner p { font-size: 14px; line-height: 1.5; margin: 0 0 20px; color: rgba(7,7,7,0.75) !important; }
.cookie-actions { display: flex; gap: 16px; }
.cookie-actions .btn { height: 46px; min-height: 46px; font-size: 11px; }

/* BOUTIQUE FOOTER FIXED */
.site-footer { background: #000000 !important; color: #ffffff !important; padding: 50px 0; border-top: 1px solid var(--gold); }


/* BASIS-FIX 2026-06-11: globale Struktur, Footer, Mobile-Menü, Hero-Breiten */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-header,
.site-footer,
main,
section {
  width: 100%;
}

.nav {
  min-width: 0;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0;
  background: #f1eee8;
}

@media (max-width: 1024px) {
  :root { --nav: 82px; }

  .brand { gap: 12px; min-width: 0; }
  .brand .ct { font-size: 44px; }
  .brand .bar { display: block !important; height: 42px; }
  .brand-text { display: block !important; min-width: 0; }
  .brand-text strong {
    font-size: 13px;
    letter-spacing: .12em;
    line-height: 1.15;
    white-space: nowrap;
  }
  .brand-text span { display: none; }

  #main-menu.menu {
    display: none;
  }

  #main-menu.menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #050b10;
    z-index: 99;
    padding: 34px 24px;
    gap: 0;
    overflow-y: auto;
  }

  #main-menu.menu.open a {
    display: block;
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(184,155,94,.22);
  }

  #main-menu.menu.open a.active:after {
    display: none;
  }
}

@media (min-width: 769px) {
  .hero-grid {
    width: 100%;
    align-items: stretch;
  }

  .hero-media {
    min-width: 0;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center !important;
  }
}

@media (max-width: 768px) {
  .section { padding: 58px 0; }
  .hero-copy h1 { font-size: clamp(30px, 9vw, 42px); }
  .hero-actions .btn { max-width: none; }
}

.site-footer {
  background: #050b10 !important;
  color: #f1eee8 !important;
  padding: 34px 0 !important;
  border-top: 1px solid rgba(184,155,94,.45) !important;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #f1eee8;
  opacity: .82;
}

.footer-links a:hover {
  color: #d8bd83;
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 14px 18px;
  }
}

.form-card,
.contact-card,
.upload-box {
  max-width: 100%;
}


/* VERIFIED BASIS FIX 2 - 2026-06-11
   Korrekturen nur zu gemeldeten Punkten: Hero-Bilder, rechter Desktop-Abstand,
   Footer global, Formularausrichtung, mobile Bilder, Kandidaten-Headline. */

/* Hero auf Desktop bis zum rechten Viewport-Rand führen */
@media (min-width: 769px) {
  .hero > .wrap.hero-grid {
    max-width: none;
    width: 100%;
    margin: 0;
    padding-left: clamp(58px, 4vw, 92px);
    padding-right: 0;
    grid-template-columns: minmax(520px, 50%) minmax(0, 50%);
  }

  .hero-media {
    width: 100%;
    min-width: 0;
    min-height: 650px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    background: #2b2925;
  }

  .hero-media img {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center 43% !important;
    mask-image: linear-gradient(to right, transparent 0%, black 17%) !important;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 17%) !important;
  }

  .hero-home .hero-media img,
  .hero-company .hero-media img,
  .hero-insights .hero-media img,
  .hero-portrait .hero-media img {
    object-position: center 44% !important;
  }
}

/* Mobile: Hero-Bilder wieder anzeigen, aber erst unter dem Text */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 100%;
  }

  .hero-media {
    display: block !important;
    height: 360px;
    width: 100%;
    background: var(--paper2);
  }

  .hero-media img {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center 28% !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }

  .hero-candidate .hero-media img {
    object-position: center 18% !important;
  }

  .hero-copy {
    min-width: 0;
    overflow-wrap: normal;
  }

  .hero-copy h1 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-candidate .hero-copy h1 {
    font-size: clamp(29px, 7.4vw, 34px) !important;
    line-height: 1.15;
  }
}

/* Formulare an das Seitenraster anbinden */
.upload-box {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 780px !important;
}

.contact-grid {
  grid-template-columns: minmax(300px, 34%) minmax(520px, 760px) !important;
  justify-content: start;
  gap: clamp(54px, 6vw, 96px) !important;
}

.form-card,
.contact-card {
  width: 100%;
  max-width: 760px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Footer global: einheitliche Höhe, Schrift und Achse auf allen Seiten */
.site-footer {
  min-height: 150px;
  display: flex;
  align-items: center;
}

.site-footer > .wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 32px;
  width: 100%;
}

.footer-copy,
.footer-links,
.footer-links a {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.footer-copy {
  white-space: nowrap;
}

.footer-links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 24px !important;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .site-footer {
    min-height: auto;
    padding: 30px 0 !important;
  }
  .site-footer > .wrap {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 18px;
  }
  .footer-copy,
  .footer-links,
  .footer-links a {
    font-size: 14px !important;
  }
  .footer-copy,
  .footer-links {
    white-space: normal;
  }
}

/* VERIFIED BASIS FIX 3 - 2026-06-11
   Priorität B: zoom-stabile Desktop-Hero-Bereiche + mobile Text-/DSGVO-Sicherheit.
   Korrigiert nur gemeldete Punkte: Home/Unternehmen Text zu tief, Zoom-Verschiebung,
   Footer global, mobile Rechtsüberläufe. */

/* Global: keine horizontale Deformation durch überbreite Inhalte */
html, body {
  min-width: 0;
  overflow-x: clip;
}

.wrap,
.nav,
.hero-grid,
.hero-copy,
.hero-media,
.section,
.footer-inner,
.footer-links,
.contact-grid,
.upload-box,
.form-card,
.contact-card {
  min-width: 0;
}

/* Desktop: Hero zoom-stabil statt fester 650px-Logik */
@media (min-width: 769px) {
  .hero > .wrap.hero-grid {
    display: grid;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: clamp(42px, 4vw, 86px);
    padding-right: 0;
    grid-template-columns: minmax(0, 50%) minmax(0, 50%);
    min-height: clamp(500px, calc(100svh - var(--nav)), 650px);
    align-items: stretch;
  }

  .hero-copy {
    justify-content: flex-start !important;
    padding: clamp(46px, 6.2vh, 78px) clamp(28px, 4vw, 62px) clamp(34px, 4.5vh, 60px) 0 !important;
    max-width: 720px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 3.15vw, 54px) !important;
    line-height: 1.12 !important;
    margin-bottom: clamp(20px, 2.6vh, 30px) !important;
  }

  .hero-copy p {
    font-size: clamp(15px, 1.05vw, 17px) !important;
    line-height: 1.62 !important;
    margin-bottom: clamp(22px, 3vh, 30px) !important;
    max-width: 660px;
  }

  .hero-actions {
    gap: 18px !important;
    margin-bottom: 0 !important;
  }

  .hero-actions .btn {
    width: auto;
    min-width: min(300px, 100%);
    max-width: 320px;
    min-height: clamp(48px, 5.2vh, 58px);
  }

  .tagline {
    margin-top: clamp(22px, 3.5vh, 38px) !important;
  }

  .hero-media {
    min-height: 0 !important;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }

  .hero-media img {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center 44% !important;
  }
}

/* Desktop-Zoom: Navigation und Hero bleiben proportional, statt zu springen */
@media (min-width: 769px) and (max-width: 1320px) {
  :root { --nav: 96px; }

  .wrap { padding-left: 42px; padding-right: 42px; }
  .brand { gap: 14px; }
  .brand .ct { font-size: 52px; }
  .brand .bar { height: 52px; }
  .brand-text strong { font-size: 20px; letter-spacing: .11em; }
  .brand-text span { font-size: 10px; }
  .menu { gap: 18px; font-size: 10.5px; letter-spacing: .11em; }
  .menu a { padding-top: 34px; padding-bottom: 32px; }

  .hero > .wrap.hero-grid {
    padding-left: 42px;
    min-height: clamp(480px, calc(100svh - var(--nav)), 610px);
  }

  .hero-copy {
    padding-top: clamp(34px, 5vh, 60px) !important;
    padding-right: 28px !important;
  }

  .hero-copy h1 { font-size: clamp(31px, 3.1vw, 44px) !important; }
  .hero-copy p { font-size: 15px !important; line-height: 1.55 !important; }
  .hero-actions .btn { min-height: 48px; font-size: 11px; letter-spacing: .11em; padding: 0 18px; }
}

/* Sehr enge Desktop-/Zoom-Breite: Bild/Text bleiben nebeneinander stabil */
@media (min-width: 769px) and (max-width: 1080px) {
  .hero > .wrap.hero-grid {
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
    padding-left: 34px;
  }

  .hero-copy h1 { font-size: clamp(28px, 3vw, 38px) !important; }
  .hero-copy p { font-size: 14.5px !important; }
  .hero-actions { gap: 12px !important; }
  .hero-actions .btn { min-width: 0; max-width: 260px; }
}

/* Kontaktformular: schöne aktuelle Optik behalten, nur Raster/Zoom stabilisieren */
.contact-grid {
  align-items: start;
}

/* Footer: auf allen Seiten identische Klassenlogik, auch Detailseiten ohne footer-copy-Klasse */
.site-footer .footer-inner > span:first-child {
  white-space: nowrap;
}

.site-footer .footer-inner,
.site-footer .footer-inner > span:first-child,
.site-footer .footer-links,
.site-footer .footer-links a {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* Mobile: grundsätzlich gut, nur Rechtsüberläufe verhindern */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }

  .wrap { padding-left: 22px !important; padding-right: 22px !important; }

  .hero-copy,
  .section,
  .path,
  .principle,
  .focus-card,
  .package,
  .detail-box,
  .contact-card,
  .form-card,
  .upload-box,
  .cookie-banner,
  main p,
  main li,
  main h1,
  main h2,
  main h3,
  main a {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-copy h1 {
    text-wrap: balance;
    overflow-wrap: normal;
  }

  .cookie-banner {
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-width: none !important;
    transform: translateY(150px) !important;
    padding: 22px 20px !important;
  }

  .cookie-banner.show {
    transform: translateY(0) !important;
  }

  .cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .cookie-actions .btn {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .site-footer .footer-inner,
  .site-footer .footer-inner > span:first-child,
  .site-footer .footer-links,
  .site-footer .footer-links a {
    font-size: 14px !important;
    white-space: normal !important;
  }
}


/* VERIFIED BASIS FIX 4 - 2026-06-11
   Umsetzung gemeldeter Mängel nach ZIP 3:
   - Priorität B: Desktop-Zoom stabiler, keine übergroßen Hero-Bilder
   - Hero-Schriftblöcke seitenübergreifend auf gleiche vertikale Achse
   - Home/Unternehmen/Kandidaten/Insights/Christian/Kontakt Hero stabilisiert
   - Kontakt-Hero-Bild stärker bis Bauchhöhe zugeschnitten
   - Mobile Formularfeld-Ausrichtung und DSGVO-/Footer-Überlauf abgesichert
*/

@media (min-width: 769px) {
  :root { --nav: 112px; }

  .site-header { height: var(--nav); }
  .nav { height: var(--nav); }

  .hero > .wrap.hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 52%) minmax(0, 48%) !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding-left: clamp(44px, 4vw, 72px) !important;
    padding-right: 0 !important;
    min-height: 0 !important;
    height: clamp(520px, 62vh, 610px) !important;
    align-items: stretch !important;
  }

  .hero-copy {
    justify-content: center !important;
    align-self: stretch !important;
    padding: 0 clamp(30px, 4vw, 64px) 0 0 !important;
    max-width: 780px !important;
  }

  .hero-copy .smallcap {
    margin-bottom: 10px !important;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 3.35vw, 58px) !important;
    line-height: 1.08 !important;
    margin: 0 0 26px !important;
    max-width: 760px !important;
  }

  .hero-copy p {
    font-size: clamp(15px, 1vw, 17px) !important;
    line-height: 1.62 !important;
    margin: 0 0 28px !important;
    max-width: 720px !important;
  }

  .hero-actions {
    display: flex !important;
    gap: 22px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
  }

  .hero-actions .btn {
    width: auto !important;
    min-width: 240px !important;
    max-width: 330px !important;
    min-height: 56px !important;
    margin-bottom: 0 !important;
  }

  .tagline {
    margin-top: 28px !important;
  }

  .hero-media {
    height: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: #2b2925 !important;
  }

  .hero-media img {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center 42% !important;
    mask-image: linear-gradient(to right, transparent 0%, black 16%) !important;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 16%) !important;
  }

  .hero-home .hero-media img,
  .hero-company .hero-media img,
  .hero-insights .hero-media img,
  .hero-portrait .hero-media img {
    object-position: center 40% !important;
  }

  .hero-candidate .hero-media img {
    object-position: center center !important;
  }

  .hero-contact .hero-media img {
    height: 128% !important;
    object-position: right top !important;
  }
}

@media (min-width: 769px) and (max-width: 1320px) {
  :root { --nav: 96px; }

  .site-header { height: var(--nav); }
  .nav { height: var(--nav); }
  .brand .ct { font-size: 52px !important; }
  .brand .bar { height: 52px !important; }
  .brand-text strong { font-size: 20px !important; }
  .brand-text span { font-size: 10px !important; }
  .menu { gap: 18px !important; font-size: 10.5px !important; }
  .menu a { padding-top: 34px !important; padding-bottom: 32px !important; }

  .hero > .wrap.hero-grid {
    grid-template-columns: minmax(0, 52%) minmax(0, 48%) !important;
    height: clamp(480px, 60vh, 560px) !important;
    padding-left: 34px !important;
  }

  .hero-copy {
    padding-right: 28px !important;
    max-width: 680px !important;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 3.15vw, 44px) !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
  }

  .hero-copy p {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    margin-bottom: 22px !important;
  }

  .hero-actions {
    gap: 12px !important;
  }

  .hero-actions .btn {
    min-width: 0 !important;
    width: min(260px, 48%) !important;
    min-height: 48px !important;
    font-size: 11px !important;
    letter-spacing: .11em !important;
    padding: 0 16px !important;
  }

  .tagline { margin-top: 22px !important; }
}

@media (min-width: 769px) and (max-width: 1080px) {
  .hero > .wrap.hero-grid {
    height: clamp(440px, 58vh, 520px) !important;
    padding-left: 28px !important;
  }

  .hero-copy h1 { font-size: clamp(26px, 3vw, 36px) !important; }
  .hero-copy p { font-size: 13.5px !important; }
  .hero-actions .btn { width: min(230px, 48%) !important; }
}

@media (max-width: 768px) {
  .wrap { padding-left: 20px !important; padding-right: 20px !important; }

  main, section, .wrap, .hero-copy, .section, .upload-box, .form-card, .contact-card {
    max-width: 100% !important;
  }

  .form textarea,
  .form textarea::placeholder {
    text-align: left !important;
  }

  .form textarea {
    padding-left: 4px !important;
    padding-right: 4px !important;
    line-height: 1.45 !important;
  }

  .cookie-banner,
  .cookie-banner *,
  .site-footer,
  .site-footer *,
  .footer-links,
  .footer-links a,
  .footer-copy {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  .footer-links {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
  }
}


/* VERIFIED BASIS FIX 5 - 2026-06-11
   Umsetzung gemeldeter Mängel nach ZIP 4:
   - Alle Hero-Bilder vorerst identisch und mit Fokus Kopf/Gesicht
   - Desktop-Zoom robuster: Hero nicht übergroß, Text/Buttons bleiben sichtbar
   - Kontakt/Kandidaten/Portrait-Bereiche kein Sonder-Crop mehr
   - Kandidatenformular: gleichmäßige Feldabstände und Label-Ausrichtung
*/

@media (min-width: 769px) {
  .hero > .wrap.hero-grid {
    grid-template-columns: minmax(0, 54%) minmax(0, 46%) !important;
    height: clamp(500px, 58vh, 590px) !important;
    min-height: 0 !important;
  }

  .hero-copy {
    justify-content: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 3vw, 54px) !important;
    line-height: 1.1 !important;
  }

  .hero-actions .btn {
    min-height: 54px !important;
  }

  .hero-media img,
  .hero-home .hero-media img,
  .hero-company .hero-media img,
  .hero-candidate .hero-media img,
  .hero-insights .hero-media img,
  .hero-portrait .hero-media img,
  .hero-contact .hero-media img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center 22% !important;
  }
}

@media (min-width: 769px) and (max-width: 1320px) {
  .hero > .wrap.hero-grid {
    grid-template-columns: minmax(0, 54%) minmax(0, 46%) !important;
    height: clamp(460px, 56vh, 540px) !important;
  }

  .hero-copy h1 {
    font-size: clamp(29px, 2.75vw, 42px) !important;
  }

  .hero-copy p {
    max-width: 640px !important;
  }

  .hero-actions .btn {
    min-height: 46px !important;
  }
}

@media (min-width: 769px) and (max-width: 1080px) {
  .hero > .wrap.hero-grid {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%) !important;
    height: clamp(420px, 54vh, 500px) !important;
  }

  .hero-copy h1 {
    font-size: clamp(25px, 2.8vw, 34px) !important;
  }
}

.form {
  width: 100%;
}

.form input,
.form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(7, 7, 7, .22);
  background: transparent;
  font: inherit;
  color: var(--ink);
  padding: 0 4px 16px 4px;
  margin: 0 0 30px 0;
  text-align: left;
  border-radius: 0;
}

.form input:not([type="file"]) {
  min-height: 44px;
}

.form textarea {
  min-height: 110px;
  resize: vertical;
  padding-top: 0;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(7, 7, 7, .58);
  opacity: 1;
  text-align: left;
}

.form input[type="file"] {
  border-bottom: 1px dashed rgba(184,155,94,.35);
  padding: 0 4px 18px 4px;
  margin-bottom: 18px;
}

.form small {
  display: block;
  margin: 0 0 34px 0;
  color: rgba(7, 7, 7, .58);
}

@media (max-width: 768px) {
  .hero-media img,
  .hero-home .hero-media img,
  .hero-company .hero-media img,
  .hero-candidate .hero-media img,
  .hero-insights .hero-media img,
  .hero-portrait .hero-media img,
  .hero-contact .hero-media img {
    object-position: center 18% !important;
  }

  .form input,
  .form textarea {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 28px !important;
    text-align: left !important;
  }

  .form textarea {
    min-height: 104px !important;
  }
}

/* VERIFIED BASIS FIX 6 - 2026-06-11
   Kernkorrektur: Desktop-Zoom darf die Seite nicht in Einzelteile zerlegen.
   Mobile bleibt unverändert. Hero, Text und Bild laufen auf Desktop wieder in einem
   gemeinsamen, zentrierten Max-Width-Raster statt getrennt über den Viewport.
*/

@media (min-width: 769px) {
  :root {
    --max: min(1760px, 100vw);
    --nav: 112px;
  }

  .site-header {
    height: var(--nav) !important;
  }

  .nav {
    height: var(--nav) !important;
    max-width: var(--max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: clamp(48px, 4vw, 72px) !important;
    padding-right: clamp(48px, 4vw, 72px) !important;
  }

  .hero {
    overflow: hidden !important;
  }

  .hero > .wrap.hero-grid {
    max-width: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: clamp(48px, 4vw, 72px) !important;
    padding-right: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 52%) minmax(0, 48%) !important;
    height: clamp(520px, 39vw, 640px) !important;
    min-height: 0 !important;
    align-items: stretch !important;
  }

  .hero-copy {
    align-self: stretch !important;
    justify-content: center !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: 0 clamp(32px, 4vw, 64px) 0 0 !important;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 3.05vw, 56px) !important;
    line-height: 1.1 !important;
    margin: 0 0 24px !important;
    max-width: 760px !important;
  }

  .hero-copy p {
    font-size: clamp(15px, 1vw, 17px) !important;
    line-height: 1.58 !important;
    max-width: 700px !important;
    margin: 0 0 26px !important;
  }

  .hero-actions {
    display: flex !important;
    align-items: center !important;
    gap: 22px !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
  }

  .hero-actions .btn {
    flex: 0 1 300px !important;
    width: auto !important;
    min-width: 240px !important;
    max-width: 320px !important;
    min-height: 54px !important;
    margin: 0 !important;
  }

  .tagline {
    margin-top: 28px !important;
  }

  .hero-media {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
    background: #2b2925 !important;
  }

  .hero-media img,
  .hero-home .hero-media img,
  .hero-company .hero-media img,
  .hero-candidate .hero-media img,
  .hero-insights .hero-media img,
  .hero-portrait .hero-media img,
  .hero-contact .hero-media img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: right top !important;
    mask-image: linear-gradient(to right, transparent 0%, black 16%) !important;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 16%) !important;
  }

  .wrap:not(.hero-grid):not(.nav) {
    max-width: var(--max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 769px) and (max-width: 1320px) {
  :root { --nav: 96px; }

  .nav {
    padding-left: 42px !important;
    padding-right: 42px !important;
  }

  .hero > .wrap.hero-grid {
    padding-left: 42px !important;
    grid-template-columns: minmax(0, 54%) minmax(0, 46%) !important;
    height: clamp(480px, 38vw, 560px) !important;
  }

  .hero-copy {
    padding-right: 30px !important;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 2.75vw, 44px) !important;
    margin-bottom: 20px !important;
  }

  .hero-copy p {
    font-size: 14.5px !important;
    line-height: 1.54 !important;
    margin-bottom: 22px !important;
  }

  .hero-actions {
    gap: 14px !important;
  }

  .hero-actions .btn {
    flex-basis: 260px !important;
    min-width: 220px !important;
    min-height: 48px !important;
    font-size: 11px !important;
    letter-spacing: .11em !important;
  }

  .tagline { margin-top: 22px !important; }
}

@media (min-width: 769px) and (max-width: 1080px) {
  .hero > .wrap.hero-grid {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%) !important;
    height: clamp(430px, 37vw, 500px) !important;
    padding-left: 34px !important;
  }

  .hero-copy h1 {
    font-size: clamp(26px, 2.65vw, 36px) !important;
  }

  .hero-copy p {
    font-size: 13.5px !important;
  }

  .hero-actions .btn {
    flex-basis: 220px !important;
    min-width: 190px !important;
  }
}


/* FINAL MOBILE HEADLINE FIX - 2026-06-11 */
@media (max-width: 768px) {
  h1,
  h2,
  .section-title,
  .legal-content h1.section-title,
  .legal-content h2,
  .thankyou-box h1.section-title,
  .hero-copy h1 {
    font-size: clamp(22px, 5.4vw, 28px) !important;
    line-height: 1.16 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .legal-content,
  .thankyou-box {
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}
/* FINAL DESKTOP ZOOM FIX */
@media (min-width: 769px) {
  #main-menu.menu {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    padding: 0 !important;
    gap: 32px !important;
    overflow: visible !important;
  }

  #main-menu.menu a {
    display: inline-flex !important;
    width: auto !important;
    padding: 41px 0 37px !important;
    border-bottom: 0 !important;
  }

  .menu-toggle {
    display: none !important;
  }

  .brand .bar,
  .brand-text {
    display: block !important;
  }

  .brand .ct {
    font-size: 68px !important;
  }

  .brand .bar {
    height: 66px !important;
  }

  .brand-text strong {
    font-size: 29px !important;
    letter-spacing: .13em !important;
  }

  .brand-text span {
    display: block !important;
    font-size: 13px !important;
  }

  .nav {
    max-width: var(--max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* CHATGPT ZOOM FIX 2026-06-12 */
@media (min-width: 769px) {

  .hero,
  .section,
  .site-footer,
  .site-header {
    min-width: 1200px;
  }

  body {
    overflow-x: auto;
  }

  .wrap,
  .nav,
  .hero > .wrap.hero-grid {
    width: 100%;
    max-width: 1480px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* FINAL RESPONSIVE WIDTH FIX 2026-06-12
   Desktop nutzt breite Monitore besser aus.
   Mobile bleibt unberührt.
   Der alte 1200px-Min-Width-Zoom-Fix wird überschrieben. */
@media (min-width: 769px) {
  :root {
    --max: min(1760px, 100vw);
  }

  body {
    overflow-x: hidden !important;
  }

  .hero,
  .section,
  .site-footer,
  .site-header,
  main,
  section {
    min-width: 0 !important;
    width: 100% !important;
  }

  .wrap,
  .nav,
  .hero > .wrap.hero-grid {
    width: 100% !important;
    max-width: var(--max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .nav {
    padding-left: clamp(48px, 4vw, 72px) !important;
    padding-right: clamp(48px, 4vw, 72px) !important;
  }

  .hero > .wrap.hero-grid {
    padding-left: clamp(48px, 4vw, 72px) !important;
    padding-right: 0 !important;
  }
}


/* FINAL TYPOGRAPHY CONSISTENCY FIX 2026-06-12
   Vereinheitlicht Schriftarten und Größen für Desktop/Mobil.
   Keine Änderung an Mobile-Menü oder Layout-Struktur. */
body, button, input, textarea, select {
  font-family: Arial, Helvetica, sans-serif !important;
}

.hero-copy h1 {
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: clamp(34px, 3.05vw, 56px) !important;
  line-height: 1.10 !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

.section-title,
.path h2,
.upload-box h2.section-title,
.contact-card h2.section-title,
.legal-content h1.section-title,
.thankyou-box h1.section-title {
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: 32px !important;
  line-height: 1.20 !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

.legal-content h2 {
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: 24px !important;
  line-height: 1.25 !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

.path p,
.principle p,
.focus-card li,
.hero-copy p,
.contact-card p,
.form input,
.form textarea {
  font-family: Arial, Helvetica, sans-serif !important;
}

@media (max-width: 768px) {
  .hero-copy h1 {
    font-size: clamp(28px, 7.2vw, 34px) !important;
    line-height: 1.14 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .section-title,
  .path h2,
  .upload-box h2.section-title,
  .contact-card h2.section-title,
  .legal-content h1.section-title,
  .thankyou-box h1.section-title {
    font-size: clamp(24px, 6.2vw, 30px) !important;
    line-height: 1.18 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .legal-content h2 {
    font-size: clamp(20px, 5.4vw, 24px) !important;
    line-height: 1.22 !important;
  }

  .smallcap {
    font-size: 12px !important;
    letter-spacing: .18em !important;
  }
}

/* Hero-Bild Desktop: weicher Hintergrund-Übergang, ohne Layout/Breakpoints zu ändern */
@media (min-width: 769px) {
  .hero-media {
    background: transparent !important;
  }

  .hero-media img {
    mask-image: linear-gradient(to right, transparent 0%, black 28%) !important;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 28%) !important;
  }
}

/* Hero-Abstände Desktop: gezielte Anpassung, Mobile/Tablet unverändert */
@media (min-width: 769px) {
  .hero-copy h1 {
    margin-bottom: 45px !important;
  }

  .hero-copy p {
    margin-bottom: 45px !important;
  }
}


/* Signature */
.signature-gold{
color:#B89B5E;
margin-top:32px;
margin-bottom:8px;
}
.signature-name{
font-family:'Cormorant Garamond', cursive;
font-size:56px;
line-height:1;
color:#000;
margin:0;
}
@media (max-width:768px){
.signature-name{
font-size:40px;
}
}

/* Kontakt-Signatur: stabile Cormorant Garamond-Umsetzung */
.hero-copy p.signature-gold {
  font-family: Arial, Helvetica, sans-serif !important;
  color: #B89B5E !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  margin-top: 32px !important;
  margin-bottom: 8px !important;
}

.hero-copy p.signature-name {
  font-family: 'Cormorant Garamond', cursive !important;
  font-size: 58px !important;
  line-height: 1 !important;
  color: #000000 !important;
  margin: 0 !important;
  max-width: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
}

@media (max-width: 768px) {
  .hero-copy p.signature-gold {
    font-size: 18px !important;
    margin-top: 30px !important;
    margin-bottom: 6px !important;
  }

  .hero-copy p.signature-name {
    font-family: 'Cormorant Garamond', cursive !important;
    font-size: 42px !important;
    line-height: 1 !important;
  }
}


/* CT HERO IMAGE STABILITY: prevents visible image transitions/glitches during page changes */
.hero-media,
.hero-media img {
  transition: none !important;
  animation: none !important;
}
.hero-media img {
  will-change: auto !important;
  backface-visibility: hidden;
  transform: translateZ(0);
}


/* HOME ONLY: Hero Zielgruppen-Karten statt CTA-Buttons */
.hero-home .hero-audience-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 36px 0 28px;
}

.hero-home .hero-audience-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  padding: 28px 30px;
  text-decoration: none;
  color: #070707;
  border: 1px solid rgba(179, 154, 106, 0.62);
  background: rgba(255, 252, 246, 0.48);
  box-shadow: 0 18px 45px rgba(0,0,0,0.035);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.hero-home .hero-audience-card:hover,
.hero-home .hero-audience-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(140, 106, 67, 0.82);
  background: rgba(255, 252, 246, 0.68);
  box-shadow: 0 22px 55px rgba(0,0,0,0.07);
  outline: none;
}

.hero-home .hero-audience-icon {
  font-size: 42px;
  line-height: 1;
  color: #B39A6A;
  margin-bottom: 18px;
  letter-spacing: 0;
}

.hero-home .hero-audience-card strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-home .hero-audience-card span:not(.hero-audience-icon) {
  font-size: 17px;
  line-height: 1.45;
  margin-bottom: 26px;
}

.hero-home .hero-audience-card em {
  font-style: normal;
  color: #B39A6A;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .20em;
}

@media (max-width: 900px) {
  .hero-home .hero-audience-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 16px;
    margin: 28px 0 24px;
  }
  .hero-home .hero-audience-card {
    min-height: 0;
    padding: 24px;
  }
}

@media (max-width: 520px) {
  .hero-home .hero-audience-cards {
    margin-top: 24px;
  }
  .hero-home .hero-audience-card {
    padding: 22px;
  }
  .hero-home .hero-audience-icon {
    font-size: 34px;
    margin-bottom: 14px;
  }
  .hero-home .hero-audience-card span:not(.hero-audience-icon) {
    font-size: 15px;
    margin-bottom: 20px;
  }
}


/* CT FIX 2026-06-12: Mobile Streifen-Hintergrund entfernen */
@media (max-width: 768px) {
  html,
  body,
  main,
  .section,
  .hero,
  .hero-copy,
  .home-intro-paths,
  .principles-section,
  .package-card,
  .principle,
  .focus-card,
  .contact-grid,
  form,
  input,
  textarea,
  select {
    background-image: none !important;
  }
}
