
:root {
  --brand:       #5E4D33;
  --brand-mid:   #7a6448;
  --brand-light: #b09a7a;
  --pale:        #f5f1eb;
  --cream:       #faf8f5;
  --white:       #ffffff;
  --text:        #3a3028;
  --text-light:  #7a6e65;
  --border:      #e2d9cf;
  --dark:        #2a2118;
}

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

body {
  font-family: 'futura-pt', 'Futura PT', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: height 0.3s;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links > li { position: relative; }

.nav-links > li > a {
  display: block;
  padding: 0 18px;
  height: 68px;
  line-height: 68px;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-mid);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.nav-links > li:hover > .dropdown { display: block; }

.dropdown {
  display: none;
  position: absolute;
  top: 68px; left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--brand);
  min-width: 250px;
  box-shadow: 0 8px 28px rgba(94,77,51,0.1);
  z-index: 100;
}

.dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--brand-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--pale); color: var(--brand); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px 0 8px 8px; z-index: 1010; margin-left: auto; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--brand); transition: transform 0.3s, opacity 0.3s; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 998;
}
.nav-mobile-overlay.open { display: block; }

/* ── HERO ── */
#home {
  margin-top: 68px;
  min-height: 80vh;
  display: grid;
  grid-template-columns: 3fr 2fr;
  background: var(--cream);
  overflow: hidden;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.2;
  color: var(--brand);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  font-weight: 300;
}

.hero-body {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-quote {
  border-left: 3px solid var(--brand);
  padding: 16px 24px;
  background: var(--white);
  font-size: 1.12rem;
  color: var(--brand);
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 44px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--brand-mid); }

.btn-outline {
  display: inline-block;
  padding: 11px 30px;
  border: 1px solid var(--brand-mid);
  color: var(--brand-mid);
  font-size: 0.88rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); background: var(--pale); }

.hero-visual-col { position: relative; overflow: hidden; }

.hero-split { display: grid; grid-template-columns: 1fr 1fr; height: 100%; }

.hero-half {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  background: var(--cream);
  padding: 6% 8%;
  cursor: pointer;
}
.hero-half-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.hero-half-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.hero-half:hover .hero-half-frame img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.hero-half-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 16px;
  background: linear-gradient(to top, rgba(42,33,24,0.88) 0%, transparent 100%);
}

.hero-half-label strong {
  display: block;
  font-size: 1.08rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.hero-half-label span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ── SERVICES STRIP ── */
#services-strip {
  padding: 56px 80px;
  background: var(--brand);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-pillar {
  padding: 36px 48px;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-pillar:last-child { border-right: none; }

.pillar-title {
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.pillar-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.pillar-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.pillar-link:hover { color: var(--white); border-color: var(--white); }

/* ── SECTION BASE ── */
section { padding: 96px 80px; }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--brand);
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 300;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 56px;
}

.divider { width: 40px; height: 2px; background: var(--brand); margin: 16px 0 28px; }

/* ── HR SERVICES ── */
#hr-services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--pale); }

.service-card-num {
  font-size: 1.7rem;
  color: var(--border);
  margin-bottom: 14px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.service-card-title {
  font-size: 1.18rem;
  font-weight: 300;
  color: var(--brand);
  margin-bottom: 10px;
  line-height: 1.35;
}

.service-card-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.service-card-list { margin-top: 14px; padding: 0; list-style: none; }
.service-card-list li {
  font-size: 0.97rem;
  color: var(--text-light);
  padding: 5px 0 5px 14px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}
.service-card-list li:last-child { border-bottom: none; }
.service-card-list li::before { content: '–'; position: absolute; left: 0; color: var(--brand-light); }

/* ── FINANCE ── */
#finance { background: var(--pale); }

.finance-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 56px;
}
.finance-intro-grid > *:first-child {
  padding-right: 56px;
  border-right: 1px solid var(--border);
}
.finance-intro-grid > *:last-child {
  padding-left: 64px;
}

.finance-statement {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--brand);
  line-height: 1.75;
  padding: 28px 32px 28px 36px;
  background: var(--white);
  border-left: 4px solid var(--brand);
}

