/* ──────────────────────────────────────────────────────────────
   Zahid Projects — Hero
   Palette: Anthrazit #1C1C1A · Brass #A6884A · Bone #F4EFE6
   ────────────────────────────────────────────────────────────── */

/* ── Self-hosted fonts (kein externer Drittland-Request) ──────── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond.woff2') format('woff2-variations'),
       url('assets/fonts/cormorant-garamond.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('assets/fonts/inter.woff2') format('woff2-variations'),
       url('assets/fonts/inter.woff2') format('woff2');
}

:root {
  --ink:        #1C1C1A;
  --ink-soft:   #2A2A26;
  --bone:       #F4EFE6;
  --bone-soft:  rgba(244, 239, 230, 0.72);
  --brass:      #A6884A;
  --brass-hi:   #C7A664;
  --shadow:     0 12px 40px rgba(0, 0, 0, 0.35);

  --serif: "Cormorant Garamond", "Didot", "Bodoni 72", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

/* Hero-Sektion zeigt eine kurze Anthrazit-Fläche statt eines Standbilds,
   bis das Video startet — kein Bild-Flash mehr */
.hero { background: #0c0c0b; }

/* ──────────────────────────────────────────────────────────────
   BRAND SPLASH (ZP-Intro beim Laden)
   ────────────────────────────────────────────────────────────── */

.brand-splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ink, #1C1C1A);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1),
              visibility 0.8s linear,
              transform 0.9s cubic-bezier(.4,0,.2,1);
}

.brand-splash.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-2vh);
}

.brand-splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: splashFadeIn 1s cubic-bezier(.2,.7,.2,1) both;
}

.brand-splash-row {
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: visible;
}

.brand-splash-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.brand-splash-word {
  font-family: "Inter", -apple-system, sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--bone, #F4EFE6);
  white-space: nowrap;
  opacity: 0;
  will-change: transform, opacity;
}

.brand-splash-word-left {
  /* Startposition: in Richtung Logo geschoben → animiert nach links zur Ruheposition */
  transform: translateX(80px);
  animation: splashWordLeft 0.9s cubic-bezier(.2,.7,.2,1) 0.7s forwards;
}

.brand-splash-word-right {
  transform: translateX(-80px);
  animation: splashWordRight 0.9s cubic-bezier(.2,.7,.2,1) 0.7s forwards;
}

@keyframes splashWordLeft {
  0%   { opacity: 0; transform: translateX(80px); }
  40%  { opacity: 0.5; }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes splashWordRight {
  0%   { opacity: 0; transform: translateX(-80px); }
  40%  { opacity: 0.5; }
  100% { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-splash-word-left,
  .brand-splash-word-right { animation: none; opacity: 1; transform: none; }
}

@media (max-width: 560px) {
  .brand-splash { padding: 0 16px; }
  .brand-splash-row { flex-direction: column; gap: 18px; }
  .brand-splash-word { font-size: 13px; letter-spacing: 0.28em; }
  .brand-splash-mark { width: 120px; height: 120px; font-size: 68px; padding-bottom: 6px; }
  .brand-splash-word-left  { transform: translateY(20px); animation: splashWordUp 0.9s cubic-bezier(.2,.7,.2,1) 0.7s forwards; }
  .brand-splash-word-right { transform: translateY(-20px); animation: splashWordDown 0.9s cubic-bezier(.2,.7,.2,1) 0.7s forwards; }
}
@keyframes splashWordUp   { 0%{opacity:0;transform:translateY(20px);} 40%{opacity:.5;} 100%{opacity:1;transform:translateY(0);} }
@keyframes splashWordDown { 0%{opacity:0;transform:translateY(-20px);} 40%{opacity:.5;} 100%{opacity:1;transform:translateY(0);} }

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

.brand-splash-mark {
  font-family: "Cormorant Garamond", "Didot", Georgia, serif;
  font-weight: 500;
  font-size: 96px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--brass-hi, #C7A664);
  border: 1px solid var(--brass-hi, #C7A664);
  width: 168px;
  height: 168px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
  box-sizing: border-box;
  animation: splashMarkBreathe 2.4s ease-in-out infinite;
}

@keyframes splashMarkBreathe {
  0%, 100% { transform: scale(1);      box-shadow: 0 0 0 0 rgba(199, 166, 100, 0.0); }
  50%      { transform: scale(1.02);   box-shadow: 0 0 0 12px rgba(199, 166, 100, 0.12); }
}

/* Brass-Ladelinie unter dem Logo */
.brand-splash-line {
  position: relative;
  width: 120px;
  height: 1px;
  background: rgba(244, 239, 230, 0.12);
  overflow: hidden;
}

.brand-splash-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--brass-hi, #C7A664) 50%, transparent 100%);
  animation: splashLine 1.4s cubic-bezier(.4,0,.2,1) infinite;
}

@keyframes splashLine {
  0%   { left: -40%; }
  100% { left: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-splash-mark { animation: none; }
  .brand-splash-line::after { animation-duration: 2s; }
}

@media (max-width: 560px) {
  .brand-splash-mark { width: 128px; height: 128px; font-size: 72px; }
  .brand-splash-line { width: 96px; }
}

html { overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--sans);
  color: var(--bone);
  background: var(--ink);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

/* ── NAV ────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 64px);
  color: var(--bone);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.45s cubic-bezier(.2,.7,.2,1),
    padding 0.35s cubic-bezier(.2,.7,.2,1),
    backdrop-filter 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.nav.nav-scrolled {
  background: rgba(20, 20, 15, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: rgba(244, 239, 230, 0.10);
  padding-top: 16px;
  padding-bottom: 16px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.nav.nav-scrolled .brand-mark {
  font-size: 22px;
  padding: 3px 9px 5px;
  transition: font-size 0.35s ease, padding 0.35s ease;
}

.nav .brand-mark {
  transition: font-size 0.35s ease, padding 0.35s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.18em;
}

.brand-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--brass-hi);
  border: 1px solid var(--brass-hi);
  padding: 4px 10px 6px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.brand:hover .brand-mark {
  color: var(--bone);
  border-color: var(--bone);
}

/* Nav-Link Übergang in Brass */
.nav-links a { transition: color 0.3s ease, opacity 0.3s ease; }

.brand-word {
  font-size: 11px;
  letter-spacing: 0.32em;
  opacity: 0.92;
}

.nav-links { display: flex; gap: 28px; }

/* Sprach-Toggle DE | EN */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 28px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-soft);
}

.lang-link {
  color: var(--bone-soft);
  text-decoration: none;
  transition: color 0.25s ease;
  padding: 4px 2px;
  font-weight: 500;
}

.lang-link:hover { color: var(--bone); }
.lang-link.is-active { color: var(--brass-hi); }

.lang-sep { color: rgba(244, 239, 230, 0.30); }

@media (max-width: 720px) {
  .nav-lang { margin-left: auto; }
  .nav-links + .nav-lang { margin-left: auto; }
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.nav-links a:hover {
  color: var(--brass-hi);
  opacity: 1;
}

/* Aktive Sektion: Nav-Link leuchtet in Brass auf */
.nav-links a.is-current {
  color: var(--brass-hi);
  opacity: 1;
}

@media (max-width: 720px) {
  .brand-word { display: none; }
  .nav-links { display: none; }
}

/* ── HERO ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media { position: absolute; inset: 0; z-index: 0; }

.hero-media img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.hero-media img {
  transform-origin: 52% 42%;
  animation: kenburns 25s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-video {
  background: #0c0c0b;
}

@keyframes kenburns {
  0%   { transform: scale(1.06) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2.5%, 1.5%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { animation: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(28, 28, 26, 0.55) 0%,
      rgba(28, 28, 26, 0.15) 28%,
      rgba(28, 28, 26, 0.25) 62%,
      rgba(28, 28, 26, 0.85) 100%),
    linear-gradient(90deg,
      rgba(28, 28, 26, 0.45) 0%,
      rgba(28, 28, 26, 0.0)  55%);
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at 50% 50%,
    transparent 50%,
    rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--brass-hi);
  margin: 0 0 36px;
  margin-top: 24px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s cubic-bezier(.2,.7,.2,1) 0.3s forwards;
  align-self: flex-start;
  padding: 9px 16px;
  background: rgba(28, 28, 26, 0.55);
  border: 1px solid rgba(166, 136, 74, 0.45);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}

.headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 5.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: var(--bone);
  max-width: none;
}

.headline .light { font-weight: 300; }
.headline .bold  { font-weight: 500; color: var(--brass-hi); }

.headline span {
  display: block;
  white-space: nowrap;
  margin-bottom: 0.35em;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) forwards;
}

.headline span:last-child { margin-bottom: 0; }

/* Single-Line-Variante: Success Delivered. */
.headline.headline-oneline span {
  display: inline;
  white-space: normal;
  margin-bottom: 0;
}

.headline.headline-oneline {
  white-space: nowrap;
}

.subline.subline-lead {
  color: var(--bone);
  font-size: clamp(17px, 1.6vw, 24px);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.4;
  max-width: none;
  white-space: nowrap;
  margin-bottom: 10px !important;
  animation-delay: 1.25s !important;
}

@media (max-width: 560px) {
  .subline.subline-lead { white-space: normal; font-size: 16px; }
}

.subline-de {
  font-style: italic;
  color: var(--bone-soft);
  font-size: clamp(16px, 1.25vw, 19px);
  animation-delay: 1.40s !important;
  margin-bottom: 44px;
}
.headline span {
  display: block;
}
.headline span:nth-of-type(1) { animation-delay: 0.55s; }
.headline span:nth-of-type(2) { animation-delay: 0.80s; }
.headline span:nth-of-type(3) { animation-delay: 1.05s; }

.subline {
  max-width: 560px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  color: var(--bone-soft);
  margin: 0 0 40px;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) 1.30s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 56px;
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 14px 4px;
  border-bottom: 1px solid var(--brass);
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) 1.70s forwards;
  transition: color 0.25s ease, border-color 0.25s ease, letter-spacing 0.25s ease;
}

