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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0e1116;
  color: #f5f7fa;
  line-height: 1.4;
}

/* STAGE: shared background for Hero + Pause + Statement */
.stage{
  background: url("assets/img/structure.jpg") center / cover no-repeat;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 8vw;
  position: relative;
  background:
    radial-gradient(1200px 600px at 20% 20%, rgba(245,247,250,0.06), rgba(14,17,22,0) 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(245,247,250,0.04), rgba(14,17,22,0) 55%),
    linear-gradient(rgba(14,17,22,0.68), rgba(14,17,22,0.78));
  background-repeat: no-repeat;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 900px){
  .hero h1{
    white-space: normal;
  }
}

.hero h1,
.hero-subline,
.lead{
  will-change: transform;
  transform: translate3d(0,0,0);
}

.hero-subline{
  margin-top: 2.5rem;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.eyebrow {
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  opacity: 0.7;
}

.lead {
  margin-top: 3rem;
  font-size: 1.2rem;
  max-width: 40rem;
}

/* PAUSE — fades from dark hero toward the light section */
.pause {
  height: 20vh;
  background: linear-gradient(
    rgba(14,17,22,0.80) 0%,
    rgba(14,17,22,0.60) 60%,
    rgba(14,17,22,0.10) 100%
  );
}

/* STATEMENT */
.statement {
  position: relative;
  padding: 8vw;
  background:
    linear-gradient(rgba(14,17,22,0.90), rgba(14,17,22,0.90));
}

.statement h2 {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0.7;
}

.statement p {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
}

/* PILLARS (heller Mittelbereich) */
.pillars {
  position: relative;
  background: #dddeda;
  color: #1a1c20;
  padding: 8vw;
  padding-top: calc(8vw + 4rem);
  padding-bottom: calc(8vw + 5rem);
}

/* Gradient-Bridge oben: dunkel → hell */
.pillars::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to bottom, #0e1116, #dddeda);
  pointer-events: none;
}

/* Gradient-Bridge unten: hell → dunkel */
.pillars::after {
  content: '';
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to bottom, #dddeda, #0e1116);
  pointer-events: none;
  z-index: 1;
}

.pillars-intro {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  max-width: 70rem;
  white-space: nowrap;
  margin-bottom: 5rem;
  color: #1a1c20;
  opacity: 0.85;
}

@media (max-width: 860px) {
  .pillars-intro {
    white-space: normal;
    max-width: 100%;
  }
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.pillar {
  border-top: 2px solid #1a1c20;
  padding-top: 1.5rem;
}

.pillar-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pillar-number {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.4;
  font-weight: 500;
}

.pillar-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1c20;
}

.pillar-when {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.pillar-short {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #2a2d35;
  margin-bottom: 1.25rem;
}

.pillar-result {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #2a2d35;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26,28,32,0.15);
}

.pillar-result span {
  font-weight: 700;
  color: #1a1c20;
}

.pillar-toggle {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(26,28,32,0.35);
  color: #1a1c20;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  justify-content: space-between;
}

.pillar-toggle:hover {
  border-color: #1a1c20;
  background: rgba(26,28,32,0.05);
}

.toggle-icon {
  font-size: 1rem;
  font-weight: 300;
  transition: transform 0.25s;
}

.pillar-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(45deg);
}

/* Accordion detail */
.pillar-detail {
  margin-top: 1.5rem;
  overflow: hidden;
}

.pillar-detail[hidden] {
  display: none;
}

.detail-block {
  margin-bottom: 1.5rem;
}

.detail-block h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.detail-block p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #2a2d35;
}

.detail-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-block ul li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #2a2d35;
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}

.detail-block ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  opacity: 0.4;
}

.pillar-boundary {
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.55;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26,28,32,0.12);
  line-height: 1.6;
  color: #1a1c20;
}

/* Pillars CTA */
.pillars-cta {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(26,28,32,0.15);
}

.pillars-cta p {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
  color: #1a1c20;
}

.pillars-cta-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 1px solid #1a1c20;
  color: #1a1c20;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.cta-btn:hover {
  background: #1a1c20;
  color: #dddeda;
}

.cta-link {
  color: #1a1c20;
  font-size: 0.9rem;
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
}

.cta-link:hover {
  opacity: 1;
}

/* EXPERIENCE mit Portrait */
.experience-stage {
  display: flex;
  flex-direction: row-reverse;
  gap: 6vw;
  align-items: flex-start;
  padding: 8vw;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.experience-stage__media {
  flex: 0 0 280px;
  position: sticky;
  top: 12vh;
  align-self: flex-start;
}

.experience-stage__media img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  filter: grayscale(100%);
  opacity: 0.95;
}

@media (max-width: 860px) {
  .experience-stage {
    flex-direction: column;
    gap: 2.5rem;
    padding: 4rem 6vw;
  }

  .experience-stage__media {
    position: relative;
    top: auto;
    flex: none;
    max-width: 200px;
  }
}

/* EXPERIENCE */

.experience {
  flex: 1;
  padding: 0;
}

/* Stats */
.exp-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 2rem 0 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245,247,250,0.1);
}

.exp-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-number {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.78rem;
  opacity: 0.45;
  letter-spacing: 0.04em;
}

/* Timeline */
.experience-list {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 1.75rem;
}

.experience-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  bottom: 1.5rem;
  width: 1px;
  background: rgba(245,247,250,0.12);
}

.experience-item {
  position: relative;
  border-bottom: 1px solid #1e2025;
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
}

