/* ==========================================================================
   MK24 GLANZYO - Stylesheet
   Farbwelt: Schwarz / Gold / Creme (abgeleitet aus dem Logo)
   ========================================================================== */

/* --- Design Tokens ------------------------------------------------------ */
:root {
  --black:        #0c0c0e;
  --black-soft:   #141418;
  --black-card:   #1b1b21;
  --ink:          #1a1a1d;
  --ink-muted:    #5c5c66;

  --gold:         #c9a227;
  --gold-light:   #f0d67c;
  --gold-deep:    #8f7310;
  --gold-grad:    linear-gradient(135deg, #f5e08d 0%, #c9a227 42%, #8f6f10 100%);

  --cream:        #faf8f4;
  --cream-2:      #f2eee6;
  --white:        #ffffff;
  --line:         rgba(201, 162, 39, .28);
  --line-soft:    rgba(0, 0, 0, .08);

  --font-head: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(12,12,14,.06);
  --shadow-md: 0 12px 34px rgba(12,12,14,.10);
  --shadow-lg: 0 24px 60px rgba(12,12,14,.16);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.3rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: 1.28rem; }
p  { margin: 0 0 1.1em; }

/* --- Layout-Helfer ------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(66px, 9vw, 118px) 0; }
.section--dark { background: var(--black); color: var(--cream); }
.section--tint { background: var(--cream-2); }
.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--gold-light); }

.lead { font-size: 1.08rem; color: var(--ink-muted); max-width: 62ch; }
.section--dark .lead { color: rgba(250,248,244,.72); }
.center .lead { margin-inline: auto; }

.rule {
  width: 62px; height: 2px; border: 0; margin: 0 0 26px;
  background: var(--gold-grad); border-radius: 2px;
}
.center .rule { margin-inline: auto; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--gold {
  background: var(--gold-grad); color: #241c00;
  box-shadow: 0 8px 22px rgba(201,162,39,.32);
}
.btn--gold:hover { box-shadow: 0 14px 32px rgba(201,162,39,.44); }

.btn--ghost { border-color: rgba(250,248,244,.34); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold-light); color: var(--gold-light); background: rgba(201,162,39,.08); }

.btn--dark { background: var(--black); color: var(--cream); }
.btn--dark:hover { background: var(--black-soft); box-shadow: var(--shadow-md); }

.btn--outline { border-color: rgba(0,0,0,.2); color: var(--ink); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-deep); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row, .btn-row.center { justify-content: center; }

/* --- Header ------------------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 16px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.header.is-stuck {
  padding: 9px 0;
  background: rgba(12,12,14,.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(0,0,0,.28);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 54px; height: 54px; object-fit: contain;
  transition: width .35s var(--ease), height .35s var(--ease);
}
.header.is-stuck .brand img { width: 44px; height: 44px; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--font-head); font-size: 1.16rem; color: var(--cream); letter-spacing: .04em;
}
.brand__sub {
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light); opacity: .85;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  position: relative; font-size: .93rem; font-weight: 500; color: rgba(250,248,244,.86);
  transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--gold-grad); transition: width .28s var(--ease);
}
.nav a:hover { color: var(--gold-light); }
.nav a:hover::after { width: 100%; }

.header .btn { padding: 11px 22px; font-size: .9rem; }

.burger {
  display: none; width: 46px; height: 40px; border: 1px solid rgba(250,248,244,.28);
  border-radius: 10px; background: rgba(255,255,255,.04); position: relative;
}
.burger span {
  position: absolute; left: 12px; width: 20px; height: 1.8px; background: var(--cream);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .2s;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 19.5px; }
.burger span:nth-child(3) { top: 25px; }
.burger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 130px 0 92px;
  background: var(--black); color: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 90%;
  background: radial-gradient(58% 60% at 22% 32%, rgba(201,162,39,.20), transparent 70%),
              radial-gradient(45% 50% at 88% 12%, rgba(240,214,124,.11), transparent 72%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 200px;
  background: linear-gradient(to top, var(--black-soft), transparent);
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center;
}
.hero h1 { color: var(--cream); }
.hero h1 .gold {
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
}
.hero__lead { font-size: 1.14rem; color: rgba(250,248,244,.76); max-width: 54ch; }

.hero__tags { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.tag {
  font-size: .78rem; font-weight: 600; letter-spacing: .05em;
  padding: 7px 15px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--gold-light);
  background: rgba(201,162,39,.07);
}

.hero__medallion { display: flex; justify-content: center; }
.medallion {
  position: relative; width: min(430px, 80vw); aspect-ratio: 1;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(201,162,39,.14) 0%, rgba(201,162,39,.04) 52%, transparent 72%);
  animation: float 7s ease-in-out infinite;
}
.medallion::before {
  content: ""; position: absolute; inset: 4%;
  border-radius: 50%; border: 1px solid rgba(201,162,39,.3);
}
.medallion picture { display: contents; }
.medallion img {
  width: 88%; height: auto; position: relative;
  filter: drop-shadow(0 14px 34px rgba(0,0,0,.55)) drop-shadow(0 0 46px rgba(201,162,39,.28));
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

.hero__scroll {
  position: absolute; left: 50%; bottom: 30px; margin-left: -22px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(201,162,39,.4); color: var(--gold-light);
  background: rgba(201,162,39,.06);
  transition: opacity .4s var(--ease), border-color .25s, background .25s, color .25s;
}
.hero__scroll svg { width: 20px; height: 20px; animation: nudge 2.4s ease-in-out infinite; }
.hero__scroll:hover { border-color: var(--gold); background: rgba(201,162,39,.16); color: #fff; }
.hero__scroll.is-hidden { opacity: 0; pointer-events: none; }
@keyframes nudge { 0%,100% { transform: translateY(-2px); } 50% { transform: translateY(3px); } }

/* --- Trust-Leiste ------------------------------------------------------- */
.trust { background: var(--black-soft); border-block: 1px solid rgba(201,162,39,.16); }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; color: var(--cream);
}
.trust__item { padding: 30px 16px; }
.trust__item + .trust__item { border-left: 1px solid rgba(201,162,39,.16); }
.trust__num { font-family: var(--font-head); font-size: 1.75rem; color: var(--gold-light); display: block; }
.trust__lbl { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(250,248,244,.6); }

