/* ───────────────────────────────────────────────────────────────────────
 * Q4 Event — Demo-Microsites — Base Stylesheet
 * Dark industrial theme. Orange accent.
 * ─────────────────────────────────────────────────────────────────────── */

:root {
  --c-bg:           #0a0a0a;
  --c-bg-elev:      #131313;
  --c-bg-card:      #181818;
  --c-bg-card-hov:  #1f1f1f;
  --c-border:       rgba(255, 255, 255, 0.08);
  --c-border-strong:rgba(255, 255, 255, 0.18);
  --c-text:         #f5f5f4;
  --c-text-mute:    #a3a3a3;
  --c-text-faint:   #6b6b6b;
  --c-accent:       #FF6A00;
  --c-accent-hov:   #ff7d24;
  --c-accent-soft:  rgba(255, 106, 0, 0.12);
  --c-warn:         #f5b400;
  --c-danger:       #ef4444;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.55);
  --maxw: 1200px;
  --gap: 24px;
  --header-h: 76px;
  --font-display: 'Inter', 'SF Pro Display', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--c-accent); }
button { font-family: inherit; cursor: pointer; }
ul, ol { padding: 0; margin: 0; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; margin: 0; }
h1 { font-size: clamp(2.4rem, 4.6vw, 4.2rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.7rem, 2.6vw, 2.6rem); letter-spacing: -0.02em; }
h3 { font-size: 1.18rem; }
p { margin: 0 0 1em; }
hr { border: 0; height: 1px; background: var(--c-border); margin: 1.6em 0; }

main { flex: 1; }

.skip-link { position: absolute; left: -9999px; top: 0; padding: 8px 12px; background: var(--c-accent); color: #000; }
.skip-link:focus { left: 0; z-index: 1000; }

/* ─── Layout helpers ─── */
.container { width: 100%; max-width: var(--maxw); padding: 0 24px; margin: 0 auto; }
.container--narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--c-text-mute); }
.small { font-size: 0.88rem; }

