/* ===== A-ZED · OVERRIDES v2 (Konzept-/Rechnung-Stil) =====
   - Display-Schrift: Space Grotesk (wie "PROJEKTNAME" im Konzept)
   - Body: Barlow (unverändert)
   - Gold-Akzent mittlerer Intensität: auch CTAs
   - UX: Sticky-Header w/ Scroll-Progress, Mobile-Polish, Fokus-Ringe, Testimonials, Form-Polish
   - 2 Stil-Varianten: body[data-style="editorial"] (streng) | body[data-style="lively"] (lebendig)
============================================================ */

:root{
  --font-display: 'DM Sans', 'Space Grotesk', 'Barlow', sans-serif;
  --font-body:    'Barlow', 'Inter', system-ui, sans-serif;

  --gold:        #c09030;
  --gold-light:  #d4a854;
  --gold-dark:   #8a6720;
  --gold-glow:   rgba(192,144,48,.18);
  --gold-border: rgba(192,144,48,.45);
  --gold-faint:  rgba(192,144,48,.08);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Typography reset to Konzept feel ---------- */
body{ font-family: var(--font-body); font-weight: 300; letter-spacing: .005em; }

h1,h2,h3,h4,
.hero-title,.section-title,.about-title,
.cover-headline,.pricing-card .pc-name{
  font-family: var(--font-display) !important;
  font-weight: 500;
}
.section-title{ letter-spacing: -.005em; font-weight: 500; }

/* ---------- Focus rings (Accessibility) ---------- */
:where(a,button,input,select,textarea,[tabindex]):focus-visible{
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Scroll-Progress (top bar) ---------- */
#scrollProgress{
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1000;
  transition: width .12s linear;
  pointer-events: none;
}

/* ---------- Nav: sticky, blur, Touch-Größen ---------- */
#nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(10,10,10,.0);
  backdrop-filter: blur(0px);
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), padding .25s var(--ease), border-color .35s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled{
  background: rgba(10,10,10,.78);
  backdrop-filter: saturate(140%) blur(14px);
  padding: .7rem 2.5rem;
  border-bottom-color: rgba(255,255,255,.06);
}
.nav-logo-img{ height: 30px; filter: brightness(0) invert(1) !important; transition: opacity .2s; }
.nav-logo:hover .nav-logo-img{ opacity: .8; }

.nav-links{ gap: 2.2rem; }
.nav-links a{
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(245,244,240,.78); padding: .35rem 0;
}
.nav-links a:hover{ color: #fff; }
.nav-links a::after{ background: var(--gold) !important; height: 1px; bottom: -2px; }
.nav-links a:hover::after{ width: 100%; }

.nav-right{ display:flex; align-items:center; gap: 1.1rem; }

/* CTA: in der Nav – Gold-Outline (gleiches Gold wie der Rest) */
.nav-cta{
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  background: transparent;
  padding: .65rem 1.3rem !important;
  font-size: .7rem !important;
  letter-spacing: .22em !important;
  font-weight: 500;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease) !important;
}
.nav-cta:hover{
  background: var(--gold) !important;
  color: #0a0a0a !important;
  border-color: var(--gold) !important;
  box-shadow: 0 6px 30px var(--gold-glow);
}