.cta-ghost:hover,
.cta-ghost:focus-visible {
  color: var(--brass-hi);
  border-color: var(--brass-hi);
  letter-spacing: 0.26em;
  outline: none;
}

/* ── HERO FACTS ─────────────────────────────────────────────── */

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(28px, 4vw, 56px);
  margin: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) 1.85s forwards;
}

.hero-facts div { margin: 0; }

.hero-facts dt {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--bone-soft);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.hero-facts dd {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  margin: 0;
  color: var(--bone);
  letter-spacing: -0.01em;
  line-height: 1;
}

.hero-facts dd span {
  font-family: var(--sans);
  font-size: 0.55em;
  letter-spacing: 0.05em;
  color: var(--brass-hi);
  font-weight: 400;
  margin-left: 2px;
}

/* ── PORTRAIT ───────────────────────────────────────────────── */

.hero-portrait-frame {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  justify-self: end;
  width: 100%;
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  animation: heroPortraitIn 1.4s cubic-bezier(.2,.7,.2,1) 0.4s forwards;
}

@keyframes heroPortraitIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-portrait-frame::before {
  content: "";
  position: absolute;
  inset: -14px -14px 50% -50%;
  border: 1px solid rgba(166, 136, 74, 0.45);
  pointer-events: none;
  z-index: 0;
  max-width: 96%;
}

.hero-portrait-frame picture {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  background: #0c0c0b;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(244, 239, 230, 0.06);
}

.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.01);
  animation: portraitZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes portraitZoom {
  0%   { transform: scale(1.01); }
  100% { transform: scale(1.06); }
}

.hero-portrait-cap {
  position: absolute;
  left: -16px;
  bottom: -28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  padding: 16px 22px 16px 18px;
  border: 1px solid rgba(166, 136, 74, 0.35);
}

.cap-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--brass-hi);
}

.cap-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cap-text strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--bone);
  letter-spacing: 0.01em;
}

.cap-text em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-soft);
}

/* ── CTA ────────────────────────────────────────────────────── */

.cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: var(--brass);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--brass);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) 1.55s forwards;
  transition:
    transform 0.35s cubic-bezier(.2,.7,.2,1),
    background-color 0.35s ease,
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-3px);
  background: var(--brass-hi);
  border-color: var(--brass-hi);
  box-shadow:
    0 12px 28px rgba(166, 136, 74, 0.35),
    0 0 0 1px rgba(199, 166, 100, 0.30);
  outline: none;
}

.cta:hover svg,
.cta:focus-visible svg { transform: translateX(4px); }

.cta svg { transition: transform 0.35s cubic-bezier(.2,.7,.2,1); }

/* ── SCROLL INDICATOR ───────────────────────────────────────── */

.hero-locale {
  position: absolute;
  bottom: 36px;
  left: clamp(20px, 5vw, 64px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: rgba(28, 28, 26, 0.45);
  border: 1px solid rgba(166, 136, 74, 0.40);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 0.9s cubic-bezier(.2,.7,.2,1) 0.6s forwards;
}
.hero-locale-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brass-hi);
  box-shadow: 0 0 0 3px rgba(199, 166, 100, 0.18);
}
.hero-locale-text {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  font-weight: 500;
}
@media (max-width: 720px) {
  .hero-locale { bottom: 22px; padding: 7px 11px; }
  .hero-locale-text { font-size: 9.5px; letter-spacing: 0.22em; }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: fit-content;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--bone);
  opacity: 0;
  animation: fadeUp 1s ease 1.9s forwards;
}

.scroll-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  opacity: 0.7;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--bone) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--brass-hi);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: translateY(0);   opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(240%); opacity: 0; }
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── REDUCED MOTION ─────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .hero-portrait-frame img,
  .band-media img { animation: none; transform: scale(1.0); }
  .hero-portrait-frame { animation: none; opacity: 1; transform: none; }
  .eyebrow,
  .subline,
  .cta,
  .cta-ghost,
  .hero-facts,
  .scroll-indicator,
  .headline span {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .scroll-line::after { animation: none; opacity: 0; }
  .cta { transition: background-color 0.25s ease, box-shadow 0.25s ease; }
}

/* ── RESPONSIVE TUNING ──────────────────────────────────────── */

