/* Entwurf „Bühne" — Panel-Stack + Olive-Vorhänge · gabriele.buck friseure */

:root {
  --serif: "Outfit", "Helvetica Neue", Arial, sans-serif; /* Überschriften = Nav-Schrift (Ulis Wunsch) */
  --sans: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --olive: #b3aa71;
  --olive-dunkel: #9a9159;
  --olive-hell: #c6bf8e;
  --ink: #272727;
  --nacht: #0e0a07;
  --papier: #f5f5f5;
  --weiss: #ffffff;
  --grau: #999999;
  --grau-mittel: #777777;
  --grau-dunkel: #444444;
  --nav-h: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 17.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--grau-dunkel);
  background: var(--papier);
  overflow-x: clip;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.wrap {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

/* ---------- Typo-Bausteine ---------- */

h1, h2, h3, h4 { font-family: var(--serif); }
.brand { font-family: var(--sans); }

.h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: .01em;
  max-width: 20em;
  margin-bottom: .65em;
}
.h2--hell { color: var(--weiss); }
/* Einheitliche Kopf-Signatur: kurzer Olive-Strich unter jeder Sektions-Überschrift */
.h2::after {
  content: "";
  display: block;
  width: 1.6em;
  height: 3px;
  background: var(--olive);
  margin-top: .3em;
}
.hero__h1::after { display: none; }
.galerie__kopf .h2::after { margin-inline: auto; }

.h3 {
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .9em;
}
.h3::after {
  content: "";
  display: block;
  width: 2.2em;
  height: 2px;
  background: var(--olive);
  margin-top: .55em;
}

.kicker {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #8d8551;
  margin-bottom: 1.2em;
}
.kicker--olive { color: var(--olive); }

.lead { font-size: clamp(1.15rem, 1.6vw, 1.35rem); line-height: 1.6; color: var(--grau-mittel); max-width: 40em; }
.lead--hell { color: rgba(245,245,245,.75); }

/* Wort-Masken für Zeilen-Reveals (0.14em Luft für Umlaut-Punkte) */
.mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding: .14em .1em .12em;
  margin: -.14em -.1em -.12em;
}
.mask .w {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
}

/* ---------- Nav: aktive Sektion (Scroll-Spy) ---------- */
.nav__links a.ist-aktiv { color: var(--olive-hell); }
.nav__links a.ist-aktiv::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--olive);
  margin-top: 2px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--weiss);
  background: #000;
  border: 1px solid #000;
  padding: .95em 1.9em;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.btn:hover { background: var(--olive); border-color: var(--olive); color: #1c1a10; }

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .75);
}
.btn--ghost:hover { background: var(--olive); border-color: var(--olive); color: #1c1a10; }

/* ---------- Original-Logo ---------- */
.logo { display: block; height: auto; }
.logo--nav { width: clamp(104px, 9vw, 132px); }
.logo--hero {
  width: min(280px, 46vw);
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, .55));
}
.logo--footer { width: 180px; margin-bottom: 1rem; }

/* ---------- Destec-Credit mit Hover-Popup (bewährtes Muster) ---------- */
.footer__promo { position: relative; }
.footer__madeby {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.footer__madeby span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, .5);
}
.footer__madeby img { height: 30px; width: auto; }
.destec-pop {
  position: absolute;
  bottom: 100%;
  left: 50%;
  padding-bottom: 14px;
  width: 300px;
  max-width: min(300px, 84vw);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(12px) scale(.96);
  transform-origin: bottom center;
  z-index: 60;
  pointer-events: none;
  transition: opacity .28s ease, transform .36s cubic-bezier(.34, 1.3, .64, 1), visibility .28s;
}
.footer__promo:hover .destec-pop,
.footer__promo:focus-within .destec-pop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}
.destec-pop__inner {
  position: relative;
  text-align: left;
  background: linear-gradient(150deg, #2e2a20 0%, #171310 100%);
  border: 1px solid rgba(179, 170, 113, .35);
  border-top: 3px solid var(--olive);
  border-radius: 0; /* eckig wie der Rest der Seite */
  padding: 18px 20px 20px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .55);
}
.destec-pop__inner::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: calc(50% - 7px);
  width: 14px;
  height: 14px;
  background: #171310;
  border-right: 1px solid rgba(179, 170, 113, .35);
  border-bottom: 1px solid rgba(179, 170, 113, .35);
  transform: rotate(45deg);
}
.destec-pop__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--olive-hell);
  margin-bottom: 7px;
}
.destec-pop__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 8px;
}
.destec-pop__text { font-size: .9rem; line-height: 1.5; color: rgba(255, 255, 255, .72); margin-bottom: 14px; }
.destec-pop__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--olive);
  color: #1c1a10;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.destec-pop__cta:hover { background: var(--olive-hell); transform: translateY(-2px); }