.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--c-bg-elev); }
.section--cta { padding: 72px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head--centered { flex-direction: column; align-items: center; text-align: center; }
.section-head__link { font-weight: 600; color: var(--c-accent); }
.section-h { max-width: 22ch; }
.kicker {
  display: inline-block; font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.15em;
  padding: 4px 10px; border: 1px solid var(--c-accent); border-radius: 999px;
  margin-bottom: 14px;
}
.lede { font-size: 1.18rem; color: var(--c-text-mute); max-width: 60ch; }

/* ─── Header / Nav ─── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header[data-scrolled="1"] { border-bottom-color: var(--c-border); background: rgba(10, 10, 10, 0.92); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; position: relative; z-index: 55; }
.brand__text { display: inline-flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-size: 1.05rem; letter-spacing: 0.01em; }
.brand__tag { font-size: 0.72rem; color: var(--c-text-mute); font-weight: 500; letter-spacing: 0.04em; }
.brand__logo {
  height: 96px;
  width: auto;
  margin-top: 6px;
  margin-bottom: -32px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.55));
  transition: height 0.25s ease;
}
@media (max-width: 720px) {
  .brand__logo { height: 64px; margin-bottom: -18px; }
}
.site-header { overflow: visible; }

.site-nav ul { display: flex; gap: 4px; align-items: center; list-style: none; }
.nav-link {
  display: inline-block; padding: 8px 14px; border-radius: 999px;
  font-size: 0.95rem; font-weight: 500; color: var(--c-text-mute);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--c-text); background: var(--c-bg-card); }
.nav-link.is-active { color: var(--c-text); background: var(--c-bg-card); }
.nav-link--cta {
  background: var(--c-accent); color: #000 !important; font-weight: 700;
  margin-left: 6px;
}
.nav-link--cta:hover { background: var(--c-accent-hov); }

.nav-toggle {
  display: none; width: 40px; height: 40px; padding: 8px; background: none; border: 0;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; height: 2px; background: var(--c-text); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed; inset: var(--header-h) 0 0 0; background: var(--c-bg);
    padding: 24px; transform: translateY(-100%); transition: transform 0.3s ease;
    z-index: 40;
  }
  .site-nav[data-open="1"] { transform: translateY(0); }
  .site-nav ul { flex-direction: column; gap: 4px; align-items: stretch; }
  .nav-link { padding: 14px 16px; font-size: 1.05rem; }
  .nav-link--cta { margin-left: 0; text-align: center; margin-top: 8px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; font-size: 0.96rem; font-weight: 600;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--c-accent); color: #000 !important; }
.btn--primary:hover { background: var(--c-accent-hov); color: #000 !important; }
.btn--ghost { background: transparent; color: var(--c-text); border-color: var(--c-border-strong); }
.btn--ghost:hover { background: var(--c-bg-card); color: var(--c-text); }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--sm { padding: 8px 14px; font-size: 0.85rem; }
.btn--block { display: flex; width: 100%; }

/* ─── Hero ─── */
.hero {
  position: relative; overflow: hidden;
  padding: 120px 0 110px;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__glow {
  position: absolute; width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
  border-radius: 50%; filter: blur(120px); opacity: 0.4;
}
.hero__glow--1 { top: -10%; left: -10%; background: radial-gradient(circle, var(--c-accent), transparent 70%); }
.hero__glow--2 { bottom: -20%; right: -10%; background: radial-gradient(circle, #4400aa, transparent 70%); opacity: 0.35; }
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence baseFrequency='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.12; mix-blend-mode: overlay;
}
.hero__inner { position: relative; max-width: 920px; }
.hero__eyebrow {
  display: inline-block; font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.18em;
  padding: 6px 14px; border: 1px solid var(--c-accent); border-radius: 999px;
  margin-bottom: 22px;
}
.hero__headline { font-size: clamp(2.6rem, 5.6vw, 5.4rem); }
.hero__headline strong { color: var(--c-accent); font-weight: 800; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--c-text-mute); margin: 22px 0 38px; max-width: 60ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 28px; list-style: none; margin: 60px 0 0; padding-top: 36px;
  border-top: 1px solid var(--c-border);
}
.hero__stats li { display: flex; flex-direction: column; gap: 4px; }
.hero__stats strong { font-size: 1.9rem; font-weight: 800; color: var(--c-text); }
.hero__stats span { font-size: 0.85rem; color: var(--c-text-mute); }

/* ─── Page hero ─── */
.page-hero { padding: 110px 0 60px; border-bottom: 1px solid var(--c-border); }
.page-hero__h { font-size: clamp(2.2rem, 4vw, 3.6rem); margin-bottom: 14px; }
.page-hero__sub { font-size: 1.1rem; color: var(--c-text-mute); max-width: 60ch; margin: 0 0 24px; }

/* ─── Event grid ─── */
.event-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
}
.event-card {
  background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--r-md);
  padding: 22px; display: grid; gap: 18px;
  grid-template-columns: 76px 1fr; grid-template-rows: auto auto;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.event-card--with-thumb {
  grid-template-columns: 76px 88px 1fr;
}
.event-card__thumb {
  grid-row: 1 / span 2;
  width: 88px;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  background: var(--c-bg-elev);
  display: block;
  position: relative;
}
.event-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.event-card:hover .event-card__thumb img { transform: scale(1.06); }
.event-card__title a { color: inherit; }
.event-card__title a:hover { color: var(--c-accent); }
@media (max-width: 520px) {
  .event-card--with-thumb { grid-template-columns: 64px 72px 1fr; }
  .event-card__thumb { width: 72px; }
}
.event-card:hover { border-color: var(--c-accent); transform: translateY(-2px); background: var(--c-bg-card-hov); }
.event-card__date {
  grid-row: 1 / span 2; display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 10px; background: var(--c-accent); color: #000;
  border-radius: var(--r-sm); font-weight: 800;
}
.event-card__day { font-size: 2.3rem; line-height: 1; }
.event-card__month { font-size: 0.78rem; letter-spacing: 0.1em; }
.event-card__year { font-size: 0.7rem; opacity: 0.7; }
.event-card__body { display: flex; flex-direction: column; gap: 6px; }
.event-card__title { font-size: 1.18rem; }
.event-card__meta { font-size: 0.85rem; color: var(--c-text-mute); margin: 0; }
.event-card__excerpt { font-size: 0.9rem; color: var(--c-text-mute); margin: 8px 0 0; }
.event-card__price { margin: 6px 0 0; font-size: 0.95rem; }
.event-card__price strong { color: var(--c-accent); font-size: 1.05rem; }
.event-card__bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 8px; }
.event-card__cta {
  grid-column: 1 / -1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 14px; background: transparent; border: 1px solid var(--c-border-strong);
  border-radius: 999px; font-size: 0.88rem; font-weight: 600; color: var(--c-text);
  transition: background 0.2s, color 0.2s;
}
.event-card__cta:hover { background: var(--c-accent); color: #000 !important; border-color: var(--c-accent); }
.event-card__actions { grid-column: 1 / -1; display: flex; gap: 8px; }
.event-card--lg { padding: 26px; }

.event-filter { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; max-width: 720px; }
.event-filter input[type="search"] {
  flex: 1; min-width: 260px; padding: 14px 18px; background: var(--c-bg-card);
  border: 1px solid var(--c-border-strong); border-radius: 999px;
  color: var(--c-text); font-size: 0.96rem; font-family: inherit;
}
.event-filter input[type="search"]:focus { outline: none; border-color: var(--c-accent); }
.link-reset { font-size: 0.85rem; color: var(--c-text-mute); }
.result-count { color: var(--c-text-mute); font-size: 0.95rem; margin-bottom: 28px; }
.empty-state { padding: 80px 24px; background: var(--c-bg-card); border: 1px dashed var(--c-border-strong); border-radius: var(--r-lg); text-align: center; }
.empty-state h2 { margin-bottom: 12px; }
.empty-state__hint { font-size: 0.85rem; color: var(--c-text-faint); margin-top: 22px; max-width: 60ch; margin-inline: auto; }
.empty-state code { font-family: var(--font-mono); background: rgba(0,0,0,0.4); padding: 2px 6px; border-radius: 4px; font-size: 0.8rem; word-break: break-all; }

.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 48px; }
.pagination__page { padding: 10px 14px; border-radius: 8px; background: var(--c-bg-card); border: 1px solid var(--c-border); }
.pagination__page.is-current { background: var(--c-accent); color: #000 !important; border-color: var(--c-accent); }

/* ─── Badges ─── */
.badge {
  display: inline-block; padding: 4px 10px; font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; border-radius: 999px;
}
.badge--soft   { background: var(--c-accent-soft); color: var(--c-accent); }
.badge--ghost  { background: transparent; border: 1px solid var(--c-border-strong); color: var(--c-text-mute); }
.badge--warn   { background: rgba(245, 180, 0, 0.18); color: var(--c-warn); }
.badge--danger { background: rgba(239, 68, 68, 0.18); color: var(--c-danger); }

/* ─── Split layout ─── */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 40px; } }

