/* =============================================
   bipulse.studio — Child Theme CSS
   Prinzip: NUR Layout, Animationen, CSS-Variablen.
   Elementor Kit steuert Farben + Typografie.
   !important nur für strukturelle Ausnahmen.
   ============================================= */

/* ── CSS DESIGN TOKENS ───────────────────────────────────────── */
:root {
  --paper:  #f4f2ef;
  --sand:   #ede9e3;
  --ink:    #1d1d1b;
  --grey:   #7a7570;
  --subtle: #b0aba6;
  --amber:  #c87941;
  --petrol: #1e4a50;
  --border: rgba(29,29,27,0.1);
  --font:   "Avenir Next","Avenir",-apple-system,BlinkMacSystemFont,"Segoe UI",system-ui,sans-serif;
  --r:      1.25rem;

  /* Elementor Kit Farben synchronisieren */
  --e-global-color-primary:   #c87941;
  --e-global-color-secondary: #1e4a50;
  --e-global-color-text:      #1d1d1b;
  --e-global-color-accent:    #f4f2ef;
}

/* ── HELLO ELEMENTOR THEME-DEFAULTS ENTFERNEN ────────────────── */
/* !important nur hier — strukturell notwendig */
header#site-header,
.site-header,
header.site-header,
.header-widget-area,
.site-branding {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
}
footer#site-footer,
.site-footer,
footer.site-footer {
  display: none !important;
  height: 0 !important;
}
.page-header,
.entry-header  { display: none !important; }
.page-content  { padding: 0; }
.entry-content { margin: 0; }

/* ── BASIS ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--paper); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ── CUSTOM CURSOR ───────────────────────────────────────────── */
#cur {
  position: fixed; width: 8px; height: 8px;
  background: var(--ink); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
  mix-blend-mode: multiply;
}
#cur-r {
  position: fixed; width: 34px; height: 34px;
  border: 1px solid rgba(29,29,27,.28); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .3s, height .3s;
}
@media (max-width: 960px) { #cur, #cur-r { display: none; } }

/* ── NAV ─────────────────────────────────────────────────────── */
nav#nav {
  position: fixed; top: 0; left: 0; right: 0; bottom: auto;
  z-index: 1000; padding: 0;
  transition: background .4s;
}
.admin-bar nav#nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar nav#nav { top: 46px; } }

nav#nav.bg {
  background: rgba(244,242,239,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-i {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; max-width: 1440px; margin: 0 auto; padding: 0 4rem;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; display: block; }
nav#nav:not(.bg) .nav-logo img[src$=".svg"] { filter: brightness(0) invert(1); }
nav#nav.bg     .nav-logo img { filter: none; }

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,.72);
  font-size: .9rem; font-weight: 500; transition: color .3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1.5px; background: currentColor; transition: width .25s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
nav#nav.bg .nav-links a { color: var(--ink); opacity: .65; }
nav#nav.bg .nav-links a:hover { opacity: 1; }