.logo--karte { width: 118px; margin-bottom: .9rem; }

/* ---------- Anfahrt: Karten-Vollband ---------- */
.mapband {
  position: relative;
  background: var(--ink);
}
.mapband__flaeche {
  position: relative;
  height: clamp(380px, 52vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  /* dezente Punkt-Textur als Platzhalter-Grund */
  background:
    radial-gradient(rgba(179, 170, 113, .16) 1px, transparent 1.5px) 0 0 / 26px 26px,
    linear-gradient(180deg, #241f1a, #1b1713);
}
.mapband__platzhalter {
  text-align: center;
  color: rgba(245, 245, 245, .8);
  padding: 1.5rem;
}
.mapband__pin { color: var(--olive); margin-inline: auto; display: block; }
.mapband__hinweis {
  font-size: .92rem;
  color: var(--grau);
  margin: .9em 0 1.4em;
  max-width: 30em;
}
.mapband__flaeche iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.04); /* Karte einfarbig, passend zur Palette */
}
.mapband__karte {
  position: absolute;
  left: clamp(1rem, 6vw, 5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #111;
  color: var(--weiss);
  border-top: 3px solid var(--olive);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .65);
  padding: 1.6rem 1.8rem 1.4rem;
  line-height: 1.7;
  max-width: 300px;
}
.mapband__karte a { text-decoration: none; }
.mapband__karte a:hover { color: var(--olive-hell); }
.mapband__tel { margin-top: .5em; }
.mapband__route {
  display: inline-block;
  margin-top: .9em;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--olive-hell);
  border-bottom: 1px solid var(--olive);
  padding-bottom: .25em;
}

/* ---------- Rechtliches-Popup ---------- */
.rmodal { position: fixed; inset: 0; z-index: 150; display: flex; align-items: center; justify-content: center; }
.rmodal[hidden] { display: none; }
.rmodal__deck {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, .78);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.rmodal__panel {
  position: relative;
  width: min(760px, 94vw);
  max-height: min(84vh, 900px);
  background: var(--weiss);
  border-top: 3px solid var(--olive);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .7);
  display: flex;
  flex-direction: column;
}
.rmodal__zu {
  position: absolute;
  top: .4rem; right: .4rem;
  width: 2.6rem; height: 2.6rem;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 0;
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--grau-mittel);
  cursor: pointer;
  z-index: 2;
}
.rmodal__zu:hover { color: var(--ink); }
.rmodal__inhalt {
  overflow: auto;
  overscroll-behavior: contain;
  padding: clamp(1.6rem, 4vw, 3rem);
  font-size: .98rem;
  line-height: 1.7;
}
.rmodal__inhalt h1, .rmodal__inhalt h2 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: .6em;
  padding-right: 2.6rem;
}
.rmodal__inhalt h1::after, .rmodal__inhalt h2::after {
  content: "";
  display: block;
  width: 1.6em;
  height: 3px;
  background: var(--olive);
  margin-top: .3em;
}
.rmodal__inhalt h2 + h2::after, .rmodal__inhalt h3::after { display: none; }
.rmodal__inhalt h3, .rmodal__inhalt h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.4em 0 .4em;
}
.rmodal__inhalt p { margin-bottom: .9em; }
.rmodal__inhalt ul, .rmodal__inhalt ol { padding-left: 1.2em; margin-bottom: .9em; }
.rmodal__inhalt a { color: #8d8551; }
.rmodal__inhalt table { width: 100%; border-collapse: collapse; margin-bottom: 1em; font-size: .9rem; }
.rmodal__inhalt th, .rmodal__inhalt td {
  text-align: left;
  padding: .4em .5em;
  border-bottom: 1px solid rgba(39, 39, 39, .14);
  vertical-align: top;
}
.rmodal__inhalt details { border-bottom: 1px solid rgba(39, 39, 39, .14); padding: .4em 0; }
.rmodal__inhalt summary { cursor: pointer; font-weight: 400; }

/* ---------- Wortmarke ---------- */

.brand { display: inline-flex; flex-direction: column; line-height: 1.1; }
.brand__main { font-weight: 700; letter-spacing: .1em; }
.brand__dot { color: var(--olive); }
.brand__sub { font-weight: 400; letter-spacing: .58em; font-size: .52em; color: rgba(255,255,255,.85); margin-top: .35em; }

.brand--hero { margin-bottom: 1.8em; }

.brand--nav {
  color: var(--weiss);
  font-size: .95rem;
}

.brand--footer {
  color: var(--weiss);
  font-size: 1.15rem;
  margin-bottom: .8em;
}

/* ---------- Scroll-Progress (Olive-Linie) ---------- */

.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 130;
  pointer-events: none;
}
.progress__bar {
  display: block;
  height: 100%;
  background: var(--olive);
  transform-origin: 0 50%;
}

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  top: 3px; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-inline: clamp(1rem, 4vw, 3rem);
  background: #000;
}