@media (max-width: 960px) {
  .hero { padding: 110px clamp(20px, 5vw, 40px) 80px; min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 60px);
  }
  .hero-portrait-frame {
    order: -1;
    max-width: 360px;
    justify-self: center;
  }
  .hero-portrait-frame::before { inset: -10px -10px 50% -30px; }
  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* ── Mobile Burger + Slide-Menu ─────────────────────────────── */
.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  margin-left: 14px;
  cursor: pointer;
  position: relative;
  width: 36px;
  height: 36px;
  z-index: 110;
}
.nav-burger-bar {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1.5px;
  background: var(--bone);
  transition: transform 0.35s cubic-bezier(.6,.05,.2,1),
              opacity 0.25s ease,
              top 0.35s cubic-bezier(.6,.05,.2,1);
}
.nav-burger-bar:nth-child(1) { top: 12px; }
.nav-burger-bar:nth-child(2) { top: 17px; }
.nav-burger-bar:nth-child(3) { top: 22px; }

.nav.nav-scrolled .nav-burger-bar { background: var(--bone); }

body.menu-open .nav-burger-bar { background: var(--bone); }
body.menu-open .nav-burger-bar:nth-child(1) { top: 17px; transform: rotate(45deg); }
body.menu-open .nav-burger-bar:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger-bar:nth-child(3) { top: 17px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(12, 12, 11, 0.98);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(.2,.7,.2,1),
              visibility 0.45s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 56px;
  padding: 0 32px;
  width: 100%;
  max-width: 480px;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu-links a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
  color: var(--bone);
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.005em;
  line-height: 1;
  transform: translateY(14px);
  opacity: 0;
  transition: color 0.25s ease;
}
.mobile-menu-links a:hover,
.mobile-menu-links a.is-current { color: var(--brass-hi); }
.mobile-menu-links .mm-num {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--brass);
  font-weight: 500;
  flex: 0 0 auto;
  width: 28px;
}
.mobile-menu-links .mm-label { flex: 1; }

body.menu-open .mobile-menu-links a {
  animation: mmFadeUp 0.55s cubic-bezier(.2,.7,.2,1) forwards;
}
body.menu-open .mobile-menu-links a:nth-child(1) { animation-delay: 0.10s; }
body.menu-open .mobile-menu-links a:nth-child(2) { animation-delay: 0.16s; }
body.menu-open .mobile-menu-links a:nth-child(3) { animation-delay: 0.22s; }
body.menu-open .mobile-menu-links a:nth-child(4) { animation-delay: 0.28s; }
body.menu-open .mobile-menu-links a:nth-child(5) { animation-delay: 0.34s; }

@keyframes mmFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-foot {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-soft);
  opacity: 0;
  transition: opacity 0.5s ease 0.45s;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 239, 230, 0.06);
}
body.menu-open .mobile-menu-foot { opacity: 1; }

body.menu-open { overflow: hidden; }

@media (max-width: 720px) {
  .nav { padding: 20px 24px; }
  .nav-burger { display: block; }
  .nav-lang { gap: 8px; font-size: 10.5px; }
  .nav-lang { letter-spacing: 0.18em; gap: 8px; font-size: 10.5px; }
  .nav-lang .lang-link:last-child { letter-spacing: 0.04em; padding-right: 0; }
  .hero-content { padding: 0 24px; }
  .eyebrow { font-size: 10px; letter-spacing: 0.28em; margin-bottom: 20px; }
  .headline { margin-bottom: 24px; }
  .subline { margin-bottom: 28px; }
  .hero-actions { margin-bottom: 40px; gap: 12px; }
  .cta { padding: 14px 22px; font-size: 12px; }
  .scroll-indicator { bottom: 20px; }
  .scroll-line { height: 40px; }
  .hero-facts dd { font-size: 22px; }
  .hero-portrait-cap { left: -8px; bottom: -20px; padding: 12px 18px 12px 14px; }
  .cap-text strong { font-size: 15px; }
}

@media (max-height: 620px) and (orientation: landscape) {
  .hero { min-height: 540px; }
  .headline { font-size: clamp(32px, 5vw, 56px); }
  .subline { margin-bottom: 24px; }
}

/* ──────────────────────────────────────────────────────────────
   VITA — Haura Zahid
   ────────────────────────────────────────────────────────────── */

.vita {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(72px, 9vw, 140px) clamp(20px, 5vw, 64px);
}

.vita-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.vita-portrait {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  width: 100%;
}

.vita-portrait::before {
  content: "";
  position: absolute;
  inset: -14px -50% 50% -14px;
  border: 1px solid rgba(166, 136, 74, 0.45);
  pointer-events: none;
  z-index: 0;
  max-width: 96%;
}

.vita-portrait picture {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  background: #0c0c0b;
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(244, 239, 230, 0.06);
}

.vita-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.vita-portrait figcaption {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  padding: 16px 22px;
  border: 1px solid rgba(166, 136, 74, 0.35);
  white-space: nowrap;
  max-width: calc(100% - 24px);
}

.vita-portrait .cap-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--brass-hi);
}

.vita-portrait .cap-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vita-portrait .cap-text strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--bone);
  letter-spacing: 0.01em;
}

.vita-portrait .cap-text em {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-soft);
}

.vita-body { display: flex; flex-direction: column; }

.vita-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  color: var(--bone);
}

.vita-title .light { font-weight: 300; display: block; }
.vita-title .bold  { font-weight: 500; display: block; color: var(--brass-hi); }

.vita-lead {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.75;
  color: var(--bone-soft);
  margin: 0 0 22px;
  max-width: 56ch;
}

.vita-lead strong {
  color: var(--brass-hi);
  font-weight: 500;
}

.vita-lead-secondary {
  font-size: clamp(14px, 1vw, 16px);
  color: var(--bone-soft);
  margin-bottom: 36px;
  opacity: 0.85;
}

.vita-cta { margin-top: 4px; }

.vita-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  margin: 0 0 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}

.vita-facts div { margin: 0; }

.vita-facts dt {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--bone-soft);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.vita-facts dd {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 26px);
  margin: 0;
  color: var(--bone);
  letter-spacing: -0.01em;
  line-height: 1;
}

.vita-facts dd span {
  font-family: var(--sans);
  font-size: 0.55em;
  letter-spacing: 0.05em;
  color: var(--brass-hi);
  font-weight: 400;
  margin-left: 2px;
}

.vita-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}

.vita-list li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(244, 239, 230, 0.10);
  font-size: 14px;
  line-height: 1.55;
  color: var(--bone);
}

.vita-list li:last-child {
  border-bottom: 1px solid rgba(244, 239, 230, 0.10);
}

.vita-list-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-soft);
  padding-top: 2px;
}

@media (max-width: 960px) {
  .vita-grid { grid-template-columns: 1fr; gap: 56px; }
  .vita-portrait { max-width: 360px; justify-self: start; }
  .vita-facts { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .vita-list li { grid-template-columns: 1fr; gap: 6px; }
}

/* ──────────────────────────────────────────────────────────────
   LEBENSLAUF — TEASER (Hauptseite)
   ────────────────────────────────────────────────────────────── */

.cv-teaser {
  background: #14140F;
  color: var(--bone);
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(244, 239, 230, 0.08);
}

.cv-teaser-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.cv-teaser-text { display: flex; flex-direction: column; }

.cv-teaser-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 12px 0 24px;
  color: var(--bone);
}