.nav-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--amber); color: #fff;
  padding: .5rem .5rem .5rem 1.25rem;
  border-radius: 2rem; font-size: .875rem; font-weight: 500;
  text-decoration: none; transition: background .25s;
}
.nav-btn:hover { background: #b56332; }
.nav-btn .arr {
  width: 26px; height: 26px; background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber); font-size: .78rem;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.nav-btn:hover .arr { transform: rotate(-45deg); }

/* ── HAMBURGER + MOBILE NAV ──────────────────────────────────── */
.nav-ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 200;
}
.nav-ham span {
  display: block; width: 24px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
nav#nav.bg  .nav-ham { color: var(--ink); }
nav#nav:not(.bg) .nav-ham { color: #fff; }

.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: var(--paper); z-index: 150;
  flex-direction: column; justify-content: center;
  align-items: center; gap: 2.5rem; padding: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.nav-mobile ul a {
  font-size: 2rem; font-weight: 700; color: var(--ink);
  text-decoration: none; letter-spacing: -.03em; transition: color .2s;
}
.nav-mobile ul a:hover { color: var(--amber); }

/* ── LAYOUT HELPER ───────────────────────────────────────────── */
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 4rem; }
@media (max-width: 960px) { .wrap { padding: 0 1.5rem; } }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.rv { opacity: 0; transform: translateY(36px); transition: opacity .72s ease, transform .72s ease; }
.rv.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── SHARED BUTTON CLASSES (für HTML-Widgets) ────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--amber); color: #fff;
  padding: .5rem .5rem .5rem 1.35rem;
  border-radius: 2rem; font-size: .875rem; font-weight: 500;
  text-decoration: none; transition: background .25s; white-space: nowrap;
}
.pill:hover { background: #b56332; }
.pill .arr {
  width: 28px; height: 28px; background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber); font-size: .8rem; flex-shrink: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.pill:hover .arr { transform: rotate(-45deg); }

.pill-out {
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1px solid var(--border); color: var(--ink);
  padding: .5rem .5rem .5rem 1.35rem;
  border-radius: 2rem; font-size: .875rem; font-weight: 500;
  text-decoration: none; transition: border-color .2s, background .2s, color .2s;
}
.pill-out:hover { border-color: var(--amber); background: var(--amber); color: #fff; }

.pill-white {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #fff; color: var(--ink);
  padding: .5rem .5rem .5rem 1.35rem;
  border-radius: 2rem; font-size: .875rem; font-weight: 500;
  text-decoration: none; transition: opacity .25s;
}
.pill-white:hover { opacity: .88; }
.pill-white .arr {
  width: 28px; height: 28px; background: var(--amber); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .8rem; flex-shrink: 0;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.pill-white:hover .arr { transform: rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100svh; min-height: 640px;
  overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; will-change: transform; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(8,8,6,.82) 0%,rgba(8,8,6,.2) 50%,transparent 75%);
}
.hero-body {
  position: relative; z-index: 1;
  max-width: 1440px; margin: 0 auto; width: 100%;
  padding: 0 4rem 3rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 3rem;
}
.hero-eyebrow { font-size: 1rem; letter-spacing: .01em; color: var(--amber); margin-bottom: .8rem; font-weight: 600; }
.hero-h1 { font-size: clamp(5rem,10vw,11rem); font-weight: 700; color: #fff; line-height: .9; letter-spacing: -.04em; }
.hero-right { max-width: 340px; text-align: right; flex-shrink: 0; padding-bottom: .5rem; }
.hero-right p { font-size: 1.25rem; font-weight: 700; color: #fff; line-height: 1.35; }
.hero-right span { display: block; font-size: .9rem; color: rgba(255,255,255,.5); margin-top: .85rem; line-height: 1.6; }
.hero-tags {
  position: relative; z-index: 1;
  max-width: 1440px; margin: 0 auto; width: 100%;
  padding: 2.5rem 4rem 3.5rem;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem;
}
.hero-tag { display: flex; flex-direction: column; gap: .4rem; }
.hero-tag-num { color: var(--amber); font-size: .8rem; font-weight: 600; letter-spacing: .02em; }
.hero-tag-name { color: #fff; font-size: 1.05rem; font-weight: 600; letter-spacing: -.01em; }

/* ── TICKER ──────────────────────────────────────────────────── */
.ticker { background: var(--sand); border-bottom: 1px solid var(--border); overflow: hidden; }
.ticker-inner {
  display: flex; align-items: center;
  max-width: 1440px; margin: 0 auto; padding: 1.15rem 4rem; overflow: hidden;
}
.ticker-label {
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--grey); white-space: nowrap; margin-right: 3rem; flex-shrink: 0;
}
.ticker-scroll { overflow: hidden; flex: 1; min-width: 0; }
.ticker-track { display: flex; gap: 4.5rem; align-items: center; animation: tick 24s linear infinite; width: max-content; }
.ticker-track img { height: 24px; width: auto; filter: grayscale(1); opacity: .42; flex-shrink: 0; }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── GEMEINSAME SECTION-KLASSEN (für HTML-Widget-Inhalte) ────── */
.eyebrow { font-size: 1.875rem; letter-spacing: .01em; color: var(--amber); margin-bottom: 1rem; font-weight: 600; }
.h2 { font-size: clamp(2.8rem,3.5vw,4.8rem); font-weight: 700; line-height: 1; letter-spacing: -.035em; }
.body-lg { font-size: 1rem; color: var(--grey); line-height: 1.72; }

/* ── BILD-CLASSES ────────────────────────────────────────────── */
.bimg { width: 100%; height: 500px; object-fit: cover; border-radius: var(--r); display: block; transition: transform .65s ease; }
.bimg:hover { transform: scale(1.025); }
.proj-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r); display: block; transition: transform .65s ease; }
.proj-img:hover { transform: scale(1.02); }
.specialize-img { width: 100%; height: 420px; object-fit: cover; border-radius: 1.25rem; display: block; transition: transform .6s ease; }
.specialize-img:hover { transform: scale(1.02); }
.about-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r); display: block; object-position: 50% 15%; }

