/* ============================================================================
   Total-Event.de — Layout & Komponenten
   Baut auf theme.css auf (Tokens + lokale Fonts).
   ============================================================================ */

.wrap { width: 100%; max-width: var(--page-width); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: 780px; }
.section { position: relative; z-index: 1; padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

/* dunkle Kontrast-Bänder */
.section--dark { background: var(--espresso); color: var(--fg-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream-soft); }
.section--dark .eyebrow { color: var(--gold-light); }
.section--cream { background: var(--ivory-2); }

/* sanfte Verläufe zwischen hell und dunkel */
.fade { height: clamp(60px, 9vw, 130px); position: relative; z-index: 1; }
.fade--to-dark  { background: linear-gradient(to bottom, var(--ivory) 0%, var(--espresso) 100%); }
.fade--from-dark { background: linear-gradient(to bottom, var(--espresso) 0%, var(--ivory) 100%); }
.fade--cream-dark { background: linear-gradient(to bottom, var(--ivory-2) 0%, var(--espresso) 100%); }
.fade--dark-cream { background: linear-gradient(to bottom, var(--espresso) 0%, var(--ivory-2) 100%); }

/* ============================================================================
   Animierter Hintergrund — Champagner/Gold (morphende Shapes + Linien + Punkte)
   Inspiriert vom Beispiel, aber edel-zurückhaltend in Gold statt Orange.
   ============================================================================ */
.bg-fx, .bg-lines, .bg-dots { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-shape { position: absolute; border-radius: 50%; filter: blur(60px); will-change: transform; }
.bg-shape--1 { width: 620px; height: 620px; background: rgba(184,146,78,.16);  top: -140px; left: -160px; animation: morph1 26s ease-in-out infinite; }
.bg-shape--2 { width: 520px; height: 520px; background: linear-gradient(135deg, rgba(231,214,180,.20), rgba(184,146,78,.14)); bottom: 6%; right: -170px; animation: morph2 32s ease-in-out infinite; }
.bg-shape--3 { width: 320px; height: 320px; background: rgba(205,171,110,.15); top: 42%; left: 52%; animation: morph3 22s ease-in-out infinite; }
.bg-shape--4 { width: 380px; height: 380px; background: rgba(184,146,78,.10); top: 64%; left: -110px; animation: morph1 30s ease-in-out infinite reverse; }
.bg-shape--5 { width: 260px; height: 260px; background: linear-gradient(135deg, rgba(231,214,180,.16), rgba(156,122,60,.12)); top: 16%; right: 8%; animation: morph2 28s ease-in-out infinite reverse; }
@keyframes morph1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(34px,52px) scale(1.06); } }
@keyframes morph2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-34px,-44px) scale(1.09); } }
@keyframes morph3 { 0%,100% { transform: translate(0,0) scale(1); opacity:.85; } 50% { transform: translate(-32px,42px) scale(1.18); opacity:.5; } }

.bg-lines { opacity: .10; }
.bg-lines .line { position: absolute; width: 1px; height: 100%; background: linear-gradient(180deg, transparent, rgba(184,146,78,.9) 20%, rgba(184,146,78,.9) 80%, transparent); animation: line-move 9s ease-in-out infinite; }
.bg-lines .line:nth-child(1){left:18%}
.bg-lines .line:nth-child(2){left:39%;animation-delay:-2.4s}
.bg-lines .line:nth-child(3){left:61%;animation-delay:-4.8s}
.bg-lines .line:nth-child(4){left:82%;animation-delay:-7.2s}
@keyframes line-move { 0%,100% { transform: translateY(-10%) scaleY(.8); opacity: 0; } 50% { transform: translateY(0) scaleY(1); opacity: 1; } }