.top-controls{
  position: fixed; top: 1.1rem; right: 2.5rem;
  z-index: 101;
  display: flex; align-items: center; gap: .6rem;
}
.lang-toggle{
  background: #fff; border: 1px solid #fff;
  color: #0a0a0a;
  padding: .45rem .7rem; font-size: .68rem; letter-spacing: .15em; cursor: pointer;
  min-width: 44px; min-height: 36px; font-weight: 600;
  transition: all .2s;
}
.lang-toggle:hover{ background: var(--gold); border-color: var(--gold); color: #0a0a0a; }

/* ---------- Burger – nur Mobile, sichtbar auf Gold-Dreieck ---------- */
.nav-burger{
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  position: relative;
}
.nav-burger span{
  position: absolute; left: 10px; right: 10px;
  height: 2px; background: #0a0a0a; transition: transform .3s var(--ease), opacity .25s;
}
.nav-burger span:nth-child(1){ top: 16px; }
.nav-burger span:nth-child(2){ top: 26px; }
body.menu-open .nav-burger span:nth-child(1){ transform: translateY(5px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2){ transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 880px){
  #nav{ padding: .9rem 1.25rem; }
  #nav.scrolled{ padding: .65rem 1.25rem; }
  .top-controls{ top: .9rem; right: 1.25rem; }
  .nav-burger{ display: inline-flex; }
}

/* ---------- Mobile Menu Polish ---------- */
.mobile-menu{
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(20px);
  gap: 1.6rem !important;
  padding: 5.5rem 2rem 4rem;
  /* ===== MOBILE MENU FIXES ===== */
  z-index: 500 !important;        /* above fixed footer (z:300) */
  overflow-y: auto;               /* scrollable if content overflows */
  justify-content: flex-start !important; /* items from top, not centered */
  -webkit-overflow-scrolling: touch;
}
.mobile-menu a{
  font-family: var(--font-display) !important;
  font-size: 2.2rem !important;
  font-weight: 400;
  letter-spacing: .04em;
  color: #fff;
  padding: .6rem 1rem;
  min-height: 44px;
  display: inline-flex; align-items: center;
  position: relative;
}
.mobile-menu a::before{
  content: ''; position: absolute; left: -1.2rem; top: 50%;
  width: 6px; height: 6px; background: var(--gold);
  transform: translateY(-50%) scale(0); transition: transform .25s var(--ease);
}
.mobile-menu a:hover::before,
.mobile-menu a:focus-visible::before{ transform: translateY(-50%) scale(1); }
.mobile-menu .mobile-cta{
  margin-top: 1.5rem;
  background: var(--gold) !important;
  color: #0a0a0a !important;
  border-color: var(--gold) !important;
  font-family: var(--font-body) !important;
  font-size: .85rem !important;
  font-weight: 500;
  padding: 1rem 2.2rem !important;
  letter-spacing: .2em;
}
.mobile-menu .mobile-cta::before{ display: none; }

/* ---------- HERO – Konzept-Cover Stil ---------- */
.hero{ min-height: 100svh; padding: 6rem 1.5rem 4rem; }
.hero-bg{ background: #0a0a0a; }

/* Hintergrund-Video (loop, muted) */
.hero-video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .35;
  pointer-events: none;
}
.hero-video-dim{
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,10,10,.55) 0%, rgba(10,10,10,.85) 70%, rgba(10,10,10,.95) 100%);
  z-index: 1;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce){
  .hero-video{ display: none; }
}

.hero-grain{ opacity: .035; }
.hero-lines{ opacity: .02; }
.hero-content{
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0;
  max-width: 1400px; margin: 0 auto;
  padding-top: 4vh;
}

/* Logo */
.hero-logo-wrap{ position: relative; display: inline-block; }
.hero-logo{
  max-width: min(440px, 60vw); height: auto;
  filter: brightness(0) invert(1);
  opacity: .96;
}
.hero-logo-shimmer{ display: none; } /* zugunsten klareren Looks */

/* Goldenes kleines Label unter Logo (Konzept-Style) */
.hero-eyebrow{
  margin-top: 1.4rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .55em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .9rem;
}
.hero-eyebrow::before, .hero-eyebrow::after{
  content: ''; display: inline-block;
  width: 28px; height: 1px; background: var(--gold); opacity: .6;
}

/* Riesige getrackte Headline */
.hero-headline{
  margin-top: 3.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 7.6vw, 7.5rem);
  line-height: .98;
  color: #f5f4f0;
  letter-spacing: .04em;
  text-transform: uppercase;
  max-width: 18ch;
  text-wrap: balance;
}
.hero-headline .accent{ color: var(--gold-light); font-style: italic; font-weight: 400; letter-spacing: .02em; }

.hero-desc{
  margin-top: 1.8rem !important;
  font-style: normal !important;
  font-weight: 300;
  color: rgba(245,244,240,.7) !important;
  font-size: 1.05rem !important;
  letter-spacing: .04em;
  max-width: 44ch;
}

.hero-actions{
  display: flex !important;
  gap: 1rem; flex-wrap: wrap; justify-content: center;
  margin-top: 2.6rem;
}

/* PRIMARY (Gold gefüllt) */
.btn-primary{
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--gold); color: #0a0a0a;
  font-family: var(--font-body); font-weight: 500;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  padding: 1.05rem 2.2rem;
  border: 1px solid var(--gold);
  min-height: 48px;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 8px 28px var(--gold-glow);
}
.btn-primary:hover{
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 12px 38px rgba(192,144,48,.32);
}
.btn-primary .arr{ transition: transform .25s var(--ease); }
.btn-primary:hover .arr{ transform: translateX(4px); }

