/* NASSEFFEKT — Archetyp "Nachtlack": Obsidian + flüssiges Gold, Editorial-Serife */
:root {
  --ink: #0B0A07;
  --ink-2: #171209;
  --line: rgba(234,217,176,.12);
  --white: #F6F0E4;
  --muted: #9d917d;
  --gold: #E7A33C;
  --gold-lt: #F4C879;
  --gold-deep: #8A5A22;
  --grad: linear-gradient(100deg, #F8E4B8, #E7A33C 45%, #F4C879 90%, #F8E4B8);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { height: auto; }             /* kein scroll-behavior: smooth — kollidiert mit Lenis! */
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
/* Wow: subtiler Gold-Hintergrund-Schein */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(55% 45% at 12% 8%, rgba(231,163,60,.13), transparent 60%),
    radial-gradient(50% 45% at 88% 92%, rgba(244,200,121,.08), transparent 60%);
}
@keyframes shimmer { to { background-position: 250% 0; } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 40px;
  background: linear-gradient(180deg, rgba(11,10,7,.78), transparent);
}
.nav__brand { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: .18em; color: var(--white); }
.nav__brand--has-logo { display: flex; align-items: center; }
.nav__logo { height: 42px; width: auto; display: block; filter: drop-shadow(0 2px 10px rgba(0,0,0,.5)); }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 11px; letter-spacing: .22em; color: var(--muted);
  transition: color .3s;
}
.nav__links a:hover { color: var(--gold-lt); }
.nav__cta {
  font-size: 11px; letter-spacing: .18em; font-weight: 600;
  background: var(--grad); background-size: 250% 100%; animation: shimmer 7s linear infinite; color: #1a1206;
  padding: 11px 26px; border-radius: 999px;
  transition: transform .3s, box-shadow .3s;
}
.nav__cta:hover { transform: scale(1.05); box-shadow: 0 0 34px rgba(231,163,60,.45); }

/* ---------- Scrub-Sektionen (Hero + Beading) ---------- */
.scrub { position: relative; }
.scrub__stage { position: relative; height: 100vh; overflow: hidden; background: var(--ink); }
.scrub__media, .scrub__media video, .scrub__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.scrub__media::after {          /* warme Vignette + zentrales Dim für Textlesbarkeit */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 64% at 50% 55%, rgba(11,10,7,.60), rgba(11,10,7,.12) 62%, transparent 80%),
    radial-gradient(ellipse at center, transparent 54%, rgba(11,10,7,.62)),
    linear-gradient(180deg, rgba(11,10,7,.34), rgba(11,10,7,.10) 42%, rgba(11,10,7,.52));
  pointer-events: none;
}
.scrub__headlines { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.scrub__headline {
  position: absolute; text-align: center;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(40px, 6.4vw, 100px); line-height: 1.03;
  letter-spacing: -0.01em; text-transform: none;
  opacity: 0; will-change: opacity, transform;
  text-shadow: 0 2px 26px rgba(0,0,0,.78), 0 0 74px rgba(0,0,0,.5);
}
.scrub__headline .l1 { display: block; color: var(--white); }
.scrub__headline .l2 {
  display: block; font-style: italic;
  background: var(--grad); background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 6s linear infinite;
}
.scrub__label {
  position: absolute; font-size: 10px; letter-spacing: .28em; color: var(--muted);
  text-transform: uppercase;
}
.scrub__label--tl { left: 40px; bottom: 34px; }
.scrub__label--br { right: 40px; bottom: 34px; }
.scrub__progress {
  position: absolute; left: 40px; right: 40px; bottom: 64px; height: 1px;
  background: rgba(234,217,176,.14);
}
.scrub__progress span { display: block; height: 100%; width: 0%; background: var(--grad); background-size: 250% 100%; animation: shimmer 6s linear infinite; box-shadow: 0 0 14px rgba(231,163,60,.5); }
.scrub__hint {
  position: absolute; bottom: 96px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: .3em; color: var(--muted);
  animation: hintPulse 2.2s ease-in-out infinite;
}
.scrub__hint::after { content: "  ↓"; }
@keyframes hintPulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

/* ---------- Allgemeine Sektionen ---------- */
.section { padding: 150px 40px; max-width: 1200px; margin: 0 auto; }
.eyebrow {
  font-size: 11px; letter-spacing: .34em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 26px;
}
.eyebrow--accent { color: var(--gold-lt); }

/* Philosophie */
.vision { text-align: center; max-width: 1050px; }
.vision__heading {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(31px, 4.6vw, 62px); line-height: 1.12; white-space: pre-line;
}
.vision__body {
  margin: 36px auto 0; max-width: 650px;
  color: var(--muted); font-size: 16px; line-height: 1.8; font-weight: 300;
}
.vision__sign {
  margin-top: 30px; font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 16px; letter-spacing: .02em; color: var(--gold-lt);
}

/* Trust-Strip */
.trust { max-width: 1120px; margin: 0 auto; padding: 30px 40px 6px; text-align: center; }
.trust__eyebrow { font-size: 10px; letter-spacing: .32em; color: var(--muted); text-transform: uppercase; margin-bottom: 22px; }
.trust__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 14px; }
.trust__badge {
  font-size: 11px; letter-spacing: .06em; color: var(--white);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 17px; background: rgba(231,163,60,.04);
  transition: border-color .3s, color .3s;
}
.trust__badge:hover { border-color: rgba(231,163,60,.45); color: var(--gold-lt); }
.trust__clients { margin-top: 26px; font-size: 12.5px; letter-spacing: .06em; color: var(--muted); }