.bg-dots .dot { position: absolute; width: 5px; height: 5px; background: var(--gold-light); border-radius: 50%; opacity: 0; animation: float-dot 14s ease-in-out infinite; }
.bg-dots .dot:nth-child(1){left:14%;top:12%}
.bg-dots .dot:nth-child(2){left:76%;top:22%;animation-delay:-2.5s}
.bg-dots .dot:nth-child(3){left:26%;top:52%;animation-delay:-5s}
.bg-dots .dot:nth-child(4){left:86%;top:42%;animation-delay:-7.5s}
.bg-dots .dot:nth-child(5){left:50%;top:72%;animation-delay:-9.5s}
.bg-dots .dot:nth-child(6){left:35%;top:86%;animation-delay:-11.5s}
.bg-dots .dot:nth-child(7){left:62%;top:62%;animation-delay:-3.5s}
.bg-dots .dot:nth-child(8){left:9%;top:76%;animation-delay:-8.5s}
@keyframes float-dot {
  0%{transform:translateY(0) scale(0);opacity:0}
  12%{opacity:.45;transform:translateY(-16px) scale(.9)}
  40%{opacity:.5;transform:translate(-6px,-56px) scale(1)}
  70%{opacity:.4;transform:translate(7px,-86px) scale(.95)}
  100%{transform:translateY(-112px) scale(0);opacity:0}
}

@media (prefers-reduced-motion: reduce) {
  .bg-shape, .bg-lines .line, .bg-dots .dot { animation: none !important; }
}

/* ============================================================================
   Buttons
   ============================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: 0.92rem;
  letter-spacing: 0.06em; text-transform: uppercase; line-height: 1;
  padding: 16px 30px; border-radius: var(--radius-sm); cursor: pointer;
  border: 1px solid var(--ink); background: var(--ink); color: var(--ivory);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), opacity .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn--gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border-input); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn--on-dark { background: transparent; color: var(--cream-soft); border-color: var(--border-dark); }
.btn--on-dark:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ============================================================================
   Topbar / Navigation
   ============================================================================ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter); gap: 20px;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.topbar.is-scrolled {
  background: rgba(247,242,234,.9); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-ink), 0 10px 30px -24px rgba(29,27,23,.6);
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--cream-soft); transition: color .4s var(--ease); }
.topbar.is-scrolled .brand { color: var(--ink); }
.brand__logo {
  flex: none; width: 46px; height: 33px;
  background-color: var(--cream-soft);
  -webkit-mask: url(assets/logo-had.svg) center / contain no-repeat;
          mask: url(assets/logo-had.svg) center / contain no-repeat;
  transition: background-color .4s var(--ease);
}
.topbar.is-scrolled .brand__logo { background-color: var(--gold-deep); }
.brand__name { display: inline-flex; flex-direction: column; gap: 2px; }
.brand__mark { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; letter-spacing: .02em; line-height: 1; }
.brand__mark b { color: var(--gold); font-weight: 600; }
.brand__sub { font-family: var(--font-body); font-weight: 400; font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; opacity: .8; }
.foot .brand__logo { background-color: var(--gold-light); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 400;
  color: var(--fg-on-dark); position: relative; padding: 4px 0; transition: color .3s var(--ease);
}
.topbar.is-scrolled .nav__links a { color: var(--fg-muted); }
.nav__links a::after { content:""; position:absolute; left:0; right:100%; bottom:-2px; height:1px; background: var(--gold); transition: right .3s var(--ease); }
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { right: 0; }
.topbar.is-scrolled .nav__links a:hover { color: var(--gold-deep); }
.nav .btn { padding: 11px 22px; font-size: .78rem; }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 26px; height: 2px; background: currentColor; margin: 5px 0; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.brand, .nav__toggle { color: var(--cream-soft); }
.topbar.is-scrolled .nav__toggle { color: var(--ink); }

/* ============================================================================
   Hero (Video-Hintergrund, Boomerang)
   ============================================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; color: var(--cream-soft); text-align: center;
  padding: 120px 0 90px;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
}
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(23,20,15,.35) 0%, rgba(23,20,15,.62) 55%, rgba(23,20,15,.82) 100%),
    linear-gradient(180deg, rgba(23,20,15,.30) 0%, rgba(23,20,15,.20) 40%, rgba(23,20,15,.78) 100%);
}
/* zarter Champagner-Schleier, nimmt dem Rot etwas die Härte */
.hero__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; mix-blend-mode: soft-light;
  background: linear-gradient(140deg, rgba(231,214,180,.28), rgba(184,146,78,.12) 60%, transparent);
}
.hero__inner { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { color: #fff; margin-bottom: .35em; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero h1 em { font-style: italic; color: var(--champ); }
.hero__lead {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem); max-width: 40ch; margin: 0 auto 2rem;
  color: var(--fg-on-dark); font-weight: 300; text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--fg-on-dark-subtle);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll::after { content:""; width:1px; height:42px; background: linear-gradient(var(--gold-light), transparent); animation: scrollpulse 2.4s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100%{opacity:.3;transform:scaleY(.6)} 50%{opacity:1;transform:scaleY(1)} }

/* Vertrauens-Leiste unter dem Hero-Text */
.hero__trust {
  margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-on-dark-subtle);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust span::before { content:"✦"; color: var(--gold-light); font-size:.7rem; }

/* ============================================================================
   Equipment: großes Video-Band (Hero-Stil, Hintergrundvideo + Text)
   ============================================================================ */
.videoband {
  position: relative; z-index: 1; overflow: hidden; color: var(--cream-soft);
  display: flex; align-items: center; min-height: min(92vh, 860px);
  padding: clamp(90px, 14vh, 150px) 0;
}
.videoband__media { position: absolute; inset: 0; z-index: 0; }
.videoband__media video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.videoband__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(23,20,15,.88) 0%, rgba(23,20,15,.70) 46%, rgba(23,20,15,.46) 100%),
    linear-gradient(0deg, rgba(23,20,15,.55), rgba(23,20,15,.32));
}
.videoband__media::before {
  content: ""; position: absolute; inset: 0; mix-blend-mode: soft-light;
  background: linear-gradient(140deg, rgba(231,214,180,.20), transparent 60%);
}
.videoband .wrap { position: relative; z-index: 1; }
.videoband__content { max-width: 660px; }
.videoband .eyebrow { color: var(--gold-light); }
.videoband h2 { color: #fff; }
.videoband h2 em { font-style: italic; color: var(--champ); }
.videoband__lead { color: var(--fg-on-dark); font-size: 1.1rem; max-width: 52ch; margin-bottom: 1.6rem; }

/* ============================================================================
   Section-Heads
   ============================================================================ */
.head { max-width: 700px; margin-bottom: clamp(36px, 5vw, 60px); }
.head--center { margin-left: auto; margin-right: auto; text-align: center; }
.head p { font-size: 1.08rem; color: var(--fg-muted); margin-top: .6rem; }
.section--dark .head p { color: var(--fg-on-dark); }

/* dekorative goldene Trennlinie */
.divider { display: flex; align-items: center; gap: 14px; margin: 0 0 1.1rem; }
.head--center .divider { justify-content: center; }
.divider::before, .divider::after { content:""; height:1px; width:38px; background: var(--gold); opacity:.6; }
.divider span { font-size: 1rem; color: var(--gold); }

/* ============================================================================
   Intro / Über mich (Portrait + Text)
   ============================================================================ */
.about { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.about__media::before {
  content:""; position:absolute; inset: 16px -16px -16px 16px; z-index:-1;
  border: 1px solid var(--border-gold); border-radius: var(--radius-lg);
}
.about__badge {
  position: absolute; right: -14px; bottom: 28px;
  background: var(--paper); border: 1px solid var(--border-gold); border-radius: var(--radius);
  padding: 14px 20px; box-shadow: var(--shadow-soft); text-align: center;
}
.about__badge b { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold-deep); display:block; line-height:1; }
.about__badge .badge__pre { font-size: 0.4em; font-weight: 400; letter-spacing: .02em; }
.about__badge span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-subtle); }
.about__text h2 em { font-style: italic; color: var(--gold-deep); }
.about__sign { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--ink); margin-top: 1rem; }

