/* ============================================================
   Gastro & Friends — Stylesheet
   Design-Tokens laut Brief Abschnitt 4:
   90% Premium Dark, Messing-Gold dominant, Tannengrün als Akzent.
   ============================================================ */

:root {
  /* Farben */
  --bg-dark: #161513;      /* Charcoal — Header, Footer, Hero, dunkle Sections */
  --bg-light: #F7F5F0;     /* warmes Off-White — Content, Lesbarkeit */
  --accent-gold: #C9A46A;  /* Messing — primäre CTAs, Highlights, Icons */
  --accent-gold-deep: #A9814A; /* Hover-Flächen */
  --gold-text: #8A6634;    /* Gold als TEXT auf hellem Grund — WCAG 4.5:1 */
  --accent-green: #2F5B3F; /* Tannengrün — sekundär, v.a. Crew */
  --accent-green-bright: #3C7A52;
  --text-dark: #1B1A17;
  --text-light: #F2EEE6;
  --text-muted-dark: #6B6357;   /* gedämpfter Text auf hell */
  --text-muted-light: #A9A093;  /* gedämpfter Text auf dunkel */
  --line-dark: rgba(27, 26, 23, 0.14);   /* Trennlinien auf hell */
  --line-light: rgba(242, 238, 230, 0.14); /* Trennlinien auf dunkel */

  /* Typografie — Montserrat sitewide (wie Wortmarke / alte Website) */
  --font-display: "Montserrat", "Montserrat-fallback", system-ui, sans-serif;
  --font-body: "Montserrat", "Montserrat-fallback", system-ui, sans-serif;

  /* Type-Scale (fluid) */
  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.35rem + 0.7vw, 1.95rem);
  --step-3:  clamp(1.9rem, 1.6rem + 1.5vw, 2.9rem);
  --step-4:  clamp(2.4rem, 1.9rem + 2.6vw, 4.2rem);
  --step-5:  clamp(3rem, 2.2rem + 4vw, 5.6rem);

  /* Layout */
  --container: 1200px;
  --container-narrow: 760px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4rem, 8vw, 8rem);
  --radius: 2px; /* fast eckig — Premium, keine verspielten Rundungen */

  /* Motion-Tokens (WEBSITE_STANDARDS §2.1) */
  --dur-instant: 100ms;
  --dur-fast:    180ms;
  --dur-base:    260ms;
  --dur-slow:    420ms;
  --dur-reveal:  650ms;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.7, 0, 0.84, 0);
  --ease-inout:  cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Mehrschichtige Schatten (§1.4) */
  --shadow-sm: 0 1px 2px rgb(22 21 19 / .05), 0 2px 6px rgb(22 21 19 / .04);
  --shadow-md: 0 1px 2px rgb(22 21 19 / .04), 0 4px 8px rgb(22 21 19 / .04), 0 12px 24px rgb(22 21 19 / .05);
  --shadow-lg: 0 2px 4px rgb(0 0 0 / .12), 0 8px 16px rgb(0 0 0 / .14), 0 24px 48px rgb(0 0 0 / .18);
}

/* View Transitions als progressive Verbesserung (§2.5) */
@view-transition { navigation: auto; }

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scrollbar-gutter: stable; }

/* Brand-Selection (§3) */
::selection { background: var(--accent-gold); color: var(--text-dark); }