/* SECONDARY (Outline weiß) */
.btn-ghost{
  display: inline-flex; align-items: center; gap: .7rem;
  background: transparent; color: #f5f4f0;
  font-family: var(--font-body); font-weight: 400;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  padding: 1.05rem 2.2rem;
  border: 1px solid rgba(245,244,240,.25);
  min-height: 48px;
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}
.btn-ghost:hover{ border-color: #fff; background: rgba(255,255,255,.04); }

/* Hero Trust */
.hero-trust{
  display: flex !important;
  gap: 2.5rem; justify-content: center;
  padding: 0; margin: 4rem auto 0;
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 1.1rem 2rem;
  max-width: 900px; width: 100%;
}
.hero-trust span{
  color: rgba(245,244,240,.55) !important;
  font-size: .68rem;
  letter-spacing: .28em;
  display: inline-flex; align-items: center; gap: .7rem;
}
.hero-trust span::before{
  content: ''; width: 5px; height: 5px; background: var(--gold);
  display: inline-block; transform: rotate(45deg);
}
.hero-scroll{ bottom: 1.5rem !important; }
.hero-scroll span{ background: var(--gold) !important; }

@media (max-width: 720px){
  .hero{ padding-top: 5.5rem; }
  .hero-eyebrow{ font-size: .65rem; letter-spacing: .42em; }
  .hero-eyebrow::before, .hero-eyebrow::after{ width: 20px; }
  .hero-headline{ margin-top: 2.6rem; letter-spacing: .025em; }
  .hero-trust{ flex-direction: column; gap: .9rem; align-items: flex-start; padding: 1rem 1.4rem; }
}

/* ---------- Section labels (already gold) – konsistent ---------- */
.section-label{
  color: var(--gold) !important;
  font-weight: 500;
  letter-spacing: .35em !important;
}
.section-label::before{ background: var(--gold) !important; opacity: .8 !important; }

/* ---------- Services strip – Gold-Nummern ---------- */
.services-strip{ padding: 5rem 0 4rem; border-top: 1px solid rgba(255,255,255,.06); }
.services-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 0; }
.service-item{
  padding: 2rem 1.6rem; border-right: 1px solid rgba(255,255,255,.06);
  text-align: left;
  display: flex; flex-direction: column; gap: .8rem;
  transition: background .25s, transform .25s var(--ease);
}
.service-item:last-child{ border-right: 0; }
.service-item:hover{ background: rgba(192,144,48,.04); }
.service-num{ color: var(--gold) !important; font-weight: 500; font-size: .72rem; letter-spacing: .22em; }
.service-icon{ width: 22px !important; height: 22px !important; color: var(--gold-light) !important; }
.service-name{
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 500; color: #f5f4f0;
  letter-spacing: .02em;
}

@media (max-width: 720px){
  .service-item{ border-right: 0; border-bottom: 1px solid rgba(255,255,255,.05); padding: 1.5rem 1.2rem; }
  .service-item:last-child{ border-bottom: 0; }
}

/* ---------- Section divider ---------- */
.section-divider{ padding: 3rem 0; gap: 1.2rem; }
.divider-icon{ color: var(--gold) !important; opacity: .7; width: 20px; height: 20px; }
.divider-line{ background: linear-gradient(90deg, transparent, var(--gold-border), transparent) !important; height: 1px !important; }

/* ---------- About: Section title bigger, refined CTA ---------- */
.about-title{ letter-spacing: .005em; font-weight: 500; }
.about-cta{
  display: inline-flex !important; align-items: center; gap: .6rem;
  margin-top: 2.2rem !important;
  color: var(--gold-light) !important;
  border-bottom: 1px solid var(--gold-border) !important;
  font-size: .78rem !important; letter-spacing: .2em; text-transform: uppercase;
  padding: .5rem 0;
  font-weight: 500;
}
.about-cta:hover{ color: var(--gold) !important; border-bottom-color: var(--gold) !important; }

.stat-num{ color: var(--gold-light) !important; font-family: var(--font-display); font-weight: 500; }

/* ---------- Projects CTA – Gold ---------- */
.projects-cta{
  background: var(--gold) !important;
  color: #0a0a0a !important;
  border: 1px solid var(--gold) !important;
  padding: 1.05rem 2.4rem !important;
  font-weight: 500;
  letter-spacing: .22em !important;
  transition: all .25s var(--ease) !important;
  box-shadow: 0 6px 24px var(--gold-glow);
  min-height: 48px;
  display: inline-flex !important; align-items: center; gap: .6rem;
}
.projects-cta:hover{
  background: var(--gold-light) !important;
  border-color: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(192,144,48,.3) !important;
}