.nav__brand { text-decoration: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(.7rem, 1.6vw, 1.5rem);
}
.nav__links a {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,.82);
  padding: .4em .1em;
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--olive-hell); }
.nav__links .nav__cta {
  border: 1px solid var(--olive);
  color: var(--olive-hell);
  padding: .55em 1.1em;
}
.nav__links .nav__cta:hover { background: var(--olive); color: #1c1a10; }

.nav__burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: .6em;
}
.nav__burger-box { display: block; width: 24px; }
.nav__burger-box i {
  display: block;
  height: 2px;
  background: var(--weiss);
  margin: 5px 0;
}

/* ---------- Mobilmenü ---------- */

.mmenu {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: #0c0c0c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
  padding: 4rem 1.5rem;
}
.mmenu__nav { display: flex; flex-direction: column; gap: .35rem; }
.mmenu__nav a {
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--weiss);
  padding: .35em .5em;
}
.mmenu__nav a:hover { color: var(--olive); }
.mmenu__meta { color: var(--grau); font-size: .9rem; }
.mmenu__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--weiss);
  font-size: 1.5rem;
  line-height: 1;
  width: 2.4em; height: 2.4em;
  cursor: pointer;
}

/* ---------- Bühnen-Stack ---------- */

.stack { position: relative; }

.panel {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: clip;
}
.panel[data-panel="1"] { z-index: 2; background: var(--nacht); }
.panel[data-panel="2"] { z-index: 3; background: var(--papier); }
.panel[data-panel="3"] { z-index: 4; background: var(--ink); }
.panel[data-panel="4"] { z-index: 5; background: var(--nacht); }

.panel__inner {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  will-change: transform;
}

.panel__dim {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 6;
}

.panel__pad { padding: calc(var(--nav-h) + 5rem) 0 6rem; }

/* --- Bühne 1: Hero --- */

.panel--hero .panel__inner {
  display: flex;
  align-items: flex-end; /* Inhalt in die dunkle Schulter-Zone, weg von den Gesichtern */
}

.hero__bg { overflow: hidden; }
.hero__bg, .hero__scrim { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  will-change: transform;
}
.hero__scrim {
  /* links Schirm für den Textblock + unten kräftige Abdunklung (Buttons nie im Gesicht) */
  background:
    linear-gradient(90deg, rgba(16,14,12,.66) 0%, rgba(16,14,12,.3) 36%, rgba(16,14,12,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.12) 38%, rgba(0,0,0,.55) 72%, rgba(0,0,0,.86) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1160px, 92vw);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 2rem) 0 clamp(8rem, 20vh, 13rem);
  color: var(--weiss);
}
.hero__h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.9rem);
  font-weight: 700;
  line-height: 1.08;
  max-width: 15em;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.hero__kicker {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--olive-hell);
  margin-bottom: 1em;
}
.hero__sub {
  margin-top: 1.3em;
  max-width: 34em;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  color: rgba(255,255,255,.92);
}
.hero__cta { margin-top: 2.2em; display: flex; flex-wrap: wrap; gap: .9rem; }