/* Fallback-Font metrisch an Montserrat angepasst — kein Swap-Shift (§4) */
@font-face {
  font-family: "Montserrat-fallback";
  src: local("Arial");
  size-adjust: 112%;
  ascent-override: 92%;
  descent-override: 24%;
  line-gap-override: 0%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
a, button { touch-action: manipulation; }

/* Sichtbarer Tastatur-Fokus überall (WCAG) */
:focus-visible { outline: 2px solid var(--accent-gold); outline-offset: 3px; }
.section--dark :focus-visible, .site-header :focus-visible, .site-footer :focus-visible { outline-color: var(--accent-gold); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
  letter-spacing: -0.02em;
}
p { text-wrap: pretty; }

/* ---------- Hilfsklassen ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--dark { background: var(--bg-dark); color: var(--text-light); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--text-light); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 2rem; height: 1px;
  background: var(--accent-gold);
  display: inline-block;
}
.section--dark .eyebrow { color: var(--accent-gold); }

.lede { font-size: var(--step-1); line-height: 1.5; color: inherit; }
.muted { color: var(--text-muted-dark); }
.section--dark .muted { color: var(--text-muted-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-body); font-weight: 600;
  font-size: var(--step-0);
  padding: 0.85em 1.6em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    background-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}
.btn:focus-visible { outline: 2px solid var(--accent-gold); outline-offset: 3px; }
/* Taktiles Feedback (§2.4) */
.btn:active { transform: scale(0.98); transition-duration: var(--dur-instant); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.btn--primary { background: var(--accent-gold); color: var(--text-dark); }
.btn--ghost { background: transparent; color: currentColor; border-color: currentColor; }
.btn--green { background: var(--accent-green); color: var(--text-light); }
.btn .arrow { transition: transform var(--dur-fast) var(--ease-out); }
/* Hover nur an Zeigergeräten (§2.4) */
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); }
  .btn--primary:hover { background: var(--accent-gold-deep); box-shadow: var(--shadow-md); }
  .btn--ghost:hover { background: currentColor; }
  .section--dark .btn--ghost:hover { color: var(--bg-dark); }
  .btn--green:hover { background: var(--accent-green-bright); box-shadow: var(--shadow-md); }
  .btn:hover .arrow { transform: translateX(3px); }
}

