/* =========================================================================
   U-Like Events – Entwurf
   Farbwelt aus dem Logo: Navy #232A54 · Gold #F9C34B · Creme #FBF8F2
   ========================================================================= */

:root {
  --navy: #232a54;
  --navy-800: #1b2144;
  --navy-900: #141833;
  --gold: #f9c34b;
  --gold-600: #e0a61f;
  --cream: #fbf8f2;
  --sand: #f2eadc;
  --white: #ffffff;

  --ink: #22263a;
  --muted: #63677f;
  --muted-light: rgba(255, 255, 255, 0.72);
  --line: rgba(35, 42, 84, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);

  --font-display: "Gloock", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-ui: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --wrap: 1240px;
  --wrap-narrow: 860px;
  --header-h: 88px;

  --shadow-sm: 0 2px 12px rgba(20, 24, 51, 0.06);
  --shadow-md: 0 18px 50px rgba(20, 24, 51, 0.12);
  --shadow-lg: 0 30px 80px rgba(20, 24, 51, 0.22);

  --ease: cubic-bezier(0.25, 0.8, 0.3, 1);
}

/* ---------- Reset / Basis ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

/* Das hidden-Attribut muss auch gegen display:flex und Konsorten gewinnen. */
[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.14;
  margin: 0 0 0.5em;
  letter-spacing: -0.005em;
}

h1 {
  font-size: clamp(2.4rem, 6.2vw, 4.6rem);
}

h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1.15em;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--gold);
  color: var(--navy-900);
}

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

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 12px 22px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s var(--ease);
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

/* ---------- Layout-Helfer ---------- */

.wrap {
  width: min(100% - 48px, var(--wrap));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(100% - 48px, var(--wrap-narrow));
}

.section {
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
}

.section--tight {
  padding: clamp(56px, 6vw, 88px) 0;
}

.section--dark {
  background: var(--navy);
  color: #fff;
}

.section--dark p {
  color: var(--muted-light);
}

.section--sand {
  background: var(--sand);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 72px);
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section--dark .section-head p {
  color: var(--muted-light);
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 18px;
  display: block;
}

.section--dark .eyebrow,
.hero .eyebrow {
  color: var(--gold);
}

.ornament {
  width: 62px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
  border: 0;
  position: relative;
}

.ornament::after {
  content: "";
  position: absolute;
  inset-inline-start: 50%;
  top: -3px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: translateX(-50%) rotate(45deg);
}

.ornament--start {
  margin-inline: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: background-color 0.28s var(--ease), color 0.28s var(--ease),
    border-color 0.28s var(--ease), transform 0.28s var(--ease);
  will-change: transform;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--navy);
  color: #fff;
}

.btn--primary:hover {
  background: var(--navy-900);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-900);
}

.btn--gold:hover {
  background: var(--gold-600);
}

.btn--light {
  background: #fff;
  color: var(--navy);
}

.btn--light:hover {
  background: var(--sand);
}

.btn--ghost {
  border-color: currentColor;
  color: inherit;
}

.btn--ghost:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.link-arrow {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: gap 0.28s var(--ease), color 0.28s var(--ease);
}