.hero__hint {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.75);
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-align: center;
}
.hero__hint i {
  display: block;
  width: 1px; height: 34px;
  margin: .6em auto 0;
  background: linear-gradient(180deg, var(--olive), transparent);
}

/* --- Bühne 2: Aktuelles --- */

.jobs {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: 3rem;
  align-items: start;
}
.jobs__media {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.jobs__media img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.jobs__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}
.jobs__col--breit { grid-column: 1 / -1; }

.liste { list-style: none; }
.liste li {
  position: relative;
  padding: .45em 0 .45em 1.6em;
  border-bottom: 1px solid rgba(39,39,39,.09);
}
.liste li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.05em;
  width: .75em; height: 1px;
  background: var(--olive);
}
.liste--zeilen { columns: 2; column-gap: 2.5rem; }
.liste--zeilen li { break-inside: avoid; }
.jobs__cta { margin-top: 1.6rem; }

/* --- Bühne 3: Redken / Philosophie / Gutschein --- */

.panel--anthrazit { color: rgba(255,255,255,.82); }
.panel--anthrazit .h2 { color: var(--weiss); }
.panel--anthrazit p { max-width: 46em; }
.panel--anthrazit p + p { margin-top: 1em; }

.redken {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.redken__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.redken__siegel { margin-top: 1.6rem; }
.redken__siegel img { background: var(--weiss); padding: 8px 12px; width: 220px; height: auto; }

.zitat {
  margin: 4rem auto 0;
  max-width: 52em;
  border-left: 3px solid var(--olive);
  padding: .4em 0 .4em clamp(1.2rem, 3vw, 2.2rem);
}
.zitat p {
  font-family: var(--sans);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
}
.zitat footer { margin-top: 1em; font-size: .85rem; color: var(--olive-hell); letter-spacing: .06em; }
.netzwerk { margin-top: 1.6rem; color: var(--grau); font-size: .95rem; }

.philo {
  margin-top: 6rem;
  text-align: center;
}
.philo__mark {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--olive);
}
.philo__claim {
  font-size: clamp(2.2rem, 5.6vw, 4.2rem);
  font-weight: 700;
  color: var(--weiss);
  letter-spacing: .02em;
  margin: .35em 0 .6em;
}
.philo__text { max-width: 46em; margin-inline: auto; text-align: left; }
.philo__sig {
  font-family: var(--sans);
  color: var(--olive-hell);
  letter-spacing: .04em;
  margin-top: 1.4em !important;
}

.gutschein {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.gutschein__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* --- Bühne 4: Galerie --- */

.panel--galerie .panel__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: calc(var(--nav-h) + 2rem) 0 3rem;
}
.galerie__kopf { text-align: center; }
.galerie__kopf .h2 { margin-inline: auto; margin-bottom: 0; }