/* Mobile: Abstand vom senkrechten Strich sicherstellen */
@media (max-width: 900px) {
  .finance-statement {
    padding: 24px 24px 24px 28px;
  }
}
@media (max-width: 640px) {
  .finance-statement {
    padding: 20px 20px 20px 24px;
    font-size: 0.98rem;
  }
}

.finance-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.finance-tag {
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--brand-mid);
  color: var(--brand-mid);
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.finance-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.2s;
}
.finance-card:hover { background: var(--pale); }

.finance-card-icon {
  font-size: 1.7rem;
  color: var(--border);
  margin-bottom: 14px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.finance-card-title {
  font-size: 1rem;
  color: var(--brand);
  margin-bottom: 10px;
  line-height: 1.35;
}

.finance-card-text {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}

.finance-card-list { margin-top: 14px; list-style: none; padding: 0; }
.finance-card-list li {
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 4px 0 4px 14px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}
.finance-card-list li:last-child { border-bottom: none; }
.finance-card-list li::before { content: '–'; position: absolute; left: 0; color: var(--brand-light); }

/* ── COLLABORATION ── */
#collaboration { background: var(--cream); }

.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 52px;
}

.collab-item { background: var(--white); padding: 28px 20px; text-align: center; }
.collab-item-title { font-size: 1.08rem; color: var(--brand); margin-bottom: 8px; }
.collab-item-text { font-size: 0.97rem; color: var(--text-light); line-height: 1.6; }

.collab-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.collab-text { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; }

.collab-highlight { background: var(--white); padding: 32px 36px; border-left: 4px solid var(--brand); }
.collab-highlight p { font-size: 1.08rem; color: var(--brand); line-height: 1.65; margin-bottom: 12px; }
.collab-highlight .sub { font-size: 0.9rem; color: var(--text-light); }

/* ── TEAM ── */
#team { background: var(--white); }

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

.team-card { display: grid; grid-template-columns: 185px 1fr; gap: 28px; align-items: start; }

.team-photo { width: 185px; height: 225px; object-fit: cover; object-position: top center; }

.team-name { font-size: 1.7rem; color: var(--brand); margin-bottom: 4px; letter-spacing: 0.01em; font-weight: 300; }
.team-role { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-light); margin-bottom: 18px; }

.team-bio { list-style: none; padding: 0; }
.team-bio li {
  font-size: 0.97rem;
  color: var(--text-light);
  padding: 6px 0 6px 14px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.team-bio li:last-child { border-bottom: none; }
.team-bio li::before { content: '–'; position: absolute; left: 0; color: var(--brand-light); }

/* ── CONTACT ── */
#kontakt { background: var(--dark); padding: 96px 80px; text-align: center; }

.contact-title { font-size: clamp(1.6rem, 2.8vw, 2.4rem); color: var(--white); margin-bottom: 12px; font-weight: 300; }
.contact-intro { font-size: 1.05rem; color: rgba(255,255,255,0.55); margin-bottom: 52px; }

.contact-grid { display: flex; gap: 24px; justify-content: center; max-width: 820px; margin: 0 auto 56px; }
.contact-card { flex: 0 0 280px; }
.contact-card-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  margin-bottom: 18px;
}
.contact-card-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  margin-bottom: 18px;
}

.contact-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); padding: 28px 22px; text-align: left; }
.contact-card-label { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-light); margin-bottom: 10px; }
.contact-card-value { font-size: 1.12rem; color: var(--white); line-height: 1.6; }
.contact-card a { color: var(--brand-light); text-decoration: none; font-size: 0.95rem; display: block; margin-top: 8px; transition: color 0.2s; }
.contact-card a:hover { color: var(--white); }