/* ── WAS WIR MACHEN ──────────────────────────────────────────── */
.behind-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start; margin-bottom: 4.5rem;
}
.behind-head-r { display: flex; flex-direction: column; align-items: flex-end; gap: 1.5rem; padding-top: 3.5rem; }
.behind-imgs { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

/* ── PROJEKTE ────────────────────────────────────────────────── */
.proj-head { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 7rem; }
.proj-row { display: grid; grid-template-columns: 3fr 2fr; gap: 3rem; align-items: stretch; margin-bottom: 7rem; }
.proj-row.flip { grid-template-columns: 2fr 3fr; }
.proj-row.flip .proj-img { order: 2; }
.proj-row.flip .proj-info { order: 1; }
.proj-info { display: flex; flex-direction: column; gap: 1rem; justify-content: flex-end; }
.proj-line { width: 44px; height: 2px; background: var(--amber); margin-bottom: .25rem; }
.proj-title { font-size: clamp(1.6rem,2.8vw,2.4rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.1; }
.proj-desc { font-size: .92rem; color: var(--grey); line-height: 1.7; max-width: 320px; }
.proj-btn {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .88rem; color: var(--ink); text-decoration: none;
  border: 1px solid var(--border); padding: .55rem .55rem .55rem 1.3rem;
  border-radius: 2rem; transition: all .2s; align-self: flex-start; margin-top: .5rem;
}
.proj-btn:hover { background: var(--amber); border-color: var(--amber); color: #fff; }
.proj-btn .arr {
  width: 26px; height: 26px; background: var(--amber); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .75rem;
  transition: background .2s, color .2s, transform .3s cubic-bezier(.34,1.56,.64,1);
}
.proj-btn:hover .arr { background: #fff; color: var(--amber); transform: rotate(-45deg); }

/* ── BENTO GRID (Wie wir arbeiten) ───────────────────────────── */
/* !important hier notwendig: Elementor überschreibt display */
.acard-grid {
  display: grid !important;
  grid-template-columns: repeat(5,1fr) !important;
  grid-template-rows: 380px 320px !important;
  gap: 1.25rem !important;
}
.acard-grid .acard:nth-child(1) { grid-column: 1/4; }
.acard-grid .acard:nth-child(2) { grid-column: 4/6; }
.acard-grid .acard:nth-child(3) { grid-column: 1/3; }
.acard-grid .acard:nth-child(4) { grid-column: 3/6; }
.acard {
  border-radius: var(--r); overflow: hidden; position: relative;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2.25rem;
}
.acard-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.acard-grad { position: absolute; inset: 0; background: linear-gradient(to top,rgba(8,8,6,.78) 0%,transparent 60%); }
.acard.amber-solid { background: var(--amber); }
.acard.sand-solid  { background: var(--sand); }
.acard-content { position: relative; z-index: 1; display: flex; flex-direction: column; gap: .5rem; }
.acard-line { width: 40px; height: 2px; background: var(--amber); margin-bottom: .3rem; }
.acard-title { font-size: 1.25rem; font-weight: 700; color: #fff; letter-spacing: -.015em; line-height: 1.2; }
.acard.amber-solid .acard-title,
.acard.sand-solid  .acard-title { color: var(--ink); }
.acard-desc { font-size: .85rem; color: rgba(255,255,255,.62); line-height: 1.6; }
.acard.amber-solid .acard-desc { color: rgba(29,29,27,.65); }
.acard.sand-solid  .acard-desc { color: var(--grey); }

/* ── LEISTUNGEN ──────────────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.svc-card {
  background: var(--sand); border: 1px solid var(--border);
  border-radius: var(--r); padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: .75rem; transition: transform .3s;
}
.svc-card:hover { transform: translateY(-4px); }
.svc-line { width: 100%; height: 2px; background: var(--amber); margin-bottom: .5rem; }
.svc-tag { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--amber); }
.svc-name { font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; margin-top: .25rem; }
.svc-desc { font-size: .88rem; color: var(--grey); line-height: 1.7; margin-top: .25rem; }

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner { position: relative; overflow: hidden; width: 100%; }
.cta-banner-img { width: 100%; height: 680px; object-fit: cover; object-position: 50% 30%; display: block; }
.cta-overlay {
  position: absolute; inset: 0; background: rgba(8,8,6,.52);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: 1.25rem; padding: 3rem;
}
.cta-title { font-size: clamp(2.75rem,6vw,5.5rem); font-weight: 700; color: #fff; letter-spacing: -.04em; line-height: 1; }
.cta-sub { font-size: .95rem; color: rgba(255,255,255,.48); max-width: 380px; line-height: 1.68; }

/* ── DISZIPLINEN ──────────────────────────────────────────────── */
.specialize-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: .75rem; margin-bottom: 4rem; }
.specialize-imgs { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

/* ── PROCESS ─────────────────────────────────────────────────── */
.plist { display: flex; flex-direction: column; gap: .75rem; }
.prow {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.75rem 2rem 1.75rem 1.75rem; border-radius: 1.25rem;
  border-left: 3px solid var(--amber);
}
.prow:nth-child(even) { background: #fff; box-shadow: 0 2px 24px rgba(29,29,27,.06); }
.prow-left { display: flex; align-items: center; gap: 1.75rem; }
.prow-num { font-size: clamp(2.5rem,4vw,3.75rem); font-weight: 700; color: var(--ink); letter-spacing: -.05em; line-height: 1; min-width: 80px; }
.prow-name { font-size: 1.05rem; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.prow-desc { font-size: .88rem; color: var(--grey); line-height: 1.65; text-align: right; max-width: 42%; }

/* ── GALLERY / STUDIO-EINBLICKE ──────────────────────────────── */
.g3d { display: flex; align-items: center; justify-content: center; gap: 1rem; overflow: hidden; margin-bottom: 4rem; perspective: 1200px; }
.g3d-track { display: flex; gap: 1.1rem; align-items: center; transform: rotateX(5deg) rotateY(-4deg); transform-style: preserve-3d; }
.gitem { flex-shrink: 0; width: 210px; border-radius: 1rem; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.2); transition: transform .4s; }
.gitem:nth-child(odd)  { transform: translateY(-18px); }
.gitem:nth-child(even) { transform: translateY(18px); }
.gitem:hover { transform: scale(1.05) translateY(-8px); }
.gitem img { width: 100%; height: 272px; object-fit: cover; display: block; }
.ptags { display: flex; gap: .9rem; flex-wrap: wrap; justify-content: center; }
.ptag {
  display: flex; align-items: center; gap: .6rem;
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--grey); border: 1px solid var(--border); padding: .5rem 1.1rem; border-radius: 2rem;
}
.ptag .pn { color: var(--amber); }

/* ── HALTUNG (DARK SECTION) ──────────────────────────────────── */
.values { position: relative; overflow: hidden; margin: 0; }
.values-img { width: 100%; height: 700px; object-fit: cover; object-position: center 30%; display: block; }
.values-overlay { position: absolute; inset: 0; background: rgba(8,8,6,.62); }
.values-body {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: space-between;
  max-width: 1440px; margin: 0 auto; left: 50%; transform: translateX(-50%);
  width: 100%; padding: 5.5rem 3rem;
}
.values-mid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.values-right-text { font-size: 1.2rem; color: rgba(255,255,255,.7); line-height: 1.65; padding-top: 1rem; font-weight: 500; }
.vcards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.vcard {
  background: rgba(255,255,255,.07); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 1.1rem;
  padding: 1.75rem; display: flex; flex-direction: column; gap: .75rem;
}
.vcard-label { font-size: .95rem; font-weight: 700; color: #fff; }
.vcard-text { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.65; }

/* ── DAS STUDIO ──────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-text { display: flex; flex-direction: column; gap: 1.25rem; }
.about-tagline { font-size: 1.05rem; color: var(--grey); font-style: italic; margin-top: -.35rem; }

/* ── MEHR ARBEITEN (CAROUSEL) ────────────────────────────────── */
.more-projects { padding: 8rem 0 0; background: #fff; }
.carousel-outer { overflow: hidden; width: 100%; }
.carousel-track { display: flex; gap: 1.25rem; padding: 0 4rem; transition: transform .55s cubic-bezier(.25,.1,.25,1); }
.citem { flex-shrink: 0; width: calc(25vw - 1rem); border-radius: 1.25rem; overflow: hidden; position: relative; }
.citem img { width: 100%; height: 520px; object-fit: cover; display: block; transition: transform .5s ease; }
.citem:hover img { transform: scale(1.04); }
.citem-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(to top,rgba(0,0,0,.72) 0%,transparent 100%);
  opacity: 0; transition: opacity .35s ease; display: flex; flex-direction: column; gap: .35rem;
}
.citem-label::before { content: ''; display: block; width: 2.25rem; height: 2px; background: var(--amber); margin-bottom: .35rem; }
.citem-label h4 { color: #fff; font-size: 1.1rem; font-weight: 700; letter-spacing: -.02em; margin: 0; }
.citem-label p  { color: rgba(255,255,255,.65); font-size: .8rem; margin: 0; }
.citem:hover .citem-label { opacity: 1; }
.carousel-nav { display: flex; gap: .75rem; padding: 2.5rem 4rem 6rem; }
.cnav-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: transparent; cursor: pointer; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; color: var(--ink); transition: all .2s;
}
.cnav-btn:hover { background: var(--amber); border-color: var(--amber); color: #fff; transform: scale(1.08); }

/* ── LEISTUNGEN BILDKARTEN ───────────────────────────────────── */
.svc-img-row { display: flex; gap: 1.25rem; overflow: hidden; }
.svc-img-card { flex: 1; border-radius: 1.25rem; overflow: hidden; position: relative; min-height: 520px; cursor: pointer; }
.svc-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.svc-img-card:hover img { transform: scale(1.04); }
.svc-img-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem 1.75rem;
  background: linear-gradient(to top,rgba(0,0,0,.75) 0%,transparent 100%);
  opacity: 0; transition: opacity .35s ease; display: flex; flex-direction: column; gap: .35rem;
}
.svc-img-card-label::before { content: ''; display: block; width: 2.25rem; height: 2px; background: var(--amber); margin-bottom: .35rem; }
.svc-img-card-label h4 { color: #fff; font-size: 1.2rem; font-weight: 700; margin: 0; }
.svc-img-card-label p  { color: rgba(255,255,255,.65); font-size: .82rem; margin: 0; }
.svc-img-card:hover .svc-img-card-label { opacity: 1; }

/* ── LEISTUNGSPAKETE (PRICING) ───────────────────────────────── */
.pcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.pcard {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 1.5rem; padding: 2.5rem; position: relative; display: flex; flex-direction: column;
}
.pcard.feat { background: var(--petrol); border-color: transparent; }
.pbadge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: #fff; font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .38rem 1.1rem; border-radius: 2rem; white-space: nowrap;
}
.plabel { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); margin-bottom: .75rem; }
.pcard.feat .plabel { color: rgba(255,255,255,.38); }
.pamount { font-size: 2.5rem; font-weight: 700; letter-spacing: -.05em; line-height: 1; }
.pcard.feat .pamount { color: #fff; }
.ptagline { font-size: .88rem; color: var(--grey); margin-top: .5rem; margin-bottom: 1.5rem; }
.pcard.feat .ptagline { color: rgba(255,255,255,.4); }
.pfeats { list-style: none; display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; flex: 1; }
.pfeats li { font-size: .9rem; color: var(--grey); display: flex; align-items: center; gap: .75rem; }
.pcard.feat .pfeats li { color: rgba(255,255,255,.6); }
.pfeats li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
.pbtn {
  display: block; text-align: center; padding: .85rem; border-radius: 2rem;
  font-size: .9rem; text-decoration: none; border: 1px solid var(--border);
  color: var(--ink); font-weight: 500; transition: all .2s;
}
.pbtn:hover { background: var(--amber); border-color: var(--amber); color: #fff; }
.pcard.feat .pbtn { background: var(--paper); color: var(--petrol); border-color: transparent; font-weight: 700; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.faq-left { display: flex; flex-direction: column; gap: 1.5rem; }
.faq-desc { font-size: .9rem; color: var(--grey); line-height: 1.7; max-width: 340px; }
.faq-contact {
  display: inline-flex; align-items: center; gap: .65rem;
  border: 1px solid var(--border); color: var(--ink);
  padding: .55rem .55rem .55rem 1.5rem; border-radius: 2rem;
  font-size: .88rem; text-decoration: none; transition: all .2s; font-weight: 500;
}
.faq-contact:hover { background: var(--amber); border-color: var(--amber); color: #fff; }
.fitem {
  background: #fff; border-radius: 1.25rem; overflow: hidden;
  border: 1px solid var(--border); transition: box-shadow .25s, border-color .25s;
  margin-bottom: .75rem;
}
.fitem.open { border-color: var(--amber); }
.fbtn {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; padding: 1.5rem 1.75rem;
  display: flex; align-items: center; font-size: .95rem;
  color: var(--ink); gap: 1.25rem; line-height: 1.4; font-weight: 500;
}
.ficon {
  width: 26px; height: 26px; border: 1px solid var(--border); border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--grey); transition: transform .3s, background .2s, border-color .2s, color .2s;
}
.fitem.open .ficon { transform: rotate(45deg); background: var(--amber); border-color: var(--amber); color: #fff; }
.fans {
  max-height: 0; overflow: hidden; transition: max-height .42s ease, padding .42s ease;
  font-size: .88rem; color: var(--grey); line-height: 1.72;
  padding: 0 1.75rem 0 calc(1.75rem + 26px + 1.25rem);
}
.fitem.open .fans { max-height: 200px; padding: 0 1.75rem 1.5rem calc(1.75rem + 26px + 1.25rem); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: #0a0a08; padding: 5.5rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo { display: block; margin-bottom: 1.25rem; }
.footer-logo img { height: 40px; width: auto; display: block; }
.footer-tagline-bold { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.4); line-height: 1.72; max-width: 340px; margin-bottom: 1.75rem; }
.fcol h5 { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--amber); margin-bottom: 1.25rem; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.fcol a { text-decoration: none; color: rgba(255,255,255,.55); font-size: .9rem; transition: color .2s; }
.fcol a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem; color: rgba(255,255,255,.25);
}

/* ── PROJEKT CPT — SINGLE ────────────────────────────────────── */
.projekt-single { padding-top: 80px; }
.proj-meta-bar { background: var(--sand); border-bottom: 1px solid var(--border); padding: .9rem 0; }
.proj-meta-wrap { max-width: 1440px; margin: 0 auto; padding: 0 4rem; display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; font-size: .85rem; }
.proj-meta-year { font-weight: 700; color: var(--amber); }
.proj-meta-sep  { color: var(--subtle); }
.proj-meta-item { display: flex; align-items: center; gap: .5rem; color: var(--ink); }
.proj-meta-label { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--grey); }
.proj-ext-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--amber); color: #fff; padding: .4rem 1rem .4rem 1.1rem;
  border-radius: 2rem; font-size: .82rem; font-weight: 500; text-decoration: none; transition: background .2s;
}
.proj-ext-btn:hover { background: #b56332; }
.proj-title-section { padding: 5rem 0 3rem; }
.proj-h1 { font-size: clamp(3rem,6vw,6rem); font-weight: 700; letter-spacing: -.04em; line-height: .95; color: var(--ink); margin-bottom: 1.5rem; }
.proj-intro { font-size: 1.1rem; color: var(--grey); line-height: 1.72; max-width: 640px; }
.proj-hero-img-wrap { width: 100%; margin-bottom: 6rem; }
.proj-hero-img-wrap img { width: 100%; height: 60vh; min-height: 400px; object-fit: cover; display: block; }
.proj-content { padding: 0 0 8rem; }
.proj-content-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem; border-top: 1px solid var(--border); padding-top: 4rem; }
.proj-section { display: flex; flex-direction: column; gap: 1rem; }
.proj-section-label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); font-weight: 600; }
.proj-section-text { font-size: .95rem; color: var(--grey); line-height: 1.78; }
.proj-more-cta { padding: 8rem 0; background: var(--sand); border-top: 1px solid var(--border); }

/* ── PROJEKTE ARCHIV ─────────────────────────────────────────── */
.projekte-archiv-head { padding: 12rem 0 5rem; border-bottom: 1px solid var(--border); }
.projekte-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 3rem 2.5rem; }
.projekt-card { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); gap: 1.25rem; }
.projekt-card-img { width: 100%; aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden; position: relative; }
.projekt-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .65s ease; }
.projekt-card:hover .projekt-card-img img { transform: scale(1.04); }
.projekt-card-overlay { position: absolute; inset: 0; background: rgba(8,8,6,.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.projekt-card:hover .projekt-card-overlay { opacity: 1; }
.projekt-card-cta { color: #fff; font-size: 1rem; font-weight: 600; }
.projekt-card-meta { display: flex; align-items: center; gap: .75rem; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--grey); }
.projekt-card-kat { color: var(--amber); }
.projekt-card-title { font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.1; color: var(--ink); transition: color .2s; }
.projekt-card:hover .projekt-card-title { color: var(--amber); }
.projekt-card-kunde { font-size: .9rem; color: var(--grey); }
@media (min-width: 1200px) { .projekte-grid { grid-template-columns: repeat(3,1fr); } }

/* ── SCROLL-TO-TOP ───────────────────────────────────────────── */
#bp-scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px; background: var(--amber); color: #fff;
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; z-index: 9990; opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
  box-shadow: 0 4px 16px rgba(200,121,65,.35);
}
#bp-scroll-top.visible { opacity: 1; transform: translateY(0); }
#bp-scroll-top:hover { background: #b56332; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links, .nav-btn { display: none; }
  .nav-ham { display: flex; }
  .nav-i { padding: 0 1.5rem; }
  .hero-body { padding: 0 1.5rem 2rem; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .hero-h1 { font-size: clamp(3.5rem,12vw,6rem); }
  .hero-right { max-width: 100%; text-align: left; }
  .hero-tags { padding: 1.5rem 1.5rem 2.5rem; grid-template-columns: repeat(2,1fr); }
  .behind-head, .proj-head, .about-grid, .footer-grid,
  .values-mid { grid-template-columns: 1fr; }
  .behind-imgs, .svc-grid, .vcards, .pcards,
  .specialize-imgs { grid-template-columns: 1fr; }
  .proj-row, .proj-row.flip { grid-template-columns: 1fr; }
  .proj-row.flip .proj-img, .proj-row.flip .proj-info { order: unset; }
  .acard-grid { grid-template-columns: 1fr !important; grid-template-rows: auto !important; }
  .acard-grid .acard:nth-child(n) { grid-column: 1 !important; min-height: 260px; }
  .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .prow { flex-direction: column; align-items: flex-start; gap: .6rem; padding: 1.25rem; }
  .prow-desc { text-align: left; max-width: 100%; }
  .svc-img-row { flex-direction: column; }
  .citem { width: calc(72vw - 1rem); }
  .carousel-track, .carousel-nav { padding-left: 1.5rem; padding-right: 1.5rem; }
  .g3d { perspective: none; overflow-x: auto; justify-content: flex-start; }
  .g3d-track { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .proj-content-grid { grid-template-columns: 1fr; }
  .projekte-grid { grid-template-columns: 1fr; }
}
