/* =========================================================================
   BRASSLBANDE — Cover-Brassband aus dem Mühlviertel
   Static site styles · self-hosted fonts · no external requests
   ========================================================================= */

/* ----------  Fonts  ---------- */
@font-face {
  font-family: "Anton";
  src: url("../fonts/anton.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/oswald.woff2") format("woff2");
  font-weight: 200 700;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

/* ----------  Design tokens  ---------- */
:root {
  --bg:        #0b0a08;
  --bg-2:      #131009;
  --bg-3:      #1c1710;
  --ink:       #f6f1e6;
  --ink-soft:  #cabfa9;
  --ink-mute:  #8b8272;
  --brass:     #e9b84f;
  --brass-hi:  #ffde93;
  --brass-lo:  #cf9c39;
  --brass-deep:#b3842c;
  --line:      rgba(233,184,79,.16);
  --card:      rgba(255,255,255,.028);
  --card-brd:  rgba(255,255,255,.08);

  --display: "Anton", "Oswald", Impact, sans-serif;
  --head:    "Oswald", "Inter", system-ui, sans-serif;
  --body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --brass-grad: linear-gradient(160deg, var(--brass-hi) 0%, var(--brass) 52%, var(--brass-lo) 100%);
}

/* ----------  Reset  ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--brass); color: #1a1204; }

/* subtle film grain over everything */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----------  Shared layout  ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { position: relative; }

.eyebrow {
  font-family: var(--head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .78rem;
  color: var(--brass);
  display: inline-flex; align-items: center; gap: .7em;
}
.eyebrow::before {
  content: ""; width: 34px; height: 2px;
  background: var(--brass-grad);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ""; width: 34px; height: 2px; background: var(--brass-grad);
}

.section-head { max-width: 720px; margin-bottom: clamp(36px, 6vw, 68px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--display);
  font-weight: 400;
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  margin: .28em 0 .35em;
}
.section-title .g { -webkit-background-clip: text; background-clip: text; color: transparent; background-image: var(--brass-grad); }
.section-sub { color: var(--ink-soft); font-size: clamp(1rem, 1.4vw, 1.12rem); }

/* gold divider text-gradient util */
.g { background-image: var(--brass-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* buttons */
.btn {
  --_pad: 1.05em 1.9em;
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; font-size: .86rem;
  padding: var(--_pad);
  border-radius: 999px; border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary {
  background: var(--brass-grad); color: #1a1204;
  box-shadow: 0 10px 30px -12px rgba(232,176,75,.65);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -14px rgba(232,176,75,.8); }
.btn-ghost { border-color: rgba(246,241,230,.28); color: var(--ink); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-hi); transform: translateY(-3px); }

/* ====================================================================
   HEADER / NAV
   ==================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s, padding .35s;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(11,10,8,.72);
  backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line), 0 12px 40px -20px rgba(0,0,0,.9);
  padding: 10px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; }
.brand img { height: 46px; width: auto; }
.scrolled .brand img { height: 40px; transition: height .35s; }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-links a.navlink {
  font-family: var(--head); font-weight: 500; text-transform: uppercase;
  letter-spacing: .14em; font-size: .82rem; color: var(--ink-soft);
  position: relative; padding: 6px 0; transition: color .25s;
}
.nav-links a.navlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--brass-grad); transition: width .3s ease;
}
.nav-links a.navlink:hover { color: var(--ink); }
.nav-links a.navlink:hover::after { width: 100%; }
.nav-ig { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--card-brd); color: var(--ink-soft); transition: .25s; }
.nav-ig:hover { color: var(--brass-hi); border-color: var(--brass); transform: translateY(-2px); }
.nav-ig svg { width: 19px; height: 19px; }
.nav-cta { padding: .8em 1.4em; }

.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 1px solid var(--card-brd); border-radius: 10px; }
.burger span { width: 22px; height: 2px; background: var(--ink); transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====================================================================
   HERO
   ==================================================================== */
.hero { min-height: 100svh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 90px; }
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img { width: 100%; height: 120%; object-fit: cover; object-position: center 30%; filter: grayscale(.25) contrast(1.05); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 15% 20%, rgba(11,10,8,.35), transparent 55%),
    linear-gradient(180deg, rgba(11,10,8,.6) 0%, rgba(11,10,8,.35) 35%, rgba(11,10,8,.82) 78%, var(--bg) 100%),
    linear-gradient(90deg, rgba(11,10,8,.75), transparent 60%);
}
.hero-glow { position: absolute; z-index: -2; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px; right: -10vw; top: -10vw; border-radius: 50%; background: radial-gradient(circle, rgba(232,176,75,.22), transparent 62%); filter: blur(20px); pointer-events: none; }

.hero-inner { position: relative; max-width: 900px; }
.hero-tag { margin-bottom: 22px; }
.hero h1 {
  font-family: var(--display); font-weight: 400;
  text-transform: uppercase; line-height: .86; letter-spacing: .005em;
  font-size: clamp(3.6rem, 15vw, 12rem);
  margin: 0 0 .12em; text-shadow: 0 14px 60px rgba(0,0,0,.6);
}
.hero h1 .g { filter: drop-shadow(0 6px 26px rgba(232,176,75,.25)); }
.hero-desc { max-width: 620px; margin-top: 1.2rem; color: var(--ink-soft); font-size: clamp(1rem, 1.5vw, 1.16rem); margin-bottom: 2.2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--ink-mute); font-family: var(--head); text-transform: uppercase; letter-spacing: .25em; font-size: .64rem; z-index: 2; }
.scroll-cue .mouse { width: 24px; height: 40px; border: 2px solid var(--ink-mute); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; border-radius: 4px; background: var(--brass); transform: translateX(-50%); animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,12px)} 100%{opacity:0} }