/* ── FOOTER ── */
footer {
  background: #1c1409;
  padding: 24px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo { font-size: 1.15rem; color: rgba(255,255,255,0.4); letter-spacing: 0.12em; text-transform: lowercase; }
.footer-text, .footer-sub { font-size: 0.8rem; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }

/* ── VISUAL EFFECTS ── */

/* Nav: animated underline on hover */
.nav-links > li > a {
  position: relative;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 16px; left: 18px; right: 18px;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }

/* Nav logo subtle shimmer on hover */
.nav-logo { transition: opacity 0.2s; }
.nav-logo:hover { opacity: 0.75; }

/* Buttons: lift + shadow on hover */
.btn-primary {
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(94,77,51,0);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--brand-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(94,77,51,0.25);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-outline {
  transform: translateY(0);
  transition: all 0.2s;
}
.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(94,77,51,0.12);
}
.btn-outline:active { transform: translateY(0); box-shadow: none; }

/* Service & finance cards: left accent bar on hover */
.service-card {
  border-left: 3px solid transparent;
  transition: background 0.25s, border-color 0.25s;
}
.service-card:hover {
  background: var(--pale);
  border-left-color: var(--brand);
}

.finance-card {
  border-left: 3px solid transparent;
  transition: background 0.25s, border-color 0.25s;
}
.finance-card:hover {
  background: var(--pale);
  border-left-color: var(--brand);
}

/* Card numbers: colour shift on card hover */
.service-card:hover .service-card-num,
.finance-card:hover .finance-card-icon {
  color: var(--brand-light);
  transition: color 0.25s;
}

/* Dropdown links: left slide-in indicator */
.dropdown a {
  position: relative;
  padding-left: 20px;
  transition: background 0.15s, color 0.15s, padding-left 0.2s;
}
.dropdown a::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px; height: 60%;
  background: var(--brand);
  transition: transform 0.2s ease;
}
.dropdown a:hover { padding-left: 26px; }
.dropdown a:hover::before { transform: translateY(-50%) scaleY(1); }

/* Services strip pillars: subtle brightness on hover */
.service-pillar {
  transition: background 0.25s;
}
.service-pillar:hover {
  background: rgba(255,255,255,0.06);
}

/* Finance tags: fill on hover */
.finance-tag {
  transition: background 0.2s, color 0.2s;
  cursor: default;
}
.finance-tag:hover {
  background: var(--brand-mid);
  color: var(--white);
}

/* Hero photos: overlay text slides up on hover */
.hero-half-label {
  transition: padding-bottom 0.3s ease;
}
.hero-half:hover .hero-half-label {
  padding-bottom: 24px;
}
.hero-half-label strong {
  transition: letter-spacing 0.3s ease;
}
.hero-half:hover .hero-half-label strong {
  letter-spacing: 0.08em;
}

/* Hero quote: left border grows on hover */
.hero-quote {
  transition: border-left-width 0.25s ease, padding-left 0.25s ease;
}
.hero-quote:hover {
  border-left-width: 5px;
  padding-left: 21px;
}

/* Collab items: lift on hover */
.collab-item {
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.collab-item:hover {
  background: var(--pale);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(94,77,51,0.08);
  z-index: 1;
  position: relative;
}

/* Team photos: subtle desaturate-to-colour on hover */
.team-photo {
  filter: grayscale(20%);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.team-card:hover .team-photo {
  filter: grayscale(0%);
  transform: scale(1.02);
}

/* Contact cards: glow border on hover */
.contact-card {
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-card:hover {
  border-color: var(--brand-light);
  box-shadow: 0 0 0 1px var(--brand-light), 0 8px 24px rgba(94,77,51,0.15);
}

/* Divider: animate width on scroll-in */
.divider {
  transition: width 0.6s ease;
}
.divider.visible { width: 40px; }
.divider:not(.visible) { width: 0; }

/* Scroll progress bar at top */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--brand);
  z-index: 1100;
  transition: width 0.1s linear;
}

/* Pillar link arrow bounce */
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pillar-link:hover { gap: 8px; }
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  section { padding: 72px 48px; }
  nav { padding: 0 32px; }
  .nav-hamburger { display: flex; margin-left: auto; }
  #services-strip { padding: 40px 48px; }
  .team-card { grid-template-columns: 160px 1fr; gap: 20px; }
  .team-photo { width: 160px; height: 200px; }
}