.link-arrow:hover {
  gap: 16px;
  color: var(--gold-600);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
    height 0.35s var(--ease);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 24, 51, 0.55), transparent);
  opacity: 1;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.site-header.is-solid {
  background: rgba(251, 248, 242, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  height: 74px;
}

.site-header.is-solid::after {
  opacity: 0;
}

.site-header--static {
  position: sticky;
  background: rgba(251, 248, 242, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.site-header--static::after {
  opacity: 0;
}

.header-inner {
  width: min(100% - 48px, var(--wrap));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: block;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

.brand img {
  height: 46px;
  width: auto;
  transition: height 0.35s var(--ease);
}

.brand .logo-dark {
  display: none;
}

.site-header.is-solid .brand .logo-light,
.site-header--static .brand .logo-light {
  display: none;
}

.site-header.is-solid .brand .logo-dark,
.site-header--static .brand .logo-dark {
  display: block;
}

.site-header.is-solid .brand img {
  height: 40px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.nav a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s var(--ease);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header.is-solid .nav a,
.site-header--static .nav a {
  color: var(--navy);
}

.header-cta {
  padding: 13px 26px;
  font-size: 0.75rem;
}

.site-header:not(.is-solid):not(.site-header--static) .header-cta {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.site-header:not(.is-solid):not(.site-header--static) .header-cta:hover {
  background: #fff;
  color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 2;
  margin-inline-start: auto;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease),
    background-color 0.3s var(--ease);
}

.nav-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.site-header.is-solid .nav-toggle span,
.site-header.is-solid .nav-toggle span::before,
.site-header.is-solid .nav-toggle span::after,
.site-header--static .nav-toggle span,
.site-header--static .nav-toggle span::before,
.site-header--static .nav-toggle span::after {
  background: var(--navy);
}

.nav-toggle.is-open span {
  background: transparent !important;
}

.nav-toggle.is-open span::before {
  transform: translateY(7px) rotate(45deg);
  background: #fff;
}

.nav-toggle.is-open span::after {
  transform: translateY(-7px) rotate(-45deg);
  background: #fff;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease) forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      to bottom,
      rgba(20, 24, 51, 0.55) 0%,
      rgba(20, 24, 51, 0.35) 45%,
      rgba(20, 24, 51, 0.78) 100%
    );
}

.hero__inner {
  width: min(100% - 48px, var(--wrap));
  margin-inline: auto;
  padding: calc(var(--header-h) + 40px) 0 96px;
  text-align: center;
  max-width: 1000px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  margin-bottom: 22px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.28);
}

.hero h1 em {
  font-style: italic;
  font-family: var(--font-body);
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 34px;
}

.hero .btn-row {
  justify-content: center;
}

.hero__meta {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero__meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s var(--ease) infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ---------- Intro ---------- */

.intro {
  text-align: center;
}

.intro__mark {
  width: 74px;
  margin: 0 auto 30px;
}

.intro__lead {
  font-size: clamp(1.2rem, 2.1vw, 1.62rem);
  line-height: 1.6;
  color: var(--navy);
  max-width: 820px;
  margin: 0 auto 26px;
}

.intro__text {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  margin-top: clamp(48px, 6vw, 76px);
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.fact__num {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.6vw, 2.9rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}

.fact__num span {
  color: var(--gold-600);
}

.fact__label {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Leistungen (Bildkarten) ---------- */

.services {
  display: grid;
  gap: 22px;
}

.service {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 4vw, 54px);
  color: #fff;
  border-radius: 4px;
}

.service__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgba(20, 24, 51, 0.88) 0%,
    rgba(20, 24, 51, 0.66) 42%,
    rgba(20, 24, 51, 0.28) 100%
  );
  transition: opacity 0.5s var(--ease);
}

.service:hover .service__media img {
  transform: scale(1.05);
}

.service__body {
  max-width: 560px;
}

.service__index {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.service h3 {
  margin-bottom: 12px;
}

.service p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
}

.service__tags {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service__tags li {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line-light);
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Warum wir (dunkel) ---------- */

.reasons {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.reasons__media {
  position: relative;
}

.reasons__media img {
  width: 100%;
  border-radius: 4px;
}

.reasons__media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--line-light);
  border-radius: 4px;
  z-index: -1;
}

.reason-list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.reason-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line-light);
}

.reason-list li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.reason-list h4 {
  margin-bottom: 4px;
  color: #fff;
}

.reason-list p {
  font-size: 0.98rem;
  margin: 0;
}

.reason-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

/* ---------- Bewertungen / Karussell ---------- */

.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 42px;
}

.reviews-head h2 {
  margin: 0;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.google-badge__logo {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.google-badge__score {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  color: var(--navy);
}

.google-badge__meta {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Der Fächer: eine Auswahl der Bewertungen, wie ein Kartenblatt aufgelegt.
   Die Drehung jeder Karte setzt assets/js/main.js als --a, die Höhenstaffelung
   als --y, die Stapelreihenfolge als --z. */

.fan {
  --card-w: min(340px, 78vw);
  position: relative;
  /* Die gedrehten Ecken der äußeren Karten dürfen die Seite nicht breiter
     machen. overflow-x: clip lässt die Schatten nach oben und unten stehen. */
  overflow-x: clip;
}

.fan__stage {
  position: relative;
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fan__status {
  font-family: var(--font-ui);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0;
}

.fan__card {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--card-w);
  margin-left: calc(var(--card-w) / -2);
  min-height: 340px;
  padding: 30px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: start;
  cursor: pointer;
  transform-origin: 50% 150%;
  /* Vor dem Auffächern liegen alle Karten deckungsgleich aufeinander. */
  transform: translateX(0) rotate(0deg) translateY(0);
  transition: transform 0.6s var(--ease), box-shadow 0.4s var(--ease);
  z-index: var(--z, 1);
}

.fan__stage.is-fanned .fan__card {
  transform: translateX(var(--x, 0px)) rotate(var(--a, 0deg)) translateY(var(--y, 0px));
}

.fan__stage.is-fanned .fan__card:hover,
.fan__stage.is-fanned .fan__card:focus-visible {
  transform: translateX(var(--x, 0px)) rotate(var(--a, 0deg))
    translateY(calc(var(--y, 0px) - 26px)) scale(1.04);
  box-shadow: var(--shadow-lg);
  z-index: 40;
}

.fan__card::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  inset-inline-end: 22px;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.34;
  pointer-events: none;
}

.fan__card .review__text {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.97rem;
}

.fan__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.fan__hint {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.reviews-link {
  text-align: center;
  margin-top: 34px;
}

.review__stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
}

.review__stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.review__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
}

.section--dark .review__text {
  color: rgba(255, 255, 255, 0.86);
}

.review__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.section--dark .review__author {
  border-color: var(--line-light);
}

.review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
}