/* ----------  Marquee  ---------- */
.marquee { border-block: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-2), var(--bg)); overflow: hidden; padding: 18px 0; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: scrollx 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.3rem, 3vw, 2.2rem); letter-spacing: .02em; color: transparent; -webkit-text-stroke: 1.3px rgba(232,176,75,.55); padding: 0 .55em; display: inline-flex; align-items: center; gap: .55em; }
.marquee-item .dot { width: .32em; height: .32em; border-radius: 50%; background: var(--brass); -webkit-text-stroke: 0; }
.marquee-item:nth-child(3n) { color: var(--brass); -webkit-text-stroke: 0; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ====================================================================
   SERVICES
   ==================================================================== */
.services { padding: clamp(70px, 10vw, 130px) 0; background: var(--bg); }
.services-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.svc {
  flex: 1 1 200px; max-width: 260px;
  position: relative; padding: 30px 26px 34px; border-radius: 18px;
  background: var(--card); border: 1px solid var(--card-brd);
  overflow: hidden; transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s, background .35s;
}
.svc::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 50% -20%, rgba(232,176,75,.14), transparent 60%); opacity: 0; transition: opacity .35s; pointer-events: none; }
.svc:hover { transform: translateY(-8px); border-color: var(--brass); background: rgba(232,176,75,.04); }
.svc:hover::before { opacity: 1; }
.svc-ico { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: rgba(232,176,75,.12); color: var(--brass-hi); margin-bottom: 18px; }
.svc-ico svg { width: 26px; height: 26px; }
.svc h3 { font-family: var(--head); text-transform: uppercase; letter-spacing: .06em; font-size: 1.18rem; font-weight: 600; margin-bottom: 8px; }
.svc p { color: var(--ink-mute); font-size: .95rem; }

/* ====================================================================
   ABOUT / INTRO STRIP
   ==================================================================== */
.intro { padding: clamp(60px, 9vw, 120px) 0; background: linear-gradient(180deg, var(--bg), var(--bg-2)); border-top: 1px solid var(--line); }
.intro-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.intro-lead { font-family: var(--head); font-weight: 300; font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1.28; letter-spacing: .005em; }
.intro-lead b { font-weight: 600; }
.intro-body p { color: var(--ink-soft); margin-bottom: 1.1em; }
.intro-body p:last-child { margin-bottom: 0; }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.stat { text-align: left; }
.stat .num { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; color: var(--brass-hi); }
.stat .lbl { font-family: var(--head); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; color: var(--ink-mute); margin-top: 6px; }

/* ====================================================================
   REPERTOIRE
   ==================================================================== */