/* ---------- Pricing – polish ---------- */
.pricing-card{
  background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0));
  border-radius: 2px;
  transition: border-color .3s, transform .3s var(--ease);
}
.pricing-card:hover{
  border-color: var(--gold-border) !important;
  transform: translateY(-3px);
}
.pricing-card.featured, .pricing-card[data-featured="true"]{
  border-color: var(--gold) !important;
  box-shadow: 0 12px 60px var(--gold-glow);
}
.pricing-card .pc-price, .pricing-card .price{
  color: var(--gold-light) !important;
  font-family: var(--font-display);
  font-weight: 500;
}
.pricing-card .pc-cta, .pricing-card .pricing-cta{
  background: var(--gold) !important;
  color: #0a0a0a !important;
  border-color: var(--gold) !important;
  font-weight: 500;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials{
  padding: 6rem 0;
  background: #0a0a0a;
}
.testimonials .container{ max-width: 1200px; }
.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testimonial{
  position: relative;
  padding: 2.4rem 2rem 2rem;
  border: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(192,144,48,.03), transparent);
  display: flex; flex-direction: column; gap: 1.2rem;
  transition: border-color .3s, transform .3s var(--ease);
}
.testimonial:hover{ border-color: var(--gold-border); transform: translateY(-2px); }
.testimonial::before{
  content: '\201C';
  position: absolute; top: -8px; left: 1.6rem;
  font-family: 'Space Grotesk', serif;
  font-size: 4rem; line-height: 1;
  color: var(--gold); opacity: .6;
}
.testimonial-quote{
  font-size: 1rem; line-height: 1.65;
  color: rgba(245,244,240,.85);
  font-weight: 300;
}
.testimonial-meta{
  display: flex; align-items: center; gap: .8rem;
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.06);
}
.testimonial-avatar{
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 500; color: #0a0a0a;
  font-size: .9rem; letter-spacing: .05em;
}
.testimonial-author{
  font-family: var(--font-display); font-weight: 500;
  color: #f5f4f0; font-size: .92rem; letter-spacing: .03em;
}
.testimonial-role{
  color: rgba(245,244,240,.5); font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase;
}