/* Leistungen */
.services { max-width: 1240px; }
.services__heading {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 4.1vw, 56px); line-height: 1.12; white-space: pre-line;
  margin-bottom: 58px;
}
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  position: relative; border-radius: 14px; overflow: hidden;
  background: var(--ink-2); border: 1px solid var(--line);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), border-color .5s;
}
.svc-card:hover { transform: translateY(-6px); border-color: rgba(231,163,60,.5); box-shadow: 0 18px 50px rgba(231,163,60,.18); }
.svc-card__media { overflow: hidden; aspect-ratio: 4/3; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.svc-card:hover .svc-card__media img { transform: scale(1.07); }
.svc-card__meta { padding: 20px 20px 24px; }
.svc-card__name { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-lt); overflow-wrap: break-word; hyphens: auto; }
.svc-card__desc { margin-top: 10px; font-size: 13px; color: var(--muted); letter-spacing: .01em; line-height: 1.55; }

/* In Zahlen */
.performance { text-align: center; }
.performance__heading {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 4.1vw, 56px); line-height: 1.12; white-space: pre-line;
  margin-bottom: 74px;
}
.performance__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat__value {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(38px, 5vw, 72px);
  background: var(--grad); background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
.stat__label { margin-top: 14px; font-size: 11px; letter-spacing: .22em; color: var(--muted); text-transform: uppercase; }

/* Kontakt / Termin */
.contact { text-align: center; padding-bottom: 150px; }
.contact__heading {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(40px, 6vw, 88px); line-height: 1.05; white-space: pre-line;
  background: var(--grad); background-size: 250% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
.contact__body { margin: 30px auto 0; max-width: 560px; color: var(--muted); line-height: 1.78; font-weight: 300; }
.contact__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 42px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; letter-spacing: .08em; font-weight: 600;
  padding: 17px 34px; border-radius: 999px; transition: transform .3s, box-shadow .3s, border-color .3s, color .3s;
}
.btn--primary { background: var(--grad); background-size: 250% 100%; color: #1a1206; animation: shimmer 7s linear infinite; }
.btn--primary:hover { transform: scale(1.04); box-shadow: 0 0 50px rgba(231,163,60,.42); }
.btn--ghost { border: 1px solid var(--line); color: var(--white); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-lt); }
.contact__meta {
  list-style: none; margin: 46px auto 0; display: grid; gap: 9px;
  font-size: 13.5px; color: var(--muted); letter-spacing: .02em;
}

/* Footer */
.footer {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding: 26px 40px; border-top: 1px solid var(--line);
  font-size: 11px; letter-spacing: .08em; color: var(--muted);
}
.footer__brand { letter-spacing: .1em; }
.footer__right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { color: var(--muted); font-size: 11px; transition: color .3s; }
.footer__legal a:hover { color: var(--gold-lt); }
.footer__copy { font-size: 11px; }

/* Reveals */
[data-reveal] { opacity: 0; transform: translateY(34px); }

/* ---------- Referenzen / Echte Arbeiten ---------- */
.gallery__heading {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(30px, 4.5vw, 60px); line-height: 1.06; white-space: pre-line; margin: 8px 0 14px;
}
.gallery__note { color: var(--muted); max-width: 640px; margin-bottom: 42px; line-height: 1.65; }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gal-card {
  position: relative; overflow: hidden; border-radius: 14px;
  border: 1px solid rgba(231,163,60,.14); aspect-ratio: 4 / 5;
}
.gal-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(.86) saturate(.94);
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s;
}
.gal-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11,10,7,.85) 100%); pointer-events: none;
}
.gal-card figcaption {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--white);
}
.gal-card:hover img { transform: scale(1.06); filter: brightness(1) saturate(1); }
.gal-card:hover { border-color: rgba(231,163,60,.5); box-shadow: 0 18px 50px rgba(231,163,60,.18); }
@media (max-width: 1040px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Google-Bewertungen ---------- */
.reviews { text-align: center; }
.reviews__heading {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(30px, 4.5vw, 60px); line-height: 1.06; white-space: pre-line; margin: 8px 0 16px;
}
.reviews__badge { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 44px; font-size: 14px; color: var(--muted); }
.reviews__stars { color: #E7A33C; letter-spacing: 3px; font-size: 18px; }
.reviews__count { letter-spacing: .04em; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.rev-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(231,163,60,.14);
  border-radius: 14px; padding: 26px 24px; display: flex; flex-direction: column; gap: 14px;
}
.rev-card__stars { color: #E7A33C; letter-spacing: 2px; font-size: 15px; }
.rev-card blockquote { color: var(--white); line-height: 1.62; font-size: 14.5px; flex: 1; }
.rev-card figcaption { color: var(--muted); font-size: 13px; letter-spacing: .04em; }
.rev-card figcaption::before { content: "— "; }
.reviews__link {
  display: inline-block; margin-top: 36px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-lt); border-bottom: 1px solid rgba(231,163,60,.4); padding-bottom: 3px; transition: color .3s;
}
.reviews__link:hover { color: var(--white); }

/* ---------- Social-Media (Footer) ---------- */
.footer__social { display: flex; gap: 11px; }
.footer__social a {
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(231,163,60,.22); color: var(--muted); transition: color .3s, background .3s, transform .3s, border-color .3s;
}
.footer__social a svg { width: 17px; height: 17px; display: block; }
.footer__social a:hover { color: #1a1206; background: var(--grad); border-color: transparent; transform: translateY(-2px); }

/* ---------- Tablet ---------- */
@media (max-width: 1040px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .nav { padding: 16px 20px; }
  .nav__links { display: none; }
  .section { padding: 104px 22px; }
  .trust { padding: 24px 22px 4px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .performance__grid { grid-template-columns: repeat(2, 1fr); row-gap: 46px; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .reviews__badge { flex-wrap: wrap; justify-content: center; }
  .footer__social { justify-content: center; }
  .contact__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .scrub__label--tl, .scrub__progress { left: 20px; }
  .scrub__label--br, .scrub__progress { right: 20px; }
  .scrub__label--br { display: none; }
  .footer { justify-content: center; text-align: center; }
}

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