@media (max-width: 900px) {
  #home { grid-template-columns: 1fr; min-height: auto; }
  .hero-text-col { padding: 56px 40px; }
  .hero-visual-col { height: 320px; }
  /* Hero-Frame auf Mobile: an Höhe ausrichten, damit nichts überschiesst */
  .hero-half-frame { width: auto; height: 100%; }
  .hero-split { grid-template-columns: 1fr 1fr; }
  #services-strip { grid-template-columns: 1fr; padding: 40px; }
  .service-pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 28px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .finance-grid { grid-template-columns: 1fr 1fr; }
  .finance-intro-grid { grid-template-columns: 1fr; }
  .finance-intro-grid > *:first-child { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 32px; }
  .finance-intro-grid > *:last-child { padding-left: 0; padding-top: 32px; }
  /* Blockquote braucht eigenen Abstand vom senkrechten Strich */
  .finance-statement { padding-left: 24px !important; }
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .collab-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .collab-bottom { grid-template-columns: 1fr; gap: 28px; }
  footer { flex-direction: column; gap: 10px; text-align: center; padding: 20px 40px; }
}

/* ── MOBILE MENU (aktiv ab 1100px, wo Hamburger erscheint) ── */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 0;
    z-index: 999;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(94,77,51,0.12);
  }
  /* Ebene 1: Hauptmenüpunkte — linksbündig mit 24px Einzug */
  .nav-links.mobile-open > li > a {
    display: block;
    height: auto;
    line-height: 1.4;
    padding: 16px 24px 16px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--brand);
    text-decoration: none;
    text-align: left;
    white-space: normal;
  }
  .nav-links.mobile-open > li > a::after { display: none; }
  .nav-links.mobile-open > li:hover > .dropdown { display: none; }
  /* Ebene 2: Dropdown — zugeklappt, per Tap öffenbar */
  .nav-links.mobile-open > li > .dropdown {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border);
    background: var(--pale);
    padding: 0;
    min-width: auto;
  }
  .nav-links.mobile-open > li > .dropdown.mobile-expanded {
    display: block;
  }
  /* Pfeil-Indikator beim Hauptmenüpunkt mit Untermenü */
  .nav-links.mobile-open > li.has-dropdown > a::after {
    content: ' ▸';
    display: inline;
    font-size: 0.7em;
    opacity: 0.5;
  }
  .nav-links.mobile-open > li.has-dropdown.expanded > a::after {
    content: ' ▾';
  }
  .nav-links.mobile-open .dropdown a {
    display: block;
    padding: 13px 24px 13px 48px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(226,217,207,0.7);
    text-align: left;
    color: var(--brand-mid);
    text-transform: none;
    text-decoration: none;
  }
  .nav-links.mobile-open .dropdown a:last-child { border-bottom: none; }
  .nav-links.mobile-open .dropdown a::before { content: none; }
  .nav-links.mobile-open .btn-outline {
    margin: 16px 24px;
    display: inline-block;
    height: auto;
    line-height: 1.4;
    padding: 12px 28px;
  }
}