.g-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(8px, 1vw, 14px);
  width: min(1080px, 88vw, 132vh);
}
.g-item {
  position: relative;
  aspect-ratio: 7 / 10;
  overflow: hidden;
  background: #1a1512;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.g-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after { transform: scaleX(1); }

/* ---------- Schwebender Termin-Knopf ---------- */
.fab {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2.2rem);
  bottom: clamp(1rem, 2.5vw, 2.2rem);
  z-index: 58;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--olive);
  color: #1c1c1c;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 99px;
  box-shadow: 0 14px 34px -12px rgba(0, 0, 0, .55);
  visibility: hidden; /* JS blendet nach dem Opening ein */
}
.fab__puls {
  width: .55rem; height: .55rem;
  border-radius: 50%;
  background: #1c1c1c;
  position: relative;
}
.fab__puls::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(28,28,28,.55);
  animation: fabpuls 2s ease-out infinite;
}
@keyframes fabpuls {
  0%   { transform: scale(.6); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .fab { visibility: visible; }
  .fab__puls::after { animation: none; }
}

/* ---------- Olive-Laufband ---------- */
.marquee {
  background: var(--olive);
  color: #23211a;
  overflow: hidden;
  padding-block: .9rem;
}
.marquee__track {
  display: flex;
  width: max-content;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Footer-Wortmarke (Outline, fährt per Scrub) ---------- */
.footer { overflow: hidden; }
.footer { position: relative; }
.footer__marke {
  /* das Original-Logo riesig und durchscheinend als Hintergrund-Ebene */
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.footer__marke img {
  position: absolute;
  left: -3%;
  top: 50%;
  width: min(1150px, 92vw);
  transform: translateY(-50%) rotate(-4deg);
  opacity: .07;
  will-change: transform;
}
.footer__grid, .footer__meta { position: relative; z-index: 2; }

/* ---------- Olive-Vorhänge ---------- */

.curtain {
  display: none; /* wird nur im Desktop-Motion-Programm aktiviert (JS) */
  position: fixed;
  inset: 0;
  z-index: 60;
  background: none; /* die drei Streifen tragen die Farbe */
  pointer-events: none;
  align-items: center;
  justify-content: center;
}
/* Szenen-Vorhang in drei Streifen (JS erzeugt sie) — wirkt wie schwerer Stoff */
.curtain__strip {
  position: absolute;
  top: 0; bottom: 0;
  width: 34%;
}
.curtain__strip:nth-child(1) { left: 0;    background: var(--olive); }
.curtain__strip:nth-child(2) { left: 33%;  background: #a89f68; }
.curtain__strip:nth-child(3) { left: 66%; right: 0; width: auto; background: #9c9260; }
.curtain__inner { text-align: center; position: relative; z-index: 2; }

/* ---------- Theater-Opening beim Laden ---------- */
.opener {
  display: none; /* nur mit Motion (JS schaltet auf flex) */
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}
.opener__half {
  position: absolute;
  top: 0; bottom: 0;
  width: 51%;
  background: #1f1f1f;
}
.opener__half--l { left: 0; }
.opener__half--r { right: 0; }
.opener__seam {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--olive);
}
.opener__half--l .opener__seam { right: 0; }
.opener__half--r .opener__seam { left: 0; }

/* ---------- Spotlight (Desktop, folgt dem Cursor) ---------- */
.spot {
  display: none; /* JS aktiviert nur auf Desktop mit Motion */
  position: fixed;
  left: 0; top: 0;
  width: 46vmax; height: 46vmax;
  margin: -23vmax 0 0 -23vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 205, 150, .17) 0%, rgba(214, 205, 150, .05) 42%, transparent 68%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 70;
  will-change: transform;
}
.curtain__nr {
  display: block;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(28,26,16,.62);
  margin-bottom: .9em;
}
.curtain__title {
  display: block;
  font-family: var(--sans);
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--weiss);
  text-transform: uppercase;
}

/* ---------- Sektionen nach dem Stack ---------- */

.sektion { position: relative; padding: 6rem 0; }
.sektion--dunkel { background: var(--ink); color: rgba(255,255,255,.82); }
.sektion--hell { background: var(--papier); }
.sektion--weiss { background: var(--weiss); }

/* Schräge Sektionskante (Original-Merkmal, angedeutet) */
.sektion--cut {
  clip-path: polygon(0 0, 100% 2.6vw, 100% 100%, 0 100%);
  margin-top: -2.6vw;
  padding-top: calc(6rem + 2.6vw);
}

/* Öffnungszeiten */
.zeiten { margin-top: 2.5rem; columns: 2; column-gap: clamp(2.5rem, 5vw, 5rem); }
.zrow { break-inside: avoid; }
.zrow {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .85em 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: 1.02rem;
}
.zrow__tag { font-family: var(--sans); font-weight: 400; min-width: 6.8em; }
.zrow__linie { flex: 1; height: 1px; background: rgba(255,255,255,.14); }
.zrow__wert { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.85); font-variant-numeric: tabular-nums; }
.zrow.is-heute .zrow__tag { color: var(--olive-hell); position: relative; }
.zrow.is-heute .zrow__tag::before {
  content: "";
  position: absolute;
  left: -1.1em;
  top: .48em;
  width: .5em; height: .5em;
  border-radius: 50%;
  background: var(--olive);
  animation: heutepuls 2.2s ease-in-out infinite;
}
@keyframes heutepuls {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.55); opacity: .45; }
}
@media (prefers-reduced-motion: reduce) {
  .zrow.is-heute .zrow__tag::before { animation: none; }
}
.zrow.is-heute .zrow__wert { color: var(--olive-hell); }
.zrow.is-heute .zrow__linie { background: var(--olive); }
.zrow.is-heute::after {
  content: "heute";
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #1c1a10;
  background: var(--olive);
  padding: .25em .7em;
  align-self: center;
}