/* ============================================================================
   Leistungen (Karten)
   ============================================================================ */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: var(--paper); border: 1px solid var(--border-ink); border-radius: var(--radius);
  padding: 32px 26px; transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--border-gold); box-shadow: var(--shadow-card); }
.card__icon { width: 46px; height: 46px; color: var(--gold); margin-bottom: 18px; }
.card__icon svg { width: 100%; height: 100%; }
.card h3 { color: var(--ink); margin-bottom: .3em; }
.card p { font-size: .96rem; margin: 0; }

/* ============================================================================
   Equipment (zwei Stufen) + Bild
   ============================================================================ */
.equip { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.equip__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.tier { border-top: 1px solid var(--border-dark); padding: 24px 0; }
.tier:first-of-type { border-top: 0; }
.tier__label { display: flex; align-items: baseline; gap: 12px; margin-bottom: .4rem; }
.tier__num { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-light); }
.tier h3 { color: var(--cream-soft); margin: 0; }
.tier p { margin: 0; color: var(--fg-on-dark); font-size: .98rem; }
.tier--white .tier__num { color: #fff; }

/* ============================================================================
   Musik (Genre-Tags + Range)
   ============================================================================ */
.music__range {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); color: var(--ink);
  margin: 0 0 2rem;
}
.music__range b { color: var(--gold-deep); font-weight: 600; }
.music__range span { font-size: .9rem; font-family: var(--font-body); letter-spacing: .2em; text-transform: uppercase; color: var(--fg-subtle); }
.tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 820px; margin: 0 auto; }
.tag {
  font-size: .9rem; letter-spacing: .04em; padding: 10px 20px; border-radius: 40px;
  border: 1px solid var(--border-gold); color: var(--ink); background: var(--paper);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.tag:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-2px); }