/* --- Leistungen --------------------------------------------------------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 54px; }
.service {
  position: relative; background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 38px 34px 34px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.service::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.service:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: var(--line); }
.service:hover::before { transform: scaleX(1); }

.service__icon {
  width: 60px; height: 60px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(201,162,39,.15), rgba(201,162,39,.05));
  border: 1px solid var(--line); margin-bottom: 22px;
}
.service__icon svg { width: 30px; height: 30px; stroke: var(--gold-deep); fill: none; stroke-width: 1.5; }
.service h3 { margin-bottom: .35em; }
.service p { color: var(--ink-muted); font-size: .97rem; margin-bottom: 18px; }
.service ul { display: grid; gap: 9px; }
.service li {
  position: relative; padding-left: 24px; font-size: .93rem; color: var(--ink-muted);
}
.service li::before {
  content: ""; position: absolute; left: 4px; top: 9px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--gold-grad);
}

/* --- Ablauf ------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 54px; counter-reset: s; }
.step { position: relative; padding-top: 14px; }
.step::before {
  counter-increment: s; content: "0" counter(s);
  font-family: var(--font-head); font-size: 3.1rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(201,162,39,.55);
  display: block; margin-bottom: 14px;
}
.step h3 { color: var(--cream); }
.step p { color: rgba(250,248,244,.68); font-size: .97rem; margin: 0; }

/* --- Warum wir ---------------------------------------------------------- */
.reasons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 46px; margin-top: 48px; }
.reason { display: flex; gap: 16px; align-items: flex-start; }
.reason__ico {
  flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(201,162,39,.12); border: 1px solid var(--line);
}
.reason__ico svg { width: 20px; height: 20px; stroke: var(--gold-deep); fill: none; stroke-width: 1.7; }
.reason h3 { font-size: 1.06rem; margin-bottom: .25em; }
.reason p { font-size: .94rem; color: var(--ink-muted); margin: 0; }

/* --- Einsatzgebiet ------------------------------------------------------ */
.area { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 34px; }
.area span {
  padding: 9px 20px; border-radius: 999px; font-size: .9rem; font-weight: 500;
  background: var(--white); border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm);
}
.area span.is-home { background: var(--black); color: var(--gold-light); border-color: var(--black); }

/* --- Kontakt ------------------------------------------------------------ */
.contact { display: grid; grid-template-columns: .92fr 1.08fr; gap: 58px; align-items: start; }

.contact__list { display: grid; gap: 6px; margin: 30px 0; }
.contact__item {
  display: flex; gap: 15px; align-items: flex-start; padding: 15px 0;
  border-bottom: 1px solid rgba(250,248,244,.1);
}
.contact__item svg { width: 21px; height: 21px; stroke: var(--gold); fill: none; stroke-width: 1.6; flex: none; margin-top: 3px; }
.contact__item b { display: block; font-weight: 600; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(250,248,244,.5); margin-bottom: 3px; }
.contact__item span, .contact__item a { font-size: 1.04rem; color: var(--cream); }
.contact__item a:hover { color: var(--gold-light); }