/* ─── Spec card ─── */
.spec-card {
  background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-lg);
}
.spec-card h3 { font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-accent); margin-bottom: 18px; }
.spec-list { display: flex; flex-direction: column; gap: 12px; margin: 0; }
.spec-list > div { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 10px; border-bottom: 1px dashed var(--c-border); }
.spec-list > div:last-child { border-bottom: 0; }
.spec-list dt { color: var(--c-text-mute); font-size: 0.92rem; margin: 0; }
.spec-list dd { margin: 0; font-weight: 600; text-align: right; }

.big-price { font-size: 1.5rem; margin: 0 0 18px; }
.big-price strong { color: var(--c-accent); font-size: 2rem; }

/* ─── Spec grid ─── */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.spec-tile { background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 28px; }
.spec-tile h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-text-mute); margin-bottom: 14px; }
.spec-tile__big { font-size: 2.6rem; font-weight: 800; line-height: 1; margin: 0; color: var(--c-accent); }
.spec-tile__big small { font-size: 1.4rem; font-weight: 700; }
.spec-tile__sub { font-size: 0.9rem; color: var(--c-text-mute); margin: 8px 0 0; }

/* ─── Layout-Visualisierung (Mieten) ─── */
.layout-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.layout-card { background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 22px; }
.layout-card__viz { background: var(--c-bg-elev); border-radius: var(--r-sm); padding: 16px; margin-bottom: 18px; color: var(--c-text-mute); }
.layout-card h3 { margin-bottom: 6px; }
.layout-card p { font-size: 0.93rem; color: var(--c-text-mute); margin: 0; }