/* Logo strip / social proof */
.proof-row{
  display: flex; gap: 2.6rem; flex-wrap: wrap;
  justify-content: center; align-items: center;
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.proof-item{
  color: rgba(245,244,240,.4);
  font-family: var(--font-display); font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  font-size: .82rem;
  transition: color .25s;
}
.proof-item:hover{ color: var(--gold-light); }

/* ---------- Contact: form polish + trust ---------- */
.contact{ background: #0a0a0a; }
.contact-intro{ font-style: normal !important; color: rgba(245,244,240,.75) !important; }
.contact-trust{ display: flex; flex-direction: column; gap: .8rem; margin-top: 2rem; }
.trust-item{
  display: inline-flex; align-items: center; gap: .8rem;
  color: rgba(245,244,240,.7);
  font-size: .82rem;
  letter-spacing: .02em;
}
.trust-item::before{
  content: ''; width: 16px; height: 16px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center/contain no-repeat;
}

.contact-form .form-group label{
  font-size: .68rem;
  letter-spacing: .25em;
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: .5rem;
  display: block;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.1);
  color: #f5f4f0;
  font-family: var(--font-body); font-size: 1rem;
  padding: .95rem 1.1rem;
  width: 100%;
  min-height: 48px;
  transition: border-color .2s, background .2s, box-shadow .2s;
  border-radius: 2px;
}
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover{ border-color: rgba(255,255,255,.22); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: var(--gold);
  background: rgba(192,144,48,.04);
  box-shadow: 0 0 0 3px var(--gold-faint);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{ color: rgba(245,244,240,.32); }

/* Validation styles */
.contact-form .form-group{ position: relative; }
.contact-form .form-group.error input,
.contact-form .form-group.error select,
.contact-form .form-group.error textarea{
  border-color: #d04646;
  background: rgba(208,70,70,.05);
}
.contact-form .form-group.valid input,
.contact-form .form-group.valid select,
.contact-form .form-group.valid textarea{
  border-color: var(--gold);
}
.contact-form .field-error{
  display: none;
  margin-top: .4rem;
  font-size: .75rem; color: #e58383; letter-spacing: .02em;
}
.contact-form .form-group.error .field-error{ display: block; }

.form-submit{
  background: var(--gold) !important;
  color: #0a0a0a !important;
  border-color: var(--gold) !important;
  padding: 1.1rem 2.6rem !important;
  font-weight: 500 !important;
  min-height: 52px;
  letter-spacing: .22em !important;
  display: inline-flex !important; align-items: center; gap: .7rem;
  transition: background .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease) !important;
  box-shadow: 0 8px 28px var(--gold-glow);
}
.form-submit:hover{
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 38px rgba(192,144,48,.32) !important;
}
.form-submit:disabled{ opacity: .6; cursor: wait; transform: none; }

.form-msg{ margin-top: 1rem; font-size: .9rem; }
.form-msg.success{ color: var(--gold-light); }
.form-msg.error{ color: #e58383; }
.form-privacy{ margin-top: 1rem; font-size: .78rem; color: rgba(245,244,240,.4); }

/* ---------- Footer polish ---------- */
.footer{ background: #080808; border-top: 1px solid rgba(255,255,255,.05); }
.footer-tagline{ color: rgba(245,244,240,.5); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; }
.footer-links a{
  font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(245,244,240,.55); transition: color .2s;
}
.footer-links a:hover{ color: var(--gold-light); }
.footer-social-link, .footer-contact-btn{
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15); color: rgba(245,244,240,.7);
  transition: all .25s;
  border-radius: 2px;
}
.footer-social-link svg, .footer-contact-btn svg{ width: 16px; height: 16px; }
.footer-social-link:hover, .footer-contact-btn:hover{
  border-color: var(--gold); color: var(--gold-light); background: var(--gold-faint);
}
.footer-contact-btn{ width: auto; padding: 0 1rem; gap: .5rem; }
.footer-contact-btn span{ font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.footer-logo-img{ filter: brightness(0) invert(1); opacity: .85; height: 26px; }

/* ---------- Footer mobile: eine Zeile ---------- */
@media (max-width: 700px){
  .footer-inner{
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0 1rem;
  }
  .footer-left{ display: none; }
  .footer-links{
    gap: 0.7rem;
    flex-wrap: nowrap;
  }
  .footer-links a{
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
  .footer-right{
    flex-direction: row !important;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
  }
  .footer-social{ margin-top: 0; gap: 0.4rem; }
  .footer-social-link,
  .footer-contact-btn{ width: 36px; height: 36px; }
  .footer-contact-btn{ padding: 0 0.6rem; }
  .footer-contact-btn span{ display: none; }
}

/* ---------- Cursor: hide on touch ---------- */
@media (hover: none){
  #cursor, #cursor-ring{ display: none !important; }
}

/* ---------- Stil-Varianten (Tweak) ---------- */
/* "editorial" = streng, weniger Gold (CTAs werden Outline-Gold statt gefüllt) */
body[data-style="editorial"] .btn-primary,
body[data-style="editorial"] .projects-cta,
body[data-style="editorial"] .form-submit,
body[data-style="editorial"] .mobile-menu .mobile-cta,
body[data-style="editorial"] .pricing-card .pc-cta,
body[data-style="editorial"] .pricing-card .pricing-cta{
  background: transparent !important;
  color: var(--gold-light) !important;
  border-color: var(--gold-border) !important;
  box-shadow: none !important;
}
body[data-style="editorial"] .btn-primary:hover,
body[data-style="editorial"] .projects-cta:hover,
body[data-style="editorial"] .form-submit:hover{
  background: var(--gold) !important;
  color: #0a0a0a !important;
  border-color: var(--gold) !important;
}
body[data-style="editorial"] .testimonial::before{ opacity: .35; }
body[data-style="editorial"] .hero-trust span::before{ background: rgba(192,144,48,.6); }

/* "lively" = mehr Gold-Glow + Akzent-Linien */
body[data-style="lively"] .hero-headline .accent{ text-shadow: 0 0 32px var(--gold-glow); }
body[data-style="lively"] .section-title::after{
  content: ''; display: block; width: 56px; height: 2px;
  background: var(--gold); margin-top: 1.2rem;
}
body[data-style="lively"] .nav-cta{
  background: var(--gold) !important; color: #0a0a0a !important; border-color: var(--gold) !important;
}
body[data-style="lively"] .nav-cta:hover{ background: var(--gold-light) !important; border-color: var(--gold-light) !important; }
body[data-style="lively"] .pricing-card:hover{ box-shadow: 0 12px 60px var(--gold-glow); }

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ══════════════════════════════════════════════════════
   POSTER GRID GALLERY — Rack Focus + Film Grain
   Replaces the old numbered list (.projlist / .pl-item)
══════════════════════════════════════════════════════ */

/* Hide old list elements */
.projlist, .pl-filters, #projPreview { display: none !important; }

/* ── Modal: cinematic transparent backdrop ── */
.modal {
  background: rgba(4,4,4,0.3) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}
.modal-inner {
  background: #0c0c0c !important;
  border-color: rgba(255,255,255,0.05) !important;
}

/* Portrait/Square: Video links, Info rechts */
@media (min-width: 700px) {
  .modal-inner:has(.modal-video.portrait),
  .modal-inner:has(.modal-video.portrait45),
  .modal-inner:has(.modal-video.square),
  .modal-inner:has(.modal-video.insta-embed) {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
  }
  .modal-inner:has(.modal-video.portrait) .modal-letterbox,
  .modal-inner:has(.modal-video.portrait45) .modal-letterbox,
  .modal-inner:has(.modal-video.square) .modal-letterbox,
  .modal-inner:has(.modal-video.insta-embed) .modal-letterbox { display: none !important; }
  .modal-inner:has(.modal-video.portrait) .modal-video,
  .modal-inner:has(.modal-video.portrait45) .modal-video,
  .modal-inner:has(.modal-video.square) .modal-video,
  .modal-inner:has(.modal-video.insta-embed) .modal-video { flex: 0 0 auto; }
  .modal-inner:has(.modal-video.portrait) .modal-info,
  .modal-inner:has(.modal-video.portrait45) .modal-info,
  .modal-inner:has(.modal-video.square) .modal-info,
  .modal-inner:has(.modal-video.insta-embed) .modal-info {
    flex: 1 !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding: 2rem !important;
    min-width: 200px;
    max-width: 300px;
    border-left: 1px solid rgba(255,255,255,0.05);
    flex-wrap: nowrap !important;
  }
  .modal-inner:has(.modal-video.portrait) .modal-info-left,
  .modal-inner:has(.modal-video.portrait45) .modal-info-left,
  .modal-inner:has(.modal-video.square) .modal-info-left,
  .modal-inner:has(.modal-video.insta-embed) .modal-info-left { flex: 1; width: 100%; }
  .modal-inner:has(.modal-video.portrait) .modal-cta,
  .modal-inner:has(.modal-video.portrait45) .modal-cta,
  .modal-inner:has(.modal-video.square) .modal-cta,
  .modal-inner:has(.modal-video.insta-embed) .modal-cta {
    margin-top: 1.5rem;
    display: inline-block !important;
    width: auto !important;
  }
}
.modal-letterbox {
  height: 10px;
  background: #000;
  display: block;
}
.modal-close {
  display: flex !important;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
  color: rgba(245,244,240,0.4) !important;
  opacity: 1 !important;
  transition: color 0.2s !important;
}
.modal-close:hover { color: rgba(245,244,240,0.9) !important; }
.modal-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.modal-info-left { flex: 1; min-width: 0; }
.modal-cta {
  background: var(--gold) !important;
  color: #0a0a0a !important;
  padding: 0.75rem 1.5rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
  border: none !important;
  margin-top: 2px;
  display: inline-block;
  transition: background 0.2s !important;
}
.modal-cta:hover { background: var(--gold-light) !important; }

/* ── Poster Section ── */
.poster-section {
  position: relative;
  overflow: hidden;
}
.poster-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  opacity: 0.5;
  mix-blend-mode: screen;
}

/* ── Header ── */
.poster-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.poster-filters {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.poster-filter {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  cursor: pointer;
  background: transparent;
  border: none;
  color: rgba(245,244,240,0.3);
  transition: all 0.2s;
  min-height: 32px;
}
.poster-filter.active { background: var(--gold); color: #0a0a0a; }
.poster-filter:hover:not(.active) { color: rgba(245,244,240,0.75); }
.poster-page-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.18);
}

/* ── Grid ── */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}
.poster-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  transition: filter 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.poster-card-empty {
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.01);
}

/* Rack focus blur on non-hovered */
.poster-grid[data-any-hovered="true"] .poster-card:not(.is-hovered) {
  filter: blur(2.5px);
}

.poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.38) saturate(0.5);
  transform: scale(1);
  transition: filter 0.6s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.poster-grid[data-any-hovered="true"] .poster-card:not(.is-hovered) .poster-img {
  filter: brightness(0.22) saturate(0.2);
}
.poster-card.is-hovered .poster-img {
  filter: brightness(0.7) saturate(0.85) !important;
  transform: scale(1.05);
}