.form {
  background: var(--black-card); border: 1px solid rgba(201,162,39,.2);
  border-radius: var(--radius); padding: 34px;
}
.form h3 { color: var(--cream); margin-bottom: .6em; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(250,248,244,.58); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: .96rem;
  color: var(--cream); background: rgba(255,255,255,.045);
  border: 1px solid rgba(250,248,244,.16); border-radius: 10px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 118px; }
.field select option { background: var(--black-card); color: var(--cream); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(255,255,255,.07);
  box-shadow: 0 0 0 3px rgba(201,162,39,.16);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(250,248,244,.32); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__hint { font-size: .8rem; color: rgba(250,248,244,.45); margin: 14px 0 0; line-height: 1.55; }
.form__hint a { color: var(--gold-light); text-decoration: underline; }

/* --- Footer ------------------------------------------------------------- */
.footer { background: #08080a; color: rgba(250,248,244,.62); padding: 60px 0 26px; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 42px; padding-bottom: 38px; }
.footer h4 {
  font-family: var(--font-body); font-size: .76rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-light); margin: 0 0 16px;
}
.footer ul { display: grid; gap: 10px; }
.footer a:hover { color: var(--gold-light); }
.footer__brand { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.footer__brand img { width: 52px; height: 52px; object-fit: contain; }
.footer__bottom {
  border-top: 1px solid rgba(250,248,244,.1); padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .84rem; color: rgba(250,248,244,.42);
}

/* --- Mobile Call-Bar ---------------------------------------------------- */
.callbar { display: none; }

/* --- Rechtstexte -------------------------------------------------------- */
.legal { padding: 150px 0 90px; }
.legal__inner { max-width: 780px; margin-inline: auto; }
.legal h2 { font-size: 1.45rem; margin: 2em 0 .5em; }
.legal p, .legal li { font-size: .98rem; }
.legal ul { list-style: disc; padding-left: 22px; display: grid; gap: 7px; margin-bottom: 1.1em; }
.legal a { color: var(--gold-deep); text-decoration: underline; }
.legal .note {
  background: #fff8e1; border: 1px solid #f0d67c; border-left: 4px solid var(--gold);
  border-radius: 10px; padding: 16px 20px; font-size: .92rem; margin: 26px 0;
}
.legal .note b { color: #6d5200; }
.back { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; font-weight: 600; color: var(--gold-deep); }

/* --- Scroll-Animation ---------------------------------------------------
   Nur aktiv, wenn JavaScript laeuft (.js am <html>). Ohne JS bleibt
   der Inhalt sichtbar statt unsichtbar.
   ----------------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* --- Fokus (Barrierefreiheit) ------------------------------------------- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px;
}

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__tags, .hero .btn-row { justify-content: center; }
  .hero__medallion { order: -1; }
  .medallion { width: min(290px, 62vw); }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  body { font-size: 16px; padding-bottom: 68px; }
  .nav {
    position: fixed; inset: 0 0 auto 0; padding: 96px 26px 34px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(12,12,14,.98);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    transform: translateY(-102%); transition: transform .42s var(--ease);
    box-shadow: 0 20px 50px rgba(0,0,0,.5); z-index: -1;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 16px 0; font-size: 1.08rem; border-bottom: 1px solid rgba(250,248,244,.09); }
  .nav a::after { display: none; }
  .burger { display: block; }
  .header__cta { display: none; }

  .services, .steps, .reasons, .trust__grid, .form__row { grid-template-columns: 1fr; }
  .trust__item + .trust__item { border-left: 0; border-top: 1px solid rgba(201,162,39,.16); }
  .trust__item { padding: 20px 16px; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero__scroll { display: none; }

  .callbar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 99;
    background: rgba(12,12,14,.97);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--line); padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); gap: 9px;
  }
  .callbar a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 8px; border-radius: 11px; font-size: .92rem; font-weight: 600;
  }
  .callbar svg { width: 17px; height: 17px; }
  .callbar .c-call { background: var(--gold-grad); color: #241c00; }
  .callbar .c-wa { background: #25d366; color: #06331a; }
}

@media (max-width: 480px) {
  .service { padding: 30px 24px 28px; }
  .form { padding: 26px 20px; }
  .brand__name { font-size: 1rem; }
  .btn { padding: 13px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .callbar, .hero__scroll, .form { display: none; }
  body { background: #fff; color: #000; padding-bottom: 0; }
}