.cv-teaser-title .light { font-weight: 300; display: block; }
.cv-teaser-title .bold  { font-weight: 500; display: block; color: var(--brass-hi); }

.cv-teaser-lead {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
  color: var(--bone-soft);
  margin: 0 0 32px;
  max-width: 58ch;
}

.cv-teaser-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(244, 239, 230, 0.10);
  border-top: 1px solid rgba(244, 239, 230, 0.10);
  border-bottom: 1px solid rgba(244, 239, 230, 0.10);
  margin-top: 16px;
}

.cv-teaser-stats li {
  background: #14140F;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cv-teaser-stats strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  color: var(--bone);
  letter-spacing: -0.02em;
}

.cv-teaser-stats strong span {
  font-family: var(--sans);
  font-size: 0.5em;
  letter-spacing: 0.04em;
  color: var(--brass-hi);
  margin-left: 2px;
}

.cv-teaser-stats em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-soft);
}

.cv-teaser-actions {
  grid-column: 2 / 3;
  grid-row: 1;
  justify-self: end;
  align-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.cv-teaser-actions .cta {
  align-self: auto;
  opacity: 1;
  transform: none;
  animation: none;
}

@media (max-width: 860px) {
  .cv-teaser-inner { grid-template-columns: 1fr; }
  .cv-teaser-stats { grid-template-columns: repeat(2, 1fr); }
  .cv-teaser-actions {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .cv-teaser-stats { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────────
   LEBENSLAUF — UNTERSEITE-SPEZIFISCHE STYLES
   ────────────────────────────────────────────────────────────── */

body.page-cv {
  background: #14140F;
  color: var(--bone);
}

/* Solide Nav-Variante für Unterseiten (kein Hero darunter) */
.nav.nav-solid {
  background: rgba(20, 20, 15, 0.86);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

/* Damit auf Unterseiten der Content nicht hinter der fixed Nav verschwindet */
body.page-cv main,
body.page-legal main {
  padding-top: 72px;
}

.breadcrumb {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px clamp(20px, 5vw, 64px) 0;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-soft);
  display: flex;
  gap: 12px;
  align-items: center;
}

.breadcrumb a {
  color: var(--bone-soft);
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumb a:hover { color: var(--brass-hi); }

.breadcrumb [aria-current="page"] { color: var(--bone); }

/* Modifizierte cv-head auf Subpage (Headline + Lead + PDF-CTA) */
.cv-page .cv-head {
  margin-bottom: clamp(40px, 5vw, 64px);
}

.cv-page-lead {
  max-width: 60ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  color: var(--bone-soft);
  margin: 28px 0 0;
}

/* Kontakt-Strip oben auf der Subseite */
.cv-contact-strip {
  max-width: 1320px;
  margin: 0 auto clamp(56px, 6vw, 88px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(244, 239, 230, 0.10);
  border-top: 1px solid rgba(244, 239, 230, 0.10);
  border-bottom: 1px solid rgba(244, 239, 230, 0.10);
}

.cv-contact-strip > div {
  background: #14140F;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: var(--bone);
}

.cv-contact-strip > div span {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-soft);
}

.cv-contact-strip a { color: var(--bone); text-decoration: none; }
.cv-contact-strip a:hover { color: var(--brass-hi); }

@media (max-width: 860px) {
  .cv-contact-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cv-contact-strip { grid-template-columns: 1fr; }
}

/* Footer auf Subseite */
.cv-page-foot {
  max-width: 1320px;
  margin: clamp(64px, 7vw, 100px) auto 0;
  padding: 36px 0 12px;
  border-top: 1px solid rgba(244, 239, 230, 0.10);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.link-arrow-back {
  flex-direction: row;
}

.link-arrow-back svg { transform: rotate(0); }
.link-arrow-back:hover svg { transform: translateX(-4px); }

/* ──────────────────────────────────────────────────────────────
   LEGAL (Impressum / Datenschutz)
   ────────────────────────────────────────────────────────────── */

.page-legal { background: #14140F; color: var(--bone); }

.legal {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) clamp(20px, 5vw, 64px) clamp(80px, 8vw, 120px);
}

.legal-head {
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}

.legal-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin: 12px 0 24px;
}

.legal-title .light { font-weight: 300; }

.legal-lead {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.7;
  color: var(--bone-soft);
  max-width: 60ch;
  margin: 0;
}

.legal-lead a { color: var(--brass-hi); border-bottom: 1px solid rgba(199,166,100,0.4); }
.legal-lead a:hover { color: var(--bone); border-color: var(--bone); }

.legal-block {
  margin-bottom: clamp(48px, 5vw, 64px);
}

.legal-block-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--brass-hi);
  text-transform: uppercase;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.10);
  font-weight: 500;
}

.legal-sub {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--bone);
  margin: 24px 0 10px;
}

.legal-block p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--bone-soft);
  margin: 0 0 14px;
  max-width: 70ch;
}

.legal-block p strong { color: var(--bone); font-weight: 500; }

.legal-dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px 32px;
  margin: 0;
}

.legal-dl div {
  display: contents;
}

.legal-dl dt {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-soft);
  padding-top: 4px;
  margin: 0;
}

.legal-dl dd {
  font-size: 15px;
  line-height: 1.55;
  color: var(--bone);
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.06);
}

.legal-dl div:last-child dd { border-bottom: none; padding-bottom: 0; }

.legal-dl a { color: var(--bone); text-decoration: none; border-bottom: 1px solid rgba(199,166,100,0.4); }
.legal-dl a:hover { color: var(--brass-hi); }

.legal-dl .muted {
  color: var(--bone-soft);
  font-style: italic;
  font-size: 14px;
}

.legal-foot {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 32px;
  border-top: 1px solid rgba(244, 239, 230, 0.10);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.legal-foot .small { color: var(--bone-soft); margin: 0; }

.legal-foot-links { display: flex; gap: 32px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .legal-dl { grid-template-columns: 1fr; gap: 4px 0; }
  .legal-dl dt { padding-top: 16px; }
  .legal-dl dd { padding-bottom: 16px; }
}

/* ──────────────────────────────────────────────────────────────
   LEBENSLAUF
   ────────────────────────────────────────────────────────────── */

.cv {
  background: #14140F;
  color: var(--bone);
  padding: clamp(72px, 9vw, 140px) clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(244, 239, 230, 0.08);
}

.cv-head {
  max-width: 1320px;
  margin: 0 auto clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.cv-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 12px 0 0;
  color: var(--bone);
  max-width: none;
}

.cv-title .light { font-weight: 300; display: block; }
.cv-title .bold  { font-weight: 500; display: block; color: var(--brass-hi); }

.cta-small {
  padding: 13px 22px;
  font-size: 11px;
  align-self: end;
  opacity: 1;
  transform: none;
  animation: none;
}

.cv-block {
  max-width: 1320px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}

.cv-block-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--brass-hi);
  text-transform: uppercase;
  margin: 0 0 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
  font-weight: 500;
}

/* Kernkompetenzen */
.cv-skills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(244, 239, 230, 0.08);
  border-top: 1px solid rgba(244, 239, 230, 0.08);
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