/* Letterbox bars */
.poster-lb { position: absolute; left: 0; right: 0; height: 8%; background: var(--black); z-index: 2; }
.poster-lb-top { top: 0; }
.poster-lb-bot { bottom: 0; }

/* Gradient overlay */
.poster-gradient {
  position: absolute;
  inset: 0; z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  transition: background 0.5s;
}
.poster-card.is-hovered .poster-gradient {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.35) 40%, transparent 100%);
}

/* Gold corner brackets */
.poster-corners {
  position: absolute; inset: 0; z-index: 6;
  pointer-events: none; opacity: 0;
  transition: opacity 0.3s;
}
.poster-card.is-hovered .poster-corners { opacity: 1; }
.poster-corner { position: absolute; width: 14px; height: 14px; }
.poster-corner-tl { top: 10px; left: 10px;  border-top: 1px solid var(--gold); border-left:  1px solid var(--gold); }
.poster-corner-tr { top: 10px; right: 10px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.poster-corner-bl { bottom: 10px; left: 10px;  border-bottom: 1px solid var(--gold); border-left:  1px solid var(--gold); }
.poster-corner-br { bottom: 10px; right: 10px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

/* Ghost number */
.poster-ghost-num {
  position: absolute; z-index: 4;
  top: 8px; right: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  color: rgba(255,255,255,0.04);
  user-select: none; pointer-events: none;
}

/* Text content */
.poster-content {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(0.6rem,1.5vw,1rem) clamp(0.7rem,1.5vw,1.1rem);
  transform: translateY(8px); opacity: 0.5;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.4s;
}
.poster-grid[data-any-hovered="true"] .poster-card:not(.is-hovered) .poster-content { opacity: 0; }
.poster-card.is-hovered .poster-content { transform: translateY(0); opacity: 1; }

.poster-cat {
  font-family: var(--font-body);
  font-size: clamp(0.48rem,0.8vw,0.62rem);
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.3rem; display: block;
}
.poster-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.9rem,1.8vw,1.5rem);
  line-height: 0.95; color: var(--white); letter-spacing: 0.03em;
  transition: font-size 0.3s;
}
.poster-card.is-hovered .poster-title { font-size: clamp(1rem,2vw,1.7rem); }