.music__note { text-align: center; max-width: 56ch; margin: 2rem auto 0; color: var(--fg-muted); font-size: 1.02rem; }

/* ============================================================================
   Licht (Feature mit Akzent-Video)
   ============================================================================ */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.feature--rev .feature__media { order: 2; }
.feature__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border-dark); }
.feature__media video, .feature__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature__list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 14px; }
.feature__list li { position: relative; padding-left: 30px; }
.feature__list li::before {
  content:""; position:absolute; left:0; top:.5em; width:14px; height:14px;
  border:1px solid var(--gold); border-radius:50%;
  background: radial-gradient(circle, var(--gold) 0 40%, transparent 45%);
}
.section--dark .feature__list li { color: var(--fg-on-dark); }

/* ============================================================================
   Fotobox
   ============================================================================ */
.fotobox { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.fotobox__points { list-style: none; padding: 0; margin: 1.2rem 0 1.8rem; display: grid; gap: 12px; }
.fotobox__points li { position: relative; padding-left: 28px; }
.fotobox__points li::before { content:"✓"; position:absolute; left:0; color: var(--gold-deep); font-weight: 600; }
.fotobox__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fotobox__gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-card); border: 1px solid var(--border-ink); }
.fotobox__main { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
.fotobox__gallery .thumb { aspect-ratio: 1 / 1; }
.fotobox__credit { grid-column: 1 / -1; font-size: .76rem; color: var(--fg-subtle); text-align: right; margin-top: 2px; }
.fotobox__credit a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================================
   Ablauf (Prozess-Schritte)
   ============================================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); opacity: .5; display:block; line-height:1; margin-bottom: .4rem;
}
.step h3 { font-size: 1.25rem; color: var(--ink); margin-bottom: .3em; }
.step p { font-size: .95rem; margin: 0; }
.section--dark .step h3 { color: var(--cream-soft); }

/* ============================================================================
   Referenzen / Clubs
   ============================================================================ */
.refs { text-align: center; }
.refs__logos { display: flex; flex-wrap: wrap; gap: 18px 40px; justify-content: center; align-items: center; margin-top: 1.4rem; }
.refs__logos .ref {
  font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.1rem); color: var(--cream-soft);
  letter-spacing: .02em; opacity: .85; padding: 6px 4px; position: relative;
}
.refs__logos .ref small { display:block; font-family: var(--font-body); font-size:.6rem; letter-spacing:.24em; text-transform:uppercase; color: var(--gold-light); }
.refs__quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem,3vw,2rem); color: var(--cream-soft); max-width: 24ch; margin: 0 auto; line-height: 1.3; }

/* ============================================================================
   Kontakt + Formular
   ============================================================================ */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 5vw, 70px); align-items: start; }
.contact__aside .eyebrow { color: var(--gold-deep); }
.contact__aside h2 em { font-style: italic; color: var(--gold-deep); }
.contact__direct { margin-top: 1.6rem; display: grid; gap: 14px; }
.contact__direct a, .contact__direct .ci {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  border: 1px solid var(--border-ink); border-radius: var(--radius); background: var(--paper);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.contact__direct a:hover { border-color: var(--border-gold); transform: translateX(3px); }
.contact__direct .ic { width: 22px; height: 22px; color: var(--gold); flex: none; }
.contact__direct .ic svg { width:100%; height:100%; }
.contact__direct b { color: var(--ink); font-weight: 500; display:block; font-size: .98rem; }
.contact__direct span { font-size: .82rem; color: var(--fg-subtle); }

.cform { background: var(--paper); border: 1px solid var(--border-ink); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-card); }
.cform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.fld { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.cform__grid .fld { margin-bottom: 0; }
.fld__label { font-weight: 500; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); }
.fld input, .fld textarea, .fld select {
  font-family: var(--font-body); font-weight: 300; font-size: 1rem; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--border-input); border-radius: var(--radius-sm);
  padding: 13px 15px; width: 100%; resize: vertical; transition: border-color .25s var(--ease), background .25s var(--ease);
}
.fld input:focus, .fld textarea:focus, .fld select:focus { outline: none; border-color: var(--gold); background: var(--paper); box-shadow: 0 0 0 3px rgba(184,146,78,.14); }