.cv-skills li {
  background: #14140F;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cv-skills li strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--bone);
  letter-spacing: -0.005em;
}

.cv-skills li span {
  font-size: 13px;
  line-height: 1.6;
  color: var(--bone-soft);
}

/* Berufserfahrung Timeline */
.cv-tl {
  position: relative;
  padding-left: 28px;
}

.cv-tl::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(244, 239, 230, 0.12);
}

.cv-role {
  position: relative;
  padding: 24px 0 32px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

.cv-role:last-child { border-bottom: none; }

.cv-role::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 36px;
  width: 13px;
  height: 13px;
  background: var(--brass);
  border: 2px solid #14140F;
  outline: 1px solid rgba(166, 136, 74, 0.5);
}

.cv-role-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: baseline;
  margin-bottom: 18px;
}

.cv-role-meta {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-hi);
  margin: 0;
  padding-top: 4px;
}

.cv-role-head h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 4px;
  color: var(--bone);
  grid-column: 2;
  grid-row: 1;
}

.cv-role-mode {
  font-family: var(--sans);
  font-size: 0.62em;
  letter-spacing: 0.06em;
  color: var(--bone-soft);
  font-weight: 400;
  margin-left: 4px;
}

.cv-role-emp {
  grid-column: 2;
  grid-row: 2;
  font-size: 14px;
  color: var(--bone-soft);
  margin: 0;
  font-style: italic;
}

.cv-projects {
  list-style: none;
  margin: 0;
  padding: 0 0 0 252px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cv-projects > li { margin: 0; }

.cv-proj-head {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  align-items: baseline;
  margin-bottom: 8px;
}

.cv-proj-head strong {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--bone);
  letter-spacing: 0.005em;
}

.cv-proj-head span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-soft);
}

.cv-projects > li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cv-projects > li ul li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--bone-soft);
}

.cv-projects > li ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--brass);
}

/* Ausbildung / Sprachen / IT Bottom-Grid */
.cv-bottom {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}

.cv-bottom .cv-block { margin-bottom: 0; }

.cv-edu,
.cv-langs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cv-edu li,
.cv-langs li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

.cv-edu li:last-child,
.cv-langs li:last-child {
  border-bottom: none;
}

.cv-edu strong,
.cv-langs strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  color: var(--bone);
  letter-spacing: -0.005em;
}

.cv-edu span,
.cv-langs span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--bone-soft);
}

/* Responsive */
@media (max-width: 960px) {
  .cv-head { grid-template-columns: 1fr; align-items: start; }
  .cv-skills { grid-template-columns: 1fr; }
  .cv-role-head { grid-template-columns: 1fr; gap: 6px; }
  .cv-role-head h4,
  .cv-role-emp { grid-column: 1; grid-row: auto; }
  .cv-projects { padding-left: 0; }
  .cv-bottom { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 560px) {
  .cv-tl { padding-left: 20px; }
  .cv-role::before { left: -20px; width: 11px; height: 11px; }
  .cv-tl::before { left: 4px; }
}

/* ──────────────────────────────────────────────────────────────
   MATTERHORN-BAND (ungenutzt — bleibt für späteren Einsatz)
   ────────────────────────────────────────────────────────────── */

.band {
  position: relative;
  width: 100%;
  height: 64vh;
  min-height: 420px;
  max-height: 720px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}

.band-media { position: absolute; inset: 0; z-index: 0; }

.band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  animation: kenburns 28s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenburns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.16) translate(-2%, 1.5%); }
}

.band-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(28, 28, 26, 0.85) 0%,
      rgba(28, 28, 26, 0.30) 30%,
      rgba(28, 28, 26, 0.30) 70%,
      rgba(28, 28, 26, 0.85) 100%);
  pointer-events: none;
}

.band-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 0 clamp(20px, 5vw, 64px);
  text-align: center;
  color: var(--bone);
}

.band-eyebrow {
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--brass-hi);
  text-transform: uppercase;
  margin: 0 0 24px;
}

.band-quote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin: 0 0 18px;
  color: var(--bone);
}

.band-cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-soft);
}

@media (prefers-reduced-motion: reduce) {
  .band-media img { animation: none; transform: scale(1.04); }
}

/* ──────────────────────────────────────────────────────────────
   REFERENZEN
   ────────────────────────────────────────────────────────────── */

.refs {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(72px, 9vw, 140px) clamp(20px, 5vw, 64px);
  max-width: 1440px;
  margin: 0 auto;
}

.refs-head {
  max-width: 880px;
  margin: 0 0 clamp(48px, 6vw, 88px);
}

.eyebrow-static {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--brass-hi);
  text-transform: uppercase;
  margin: 0 0 24px;
}

.refs-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  color: var(--bone);
  max-width: 26ch;
}

.refs-title .light { font-weight: 300; display: block; }
.refs-title .bold  { font-weight: 500; display: block; color: var(--brass-hi); }

.refs-lead {
  max-width: 640px;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--bone-soft);
  margin: 0;
}

/* ── REF HERO PROJECT ───────────────────────────────────────── */

.ref-hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
  margin: 0 0 clamp(64px, 7vw, 100px);
}

.ref-hero-media {
  margin: 0;
  overflow: hidden;
  position: relative;
  background: #0f0f0e;
}

.ref-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}

.ref-hero:hover .ref-hero-media img {
  transform: scale(1.035);
}

.ref-hero-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.ref-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--brass-hi);
  text-transform: uppercase;
  margin: 0 0 18px;
  padding: 5px 10px;
  border: 1px solid rgba(199, 166, 100, 0.45);
  width: max-content;
  max-width: 100%;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  box-sizing: border-box;
}
@media (max-width: 540px) {
  .ref-tag { letter-spacing: 0.22em; font-size: 9.5px; padding: 5px 8px; }
}

.ref-hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--bone);
}

.ref-hero-sub {
  font-size: 15px;
  color: var(--bone-soft);
  margin: 0 0 28px;
  letter-spacing: 0.01em;
}

.ref-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  margin: 0 0 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}

.ref-meta div { margin: 0; }

.ref-meta dt {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--bone-soft);
  text-transform: uppercase;
  margin: 0 0 4px;
}

.ref-meta dd {
  font-size: 15px;
  margin: 0;
  color: var(--bone);
  font-weight: 500;
}

.ref-hero-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--bone-soft);
  margin: 0;
  max-width: 56ch;
}

/* ── REF FILTER ─────────────────────────────────────────────── */

.refs-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 clamp(40px, 4vw, 56px);
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

.filter-pill {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-soft);
  background: transparent;
  border: 1px solid rgba(244, 239, 230, 0.18);
  padding: 10px 18px;
  cursor: pointer;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s cubic-bezier(.2,.7,.2,1);
}

.filter-pill:hover {
  color: var(--bone);
  border-color: rgba(199, 166, 100, 0.45);
  transform: translateY(-1px);
}

.filter-pill:focus-visible {
  outline: 1px solid var(--brass-hi);
  outline-offset: 3px;
}

.filter-pill.is-active {
  color: var(--ink);
  background: var(--brass-hi);
  border-color: var(--brass-hi);
}

.filter-pill.is-active:hover {
  background: var(--brass);
  border-color: var(--brass);
}