/* Team */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  margin-top: 3rem;
}
.tcard__name {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .01em;
  margin: .95em .9em .15em;
}
.tcard__rolle {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grau);
  margin: 0 .9em 1.1em;
}
.tcard {
  background: var(--weiss);
  box-shadow: 0 14px 40px rgba(39,39,39,.08);
  transform-style: preserve-3d;
  will-change: transform;
}
.team { perspective: 900px; }
.tcard__foto { overflow: hidden; aspect-ratio: 1 / 1; }
.tcard__foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.tcard:hover .tcard__foto img { transform: scale(1.06); }
.tcard__name {
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
  padding: 1.1em 1.2em .15em;
  line-height: 1.3;
}
.tcard__rolle {
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--grau);
  padding: 0 1.35em 1.3em;
}

/* Preise / Akkordeon */
.acc { margin-top: 2.6rem; } /* volle Wrap-Breite (Ulis Wunsch) */
.preise { columns: 2; column-gap: clamp(2.5rem, 5vw, 5rem); }
.preise li { break-inside: avoid; }
.preise li b { font-family: var(--serif); font-size: 1rem; font-weight: 600; }
.acc__item { border-bottom: 1px solid rgba(39,39,39,.14); }
.acc__head { font-size: inherit; }
.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem); /* große Bühnen-Kategorien */
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink);
  padding: .85em .2em;
  text-align: left;
  position: relative;
  transition: padding-left .4s cubic-bezier(.22,1,.36,1), color .3s;
}
/* Olive-Bühnenkante schiebt sich beim Hover unter die Kategorie */
.acc__btn::before {
  content: "";
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 4px;
  background: var(--olive);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.acc__btn:hover, .acc__btn[aria-expanded="true"] { padding-left: .8em; }
.acc__btn:hover::before, .acc__btn[aria-expanded="true"]::before { transform: scaleY(1); }
.acc__ico {
  position: relative;
  flex: 0 0 auto;
  width: 14px; height: 14px;
}
.acc__ico::before, .acc__ico::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--olive);
  transition: transform .3s ease;
}
.acc__ico::before { width: 14px; height: 2px; }
.acc__ico::after { width: 2px; height: 14px; }
.acc__btn[aria-expanded="true"] .acc__ico::after { transform: scaleY(0); }
.acc__panel { overflow: hidden; }