.experience-item::before {
  content: '';
  position: absolute;
  left: -1.75rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f5f7fa;
  opacity: 0.45;
  transform: translateX(-2.5px);
}

.exp-period {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 0.4rem;
}

.experience-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.exp-role {
  color: #aaa;
  margin-bottom: 0.3rem;
}

.exp-impact {
  color: #666;
  font-size: 0.9rem;
}

.exp-keypoints {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
}

.exp-keypoints li {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #666;
  padding: 0.25rem 0 0.25rem 1rem;
  position: relative;
}

.exp-keypoints li::before {
  content: "—";
  position: absolute;
  left: 0;
  opacity: 0.4;
}

.experience-link {
  margin-top: 3rem;
  font-size: 0.9rem;
}

.experience-link a {
  color: #fff;
  text-decoration: underline;
}

/* Shared: Einsatzgebiete list styles */
.scope-lead{
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.scope-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.scope-list li{
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-top: 0.75rem;
  max-width: 42rem;
}

.scope-list li::before{
  content: "• ";
  opacity: 0.55;
}

/* EINSATZGEBIETE */
.scope-section {
  position: relative;
  background: #dddeda;
  color: #1a1c20;
  padding: 8vw;
  padding-top: calc(8vw + 4rem);
  padding-bottom: calc(8vw + 5rem);
}

/* Gradient-Bridge oben: dunkel → hell */
.scope-section::before {
  content: '';
  position: absolute;
  top: -5rem;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to bottom, #0e1116, #dddeda);
  pointer-events: none;
}

/* Gradient-Bridge unten: hell → dunkel */
.scope-section::after {
  content: '';
  position: absolute;
  bottom: -5rem;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to bottom, #dddeda, #0e1116);
  pointer-events: none;
  z-index: 1;
}

.scope-section h2 {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #1a1c20;
  opacity: 0.5;
}

.scope-lead {
  font-size: 1rem;
  opacity: 0.65;
  color: #1a1c20;
  margin-bottom: 0;
}

.scope-situations {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.scope-situations li {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(26,28,32,0.15);
  color: #1a1c20;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.scope-situations li:last-child {
  border-bottom: 1px solid rgba(26,28,32,0.15);
}

.scope-situations li:hover {
  opacity: 1;
}

/* MICDROP (vollbreit) */
.micdrop {
  padding: 12vw 8vw 14vw;
}

.quote {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
}

.subquote {
  margin-top: 2rem;
  font-size: 1.2rem;
  opacity: 0.8;
}

.contact {
  margin-top: 4rem;
  max-width: 32rem;
}

.profile-stage .contact{
  margin-top: 3rem;
}

.micdrop-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.mail {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border: 1px solid #f5f7fa;
  text-decoration: none;
  color: #f5f7fa;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.mail:hover {
  background: #f5f7fa;
  color: #0e1116;
}

.cta-link-dark {
  color: #f5f7fa;
  font-size: 0.9rem;
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.cta-link-dark:hover {
  opacity: 1;
}

/* Responsive: stack on smaller screens (sticky off) */
@media (max-width: 860px){
  .profile-stage{
    flex-direction: column;
    gap: 2.5rem;
  }

  .profile-stage__media{
    position: relative;
    top: auto;
    flex: none;
  }

  .profile-stage__media img{
    max-width: 320px;
    max-height: none;
  }
}

/* LANGUAGE TOGGLE */
.lang-toggle {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(14,17,22,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245,247,250,0.15);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
}

.lang-btn {
  appearance: none;
  background: transparent;
  border: none;
  color: rgba(245,247,250,0.4);
  font-size: 0.72rem;
  font-family: inherit;
  letter-spacing: 0.12em;
  cursor: pointer;
  padding: 0.1rem 0.2rem;
  transition: color 0.2s;
}

.lang-btn:hover {
  color: rgba(245,247,250,0.75);
}

.lang-btn.active {
  color: #f5f7fa;
  font-weight: 600;
}

.lang-sep {
  color: rgba(245,247,250,0.2);
  font-size: 0.7rem;
  user-select: none;
}

/* Cookie Consent Banner */
.cookie-banner{
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 48px));
  background: rgba(14,17,22,0.92);
  border: 1px solid rgba(245,247,250,0.18);
  border-radius: 16px;
  padding: 18px 18px;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.55);
  display: none;
}

.cookie-banner__title{
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.cookie-banner__text{
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.85;
  max-width: 60rem;
}

.cookie-banner__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
}

.cookie-btn{
  appearance: none;
  background: transparent;
  color: #f5f7fa;
  border: 1px solid rgba(245,247,250,0.45);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.cookie-btn:hover{
  border-color: rgba(245,247,250,0.75);
}

.cookie-accept{
  border-color: rgba(245,247,250,0.85);
}

.cookie-banner__link{
  color: rgba(245,247,250,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
}

.cookie-banner__link:hover{
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 520px){
  .cookie-banner{
    bottom: 16px;
    width: calc(100% - 24px);
    padding: 14px;
    border-radius: 14px;
  }
}
/* Datenschutz Seite */
.privacy{
  max-width: 46rem;
}

.privacy h3{
  margin-top: 2.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.privacy p{
  margin-top: 0.9rem;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

.privacy-list{
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  opacity: 0.9;
}

.privacy-list li{
  margin-top: 0.5rem;
  line-height: 1.6;
}

.privacy-link{
  color: rgba(245,247,250,0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,247,250,0.25);
}

.privacy-link:hover{
  border-bottom-color: rgba(245,247,250,0.7);
}

.privacy-back{
  margin-top: 3rem;
}