.poster-play-row {
  display: flex; align-items: center; gap: 8px;
  margin-top: 0.5rem; opacity: 0; transition: opacity 0.35s;
}
.poster-card.is-hovered .poster-play-row { opacity: 1; }
.poster-play-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.poster-play-label {
  font-family: var(--font-body);
  font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(245,244,240,0.5);
}

/* ── Pagination ── */
.poster-pagination {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: 1.25rem;
}
.poster-dots { display: flex; gap: 6px; align-items: center; }
.poster-dot {
  width: 5px; height: 5px; border-radius: 3px;
  background: rgba(255,255,255,0.18);
  border: none; cursor: pointer; padding: 0;
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.poster-dot.active { width: 20px; background: var(--gold); }
.poster-arrows { display: flex; gap: 8px; }
.poster-arrow {
  width: 36px; height: 36px; border: none;
  background: var(--gold); color: #0a0a0a;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.poster-arrow:not(:disabled):hover { background: var(--gold-light); }
.poster-arrow:disabled {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.18); cursor: default;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .poster-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  /* Portrait-Poster Mobile C */
  .poster-grid { grid-template-columns: repeat(2, 1fr); }
  .poster-grain { display: none; }
  .poster-card { aspect-ratio: 3/4; background: #000; }
  .poster-card-empty { aspect-ratio: 3/4; }
  .poster-img { object-fit: contain; }
  /* Harte Balken raus, weiche Gradienten rein */
  .poster-lb { display: none; }
  .poster-gradient {
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 36%),
      linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.38) 30%, rgba(0,0,0,0) 56%) !important;
  }
  .modal-info { flex-direction: column; }
}