/* Karten beim Filtern ausblenden */
.ref-card-img.is-filtered-out,
.ref-card.is-filtered-out {
  display: none !important;
}

/* Placeholder im Text-Grid bei aktivem Filter (≠ all) auch ausblenden */
.ref-grid.is-filtering .ref-card-text-placeholder {
  display: none !important;
}

/* ── REF QUAD (Referenzen einheitlich, max. 3 Spalten) ──────── */

.ref-quad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
  margin: 0 0 clamp(40px, 4vw, 64px);
}

/* Collapsible: nur erste 6 Karten (3×2) standardmäßig sichtbar */
.ref-quad:not(.is-expanded):not(.is-filtering) .ref-card-img:nth-child(n+7) {
  display: none;
}

/* Beim Ausklappen: Übergänge — Karten faden sanft ein */
.ref-quad.is-expanded .ref-card-img:nth-child(n+7) {
  animation: refCardReveal 0.6s cubic-bezier(.2,.7,.2,1) backwards;
}
.ref-quad.is-expanded .ref-card-img:nth-child(7)  { animation-delay: 0.00s; }
.ref-quad.is-expanded .ref-card-img:nth-child(8)  { animation-delay: 0.05s; }
.ref-quad.is-expanded .ref-card-img:nth-child(9)  { animation-delay: 0.10s; }
.ref-quad.is-expanded .ref-card-img:nth-child(n+10) { animation-delay: 0.15s; }

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

/* Toggle-Button-Container */
.refs-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 0 0 clamp(56px, 6vw, 88px);
}

.refs-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(199, 166, 100, 0.45);
  color: var(--brass-hi);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s cubic-bezier(.2,.7,.2,1);
}

.refs-toggle:hover,
.refs-toggle:focus-visible {
  background: rgba(199, 166, 100, 0.08);
  border-color: var(--brass-hi);
  color: var(--bone);
  transform: translateY(-1px);
  outline: none;
}

.refs-toggle svg {
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}

.refs-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* Toggle-Button bei aktivem Filter (≠ all) ausblenden */
.refs.is-filtering .refs-toggle-wrap { display: none; }

@media (max-width: 900px) { .ref-quad { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .ref-quad { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 540px) {
  .ref-card-img, .ref-card-body, .ref-card-body * { min-width: 0; }
  .ref-card-body { word-break: break-word; overflow-wrap: anywhere; }
}

/* Platzhalter-Bild (ZP-Quadrat) für Karten ohne Foto */
.ref-card-img-placeholder figure {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 0 22px;
  background: #14140F;
}

.ref-card-img-placeholder .ref-placeholder-frame {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(166,136,74,0.06) 0%, transparent 70%),
    linear-gradient(135deg, #1a1a17 0%, #232320 100%);
  border: 1px dashed rgba(166, 136, 74, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.ref-card-img-placeholder:hover .ref-placeholder-frame {
  border-color: rgba(199, 166, 100, 0.55);
}

.ref-card-img-placeholder .ref-placeholder-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 38px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bone);
  border: 1px solid var(--bone);
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  box-sizing: border-box;
}


/* Platzhalter-Karte für die 6. Referenz */
.ref-placeholder-frame {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a17 0%, #232320 100%);
  border: 1px dashed rgba(166, 136, 74, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.ref-placeholder-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 56px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bone);
  border: 1px solid var(--bone);
  padding: 10px 22px 14px;
}

.ref-placeholder-cap {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brass-hi);
}

.ref-card-placeholder { opacity: 0.85; }
.ref-card-placeholder:hover img { transform: none; }

/* Text-Grid-Platzhalter (8. Slot) */
.ref-card-text-placeholder {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(135deg, #1a1a17 0%, #232320 100%) !important;
  border: 1px dashed rgba(166, 136, 74, 0.45);
  min-height: 220px;
}

.ref-card-text-placeholder .ref-placeholder-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bone);
  border: 1px solid var(--bone);
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  box-sizing: border-box;
}

.ref-card-text-placeholder .ref-placeholder-cap {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--brass-hi);
}

/* Highlight-Pair: zwei größere Karten unter dem 3×2-Raster */
.ref-pair {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3vw, 56px);
  padding-top: clamp(32px, 4vw, 56px);
  border-top: 1px solid rgba(244, 239, 230, 0.10);
}

.ref-card-pair { display: flex; flex-direction: column; }
.ref-card-pair figure { aspect-ratio: 4 / 3; }
.ref-card-pair h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
  margin-bottom: 8px;
}
.ref-card-pair .ref-sub {
  font-size: 15px;
  margin-bottom: 16px;
}
.ref-card-pair p:last-child {
  font-size: 15px;
  line-height: 1.7;
  max-width: 56ch;
}

@media (max-width: 1100px) {
  .ref-pair { grid-template-columns: 1fr; gap: 48px; }
}

.ref-card-img {
  display: flex;
  flex-direction: column;
}

.ref-card-img figure {
  margin: 0 0 22px;
  overflow: hidden;
  position: relative;
  background: #0f0f0e;
  aspect-ratio: 16 / 9;
}

.ref-card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}

.ref-card-img:hover img { transform: scale(1.035); }

.ref-card-body { padding: 4px 0; display: flex; flex-direction: column; }

.ref-card-body .ref-tag {
  margin-bottom: 16px;
  font-size: 10px;
  padding: 5px 10px;
}

.ref-card-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 38px);
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0 0 8px;
  color: var(--bone);
}

.ref-card-body .ref-sub {
  font-size: 14px;
  color: var(--bone-soft);
  margin: 0 0 16px;
  letter-spacing: 0.005em;
}

.ref-card-body p:last-child {
  font-size: 14px;
  line-height: 1.65;
  color: var(--bone-soft);
  margin: 0;
  max-width: 56ch;
}

@media (max-width: 860px) {
  .ref-quad { grid-template-columns: 1fr; gap: 48px; }
}

/* ── REF GRID ───────────────────────────────────────────────── */

.ref-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(244, 239, 230, 0.10);
  border-top: 1px solid rgba(244, 239, 230, 0.10);
  border-bottom: 1px solid rgba(244, 239, 230, 0.10);
}

.ref-card {
  background: var(--ink);
  padding: clamp(24px, 2.4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background-color 0.4s ease;
  position: relative;
}

.ref-card:hover { background: var(--ink-soft); }

.ref-card .ref-tag {
  margin-bottom: 14px;
  font-size: 9px;
  padding: 4px 8px;
}

.ref-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 1.8vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  color: var(--bone);
}

.ref-sub {
  font-size: 13px;
  color: var(--bone-soft);
  margin: 0 0 6px;
}

.ref-card dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 14px 0 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(244, 239, 230, 0.10);
  font-size: 12px;
}

.ref-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.ref-card dt {
  color: var(--bone-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 10px;
  margin: 0;
}

.ref-card dd {
  margin: 0;
  color: var(--bone);
  font-weight: 500;
  text-align: right;
}

.ref-card > p:last-child {
  font-size: 13px;
  line-height: 1.6;
  color: var(--bone-soft);
  margin: 0;
}

/* ── REF FOOT ───────────────────────────────────────────────── */

.refs-foot {
  margin-top: clamp(48px, 5vw, 72px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(244, 239, 230, 0.10);
}

.refs-foot p {
  margin: 0;
  font-size: 13px;
  color: var(--bone-soft);
  max-width: 56ch;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-hi);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--brass);
  transition: color 0.25s ease, gap 0.3s cubic-bezier(.2,.7,.2,1);
}