.section--dark .review__avatar {
  background: var(--gold);
  color: var(--navy-900);
}

.review__name {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  display: block;
}

.section--dark .review__name {
  color: #fff;
}

.review__date {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.section--dark .review__date {
  color: rgba(255, 255, 255, 0.55);
}

/* Overlay: alle Bewertungen einzeln durchblättern. Liegt im Markup direkt vor
   </body>, damit kein transformierter Vorfahre die feste Lage stört. */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 51, 0.74);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.lightbox.is-open .lightbox__backdrop {
  opacity: 1;
}

.lightbox__dialog {
  position: relative;
  width: min(660px, 100%);
  max-height: min(86vh, 780px);
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.lightbox.is-open .lightbox__dialog {
  opacity: 1;
  transform: none;
}

.lightbox__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(20px, 4vw, 34px) 0;
}

.lightbox__head .eyebrow {
  margin: 0;
}

.lightbox__close {
  width: 42px;
  height: 42px;
  margin-inline-end: -8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: background-color 0.28s var(--ease), color 0.28s var(--ease);
}

.lightbox__close:hover {
  background: var(--sand);
}

.lightbox__close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.lightbox__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px clamp(20px, 4vw, 34px) 4px;
}

.lightbox__review {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: lightbox-in 0.34s var(--ease);
}

.lightbox__review .review__text {
  font-size: 1.06rem;
  line-height: 1.78;
  white-space: pre-line;
}

@keyframes lightbox-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.lightbox__foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 18px clamp(20px, 4vw, 34px) 24px;
  border-top: 1px solid var(--line);
}

.lightbox__nav {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #fff;
  transition: background-color 0.28s var(--ease), color 0.28s var(--ease),
    border-color 0.28s var(--ease), opacity 0.28s var(--ease);
}

.lightbox__nav:hover:not(:disabled) {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-900);
}

.lightbox__nav:disabled {
  opacity: 0.32;
  cursor: default;
}

.lightbox__nav svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.lightbox__count {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  min-width: 84px;
  text-align: center;
}

/* ---------- Künstler ---------- */

.artist {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  padding: clamp(44px, 5vw, 72px) 0;
  border-top: 1px solid var(--line);
}

.artist:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.artist:nth-of-type(even) .artist__media {
  order: 2;
}

.artist__media {
  position: relative;
}

.artist__media img {
  width: 100%;
  border-radius: 4px;
}

.artist__badge {
  position: absolute;
  bottom: -18px;
  inset-inline-start: -18px;
  background: var(--gold);
  color: var(--navy-900);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 3px;
}

.artist:nth-of-type(even) .artist__badge {
  inset-inline-start: auto;
  inset-inline-end: -18px;
}

.artist__role {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 12px;
  display: block;
}

.artist h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 16px;
}

.artist__quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  border-inline-start: 2px solid var(--gold);
  padding-inline-start: 20px;
  margin: 24px 0;
}

.artist__facts {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.artist__facts li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  color: var(--muted);
  font-size: 0.98rem;
}

.artist__facts li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

/* ---------- CTA-Band ---------- */

.cta-band {
  position: relative;
  isolation: isolate;
  color: #fff;
  text-align: center;
  padding: clamp(80px, 10vw, 150px) 0;
  overflow: hidden;
}

.cta-band__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(20, 24, 51, 0.78);
}

.cta-band h2 {
  max-width: 700px;
  margin-inline: auto;
}

.cta-band p {
  max-width: 560px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-band .btn-row {
  justify-content: center;
}

/* ---------- Blog ---------- */

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.post-card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.post-card:hover .post-card__media img {
  transform: scale(1.05);
}

.post-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}

.post-card__meta {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.post-card__meta .dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.post-card h3 {
  font-size: 1.4rem;
  margin: 0;
  line-height: 1.28;
}

.post-card p {
  color: var(--muted);
  font-size: 0.98rem;
  flex: 1;
}

.post-card .link-arrow {
  align-self: flex-start;
}

/* ---------- Kontakt ---------- */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.contact__media img {
  width: 100%;
  border-radius: 4px;
}

.contact-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.contact-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: baseline;
}