@media (max-width: 640px) {
  section { padding: 52px 24px; }
  nav { padding: 0 20px; }
  .hero-text-col { padding: 44px 24px; }
  #services-strip { padding: 0; }
  .service-pillar { padding: 28px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .finance-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo { width: 100%; height: 260px; }
  .collab-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual-col { height: 260px; }
  footer { padding: 20px 24px; }

  /* Überschriften auf Mobile */
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); font-weight: 300; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); -webkit-text-stroke: 0; }
  /* finance-statement mobile styles: siehe oben bei .finance-statement */
  .hero-quote { font-size: 0.95rem; }

  /* Divider-Abstand */
  .divider { margin: 12px 0 28px; }
  .section-intro { padding-right: 0; }

  /* Section-Padding */
  section { padding: 44px 20px; }
  #kontakt { padding: 52px 20px; }

  /* Kacheln */
  .service-card { padding: 24px 20px; }
  .service-card-num { font-size: 1.3rem; }

  /* Team */
  .team-bio { font-size: 0.95rem; }
  .team-bio li { font-size: 0.92rem; }

  /* Kontakt */
  .contact-card { flex: 1 1 100% !important; }
}

/* ── DATENSCHUTZ OVERLAY ── */
#datenschutz-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: var(--white);
  overflow-y: auto;
}

#datenschutz-overlay.active { display: block; }

.ds-overlay-nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  z-index: 10;
}

.ds-overlay-logo {
  font-size: 2.6rem;
  color: var(--brand);
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.ds-overlay-close {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-mid);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'futura-pt', 'Futura PT', 'Futura', sans-serif;
  transition: color 0.2s;
  padding: 0;
}
.ds-overlay-close:hover { color: var(--brand); }

.ds-content {
  padding: 80px 80px 96px;
  max-width: 900px;
}

.ds-page-header {
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.ds-page-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--brand);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.ds-page-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
}

.ds-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.ds-section:last-of-type { border-bottom: none; }

.ds-section-num {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 8px;
}

.ds-section h2 {
  font-size: 1.1rem;
  color: var(--brand);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.ds-section p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.ds-section p:last-child { margin-bottom: 0; }

.ds-section ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.ds-section ul li {
  font-size: 0.87rem;
  color: var(--text-light);
  padding: 5px 0 5px 16px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.ds-section ul li:last-child { border-bottom: none; }
.ds-section ul li::before { content: '–'; position: absolute; left: 0; color: var(--brand-light); }

.ds-responsible {
  background: var(--pale);
  border-left: 4px solid var(--brand);
  padding: 24px 28px;
  margin: 16px 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
}
.ds-responsible a { color: var(--brand); text-decoration: none; border-bottom: 1px solid var(--brand-light); }
.ds-responsible a:hover { border-color: var(--brand); }

.ds-hint {
  background: var(--pale);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-light);
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.7;
}
.ds-hint strong {
  display: block;
  font-weight: 400;
  color: var(--brand);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ds-authority {
  background: var(--dark);
  padding: 20px 24px;
  margin: 16px 0;
}
.ds-authority h3 {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 8px;
  font-weight: 400;
}
.ds-authority p { font-size: 0.87rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.ds-authority a { color: var(--brand-light); text-decoration: none; }
.ds-authority a:hover { color: var(--white); }

.ds-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.83rem;
}
.ds-table th {
  background: var(--pale);
  color: var(--brand);
  font-weight: 400;
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ds-table td {
  padding: 9px 14px;
  border: 1px solid var(--border);
  color: var(--text-light);
  vertical-align: top;
  line-height: 1.6;
}
.ds-table tr:nth-child(even) td { background: var(--cream); }

.ds-rights-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: 16px 0;
}
.ds-rights-cell {
  background: var(--white);
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}
.ds-rights-cell.hdr {
  background: var(--pale);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

@media (max-width: 900px) {
  .ds-overlay-nav { padding: 0 32px; }
  .ds-content { padding: 56px 40px 72px; }
  .ds-rights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ds-overlay-nav { padding: 0 20px; }
  .ds-content { padding: 44px 24px 56px; }
  .ds-table th, .ds-table td { padding: 7px 9px; }
}