.link-arrow:hover { gap: 18px; color: var(--bone); }
.link-arrow svg { transition: transform 0.3s cubic-bezier(.2,.7,.2,1); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ── REF RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1100px) {
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .ref-hero { grid-template-columns: 1fr; }
  .ref-hero-media img { min-height: 240px; }
}

@media (max-width: 560px) {
  .ref-grid { grid-template-columns: 1fr; }
  .ref-meta { grid-template-columns: 1fr; gap: 12px; }
}

/* ──────────────────────────────────────────────────────────────
   WERTE
   ────────────────────────────────────────────────────────────── */

.values {
  background: #14140F;
  color: var(--bone);
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(244, 239, 230, 0.08);
  position: relative;
  overflow: hidden;
}

/* Riesiges ZP-Wasserzeichen im Werte-Hintergrund */
.zp-watermark-large {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: clamp(360px, 46vw, 640px);
  height: clamp(360px, 46vw, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(199, 166, 100, 0.22);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transform: rotate(-2deg);
}

.zp-watermark-large .zp-watermark-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(220px, 28vw, 400px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(199, 166, 100, 0.35);
  padding-bottom: 0.08em;
}

/* Stelle sicher, dass Content vor dem Watermark liegt */
.values > .values-head,
.values > .values-grid { position: relative; z-index: 1; }

@media (max-width: 720px) {
  .zp-watermark-large {
    right: -20%;
    bottom: -8%;
    width: 360px;
    height: 360px;
  }
  .zp-watermark-large .zp-watermark-mark { font-size: 220px; }
}

.values-head {
  max-width: 1320px;
  margin: 0 auto clamp(48px, 5vw, 72px);
}

.values-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 12px 0 24px;
  color: var(--bone);
}

.values-title .light { font-weight: 300; }
.values-title .bold  { font-weight: 500; color: var(--brass-hi); }

.values-lead {
  max-width: 60ch;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--bone-soft);
  margin: 0;
}

.values-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1320px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(244, 239, 230, 0.08);
  border-top: 1px solid rgba(244, 239, 230, 0.08);
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

.value-card {
  background: #14140F;
  padding: clamp(32px, 3vw, 44px) clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background-color 0.4s ease;
}

.value-card:hover { background: #1a1a16; }

.value-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  color: rgba(199, 166, 100, 0.55);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.value-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.005em;
  color: var(--bone);
  margin: 0 0 4px;
}

.value-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--bone-soft);
}

@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

/* ──────────────────────────────────────────────────────────────
   LEISTUNGEN — 4 Pakete
   ────────────────────────────────────────────────────────────── */

.services {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 64px);
  position: relative;
}


.services-head {
  max-width: 1320px;
  margin: 0 auto clamp(56px, 6vw, 88px);
}

.services-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--brass);
  text-transform: uppercase;
  margin: 0 0 24px;
  font-weight: 500;
}

.services-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: var(--ink);
}

.services-title .light { font-weight: 300; display: block; }
.services-title .bold  { font-weight: 500; display: block; color: var(--brass); }

.services-lead {
  max-width: 60ch;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: rgba(28, 28, 26, 0.72);
  margin: 0;
}

.services-grid {
  max-width: 1320px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 2.4vw, 40px);
}

.service-card {
  cursor: pointer;
  background: #FBF8F1;
  padding: clamp(36px, 3.4vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 2vw, 36px);
  position: relative;
  border: 1px solid rgba(28, 28, 26, 0.06);

  /* Initial-Zustand: unsichtbar, leicht versetzt — wird beim Scrollen revealed */
  opacity: 0;
  transform: translateY(60px) scale(0.985);
  transition:
    opacity 0.95s cubic-bezier(.2,.7,.2,1),
    transform 0.95s cubic-bezier(.2,.7,.2,1),
    box-shadow 0.5s ease,
    border-color 0.4s ease;
}

.service-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-card:hover {
  box-shadow: 0 22px 48px rgba(28, 28, 26, 0.12);
  border-color: rgba(166, 136, 74, 0.40);
}

.service-card.is-visible:hover {
  transform: translateY(-3px) scale(1);
}

/* Hervorgehobenes Feature-Paket (Projektentwicklung) — Dark-Tile auf hellem Grund */
.service-card-feature {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--bone);

  /* Etwas dramatischer Auftritt: weiter unten, leicht stärkere Skalierung */
  transform: translateY(90px) scale(0.96);
  transition:
    opacity 1.2s cubic-bezier(.2,.7,.2,1),
    transform 1.2s cubic-bezier(.2,.7,.2,1),
    box-shadow 0.7s ease,
    border-color 0.4s ease;
}

.service-card-feature.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow:
    0 24px 56px rgba(28, 28, 26, 0.18),
    0 0 0 1px rgba(166, 136, 74, 0.18),
    0 0 0 6px rgba(166, 136, 74, 0.06);
}

.service-card-feature:hover {
  border-color: var(--brass);
}

.service-card-feature.is-visible:hover {
  transform: translateY(-3px) scale(1);
  box-shadow:
    0 28px 64px rgba(28, 28, 26, 0.30),
    0 0 0 1px rgba(199, 166, 100, 0.40),
    0 0 0 8px rgba(199, 166, 100, 0.08);
}

/* Brass-Akzent-Linie, die mit dem Feature-Card-Auftritt von links rein wischt */
.service-card-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: 0;
  background: var(--brass-hi);
  transition: width 1.4s cubic-bezier(.2,.7,.2,1) 0.4s;
  pointer-events: none;
}

.service-card-feature.is-visible::before {
  width: clamp(40px, 6vw, 90px);
}

/* Reduced-Motion: ohne Animation sofort sichtbar */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card-feature {
    opacity: 1;
    transform: none;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
  }
  .service-card-feature::before { display: none; }
}
@media (max-width: 720px) {
  .service-card-feature::before { display: none; }
}

.service-card-feature .service-num {
  color: rgba(199, 166, 100, 0.70);
}

.service-card-feature .service-body h3 { color: var(--bone); }
.service-card-feature .service-tag { color: var(--brass-hi); }
.service-card-feature .service-desc { color: var(--bone-soft); }
.service-card-feature .service-list { color: var(--bone); border-top-color: rgba(244, 239, 230, 0.15); }
.service-card-feature .service-list li::before { background: var(--brass-hi); }

.service-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 5vw, 84px);
  line-height: 0.9;
  color: rgba(166, 136, 74, 0.45);
  letter-spacing: -0.03em;
  align-self: start;
}

.service-card-feature .service-num { color: rgba(199, 166, 100, 0.70); }

.service-body { min-width: 0; }

.service-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 6px 0 8px;
}

.service-tag {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 18px;
  font-weight: 500;
}

.service-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(28, 28, 26, 0.78);
  margin: 0 0 20px;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(28, 28, 26, 0.10);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink);
}