/* Textlink mit Pfeil */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; color: var(--gold-text);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, gap 0.2s ease;
}
.section--dark .link-arrow, .hero .link-arrow, .crew-teaser .link-arrow { color: var(--accent-gold); }
.link-arrow:hover { border-color: currentColor; gap: 0.8em; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #FFFFFF; color: var(--text-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow var(--dur-base) var(--ease-out);
}
/* Zustandswechsel ab ~80px Scroll (§2.5) */
.site-header.is-scrolled { box-shadow: var(--shadow-md); }
.site-header__inner { transition: min-height var(--dur-base) var(--ease-out); }
.site-header.is-scrolled .site-header__inner { min-height: 60px; }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; min-height: 72px;
}
/* Wortmarke in Montserrat (wie bestehende Website) — cleanes Und-Zeichen */
.brand { font-family: "Montserrat", var(--font-body); font-weight: 700; font-size: var(--step-0); letter-spacing: 0.01em; color: var(--text-dark); white-space: nowrap; display: inline-flex; align-items: center; gap: 0.6rem; text-transform: uppercase; }
.brand b { font-weight: 600; }
.brand__mark { width: 53px; height: 48px; flex: none; }
.brand__mark--lg { width: 68px; height: 62px; }
.brand b { font-weight: 400; }

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav__item { position: relative; }
.nav__link {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.35em;
  padding: 0.7em 0.9em; font-weight: 500; font-size: var(--step-0);
  color: var(--text-dark);
  transition: color var(--dur-fast) var(--ease-out);
  /* Button-Reset (Leistungen-Dropdown ist ein <button>) */
  background: none; border: 0;
  font-family: inherit; cursor: pointer; white-space: nowrap;
}
/* Animierter Unterstrich: wächst von links, verlässt nach rechts (§2.4) */
.nav__link::after {
  content: ""; position: absolute; left: 0.9em; right: 0.9em; bottom: 0.4em;
  height: 2px; background: var(--accent-gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav__link:hover::after, .nav__link[aria-expanded="true"]::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
/* Nav-CTA nur mobil (Desktop hat header__cta rechts) */
.nav > .btn { display: none; }
.nav__link:hover, .nav__link[aria-expanded="true"] { color: var(--gold-text); }
/* Aktive Seite sichtbar markieren */
.nav__link[aria-current="page"], .nav__submenu a[aria-current="page"] { color: var(--gold-text); }
.nav__submenu a[aria-current="page"] { border-left-color: var(--accent-gold); }
.nav__caret { width: 0.7em; transition: transform 0.2s ease; }
.nav__link[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }

.nav__submenu {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: #FFFFFF; border: 1px solid var(--line-dark);
  padding: 0.5rem; display: none; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.nav__item--open .nav__submenu { display: flex; }
.nav__submenu a {
  padding: 0.7em 0.9em; color: var(--text-dark); font-size: var(--step-0);
  border-left: 2px solid transparent; transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}
.nav__submenu a:hover { color: var(--gold-text); border-color: var(--accent-gold); background: rgba(201,164,106,0.08); }

.header__cta { display: inline-flex; white-space: nowrap; flex: none; }
.nav-toggle { display: none; }

/* Mobile-Nav */
@media (max-width: 940px) {
  .header__cta { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer; padding: 0.6em;
  }
  .nav-toggle span { width: 26px; height: 2px; background: var(--text-dark); transition: transform 0.25s, opacity 0.25s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav {
    position: fixed; inset: 72px 0 auto 0;
    background: #FFFFFF;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 1rem var(--gutter) 2rem;
    border-bottom: 1px solid var(--line-dark);
    max-height: calc(100dvh - 72px); overflow-y: auto;
    transform: translateY(-120%); transition: transform 0.3s ease;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav__link { padding: 1em 0; justify-content: space-between; border-bottom: 1px solid var(--line-dark); }
  .nav__submenu {
    position: static; display: block; min-width: 0; border: 0; box-shadow: none;
    max-height: 0; overflow: hidden; padding: 0 0 0 1rem; transition: max-height 0.3s ease;
  }
  .nav__item--open .nav__submenu { max-height: 400px; }
  .nav > .btn { display: inline-flex; margin-top: 1.25rem; justify-content: center; }
}

/* ============================================================
   Bild-Slot Platzhalter (bis Higgsfield-Assets da sind)
   ============================================================ */
.imgslot {
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  text-align: center; padding: 1.5rem;
  background:
    repeating-linear-gradient(45deg, rgba(201,164,106,0.06) 0 12px, transparent 12px 24px),
    var(--bg-dark);
  border: 1px dashed var(--accent-gold);
  color: var(--text-muted-light);
  min-height: 220px;
}
.imgslot__tag { font-size: var(--step--1); letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-gold); font-weight: 600; }
.imgslot__desc { font-size: var(--step--1); max-width: 34ch; }
.imgslot__meta { font-size: 0.72rem; font-family: var(--font-body); color: var(--text-muted-light); letter-spacing: 0.05em; }
.imgslot--wide { aspect-ratio: 16/9; }
.imgslot--square { aspect-ratio: 1/1; }
.imgslot--portrait { aspect-ratio: 3/4; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #FFFFFF; color: var(--text-dark); border-top: 1px solid var(--line-dark); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr auto; gap: 2.5rem 3rem; align-items: start; }
.footer__brand .brand { font-size: var(--step-2); }
.footer__tag { color: var(--text-muted-dark); margin-top: 0.75rem; max-width: 32ch; }
.footer__membership { display: flex; justify-content: flex-end; align-items: flex-start; }
.footer__membership img { height: 120px; width: auto; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__membership { justify-content: flex-start; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__col h4 { font-family: var(--font-body); font-size: var(--step--1); letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 1rem; font-weight: 600; }
.footer__col li { margin-bottom: 0.6rem; }
.footer__col a {
  position: relative; color: var(--text-dark);
  transition: color var(--dur-fast) var(--ease-out);
}
.footer__col a:hover { color: var(--gold-text); }
/* Icon-Zeilen: Symbol + Text sauber auf einer Linie, einheitliche Größe */
.footer__links { font-size: var(--step--1); }
.footer__links li { margin-bottom: 0.65rem; }
.footer__links a { display: inline-flex; align-items: center; gap: 0.6rem; line-height: 1.4; white-space: nowrap; }
.footer__ico {
  flex: none; width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent-gold-deep);
  transition: transform var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.footer__ico svg { width: 16px; height: 16px; }
.footer__links a:hover .footer__ico { color: var(--gold-text); transform: translateX(2px); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; justify-content: space-between;
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark);
  font-size: var(--step--1); color: var(--text-muted-dark);
}
.footer__legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================================
   Home
   ============================================================ */
/* Hero — Vollflächen-Video im Hintergrund, Text darüber */
.hero { position: relative; overflow: hidden; background: var(--bg-dark); color: var(--text-light); isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg video, .hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  /* leicht unscharf + minimal skaliert, damit keine Unschärfe-Ränder entstehen */
  filter: blur(3px) brightness(0.9); transform: scale(1.08);
}
/* Dunkler Verlauf für Textkontrast — gleichmäßig, da Text zentriert über dem Video liegt */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 45%, rgba(22,21,19,0.5) 0%, rgba(22,21,19,0.68) 100%),
    linear-gradient(180deg, rgba(22,21,19,0.35) 0%, rgba(22,21,19,0) 30%, rgba(22,21,19,0) 65%, rgba(22,21,19,0.5) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  min-height: min(84vh, 740px);
  padding-block: clamp(4rem, 10vh, 8rem);
}
.hero__text { max-width: min(940px, 100%); margin-inline: auto; }
.hero .eyebrow { justify-content: center; }
.hero__title { font-size: var(--step-5); line-height: 1.03; margin-inline: auto; }
.hero__title em { font-style: italic; color: var(--accent-gold); }
.hero__sub { margin: 1.5rem auto 0; font-size: var(--step-1); color: rgba(242,238,230,0.92); max-width: 56ch; line-height: 1.55; }
.hero__actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; justify-content: center; }
.hero__img--fallback { display: none; }
/* reduced-motion: Video aus, statisches (unscharfes) Bild an */
@media (prefers-reduced-motion: reduce) {
  .hero__bg video { display: none; }
  .hero__img--fallback { display: block; }
}
.crew-teaser__img { width: 100%; height: auto; border: 1px solid var(--line-light); border-radius: var(--radius); }

/* Logos / Social Proof */
/* Dunkle Trust-Sektion (wie Crew-Dark-Blöcke) — Logos bleiben im weißen Panel */
.proof { background: var(--bg-dark); color: var(--text-light); }
.proof__label { text-align: center; font-size: var(--step--1); letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-gold); margin-bottom: 2rem; }
.proof .logo-row { border-color: rgba(242,238,230,0.1); }
.proof .stat__label { color: var(--text-muted-light); }
/* ============================================================
   Kundenlogos — laufendes Band (Marquee) direkt auf Seitengrund
   ============================================================ */
.marquee-band { background: var(--bg-light); padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem); }
.marquee-band__label {
  text-align: center; font-size: var(--step--1); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted-dark); margin-bottom: 2rem; font-weight: 600;
}
.marquee {
  overflow: hidden; width: 100%;
  /* weiche Kanten links/rechts */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex; width: max-content;
  animation: marquee-scroll 18s linear infinite; /* linear nötig: kontinuierlicher Lauf */
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex; align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-right: clamp(2.5rem, 6vw, 5rem);
}
.marquee__group img {
  height: 48px; width: auto; object-fit: contain;
  opacity: 0.85; transition: opacity var(--dur-fast) var(--ease-out);
}
.marquee__group img:hover { opacity: 1; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }
}
/* reduced-motion: statische, zentrierte Reihe (zweite Gruppe versteckt) */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
  .marquee__group[aria-hidden="true"] { display: none; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
}