.consent { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.consent input { flex: none; width: 18px; height: 18px; margin-top: 3px; accent-color: var(--gold); }
.consent span { font-size: .85rem; line-height: 1.5; color: var(--fg-muted); }
.consent a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }

/* Honeypot: für Menschen & Screenreader unsichtbar, für Bots im DOM */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.cform__foot { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.cform__foot .btn { width: 100%; }
.cform__avail { font-size: .8rem; color: var(--fg-subtle); text-align: center; margin: 0; }
.cform__avail b { color: var(--fg-muted); font-weight: 500; }
.cform__msg { margin-top: 16px; font-size: .95rem; text-align: center; line-height: 1.5; }
.cform__msg.ok { color: var(--success); font-weight: 500; }
.cform__msg.err { color: var(--error); }
.cform.is-disabled { opacity: .6; pointer-events: none; }

/* ============================================================================
   Footer
   ============================================================================ */
.foot { position: relative; z-index: 1; background: var(--espresso-2); color: var(--fg-on-dark); padding: 60px 0 30px; }
.foot__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.foot__brand .brand { color: var(--cream-soft); }
.foot__brand p { margin-top: 1rem; font-size: .92rem; max-width: 34ch; color: var(--fg-on-dark-subtle); }
.foot__col h4 { font-family: var(--font-body); font-weight: 500; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); margin: 0 0 1rem; }
.foot__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot__col a, .foot__col button {
  background: none; border: 0; padding: 0; cursor: pointer; text-align: left;
  font-family: var(--font-body); font-size: .92rem; color: var(--fg-on-dark); transition: color .25s var(--ease);
}
.foot__col a:hover, .foot__col button:hover { color: var(--gold-light); }
.foot__bottom { border-top: 1px solid var(--border-dark); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; font-size: .8rem; color: var(--fg-on-dark-subtle); }