.repertoire { padding: clamp(70px, 10vw, 130px) 0; background: var(--bg-2); }
.rep-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; align-items: start; }
.rep-card { position: relative; padding: 34px 30px 30px; border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); border: 1px solid var(--card-brd); overflow: hidden; transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .4s; }
.rep-count { font-family: var(--head); text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; color: var(--ink-mute); margin-bottom: 18px; }
.rep-card:hover { transform: translateY(-6px); border-color: var(--line); }
.rep-card .rep-num { position: absolute; right: 18px; top: 6px; font-family: var(--display); font-size: 5rem; color: rgba(232,176,75,.07); line-height: 1; }
.rep-card h3 { font-family: var(--head); text-transform: uppercase; letter-spacing: .05em; font-size: 1.24rem; font-weight: 600; margin-bottom: 20px; color: var(--brass-hi); position: relative; }
.rep-card h3::after { content: ""; display: block; width: 46px; height: 3px; background: var(--brass-grad); margin-top: 12px; border-radius: 3px; }
.rep-list li { display: flex; align-items: baseline; gap: 12px; padding: 9px 0; border-bottom: 1px dashed rgba(255,255,255,.07); font-size: .98rem; }
.rep-list li:last-child { border-bottom: 0; }
.rep-list li .song { font-weight: 600; color: var(--ink); }
.rep-list li .artist { color: var(--ink-mute); font-size: .86rem; margin-left: auto; text-align: right; }
.rep-list li.more { color: var(--brass); font-family: var(--head); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; justify-content: center; padding-top: 16px; }
.rep-list li.more::before { content: "♪"; margin-right: .4em; }

/* ====================================================================
   TEAM / DIE BANDE
   ==================================================================== */
.team { padding: clamp(70px, 10vw, 130px) 0; background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.member { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; background: var(--bg-3); border: 1px solid var(--card-brd); }
.member img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.55) contrast(1.03); transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .5s; }
.member:hover img { transform: scale(1.06); filter: grayscale(0) contrast(1.05); }
.member-grad { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,7,5,.35) 62%, rgba(8,7,5,.94) 100%); }
.member-meta { position: absolute; left: 18px; right: 14px; bottom: 16px; z-index: 2; transform: translateY(6px); transition: transform .4s; }
.member:hover .member-meta { transform: translateY(0); }
.member-meta h3 { font-family: var(--head); font-weight: 600; font-size: 1.12rem; letter-spacing: .01em; }
.member-meta .role { font-size: .8rem; color: var(--brass-hi); font-family: var(--head); text-transform: uppercase; letter-spacing: .12em; margin-top: 3px; }
.member-line { position: absolute; left: 18px; bottom: 62px; width: 0; height: 3px; background: var(--brass-grad); z-index: 2; transition: width .45s ease; border-radius: 3px; }
.member:hover .member-line { width: 42px; }
/* photoless placeholder */
.member.ph { display: grid; place-items: center; background: radial-gradient(120% 100% at 50% 0%, var(--bg-3), var(--bg-2)); }
.member.ph .ph-mark { font-family: var(--display); font-size: 3.4rem; color: transparent; -webkit-text-stroke: 1.5px rgba(232,176,75,.5); }
.member.ph .ph-ico { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(232,176,75,.10); }
.member.ph .ph-ico svg { width: 46%; height: 46%; }

/* ====================================================================
   INSTAGRAM CTA
   ==================================================================== */
.ig-band { padding: clamp(60px, 9vw, 120px) 0; background: var(--bg); text-align: center; position: relative; overflow: hidden; }
.ig-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 120%, rgba(232,176,75,.12), transparent 60%); }
.ig-inner { position: relative; max-width: 640px; margin: 0 auto; }
.ig-mark { width: 76px; height: 76px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 22px; background: var(--brass-grad); color: #1a1204; box-shadow: 0 18px 50px -18px rgba(232,176,75,.7); }
.ig-mark svg { width: 40px; height: 40px; }
.ig-band h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(2rem, 6vw, 3.6rem); line-height: .95; margin-bottom: .4em; }
.ig-band p { color: var(--ink-soft); margin-bottom: 1.6em; }
.ig-handle { font-family: var(--head); font-weight: 600; }

/* ====================================================================
   CONTACT
   ==================================================================== */