/* Kennzahlen */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: var(--step-4); color: var(--accent-gold); line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -0.03em; }
.stat__plus { font-size: 0.6em; vertical-align: 0.25em; margin-left: 0.02em; }
.stat__label { margin-top: 0.5rem; font-size: var(--step--1); color: var(--text-muted-dark); letter-spacing: 0.02em; }
.section--dark .stat__label { color: var(--text-muted-light); }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr; gap: 2.25rem; } }

/* Vier Säulen — gestapelte Banner mit Hintergrund-Video */
.pillars__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3rem; }
.pillars__head h2 { font-size: var(--step-3); max-width: 18ch; }
.pillars { display: flex; flex-direction: column; gap: 1.25rem; }

.pillar-banner {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--radius); background: var(--bg-dark); color: var(--text-light);
  min-height: clamp(240px, 34vw, 340px);
  display: flex; align-items: center;
}
.pillar-banner__bg { position: absolute; inset: 0; z-index: 0; }
.pillar-banner__bg video, .pillar-banner__bg img {
  width: 100%; height: 100%; object-fit: cover;
  /* leicht unscharf, wie im Hero */
  filter: blur(3px) brightness(0.85); transform: scale(1.08);
}
.pillar-banner__fallback { display: none; }
/* Verlauf links stark (Text sitzt links), rechts Video sichtbar */
.pillar-banner::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(22,21,19,0.92) 0%, rgba(22,21,19,0.78) 42%, rgba(22,21,19,0.45) 75%, rgba(22,21,19,0.35) 100%);
}
.pillar-banner__body {
  position: relative; z-index: 2;
  padding: clamp(1.75rem, 4vw, 3.25rem);
  max-width: 620px;
  display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-start;
}
.pillar-banner__label {
  font-size: var(--step--1); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-gold);
}
.pillar-banner h3 { font-size: var(--step-2); color: var(--text-light); }
.pillar-banner__for { font-size: var(--step-0); font-weight: 600; color: var(--accent-green-bright); }
.pillar-banner__desc { color: rgba(242,238,230,0.86); max-width: 48ch; }
.pillar-banner__cta {
  margin-top: 1rem;
  box-shadow: var(--shadow-lg); /* hebt Button vom Video ab */
}
.pillar-banner:hover .pillar-banner__cta { background: var(--accent-gold-deep); }
@media (prefers-reduced-motion: reduce) {
  .pillar-banner__bg video { display: none; }
  .pillar-banner__fallback { display: block; }
}
@media (max-width: 560px) {
  .pillar-banner::after { background: linear-gradient(90deg, rgba(22,21,19,0.9) 0%, rgba(22,21,19,0.72) 100%); }
  .pillar-banner__desc { font-size: var(--step--1); }
}