/* ============================================================================
   Reveal-on-scroll
   ============================================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* screenreader-only (für Crawler im DOM, für Menschen versteckt) */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 940px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about, .equip, .feature, .feature--rev, .fotobox, .contact { grid-template-columns: 1fr; }
  .feature--rev .feature__media { order: 0; }
  .equip { gap: 30px; }
  .about__media { max-width: 460px; }
  .nav__links, .nav .btn--anfrage-desktop { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; gap: 4px; position: absolute; top: 100%; right: var(--gutter); left: var(--gutter);
    background: var(--paper); border: 1px solid var(--border-ink); border-radius: var(--radius); padding: 14px 18px;
    box-shadow: var(--shadow-card);
  }
  .nav.is-open .nav__links a { color: var(--fg-muted); padding: 10px 0; }
}
@media (max-width: 560px) {
  .cards, .steps { grid-template-columns: 1fr; }
  .cform__grid { grid-template-columns: 1fr; gap: 18px; }
  .hero__trust { gap: 8px 16px; font-size: .68rem; }
  .foot__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================================
   Rechtsseiten (Impressum / Datenschutz)
   ============================================================================ */
.legal { position: relative; z-index: 1; padding: 130px 0 80px; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--fg-muted); margin-bottom: 24px; }
.legal .back:hover { color: var(--gold-deep); }
.legal__kicker { color: var(--gold-deep); }
.legal h1 { margin-bottom: .2em; }
.legal__stand { font-size: .9rem; color: var(--fg-subtle); margin: 0 0 36px; }
.legal h2 { font-size: clamp(1.5rem,3vw,2rem); margin: 40px 0 14px; padding-top: 24px; border-top: 1px solid var(--border-ink); }
.legal h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--ink); margin: 24px 0 8px; }
.legal p, .legal li { max-width: 70ch; }
.legal ul { padding-left: 22px; margin: 0 0 16px; }
.legal a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal .addr { font-style: normal; line-height: 1.9; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal .emph { display:block; background: rgba(184,146,78,.08); border-left: 3px solid var(--gold); border-radius: 0 6px 6px 0; padding: 14px 18px; font-size: .9rem; line-height: 1.6; }
.legal table { width: 100%; border-collapse: collapse; margin: 8px 0 18px; font-size: .92rem; }
.legal th, .legal td { text-align: left; padding: 11px 14px; border: 1px solid var(--border-ink); }
.legal th { background: rgba(29,27,23,.04); color: var(--ink); font-weight: 600; }
.legal__src { font-size: .82rem; color: var(--fg-subtle); font-style: italic; margin-top: 30px; }

/* ============================================================================
   Hinweis bei externen Links (via external.js)
   ============================================================================ */
.extlink-overlay {
  position: fixed; inset: 0; z-index: 130; background: rgba(23,20,15,.55);
  display: none; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(2px);
}
.extlink-overlay.show { display: flex; }
.extlink-modal {
  background: var(--ivory); border: 1px solid var(--border-gold); border-radius: var(--radius-lg);
  max-width: 460px; width: 100%; padding: 30px 28px; box-shadow: var(--shadow-soft);
}
.extlink-modal h3 { font-size: 1.55rem; color: var(--ink); margin: 0 0 10px; }
.extlink-modal p { font-size: .92rem; line-height: 1.6; color: var(--fg-muted); margin: 0 0 22px; }
.extlink-modal .extlink-host { color: var(--gold-deep); }
.extlink-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.extlink-btns .btn { flex: 1; justify-content: center; font-size: .8rem; }

/* ============================================================================
   Cookie-Banner + Einstellungen (self-injecting via cookie.js)
   ============================================================================ */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 100; max-width: 460px; margin: 0 auto;
  background: var(--paper); border: 1px solid var(--border-gold); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); padding: 22px; transform: translateY(160%); transition: transform .5s var(--ease);
}
.cookie.show { transform: none; }
.cookie h3 { font-size: 1.4rem; color: var(--ink); margin: 0 0 6px; }
.cookie p { font-size: .9rem; line-height: 1.55; color: var(--fg-muted); margin: 0 0 16px; }
.cookie p a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.cookie__btns { display: flex; flex-wrap: wrap; gap: 9px; }
.cookie__btns .btn { flex: 1; font-size: .76rem; padding: 12px 14px; }
.cbtn-text { background: none; border: 0; color: var(--fg-muted); cursor: pointer; font-family: var(--font-body); font-size: .82rem; text-decoration: underline; text-underline-offset: 3px; padding: 8px; width: 100%; margin-top: 4px; }
.cbtn-text:hover { color: var(--ink); }

.cookie-overlay { position: fixed; inset: 0; z-index: 110; background: rgba(23,20,15,.5); display: none; align-items: center; justify-content: center; padding: 20px; }
.cookie-overlay.show { display: flex; }
.cookie-modal { background: var(--ivory); border-radius: var(--radius-lg); max-width: 520px; width: 100%; max-height: 88vh; overflow-y: auto; padding: 30px 28px; }
.cookie-modal h3 { font-size: 1.7rem; margin: 0 0 6px; }
.cookie-modal > p { font-size: .9rem; color: var(--fg-muted); margin: 0 0 20px; }
.cookie-cat { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--border-ink); }
.cookie-cat__txt { flex: 1; }
.cookie-cat__txt strong { font-weight: 600; font-size: 1rem; color: var(--ink); display: block; margin-bottom: 3px; }
.cookie-cat__txt span { font-size: .82rem; color: var(--fg-subtle); line-height: 1.5; }
.switch { position: relative; flex: none; width: 46px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; inset: 0; background: rgba(29,27,23,.22); border-radius: 40px; transition: background .2s var(--ease); cursor: pointer; }
.slider::before { content:""; position:absolute; left:3px; top:3px; width:20px; height:20px; background: var(--paper); border-radius:50%; transition: transform .2s var(--ease); }
.switch input:checked + .slider { background: var(--gold); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { background: var(--champ); cursor: not-allowed; }
.cookie-modal__btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.cookie-modal__btns .btn { flex: 1; font-size: .78rem; }

@media (max-width: 520px) { .cookie__btns { flex-direction: column; } }