.service-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--brass);
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .service-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 24px;
  }
  .service-num { font-size: 48px; }
}

/* ──────────────────────────────────────────────────────────────
   KONTAKT
   ────────────────────────────────────────────────────────────── */

.contact {
  background: #0f0f0d;
  color: var(--bone);
  padding: clamp(72px, 9vw, 140px) clamp(20px, 5vw, 64px) clamp(72px, 9vw, 120px);
  border-top: 1px solid rgba(244, 239, 230, 0.06);
}

.contact-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.contact-eyebrow {
  font-size: 11px;
  letter-spacing: 0.36em;
  color: var(--brass-hi);
  text-transform: uppercase;
  margin: 0 0 28px;
  font-weight: 500;
}

.contact-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin: 0 0 48px;
  max-width: 15ch;
}

.contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(199, 166, 100, 0.45);
  color: var(--brass-hi);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-block { display: flex; flex-direction: column; gap: 4px; }

.contact-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--bone-soft);
  text-transform: uppercase;
  font-weight: 500;
}

.contact-block a,
.contact-block span:not(.contact-label) {
  font-size: 15px;
  color: var(--bone);
  text-decoration: none;
}

.contact-block a:hover { color: var(--brass-hi); }

/* Form */
.contact-form {
  background: #14140F;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid rgba(244, 239, 230, 0.10);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.40);
  position: relative;
  margin-top: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  position: relative;
}

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 239, 230, 0.18);
  padding: 22px 0 10px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--bone);
  outline: none;
  transition: border-color 0.25s ease;
}

.field textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--sans);
  line-height: 1.55;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--brass-hi);
}

.field label {
  position: absolute;
  left: 0;
  top: 22px;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--bone-soft);
  text-transform: uppercase;
  pointer-events: none;
  transition: transform 0.25s ease, color 0.25s ease, font-size 0.25s ease;
  transform-origin: left top;
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-18px) scale(0.85);
  color: var(--brass-hi);
}

.form-submit {
  margin-top: 12px;
  background: var(--brass-hi);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 18px 28px;
  border: 1px solid var(--brass-hi);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.35s cubic-bezier(.2,.7,.2,1),
    box-shadow 0.4s ease;
}

.form-submit:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(166, 136, 74, 0.30);
}

.form-submit svg { transition: transform 0.3s cubic-bezier(.2,.7,.2,1); }
.form-submit:hover svg { transform: translateX(4px); }
.form-submit:disabled { opacity: 0.6; cursor: progress; }

/* Status-/Bestätigungsmeldung Kontaktformular */
.form-status {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  min-height: 1.2em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.form-status.is-pending,
.form-status.is-success,
.form-status.is-error { opacity: 1; transform: translateY(0); }
.form-status.is-pending { color: var(--bone-soft); }
.form-status.is-success {
  color: var(--brass-hi);
  border-left: 2px solid var(--brass-hi);
  padding-left: 14px;
}
.form-status.is-error {
  color: #E5A8A0;
  border-left: 2px solid #E5A8A0;
  padding-left: 14px;
}

/* ── Erfolgs-Panel mit animiertem Haken ──────────────────────── */
.contact-form[hidden], .form-success[hidden] { display: none !important; }
.form-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid rgba(199, 166, 100, 0.30);
  background: rgba(199, 166, 100, 0.05);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s cubic-bezier(.2,.7,.2,1), transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.form-success.show { opacity: 1; transform: translateY(0); }

.form-success-check {
  width: 56px;
  height: 56px;
  display: inline-flex;
}
.form-success-check svg { width: 100%; height: 100%; }
.form-success-check .fsc-ring {
  stroke: var(--brass-hi);
  stroke-width: 2;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
}
.form-success-check .fsc-tick {
  stroke: var(--brass-hi);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 44;
  stroke-dashoffset: 44;
}
.form-success.show .fsc-ring {
  animation: fscRing 0.7s cubic-bezier(.2,.7,.2,1) 0.15s forwards;
}
.form-success.show .fsc-tick {
  animation: fscTick 0.45s cubic-bezier(.2,.7,.2,1) 0.7s forwards;
}
@keyframes fscRing { to { stroke-dashoffset: 0; } }
@keyframes fscTick { to { stroke-dashoffset: 0; } }

.form-success-title {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 500;
  color: var(--bone);
  margin: 0;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: fscFade 0.6s ease 0.85s forwards;
}
.form-success-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--bone-soft);
  margin: 0;
  max-width: 42ch;
  opacity: 0;
  animation: fscFade 0.6s ease 1.0s forwards;
}
@keyframes fscFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ZP-Siegel über dem Footer — wie eine Unterschrift unter dem Brief */
.zp-seal {
  max-width: 1320px;
  margin: clamp(64px, 8vw, 120px) auto 0;
  padding: 32px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.zp-seal-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bone-soft);
  border: 1px solid rgba(199, 166, 100, 0.55);
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  box-sizing: border-box;
}

.zp-seal-line {
  display: block;
  width: 80px;
  height: 1px;
  background: rgba(199, 166, 100, 0.40);
}

.zp-seal-label {
  font-size: 10px;
  letter-spacing: 0.40em;
  text-transform: uppercase;
  color: var(--brass-hi);
}

/* Footer */
.site-foot {
  max-width: 1320px;
  margin: clamp(72px, 8vw, 120px) auto 0;
  padding: 28px 0;
  border-top: 1px solid rgba(244, 239, 230, 0.10);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-soft);
}

.site-foot a { color: var(--bone-soft); text-decoration: none; }
.site-foot a:hover { color: var(--brass-hi); }
.foot-meta { display: inline-flex; gap: 14px; }

/* ── Dunkler Footer (volle Breite, Anthrazit) ──────────────────── */
.site-foot-dark {
  max-width: none;
  margin: 0;
  background: #0f0f0d;
  color: var(--bone-soft);
  border-top: 1px solid rgba(244, 239, 230, 0.06);
  padding: 32px clamp(20px, 5vw, 64px);
}
.site-foot-dark .site-foot-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-foot-dark a { color: var(--bone-soft); text-decoration: none; transition: color 0.25s ease; }
.site-foot-dark a:hover { color: var(--brass-hi); }
.site-foot-dark .foot-brand { color: var(--bone); }

.foot-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(244, 239, 230, 0.45);
  text-transform: none;
  letter-spacing: 0.08em;
  font-size: 11.5px;
}
.foot-credit a {
  color: rgba(244, 239, 230, 0.72) !important;
  border-bottom: 1px solid rgba(166, 136, 74, 0.45);
  padding-bottom: 1px;
}
.foot-credit a:hover { color: var(--brass-hi) !important; }
.foot-heart {
  color: var(--brass-hi);
  font-size: 11px;
  display: inline-block;
  animation: footPulse 2.4s ease-in-out infinite;
}
@keyframes footPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.18); opacity: 1; }
}

@media (max-width: 540px) {
  .site-foot-dark .site-foot-inner { flex-direction: column; gap: 14px; font-size: 11px; letter-spacing: 0.16em; }
  .foot-credit { letter-spacing: 0.06em; }
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-title { margin-bottom: 36px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contact-info li { align-items: flex-start; }
  .contact-icon { width: 40px; height: 40px; }
}