/* Crew-Teaser (grün akzentuiert) */
.crew-teaser { background: var(--bg-dark); color: var(--text-light); }
.crew-teaser__inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.crew-teaser .eyebrow { color: var(--accent-green-bright); }
.crew-teaser .eyebrow::before { background: var(--accent-green-bright); }
.crew-teaser h2 { font-size: var(--step-3); }
.crew-teaser__list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; }
.crew-teaser__list li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--text-muted-light); }
.crew-teaser__list li::before { content: ""; flex: none; width: 8px; height: 8px; margin-top: 0.6em; background: var(--accent-green-bright); border-radius: 50%; }
.crew-teaser__actions { margin-top: 2rem; }
@media (max-width: 900px) { .crew-teaser__inner { grid-template-columns: 1fr; } }

/* Talent-Pool-Teaser */
.pool-teaser__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.pool-teaser h2 { font-size: var(--step-3); }
.pool-teaser p { color: var(--text-muted-dark); margin-top: 1rem; max-width: 40ch; }
.pool-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* Setcard — Profil-Karte im Talent-Pool-Stil */
.setcard {
  position: relative;
  display: flex; flex-direction: column;
  background: #FFFFFF; color: var(--text-dark);
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 1.5rem 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  overflow: hidden;
}
/* Messing-Akzentlinie oben — wächst beim Hover */
.setcard::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-deep));
  transform: scaleX(0.35); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .setcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-gold); }
  .setcard:hover::before { transform: scaleX(1); }
}
/* Kopfbereich: feste Mindesthöhe (2-zeiliges Einsatzfeld passt hinein),
   damit der Trennstrich beider Karten auf einer Linie liegt */