.preise { list-style: none; padding: 0 .2em 1.4em; }
.preise li {
  display: flex;
  align-items: baseline;
  gap: .8em;
  padding: .42em 0;
}
.preise li span { color: var(--grau-dunkel); }
.preise li i {
  flex: 1;
  border-bottom: 1px dotted rgba(39,39,39,.28);
  transform-origin: left; /* Leader-Linie läuft per JS ein */
}
.preise li b { font-weight: 500; color: var(--ink); white-space: nowrap; font-variant-numeric: tabular-nums; }
.preise li {
  transition: background .25s, padding-left .3s cubic-bezier(.22,1,.36,1);
}
.preise li:hover {
  background: rgba(179, 170, 113, .1);
  padding-left: .5em;
}
.preise li:hover b { color: #8d8551; }

/* Hochzeit */
.hochzeit { margin-top: 5.5rem; }
.hochzeit__kopf { max-width: 46em; }
.hochzeit__media { margin-top: 2.2rem; }
.hochzeit__media img { width: 100%; aspect-ratio: 21 / 8; object-fit: cover; object-position: 50% 30%; }
.hpakete {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.9rem, 2vw, 1.6rem);
  margin-top: 1.6rem;
}
.hpaket {
  background: var(--papier);
  border-top: 3px solid var(--olive);
  padding: 1.5em 1.4em 1.6em;
}
.hpaket__nr {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--grau);
}
.hpaket h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin: .5em 0 .1em;
}
.hpaket p { font-size: .9rem; color: var(--grau-mittel); }
.hpaket b {
  display: block;
  margin-top: .9em;
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

/* Kontakt */
.kontakt {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: 2.6rem;
  align-items: start;
}
.kontakt__info p + p { margin-top: 1.1em; }
.kontakt__firma strong { color: var(--ink); font-family: var(--sans); letter-spacing: .04em; }
.kontakt__info a { color: var(--ink); text-decoration-color: var(--olive); }
.kontakt__info a:hover { color: var(--olive-dunkel); }

.map {
  margin-top: 2rem;
  background: #e9e7de;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  padding: 1.5rem;
  text-align: center;
}
.map iframe { width: 100%; height: 300px; border: 0; display: block; }
.map--geladen { padding: 0; background: none; display: block; min-height: 0; }
.map__note { font-size: .8rem; color: var(--grau); max-width: 24em; }

.kform { background: var(--papier); padding: clamp(1.4rem, 3vw, 2.4rem); }
.kform__feld { margin-bottom: 1.2rem; }
.kform label {
  display: block;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grau-mittel);
  margin-bottom: .5em;
}
.kform input, .kform textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--weiss);
  border: 1px solid rgba(39,39,39,.18);
  padding: .8em 1em;
  transition: border-color .2s ease;
}
.kform input:focus, .kform textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 2px rgba(179,170,113,.3);
}
.kform textarea { resize: vertical; }
.kform__hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.kform__send { width: 100%; }
.kform__status { margin-top: 1rem; font-size: .92rem; min-height: 1.4em; }
.kform__status.is-ok { color: #4c7a3d; }
.kform__status.is-fehler { color: #a33; }

/* ---------- Footer ---------- */

.footer { background: #000; color: rgba(255,255,255,.72); padding: 4rem 0 2rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer__brand p { font-size: .9rem; }
.footer__partner { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.footer__partner img { height: 44px; width: auto; }
.footer__partner-hell { background: var(--weiss); padding: 5px 10px; }
.footer__recht { display: flex; flex-direction: column; gap: .4rem; }
.footer__recht a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: .9rem;
}
.footer__recht a:hover { color: var(--olive-hell); }
.footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: .8rem;
  color: var(--grau);
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .team { grid-template-columns: repeat(2, 1fr); }
  .hpakete { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }

  .panel { min-height: 0; }
  .panel__inner { min-height: 0; }
  .panel__pad { padding: 4.5rem 0; }
  .panel--hero .panel__inner { min-height: 100svh; }
  .panel__dim { display: none; }
  .curtain { display: none !important; }

  .preise { columns: 1; }
  .zeiten { columns: 1; }

  .mapband__karte {
    position: static;
    transform: none;
    max-width: none;
    margin: 0;
  }
  .mapband { display: flex; flex-direction: column-reverse; }
  .mapband__flaeche { height: 340px; }

  .jobs { grid-template-columns: 1fr; }
  .jobs__media { position: static; }
  .jobs__cols { grid-template-columns: 1fr; gap: 1.8rem; }
  .liste--zeilen { columns: 1; }

  .redken { grid-template-columns: 1fr; }
  .gutschein { grid-template-columns: 1fr; }
  .gutschein__media { order: 2; }
  .philo { margin-top: 4.5rem; }
  .gutschein { margin-top: 4.5rem; }

  .panel--galerie .panel__inner { padding: 4.5rem 0; justify-content: flex-start; }
  .g-grid { grid-template-columns: repeat(2, 1fr); width: 92vw; }

  .sektion { padding: 4.5rem 0; }
  .sektion--cut { padding-top: calc(4.5rem + 2.6vw); }
  .kontakt { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
}

@media (max-width: 480px) {
  .team { grid-template-columns: 1fr; }
  .hpakete { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; text-align: center; }
  .zrow__tag { min-width: 5.6em; }
  .zrow { font-size: .92rem; }
}