.contact-list span:first-child {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
}

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

.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(56px, 7vw, 90px) 0 30px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-light);
}

.site-footer img.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
}

.site-footer h4 {
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  transition: color 0.25s var(--ease);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 26px;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ---------- Blogseiten ---------- */

.page-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding: calc(var(--header-h) + 90px) 0 90px;
  text-align: center;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(20, 24, 51, 0.76);
}

.page-hero h1 {
  max-width: 900px;
  margin-inline: auto;
}

.page-hero__meta {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 20px;
}

.breadcrumb {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 22px;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.prose {
  font-size: 1.09rem;
  line-height: 1.82;
  color: var(--ink);
}

.prose > * + * {
  margin-top: 1.3em;
}

.prose h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  margin-top: 1.9em;
  margin-bottom: 0.1em;
}

.prose h3 {
  font-size: 1.35rem;
  margin-top: 1.6em;
  margin-bottom: 0.1em;
}

.prose ul,
.prose ol {
  padding-inline-start: 22px;
  display: grid;
  gap: 10px;
}

.prose li::marker {
  color: var(--gold-600);
}

.prose blockquote {
  margin: 1.8em 0;
  padding: 26px 30px;
  background: var(--sand);
  border-inline-start: 3px solid var(--gold);
  font-style: italic;
  font-size: 1.12rem;
  border-radius: 3px;
}

.prose blockquote p:last-child {
  margin-bottom: 0;
}

.prose figure {
  margin: 2em 0;
}

.prose figure img {
  width: 100%;
  border-radius: 4px;
}

.prose figcaption {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}

.prose a:not(.btn):not(.link-arrow) {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
}

.post-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.author-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 54px;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.author-box img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.author-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
  flex: 1 1 260px;
}

.author-box strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

/* ---------- Scroll-Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: 0.09s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.18s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.27s;
}

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

@media (max-width: 1080px) {
  .fan {
    --card-w: min(320px, 80vw);
  }

  .fan__stage {
    height: 440px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 74px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    /* Bewusst kein inset: 0 – sobald der Header beim Scrollen backdrop-filter
       bekommt, wird er zum Bezugsrahmen für fixierte Kinder. Das geschlossene
       Menü wäre dann nur kopfhoch und hinge sichtbar über der Seite. */
    top: 0;
    inset-inline: 0;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: var(--navy);
    padding: 90px 28px 40px;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease);
    z-index: 1;
  }

  .nav.is-open {
    transform: none;
  }

  .nav a,
  .site-header.is-solid .nav a,
  .site-header--static .nav a {
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: 0.22em;
  }

  .header-cta {
    display: none;
  }

  /* Die volle :not()-Kette spiegelt die Desktop-Regel, damit der Button im
     aufgeklappten Menü in jedem Header-Zustand golden bleibt. */
  .site-header .nav .header-cta,
  .site-header:not(.is-solid):not(.site-header--static) .nav .header-cta {
    display: inline-flex;
    background: var(--gold);
    color: var(--navy-900);
    border-color: var(--gold);
    margin-top: 10px;
  }

  .reasons,
  .contact {
    grid-template-columns: 1fr;
  }

  .reasons__media::after {
    display: none;
  }

  .artist {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .artist:nth-child(even) .artist__media {
    order: 0;
  }

  .artist__media {
    max-width: 460px;
  }

  .artist__badge,
  .artist:nth-child(even) .artist__badge {
    inset-inline-start: 18px;
    inset-inline-end: auto;
    bottom: 18px;
  }

  .reviews-head {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .wrap,
  .wrap--narrow,
  .header-inner,
  .hero__inner {
    width: min(100% - 36px, var(--wrap));
  }

  body {
    font-size: 1.02rem;
  }

  .fan {
    --card-w: min(240px, 62vw);
  }

  .fan__stage {
    height: 400px;
  }

  .fan__card {
    min-height: 300px;
    padding: 24px 20px;
  }

  .fan__card .review__text {
    -webkit-line-clamp: 5;
    line-clamp: 5;
    font-size: 0.92rem;
  }

  .lightbox__foot {
    gap: 14px;
  }

  .service {
    min-height: 300px;
  }

  .service::before {
    background: linear-gradient(
      to top,
      rgba(20, 24, 51, 0.92) 10%,
      rgba(20, 24, 51, 0.5) 100%
    );
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero__meta {
    gap: 10px 20px;
    font-size: 0.68rem;
  }

  .btn {
    padding: 15px 26px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .fan__actions,
  .lightbox,
  .hero__scroll {
    display: none;
  }
}