.setcard__head { display: flex; align-items: center; gap: 1rem; min-height: 72px; }
.setcard__head > div { min-width: 0; }
.setcard__avatar {
  flex: none; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-light); border: 1px solid var(--line-dark);
  color: var(--accent-gold-deep);
}
.setcard__avatar svg { width: 34px; height: 34px; }
.setcard__role { font-family: var(--font-display); font-weight: 700; font-size: var(--step-1); line-height: 1.15; }
/* hyphens:manual — bricht NUR an gesetzten Soft-Hyphens (z. B. "System-" / "gastronomie") */
.setcard__field { font-size: var(--step--1); color: var(--text-muted-dark); margin-top: 0.15rem; line-height: 1.4; hyphens: manual; }
.setcard__meta {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; align-items: center;
  margin-top: 1rem; padding-top: 0.9rem; border-top: 1px solid var(--line-dark);
  font-size: var(--step--1);
  /* Meta-Block feste Mindesthöhe — Tags beider Karten starten auf einer Linie */
  min-height: 3.4rem; align-content: flex-start;
}
.setcard__exp { color: var(--text-muted-dark); }
.setcard__avail { display: inline-flex; align-items: center; gap: 0.45em; color: var(--text-muted-dark); font-weight: 600; }
.setcard__avail--now { color: var(--accent-green); }
.setcard__dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
/* "ab sofort": ruhig pulsierender Punkt */
.setcard__avail--now .setcard__dot { animation: avail-pulse 2s var(--ease-inout) infinite; }
@keyframes avail-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,91,63,0.35); }
  50% { box-shadow: 0 0 0 5px rgba(47,91,63,0); }
}
@media (prefers-reduced-motion: reduce) { .setcard__avail--now .setcard__dot { animation: none; } }
/* Tags am Kartenboden verankert — beide Karten enden identisch */
.setcard__skills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: auto; padding-top: 1rem; }
.setcard__skills span {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.3em 0.85em; border-radius: 999px;
  background: rgba(201,164,106,0.12); border: 1px solid rgba(201,164,106,0.45);
  color: var(--gold-text);
}
@media (max-width: 900px) { .pool-teaser__inner { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .pool-cards { grid-template-columns: 1fr; } }

/* Abschluss-CTA */
.cta-band { background: var(--accent-green); color: var(--text-light); text-align: center; }
.cta-band h2 { font-size: var(--step-3); color: var(--text-light); max-width: 20ch; margin-inline: auto; }
.cta-band p { color: rgba(242,238,230,0.8); margin-top: 1rem; max-width: 46ch; margin-inline: auto; }
.cta-band .btn { margin-top: 2rem; }

/* Skip-Link */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--accent-gold); color: var(--text-dark); padding: 0.75em 1.25em; z-index: 200; }
.skip-link:focus { left: 0; }

/* ============================================================
   Scroll-Reveals (§2.3) — JS setzt .is-revealed, einmalig
   Gate über html.js: ohne JS bleibt alles sichtbar
   ============================================================ */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}
html.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  transition:
    opacity var(--dur-reveal) var(--ease-out),
    transform var(--dur-reveal) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

/* ============================================================
   Hero-Load-Sequenz (§2.5) — gestaffelt, gesamt < 800ms
   ============================================================ */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
html.js .hero .eyebrow,
html.js .hero__title,
html.js .hero__sub,
html.js .hero__actions {
  animation: hero-in var(--dur-reveal) var(--ease-out) backwards;
}
html.js .hero .eyebrow  { animation-delay: 0ms; }
html.js .hero__title    { animation-delay: 90ms; }
html.js .hero__sub      { animation-delay: 180ms; }
html.js .hero__actions  { animation-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; }
}

/* Sprach-Switch DE/EN */
.lang-switch {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em;
  color: var(--text-dark); text-decoration: none;
}
.lang-switch svg { width: 1em; height: 1em; }
.lang-switch--desktop {
  flex: none; margin-left: 0.25rem;
  border: 1px solid var(--line-dark); border-radius: 999px; padding: 0.5em 0.9em;
  transition: border-color 0.2s, color 0.2s;
}
.lang-switch--desktop:hover { border-color: var(--accent-gold); color: var(--accent-gold-deep); }
.lang-switch--mobile { display: none; }
@media (max-width: 940px) {
  .lang-switch--desktop { display: none; }
  .lang-switch--mobile {
    display: inline-flex; align-self: flex-start;
    font-size: var(--step-0); letter-spacing: 0.02em; font-weight: 600;
    padding: 0.4em 0; margin-top: 0.25rem;
  }
}