/* ─── Type-Grid (Home) ─── */
.type-grid { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin: 0; padding: 0; }
.type-card {
  background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--r-md);
  padding: 28px 22px; text-align: center; font-weight: 700; font-size: 1.05rem;
  transition: border-color 0.2s, color 0.2s;
}
.type-card:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* ─── CTA-Band ─── */
.cta-band {
  background: linear-gradient(120deg, var(--c-bg-card) 0%, var(--c-bg-elev) 100%);
  border: 1px solid var(--c-border); border-radius: var(--r-xl);
  padding: 56px 40px; text-align: center;
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: var(--c-text-mute); max-width: 56ch; margin: 0 auto 24px; }

/* ─── Team ─── */
.team-grid { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; padding: 0; }
.team-card { background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 24px; text-align: center; }
.team-card__avatar { width: 84px; height: 84px; margin: 0 auto 16px; background: var(--c-accent-soft); border-radius: 50%; display: grid; place-items: center; }
.team-card__avatar span { font-weight: 800; font-size: 1.4rem; color: var(--c-accent); letter-spacing: 0.05em; }
.team-card h3 { margin-bottom: 4px; }
.team-card p { color: var(--c-text-mute); font-size: 0.9rem; margin: 0; }

/* ─── Feature-Grid (Gastro) ─── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.feature-card { background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 28px; }
.feature-card h3 { margin-bottom: 10px; color: var(--c-accent); }
.feature-card p { color: var(--c-text-mute); font-size: 0.96rem; }
.feature-card__price { font-weight: 700; color: var(--c-text); margin-top: 14px; }

/* ─── News & Archiv ─── */
.news-list, .archive-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.news-item { padding: 26px; background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--r-md); }
.news-item__meta { display: flex; gap: 12px; align-items: center; font-size: 0.85rem; color: var(--c-text-mute); margin-bottom: 8px; }
.news-item__title { margin-bottom: 6px; }
.archive-item {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 16px; align-items: center;
  padding: 18px 22px; background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--r-md);
}
.archive-item__year { font-family: var(--font-mono); color: var(--c-accent); font-weight: 700; }

/* ─── FAQ ─── */
.faq-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.faq-item details {
  background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--r-md);
  padding: 18px 24px;
}
.faq-item summary { cursor: pointer; font-weight: 700; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; font-size: 1.4rem; color: var(--c-accent); transition: transform 0.2s; }
.faq-item details[open] summary::after { content: "−"; }
.faq-item details[open] summary { color: var(--c-accent); margin-bottom: 10px; }

/* ─── Jobs ─── */
.jobs-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.job-card { background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 22px; }
.job-card__head { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.job-card h3 { margin-bottom: 16px; }

/* ─── Forms ─── */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; color: var(--c-text-mute); }
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 12px 14px; background: var(--c-bg-card); border: 1px solid var(--c-border-strong);
  border-radius: var(--r-sm); color: var(--c-text); font-size: 0.96rem; font-family: inherit;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--c-accent); }