.contact { padding: clamp(70px, 10vw, 130px) 0; background: linear-gradient(180deg, var(--bg), var(--bg-2)); border-top: 1px solid var(--line); }
.contact-inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(34px, 6vw, 74px); align-items: start; }
.contact-aside h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: .95; margin: .25em 0 .5em; }
.contact-aside p { color: var(--ink-soft); margin-bottom: 1.6em; max-width: 44ch; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.cinfo { display: flex; align-items: center; gap: 14px; }
.cinfo .ci-ico { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 12px; background: rgba(232,176,75,.1); color: var(--brass-hi); }
.cinfo .ci-ico svg { width: 20px; height: 20px; }
.cinfo .ci-lbl { font-family: var(--head); text-transform: uppercase; letter-spacing: .16em; font-size: .68rem; color: var(--ink-mute); }
.cinfo .ci-val { font-weight: 600; color: var(--ink); }
.cinfo a.ci-val:hover { color: var(--brass-hi); }

/* form */
.form-card { background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); border: 1px solid var(--card-brd); border-radius: 22px; padding: clamp(24px, 4vw, 40px); }
.field { margin-bottom: 20px; position: relative; }
.field label { display: block; font-family: var(--head); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--ink-soft); margin-bottom: 9px; }
.field label .req { color: var(--brass); }
.field input, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: rgba(0,0,0,.28); border: 1px solid var(--card-brd);
  border-radius: 12px; padding: 14px 16px; transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(232,176,75,.16); background: rgba(0,0,0,.42); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-submit { width: 100%; justify-content: center; border: 0; margin-top: 4px; }
.form-note { font-size: .82rem; color: var(--ink-mute); margin-top: 14px; text-align: center; }
.form-msg { margin-top: 16px; padding: 14px 16px; border-radius: 12px; font-size: .92rem; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: rgba(232,176,75,.12); border: 1px solid var(--brass); color: var(--brass-hi); }
.form-msg.err { background: rgba(224,90,70,.12); border: 1px solid #e05a46; color: #f0a596; }
.btn.loading { opacity: .7; pointer-events: none; }
.btn.loading .btn-txt::after { content: "…"; }

/* ====================================================================
   MAIL CTA CARD (statt Formular)
   ==================================================================== */
.mail-card { text-align: center; background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); border: 1px solid var(--card-brd); border-radius: 22px; padding: clamp(30px, 5vw, 48px); display: flex; flex-direction: column; align-items: center; }
.mail-ico { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; background: rgba(233,184,79,.12); color: var(--brass-hi); margin-bottom: 20px; }
.mail-ico svg { width: 30px; height: 30px; }
.mail-card h3 { font-family: var(--head); text-transform: uppercase; letter-spacing: .04em; font-size: 1.5rem; margin-bottom: 10px; }
.mail-card > p { color: var(--ink-soft); margin-bottom: 24px; max-width: 40ch; }
.mail-btn { max-width: 100%; white-space: normal; text-align: center; }
.mail-note { font-size: .82rem; color: var(--ink-mute); margin-top: 16px; margin-bottom: 0; }

/* ====================================================================
   ANLASS-MODALS  (Details je Anlass — im Dialog)
   ==================================================================== */
.svc-more { position: relative; z-index: 1; margin-top: 20px; display: inline-flex; align-items: center; gap: .5em; background: none; border: 0; padding: 0; color: var(--brass-hi); font-family: var(--head); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .76rem; cursor: pointer; }
.svc-more svg { width: 1.05em; height: 1.05em; transition: transform .25s; }
.svc-more:hover svg { transform: translateX(4px); }