.contact-form .checkbox { flex-direction: row; align-items: flex-start; gap: 10px; font-size: 0.85rem; }
.contact-form .checkbox input { margin-top: 4px; }

/* ─── Prose ─── */
.prose { color: var(--c-text); line-height: 1.7; }
.prose h2 { font-size: 1.4rem; margin: 1.6em 0 0.6em; }
.prose p { margin: 0.6em 0; }
.prose a { color: var(--c-accent); text-decoration: underline; }

/* ─── Link arrow ─── */
.link-arrow { color: var(--c-accent); font-weight: 600; display: inline-block; margin-top: 16px; }
.link-arrow:hover { color: var(--c-accent-hov); }

/* ─── Footer ─── */
.site-footer { background: var(--c-bg-elev); border-top: 1px solid var(--c-border); padding: 64px 0 24px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--c-border); }
.footer-h { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--c-text-mute); margin-bottom: 14px; font-weight: 700; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 0.95rem; }
.footer-list a { color: var(--c-text-mute); }
.footer-list a:hover { color: var(--c-text); }
.footer-social { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 0.95rem; }
.footer-social a { color: var(--c-text-mute); }
.footer-q4 { margin-top: 24px; font-size: 0.82rem; color: var(--c-text-faint); }
.footer-q4 a { color: var(--c-accent); font-weight: 700; }
.footer-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; gap: 16px; flex-wrap: wrap; color: var(--c-text-faint); font-size: 0.85rem; }
.footer-meta__links { list-style: none; display: flex; gap: 18px; }

/* ─── Video Hero ─── */
.hero--video {
  padding: 140px 0 80px;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.hero__video-wrap { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: brightness(0.55) saturate(0.9);
}
.hero__video-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 106, 0, 0.18) 0%, transparent 45%),
    linear-gradient(180deg,
      rgba(10,10,10,0.35) 0%,
      rgba(10,10,10,0.55) 55%,
      rgba(10,10,10,0.92) 100%
    );
}
.hero--video .hero__inner { max-width: var(--maxw); position: relative; padding-inline: 24px; margin: 0 auto; width: 100%; }

.hero__booking-card {
  max-width: 640px;
  background: rgba(18, 18, 18, 0.72);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}
.hero__booking-card .hero__eyebrow { margin-bottom: 18px; }
.hero__booking-card .hero__headline {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero__booking-card .hero__headline strong { color: var(--c-accent); }
.hero__booking-card .hero__sub {
  font-size: 1.05rem;
  color: var(--c-text);
  margin: 0 0 28px;
  opacity: 0.9;
}
.hero__booking-card .hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__stats-wrap { position: relative; padding: 0 24px; }
.hero--video .hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 24px 32px;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
}
.hero--video .hero__stats li { display: flex; flex-direction: column; gap: 2px; }
.hero--video .hero__stats strong { font-size: 1.5rem; font-weight: 800; color: var(--c-text); }
.hero--video .hero__stats span { font-size: 0.78rem; color: var(--c-text-mute); letter-spacing: 0.04em; }

@media (max-width: 640px) {
  .hero--video { padding: 100px 0 60px; min-height: 68vh; }
  .hero__booking-card { padding: 26px 24px; }
}

/* ─── Team Cards (echte Fotos) ─── */
.team-card__photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-bg-elev);
  border: 2px solid var(--c-border);
}
.team-card__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.team-card__role { color: var(--c-accent); font-size: 0.9rem; font-weight: 600; margin: 4px 0 14px; }
.team-card__contact {
  list-style: none; padding: 12px 0 0; margin: 0;
  border-top: 1px solid var(--c-border);
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
}
.team-card__contact a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--c-text-mute); word-break: break-all;
}
.team-card__contact a:hover { color: var(--c-accent); }
.team-card__contact svg { flex-shrink: 0; color: var(--c-accent); }

/* ─── Venue Photo ─── */
.venue-photo-wrap {
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-lg);
}
.venue-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .hero__video { display: none; }
}