.anlass-modal { border: 0; padding: 20px; margin: 0; width: 100%; max-width: 100%; height: 100%; max-height: 100%; background: transparent; color: var(--ink); }
.anlass-modal:not([open]) { display: none; }
.anlass-modal[open] { display: flex; align-items: center; justify-content: center; }
.anlass-modal::backdrop { background: rgba(6,5,4,.72); backdrop-filter: blur(5px); }
.modal-inner { position: relative; width: 100%; max-width: 640px; max-height: 86vh; overflow-y: auto; background: linear-gradient(180deg, var(--bg-3), var(--bg-2)); border: 1px solid var(--card-brd); border-radius: 22px; padding: clamp(28px, 5vw, 46px); box-shadow: 0 40px 100px -30px #000; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--card-brd); background: rgba(0,0,0,.35); color: var(--ink-soft); font-size: 1.5rem; line-height: 1; display: grid; place-items: center; cursor: pointer; transition: .2s; z-index: 2; }
.modal-close:hover { color: var(--brass-hi); border-color: var(--brass); }
.anlass-modal h2 { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.7rem, 4.6vw, 2.7rem); line-height: 1; margin: .35em 0 .5em; padding-right: 44px; }
.modal-lead { color: var(--ink-soft); margin-bottom: 26px; }
.modal-list { list-style: none; margin: 0 0 28px; padding: 0; }
.modal-list li { position: relative; padding: 11px 0 11px 28px; border-bottom: 1px dashed rgba(255,255,255,.08); }
.modal-list li:last-child { border-bottom: 0; }
.modal-list li::before { content: ""; position: absolute; left: 2px; top: 18px; width: 9px; height: 9px; border-radius: 50%; background: var(--brass-grad); }
.anlass-modal .timeline { margin-bottom: 28px; }
.anlass-modal .timeline::before { bottom: 28px; }
.anlass-modal .btn { width: 100%; justify-content: center; }

/* ---- Timeline (in den Modals verwendet) ---- */
.timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; left: 22px; top: 10px; bottom: 26px; width: 2px; background: linear-gradient(var(--brass), rgba(232,176,75,.05)); }
.tl-item { position: relative; display: flex; gap: 22px; padding-bottom: 28px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-num { flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--head); font-weight: 600; font-size: 1.05rem; background: var(--bg-3); border: 1px solid var(--brass); color: var(--brass-hi); z-index: 1; box-shadow: 0 0 0 6px var(--bg-2); }
.tl-body h3 { font-family: var(--head); text-transform: uppercase; letter-spacing: .04em; font-size: 1.12rem; margin-bottom: 5px; }
.tl-body p { color: var(--ink-soft); font-size: .97rem; }

/* ====================================================================
   FAQ
   ==================================================================== */
.faq { padding: clamp(70px, 10vw, 130px) 0; background: var(--bg); }
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item { border: 1px solid var(--card-brd); border-radius: 14px; margin-bottom: 12px; background: var(--card); overflow: hidden; transition: border-color .3s; }
.faq-item[open] { border-color: var(--line); background: rgba(232,176,75,.03); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--head); font-weight: 600; font-size: 1.06rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; line-height: 1; color: var(--brass); transition: transform .3s; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--brass-hi); }
.faq-a { padding: 0 24px 22px; color: var(--ink-soft); font-size: .98rem; }
.faq-a a { color: var(--brass-hi); text-decoration: underline; }

/* ====================================================================
   FOOTER
   ==================================================================== */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: clamp(48px, 7vw, 80px) 0 30px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; align-items: flex-start; margin-bottom: 44px; }
.footer-brand { max-width: 340px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand img { height: 58px; }
.footer-brand p { color: var(--ink-mute); font-size: .95rem; }
.footer-nav { display: flex; gap: clamp(30px, 6vw, 70px); flex-wrap: wrap; }
.footer-col h4 { font-family: var(--head); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; color: var(--ink-mute); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--ink-soft); padding: 5px 0; font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--brass-hi); }
.footer-socials { display: flex; gap: 10px; margin-top: 4px; }
.footer-socials a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--card-brd); color: var(--ink-soft); transition: .25s; }
.footer-socials a:hover { color: var(--brass-hi); border-color: var(--brass); transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--ink-mute); font-size: .82rem; }
.footer-bottom a:hover { color: var(--brass-hi); }

/* ====================================================================
   REVEAL ANIMATIONS
   ==================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 920px) {
  .intro-inner, .contact-inner { grid-template-columns: 1fr; }
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px; padding: 40px; background: rgba(13,11,8,.97); backdrop-filter: blur(16px); transform: translateX(105%); transition: transform .4s cubic-bezier(.2,.8,.2,1); box-shadow: -30px 0 80px -30px #000; }
  .nav-links.open { transform: none; }
  .nav-links a.navlink { font-size: 1.15rem; }
  .burger { display: flex; }
  .nav-cta { display: none; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; justify-content: center; }
  .footer-top { flex-direction: column; }
}

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