/* Lyra — Vovi-inspired dark premium landing */

:root {
  --bg: #060606;
  --bg-elevated: #0d0d0d;
  --surface: #141414;
  --border: rgba(255, 255, 255, 0.07);
  --text: #f7f4ef;
  --text-muted: rgba(247, 244, 239, 0.52);
  --accent: #e6dcc8;
  --accent-strong: #fff9f0;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  /* Heftige Reveals: langer Weg, leichter „Overshoot“-Knick im Easing */
  --ease-reveal-heft: cubic-bezier(0.2, 0.95, 0.15, 1);
  --reveal-duration: 1.55s;
  --reveal-blur: 36px;
  --reveal-travel-y: clamp(72px, 14vw, 180px);
  --reveal-travel-x: clamp(48px, 10vw, 140px);
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Soft spotlight (premium agency feel) */
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 50;
  background: radial-gradient(circle at 50% 50%,
      rgba(230, 220, 200, 0.07) 0%,
      rgba(120, 100, 200, 0.04) 35%,
      transparent 65%);
  opacity: 0.85;
  mix-blend-mode: screen;
  will-change: transform;
  transition: opacity 0.5s var(--ease-out);
}

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

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

/* Film grain overlay */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(6, 6, 6, 0.55);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: transform 0.65s var(--ease-out-expo), background 0.45s ease, border-color 0.45s ease;
}

.site-header.header--solid {
  background: rgba(6, 6, 6, 0.82);
  border-bottom-color: var(--border);
}

.site-header.header--hide {
  transform: translate3d(0, -100%, 0);
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.logo img {
  height: 2.8rem;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s var(--ease-out);
}

.nav a:hover {
  color: var(--text);
}

.header-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.25s, background 0.25s;
}

.header-cta:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: #1c1c1c;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  color: var(--text);
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), top 0.3s;
}

.nav-toggle span:first-child {
  top: 16px;
}

.nav-toggle span:last-child {
  top: 26px;
}

.site-header.is-open .nav-toggle span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.25rem;
    background: rgba(8, 8, 8, 0.96);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
  }

  .site-header.is-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-cta {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 7.5rem 1.5rem 5rem;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-brand-wrap {
  display: flex;
  align-items: center; /* Mittig zu allem im Content-Block */
  gap: clamp(1rem, 4vw, 2.5rem); /* Lücke weiter verkleinert */
  margin-bottom: 0;
}

.hero-content-block {
  max-width: 680px;
  flex: 1;
}

.hero-logo {
  height: clamp(220px, 32vw, 420px);
  width: auto;
  flex-shrink: 0;
  /* Filter um das Logo im Hero-Bereich noch strahlender zu machen */
  filter: drop-shadow(0 0 40px rgba(192, 132, 252, 0.2));
}

@media (max-width: 900px) {
  .hero-brand-wrap {
    flex-direction: column-reverse;
    align-items: center; /* Auf Mobilgeräten mittig */
    text-align: center;
    gap: 1.5rem;
  }
  .hero-logo {
    height: 180px; /* Auch auf Mobilgeräten etwas größer */
    transform: none;
  }
  .hero-content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.85rem, 7.5vw, 5.85rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 1.75rem;
}

.hero-title .line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
  margin-bottom: -0.04em;
}

.hero-title .line-inner {
  display: block;
  transform: translate3d(-2%, 168%, 0) rotate(5deg) scale(0.92);
  transform-origin: 0 100%;
  transition: transform 1.65s var(--ease-reveal-heft);
}

.hero-title .line-wrap:nth-child(2) .line-inner {
  transition-delay: 0.22s;
}

.reveal-lines.is-visible .line-wrap:nth-child(1) .line-inner,
.reveal-lines.is-visible .line-wrap:nth-child(2) .line-inner {
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-discover {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(2rem, 8vh, 5rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.35s ease, gap 0.45s var(--ease-out-expo);
}

.hero-discover-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  position: relative;
  overflow: hidden;
}

.hero-discover-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgba(255, 255, 255, 0.65);
  animation: discover-line 2.4s var(--ease-out-expo) infinite;
}

@keyframes discover-line {
  0% {
    transform: translateY(-120%);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    transform: translateY(320%);
    opacity: 0;
  }
}

.hero-discover:hover {
  color: var(--accent);
  gap: 1.1rem;
}

@media (max-width: 768px) {
  .hero-discover {
    display: none;
  }
}

.hero-lead {
  max-width: 34rem;
  margin: 0 0 2rem;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.25s, border-color 0.25s, color 0.25s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent-strong);
  color: #111;
  border-color: transparent;
}

.btn-primary:hover {
  background: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border-color: var(--border);
  width: 100%;
  margin-top: auto;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: #0c0c0c;
}

.btn-wide {
  width: 100%;
  max-width: 320px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pill-row li {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(88px);
  opacity: 0.5;
  will-change: transform;
}

.orb-a {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  background: radial-gradient(circle at 30% 30%, #3d2a5c, transparent 70%);
  top: -10%;
  right: -5%;
}

.orb-b {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  background: radial-gradient(circle at 70% 70%, #1a3d32, transparent 65%);
  bottom: 5%;
  left: -10%;
}

/* Logo marquee */
.logos {
  position: relative;
  z-index: 0;
  padding: 2.25rem 0 clamp(3.75rem, 9vw, 6rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee {
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Work — klarer Abstand zur Logo-Leiste (kein Überlappen) */
.work {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 11vw, 9rem) 1.5rem clamp(4rem, 10vw, 7rem);
  max-width: 1240px;
  margin: 0 auto;
  background: var(--bg);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.75rem;
  padding-top: clamp(0.25rem, 1.5vw, 1rem);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  margin: 0;
  letter-spacing: -0.03em;
}

.reveal-section-title {
  overflow: hidden;
  /* Kein .reveal auf derselben Box — vermeidet Doppel-Transform vs. Marquee */
}

.section-title-inner {
  display: block;
  transform: translate3d(-3%, 155%, 0) rotate(4deg) scale(0.9);
  transition: transform 1.5s var(--ease-reveal-heft);
}

.reveal-section-title.is-visible .section-title-inner {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.link-arrow {
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.35s ease;
}

.link-arrow::after {
  content: " →";
}

.link-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.55s var(--ease-out-expo);
}

.link-arrow:hover {
  color: var(--accent);
}

.link-arrow:hover::before {
  transform: scaleX(1);
}

.work-grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 900px) {
  .work-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.35rem;
  }

  .work-card:nth-child(1) {
    grid-column: 1 / span 4;
  }

  .work-card:nth-child(2) {
    grid-column: 5 / span 2;
    align-self: stretch;
  }

  .work-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: min(100%, 720px);
    justify-self: center;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 899px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-card--feature {
    grid-column: 1 / -1;
  }
}

.work-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.45s ease, box-shadow 0.55s var(--ease-out-expo), transform 0.55s var(--ease-out-expo);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.work-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.work-card-media-wrap {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.work-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  background: linear-gradient(135deg, var(--accent, #444) 0%, #121212 48%, #050505 100%);
  opacity: 1;
  transform-origin: 50% 60%;
  transition: transform 1.35s var(--ease-out-expo);
}

.work-card-media::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(118deg,
      transparent 38%,
      rgba(255, 255, 255, 0.28) 48%,
      rgba(255, 255, 255, 0.06) 52%,
      transparent 62%);
  transform: translate3d(-55%, 0, 0) rotate(12deg);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.reveal-work.is-visible .work-card-media::after {
  animation: work-card-shine 1.25s var(--ease-reveal-heft) calc(0.45s + var(--i, 0) * 0.1s) forwards;
}

@keyframes work-card-shine {
  0% {
    opacity: 0;
    transform: translate3d(-60%, 0, 0) rotate(12deg);
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(55%, 0, 0) rotate(12deg);
  }
}

.work-card--feature .work-card-media {
  aspect-ratio: 16 / 9;
}

@media (min-width: 900px) {
  .work-card--feature .work-card-media {
    aspect-ratio: 21 / 9;
  }
}

.work-card:hover .work-card-media {
  transform: scale(1.03);
}

/* Richtungs-Reveal: links / rechts / unten — wirkt deutlich „produzierter“ */
.reveal-work .work-card-media-wrap {
  transition: clip-path 1.65s var(--ease-reveal-heft);
  transition-delay: calc(var(--i, 0) * 0.14s);
}

.reveal-work[data-reveal-dir="left"] .work-card-media-wrap {
  clip-path: inset(0 100% 0 0);
}

.reveal-work[data-reveal-dir="right"] .work-card-media-wrap {
  clip-path: inset(0 0 0 100%);
}

.reveal-work[data-reveal-dir="bottom"] .work-card-media-wrap {
  clip-path: inset(100% 0 0 0);
}

.reveal-work:not([data-reveal-dir]) .work-card-media-wrap {
  clip-path: inset(0 0 100% 0);
}

.reveal-work.is-visible .work-card-media-wrap {
  clip-path: inset(0 0 0 0);
}

.reveal-work[data-reveal-dir="left"] .work-card-media {
  transform: scale(1.48) translate3d(-9%, 4%, 0) rotate(-3.5deg);
  transform-origin: 20% 50%;
}

.reveal-work[data-reveal-dir="right"] .work-card-media {
  transform: scale(1.48) translate3d(9%, 4%, 0) rotate(3.5deg);
  transform-origin: 80% 50%;
}

.reveal-work[data-reveal-dir="bottom"] .work-card-media {
  transform: scale(1.42) translate3d(0, 12%, 0) rotate(2deg);
  transform-origin: 50% 100%;
}

.reveal-work:not([data-reveal-dir]) .work-card-media {
  transform: scale(1.52) translate3d(0, 6%, 0) rotate(2deg);
}

.reveal-work .work-card-media {
  transition: transform 1.75s var(--ease-reveal-heft) 0.06s;
  transition-delay: calc(var(--i, 0) * 0.14s);
}

.reveal-work.is-visible .work-card-media {
  transform: scale(1) translate3d(0, 0, 0) rotate(0deg);
  transform-origin: 50% 60%;
}

.reveal-work .work-card-body>* {
  opacity: 0;
  filter: blur(18px);
  transition:
    opacity 1.05s var(--ease-reveal-heft),
    transform 1.15s var(--ease-reveal-heft),
    filter 1s ease;
}

.reveal-work[data-reveal-dir="left"] .work-card-body>* {
  transform: translate3d(clamp(-56px, -6vw, -20px), clamp(48px, 8vw, 100px), 0) skewY(-2deg);
}

.reveal-work[data-reveal-dir="right"] .work-card-body>* {
  transform: translate3d(clamp(20px, 6vw, 56px), clamp(48px, 8vw, 100px), 0) skewY(2deg);
}

.reveal-work[data-reveal-dir="bottom"] .work-card-body>* {
  transform: translate3d(0, clamp(56px, 10vw, 120px), 0) scale(0.96);
}

.reveal-work:not([data-reveal-dir]) .work-card-body>* {
  transform: translate3d(0, clamp(48px, 8vw, 100px), 0) skewY(-2deg);
}

.reveal-work.is-visible .work-card-body>.work-card-tag {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: calc(0.28s + var(--i, 0) * 0.1s);
}

.reveal-work.is-visible .work-card-body>h3 {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: calc(0.42s + var(--i, 0) * 0.1s);
}

.reveal-work.is-visible .work-card-body>p {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: calc(0.56s + var(--i, 0) * 0.1s);
}

.work-card.reveal-work.is-visible:hover .work-card-media {
  transform: scale(1.03);
}

.work-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.work-card-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.work-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.35rem;
  margin: 0;
  line-height: 1.2;
}

.work-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  flex: 1;
}

/* Preise / Website-Pakete */
.pricing {
  padding: clamp(4rem, 10vw, 6.5rem) 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.pricing-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.pricing-head {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.pricing-head .section-title {
  max-width: 100%;
}

.pricing-intro {
  margin: 0;
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.pricing-packages {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.pricing-subtitle {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  margin-bottom: 0.5rem;
}

.pricing-sublead {
  margin: 0 0 clamp(1.5rem, 4vw, 2.25rem);
  max-width: 40rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.pricing-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  align-items: stretch;
}

@media (min-width: 960px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
  }

  .pricing-card--featured {
    margin-top: -0.75rem;
    padding-top: 3rem;
    transform-origin: 50% 50%;
  }
}

/* Premium-Paketkarten */
.pricing-card {
  --card-accent: rgba(230, 220, 200, 0.55);
  --card-accent-soft: rgba(230, 220, 200, 0.08);
  --card-mesh: radial-gradient(120% 90% at 50% -30%, rgba(255, 255, 255, 0.06), transparent 55%);
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 2.35rem 2rem 2rem;
  text-align: left;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    var(--card-mesh),
    linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, transparent 42%),
    linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
  background-clip: padding-box;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45) inset,
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 28px 64px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  transition:
    transform 0.55s var(--ease-out-expo),
    border-color 0.45s ease,
    box-shadow 0.55s var(--ease-out-expo);
}

.pricing-card[data-accent="violet"] {
  --card-accent: #b4a9ff;
  --card-accent-soft: rgba(180, 169, 255, 0.14);
  --card-mesh: radial-gradient(100% 85% at 0% -15%, rgba(140, 120, 255, 0.22), transparent 58%);
}

.pricing-card[data-accent="gold"] {
  --card-accent: #f2e6d4;
  --card-accent-soft: rgba(242, 230, 212, 0.16);
  --card-mesh: radial-gradient(110% 90% at 50% -25%, rgba(242, 230, 212, 0.18), transparent 52%);
}

.pricing-card[data-accent="mint"] {
  --card-accent: #7ee8c8;
  --card-accent-soft: rgba(126, 232, 200, 0.12);
  --card-mesh: radial-gradient(100% 85% at 100% -10%, rgba(80, 200, 170, 0.16), transparent 55%);
}

.pricing-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: calc(var(--radius-lg) + 4px) calc(var(--radius-lg) + 4px) 0 0;
  background: linear-gradient(90deg, transparent 0%, var(--card-accent) 35%, var(--card-accent) 65%, transparent 100%);
  opacity: 0.85;
  z-index: 2;
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  border-radius: calc(var(--radius-lg) + 4px);
}

.pricing-card>* {
  position: relative;
  z-index: 1;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 40px 90px rgba(0, 0, 0, 0.55),
    0 0 60px var(--card-accent-soft);
}

.pricing-card--featured {
  border-color: rgba(242, 230, 212, 0.2);
  box-shadow:
    0 0 0 1px rgba(242, 230, 212, 0.1) inset,
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 36px 88px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(242, 230, 212, 0.12);
}

.pricing-card--featured:hover {
  box-shadow:
    0 0 0 1px rgba(242, 230, 212, 0.14) inset,
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 48px 100px rgba(0, 0, 0, 0.62),
    0 0 80px rgba(242, 230, 212, 0.12);
}

.pricing-badge {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  z-index: 3;
  margin: 0;
  padding: 0.4rem 0.75rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, #fff9f0 0%, var(--accent) 100%);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.pricing-label {
  display: inline-flex;
  align-self: flex-start;
  margin: 0;
  padding: 0.4rem 0.7rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.72);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.pricing-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 1.65rem);
  line-height: 1.12;
  margin: 0.15rem 0 0;
  letter-spacing: -0.03em;
  color: var(--text);
  text-wrap: balance;
}

.pricing-for {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(247, 244, 239, 0.62);
}

.pricing-includes {
  margin: 0;
  padding-top: 0.85rem;
  margin-top: 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(247, 244, 239, 0.52);
}

.pricing-vibe {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(247, 244, 239, 0.78);
}

.pricing-vibe em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05em;
  color: var(--card-accent);
}

.pricing-price {
  margin: 0.5rem 0 0;
  padding: 1rem 1.15rem;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--accent-strong);
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pricing-btn {
  margin-top: auto;
  padding-top: 0.5rem;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-card .btn-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
}

.pricing-card .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) and (max-width: 959px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card--featured {
    grid-column: 1 / -1;
    margin-top: 0;
    padding-top: 2.35rem;
  }
}

@media (max-width: 767px) {
  .pricing-card--featured {
    order: -1;
  }

  .pricing-grid {
    display: flex;
    flex-direction: column;
  }

  .pricing-card:hover {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card:hover {
    transform: none;
  }
}

/* Extras + Sorglos-Abo */
.pricing-addons {
  margin-top: clamp(3rem, 8vw, 5rem);
  padding-top: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid var(--border);
}

.addons-lead {
  margin: 0 0 clamp(1.75rem, 4vw, 2.75rem);
  max-width: 44rem;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
}

.addons-lead strong {
  color: var(--accent-strong);
  font-weight: 400;
  font-style: italic;
}

/* Extras: 3 + 2 zentriert auf großen Screens, keine „Lücke“ */
.extra-grid {
  list-style: none;
  margin: 0 auto clamp(2.75rem, 7vw, 4rem);
  padding: 0;
  display: grid;
  gap: 1.15rem;
  max-width: 1120px;
}

@media (min-width: 520px) {
  .extra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .extra-card:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 420px;
  }
}

@media (min-width: 1024px) {
  .extra-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .extra-card {
    grid-column: span 2;
  }

  .extra-card:nth-child(4),
  .extra-card:nth-child(5) {
    grid-column: span 3;
    justify-self: stretch;
    max-width: none;
    width: auto;
  }
}

.extra-card {
  --x: rgba(230, 220, 200, 0.65);
  --x-soft: rgba(230, 220, 200, 0.12);
  --x-mesh: radial-gradient(90% 80% at 20% 0%, rgba(255, 255, 255, 0.06), transparent 55%);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 3.35rem 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 1rem;
  row-gap: 0.4rem;
  align-items: start;
  padding: 1.5rem 1.4rem 1.4rem;
  border-radius: calc(var(--radius-sm) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    var(--x-mesh),
    linear-gradient(165deg, rgba(255, 255, 255, 0.045) 0%, transparent 50%),
    linear-gradient(180deg, #1a1a1a, #111);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45) inset,
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 20px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  transition: transform 0.5s var(--ease-out-expo), border-color 0.4s ease, box-shadow 0.5s var(--ease-out-expo);
}

.extra-card[data-accent="amber"] {
  --x: #f0c14d;
  --x-soft: rgba(240, 193, 77, 0.18);
  --x-mesh: radial-gradient(100% 90% at 0% 0%, rgba(240, 193, 77, 0.14), transparent 55%);
}

.extra-card[data-accent="rose"] {
  --x: #f0a0b4;
  --x-soft: rgba(240, 160, 180, 0.16);
  --x-mesh: radial-gradient(100% 90% at 100% 0%, rgba(240, 160, 180, 0.12), transparent 55%);
}

.extra-card[data-accent="sky"] {
  --x: #8ecfff;
  --x-soft: rgba(142, 207, 255, 0.16);
  --x-mesh: radial-gradient(100% 90% at 50% -20%, rgba(142, 207, 255, 0.12), transparent 50%);
}

.extra-card[data-accent="violet"] {
  --x: #c4b5fd;
  --x-soft: rgba(196, 181, 253, 0.18);
  --x-mesh: radial-gradient(90% 80% at 0% 0%, rgba(180, 160, 255, 0.14), transparent 55%);
}

.extra-card[data-accent="lime"] {
  --x: #86efac;
  --x-soft: rgba(134, 239, 172, 0.14);
  --x-mesh: radial-gradient(100% 90% at 100% 0%, rgba(134, 239, 172, 0.1), transparent 55%);
}

.extra-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--x), transparent);
  opacity: 0.85;
  z-index: 1;
}

.extra-card>* {
  position: relative;
  z-index: 2;
}

.extra-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5) inset,
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 28px 64px rgba(0, 0, 0, 0.5),
    0 0 48px var(--x-soft);
}

.extra-icon-wrap {
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.extra-icon {
  font-size: 1.45rem;
  line-height: 1;
}

.extra-price {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  margin: 0;
  padding: 0.35rem 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--accent-strong);
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.extra-body {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
}

.extra-name {
  margin: 0 0 0.3rem;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.extra-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(247, 244, 239, 0.55);
}

.care-card {
  --care-accent: #f2e6d4;
  --care-soft: rgba(242, 230, 212, 0.14);
  --care-mesh: radial-gradient(100% 90% at 50% -30%, rgba(242, 230, 212, 0.16), transparent 52%);
  position: relative;
  isolation: isolate;
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(2rem, 4.5vw, 2.6rem);
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid rgba(242, 230, 212, 0.18);
  background:
    var(--care-mesh),
    linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, transparent 45%),
    linear-gradient(180deg, #1c1a18 0%, #101010 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5) inset,
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(242, 230, 212, 0.1);
  backdrop-filter: blur(18px);
  transition: transform 0.55s var(--ease-out-expo), box-shadow 0.55s var(--ease-out-expo);
}

.care-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--care-accent), transparent);
  opacity: 0.9;
  z-index: 1;
}

.care-card>* {
  position: relative;
  z-index: 2;
}

.care-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.52) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 40px 96px rgba(0, 0, 0, 0.58),
    0 0 72px var(--care-soft);
}

.care-card-head {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  margin-bottom: 1.35rem;
}

.care-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(242, 230, 212, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.care-icon {
  font-size: 1.85rem;
  line-height: 1;
}

.care-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text);
}

.care-sub {
  font-family: var(--font-sans);
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.45);
}

.care-tagline {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(247, 244, 239, 0.58);
  line-height: 1.5;
}

.care-list {
  margin: 0 0 1.5rem;
  padding: 1.1rem 1.15rem 1.15rem 1.65rem;
  list-style: disc;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(247, 244, 239, 0.55);
}

.care-list li {
  margin-bottom: 0.65rem;
  padding-left: 0.35rem;
}

.care-list li::marker {
  color: var(--care-accent);
}

.care-list li:last-child {
  margin-bottom: 0;
}

.care-list strong {
  color: rgba(247, 244, 239, 0.92);
  font-weight: 600;
}

.care-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.care-price {
  margin: 0;
  width: 100%;
  padding: 1rem 1.15rem;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--accent-strong);
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.care-price-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.45);
  margin-bottom: 0.35rem;
}

.care-note {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(247, 244, 239, 0.45);
}

.care-btn {
  margin-top: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {

  .extra-card:hover,
  .care-card:hover {
    transform: none;
  }
}

/* Quotes */
.quotes {
  padding: 4rem 0;
  overflow: hidden;
  border-block: 1px solid var(--border);
}

.quotes-track {
  display: flex;
  gap: 1.25rem;
  padding: 0 1.5rem;
  width: max-content;
  animation: scroll-quotes 52s linear infinite;
}

.quote-card {
  flex: 0 0 min(340px, 85vw);
  margin: 0;
  padding: 1.75rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.quote-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.35;
  font-style: italic;
}

.quote-card figcaption {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@keyframes scroll-quotes {
  to {
    transform: translateX(-50%);
  }
}

/* CTA */
.cta {
  padding: 5rem 1.5rem 7.5rem;
}

.cta-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.cta-head {
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.cta-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.35rem, 5vw, 3.65rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  overflow: hidden;
}

.cta-title-line {
  display: inline-block;
  margin-right: 0.35em;
  transform: translate3d(0, 185%, 0) rotate(3deg) scale(0.88);
  transition: transform 1.55s var(--ease-reveal-heft);
}

.reveal-cta.is-visible .cta-title-line:nth-child(1) {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.reveal-cta.is-visible .cta-title-line:nth-child(2) {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  transition-delay: 0.2s;
}

.reveal-cta .cta-lead {
  opacity: 0;
  transform: translate3d(0, var(--reveal-travel-y), 0) scale(0.96);
  filter: blur(28px);
  transition:
    opacity 1.2s var(--ease-reveal-heft) 0.28s,
    transform 1.25s var(--ease-reveal-heft) 0.28s,
    filter 1.1s ease 0.28s;
}

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

.cta-lead {
  color: var(--text-muted);
  margin: 0;
}

.cta-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .cta-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 2.75rem;
  }
}

.cta-aside-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cta-aside-note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.cta-row {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 560px) {
  .cta-row:not(.cta-row--3) {
    grid-template-columns: 1fr 1fr;
  }
}

.cta-row--3 {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-align: left;
  transition: border-color 0.25s;
}

.contact-block:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-value {
  font-size: 0.9375rem;
  font-weight: 600;
}

.contact-block--wa {
  border-color: rgba(37, 211, 102, 0.28);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), var(--bg-elevated));
}

.contact-block--wa:hover {
  border-color: rgba(37, 211, 102, 0.5);
}

/* Inquiry form */
.inquiry-form {
  position: relative;
  padding: 1.5rem 1.35rem 1.65rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

@media (min-width: 600px) {
  .inquiry-form {
    padding: 1.75rem 1.75rem 1.9rem;
  }
}

.form-honey {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 520px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field--full {
  grid-column: 1 / -1;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.75;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: rgba(167, 139, 250, 0.55);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.12);
}

/* Custom „Thema“-Dropdown (ersetzt natives select) */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-select__trigger:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.custom-select__trigger:focus {
  outline: none;
  border-color: rgba(167, 139, 250, 0.55);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.12);
}

.custom-select.is-open .custom-select__trigger {
  border-color: rgba(167, 139, 250, 0.55);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.12);
}

.custom-select__text {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}

.custom-select__text--placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.custom-select__chev {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.1rem;
  border-right: 2px solid rgba(148, 163, 184, 0.85);
  border-bottom: 2px solid rgba(148, 163, 184, 0.85);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select__chev {
  transform: rotate(225deg);
  margin-top: 0.35rem;
}

.custom-select__list {
  position: absolute;
  z-index: 30;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  max-height: min(16.5rem, 52vh);
  overflow-y: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 18, 22, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.custom-select__option {
  padding: 0.55rem 0.9rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: rgba(244, 241, 234, 0.92);
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}

.custom-select__option:hover,
.custom-select__option.is-highlighted {
  background: rgba(167, 139, 250, 0.12);
  color: #fff;
}

.custom-select__option:active {
  background: rgba(167, 139, 250, 0.2);
}

.form-field--topic.is-error .custom-select__trigger {
  border-color: rgba(248, 113, 113, 0.65);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 7rem;
  line-height: 1.5;
}

.form-consent {
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.form-consent-link {
  color: rgba(196, 181, 253, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent-link:hover {
  color: #e9d5ff;
}

.inquiry-submit {
  width: 100%;
}

@media (min-width: 520px) {
  .inquiry-submit {
    width: auto;
    min-width: 14rem;
  }
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  z-index: 140;
  right: calc(1.25rem + env(safe-area-inset-right, 0px));
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Work Card Previews */
.work-preview-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  border: none;
  pointer-events: none;
  transform: scale(0.5);
  transform-origin: top left;
  transition: transform 0.8s var(--ease-out-expo);
  z-index: 1;
}

.work-card:hover .work-preview-iframe {
  transform: scale(0.52);
}

/* Optional: Add a subtle browser-like top bar to work cards */
.work-card-media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-float:hover {
  transform: scale(1.06);
  box-shadow:
    0 8px 28px rgba(37, 211, 102, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.wa-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.wa-float__icon {
  display: block;
}

/* Anfrage: Erfolgs-Overlay (Glas + Accent-Ring) */
body.inq-success-open {
  overflow: hidden;
}

.inq-success {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
}

.inq-success[hidden] {
  display: none !important;
}

.inq-success__backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background:
    radial-gradient(ellipse 85% 70% at 50% 45%, rgba(88, 70, 140, 0.12), transparent 55%),
    rgba(2, 2, 6, 0.78);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.inq-success__shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 24rem;
  padding: 1px;
  border-radius: 26px;
  text-align: center;
  background: linear-gradient(138deg,
      rgba(196, 181, 253, 0.55) 0%,
      rgba(110, 231, 183, 0.28) 38%,
      rgba(255, 255, 255, 0.12) 72%,
      rgba(255, 255, 255, 0.06) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(139, 92, 246, 0.08);
  animation: inq-success-in 0.55s var(--ease-out-expo) forwards;
}

.inq-success__panel {
  position: relative;
  overflow: hidden;
  padding: 2.1rem 1.65rem 1.85rem;
  border-radius: 25px;
  background: rgba(9, 9, 12, 0.78);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

@keyframes inq-success-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.94);
    filter: blur(16px);
  }

  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.inq-success__mesh {
  position: absolute;
  inset: -45% -25% auto;
  height: 72%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 50% 0%, rgba(139, 92, 246, 0.22), transparent 68%),
    radial-gradient(ellipse 45% 40% at 88% 18%, rgba(52, 211, 153, 0.12), transparent 62%);
  opacity: 0.9;
}

.inq-success__icon-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.65rem;
  height: 3.65rem;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(52, 211, 153, 0.12), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.inq-success__check {
  display: block;
}

.inq-success__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 0.45rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.88);
}

.inq-success__title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.28rem, 3.2vw, 1.55rem);
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.inq-success__text {
  position: relative;
  z-index: 1;
  max-width: 20rem;
  margin: 0 auto 1.65rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(247, 244, 239, 0.48);
}

.inq-success__btn {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 13rem;
  margin: 0 auto;
  padding-inline: 1.5rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transition:
    background 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    transform 0.2s var(--ease-out);
}

.inq-success__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(196, 181, 253, 0.35);
  box-shadow: 0 0 0 1px rgba(196, 181, 253, 0.12), 0 12px 40px rgba(0, 0, 0, 0.25);
}

.inq-success__btn:focus-visible {
  outline: 2px solid rgba(196, 181, 253, 0.7);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .inq-success__shell {
    animation: none;
  }
}

/* Footer */
.site-footer {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.75rem;
  color: rgba(244, 241, 234, 0.35);
}

/* Unterseiten (Impressum / Datenschutz) */
.site-header--sub {
  background: rgba(6, 6, 6, 0.88);
  border-bottom-color: var(--border);
}

.legal-page {
  padding: calc(5.5rem + env(safe-area-inset-top, 0px)) 1.5rem 4.5rem;
  max-width: 40rem;
  margin: 0 auto;
}

.legal-inner {
  padding-bottom: 2rem;
}

.legal-inner h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 2.65rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.legal-updated {
  margin: 0 0 2rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.legal-inner h2 {
  margin: 2.25rem 0 0.65rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.legal-inner h2:first-of-type {
  margin-top: 1.5rem;
}

.legal-inner p,
.legal-inner li {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.legal-inner ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
}

.legal-inner li {
  margin-bottom: 0.4rem;
}

.legal-inner a {
  color: rgba(196, 181, 253, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-inner a:hover {
  color: #e9d5ff;
}

.legal-address {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}

/* Reveal on scroll — extrem heftig (großer Weg, Blur, Rotation) */
.reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-travel-y), 0) rotate(1.8deg) scale(0.9);
  filter: blur(0);
  will-change: transform, opacity, filter;
  transition:
    opacity var(--reveal-duration) var(--ease-reveal-heft),
    transform var(--reveal-duration) var(--ease-reveal-heft),
    filter 1.15s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  filter: none;
  will-change: auto;
}

.reveal.reveal-blur {
  filter: blur(var(--reveal-blur));
  transform: translate3d(0, calc(var(--reveal-travel-y) * 0.85), 0) rotate(2.2deg) scale(0.88);
}

.reveal.reveal-scale {
  transform: translate3d(0, calc(var(--reveal-travel-y) * 0.75), 0) scale(0.72) rotate(-2deg);
}

.reveal.reveal-fade-up {
  transform: translate3d(0, calc(var(--reveal-travel-y) * 1.1), 0) scale(0.93);
}

/* Nach is-visible muss der Zustand die Modifier überschreiben (sonst bleibt z. B. Blur aktiv). */
.reveal.reveal-blur.is-visible {
  filter: none;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.reveal.reveal-scale.is-visible {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.reveal.reveal-fade-up.is-visible {
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.reveal.reveal-left {
  transform: translate3d(calc(var(--reveal-travel-x) * -1), calc(var(--reveal-travel-y) * 0.65), 0) skewX(-5deg);
  filter: blur(22px);
}

.reveal.reveal-left.is-visible {
  filter: none;
}

.reveal.reveal-tilt {
  transform: perspective(820px) translate3d(0, calc(var(--reveal-travel-y) * 1.05), -140px) rotateX(14deg) rotateY(-4deg);
  filter: blur(22px);
}

.reveal.reveal-tilt.is-visible {
  transform: perspective(820px) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
  filter: none;
  transition-delay: calc(var(--i, 0) * 0.14s);
}

.reveal-delay-1 {
  transition-delay: 0.14s;
}

.reveal-delay-2 {
  transition-delay: 0.26s;
}

/* Pills: harte Staffel, viel Bewegung */
.reveal-stagger-pills li {
  opacity: 0;
  transform: translate3d(0, clamp(40px, 10vw, 88px), 0) scale(0.72) rotate(-8deg);
  filter: blur(16px);
  transition:
    opacity 1.1s var(--ease-reveal-heft),
    transform 1.2s var(--ease-reveal-heft),
    filter 1s ease;
}

.reveal-stagger-pills li:nth-child(even) {
  transform: translate3d(0, clamp(40px, 10vw, 88px), 0) scale(0.72) rotate(9deg);
}

.reveal-stagger-pills.is-visible li:nth-child(1) {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: 0.1s;
}

.reveal-stagger-pills.is-visible li:nth-child(2) {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: 0.22s;
}

.reveal-stagger-pills.is-visible li:nth-child(3) {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: 0.34s;
}

.reveal-stagger-pills.is-visible li:nth-child(4) {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: 0.46s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track,
  .quotes-track {
    animation: none;
  }

  .hero-discover-line::after {
    animation: none;
  }

  .reveal-work.is-visible .work-card-media::after {
    animation: none !important;
    opacity: 0 !important;
  }

  .reveal,
  .reveal.reveal-blur,
  .reveal.reveal-scale,
  .reveal.reveal-fade-up,
  .reveal.reveal-left,
  .reveal.reveal-tilt {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .reveal-lines .line-inner,
  .section-title-inner,
  .cta-title-line {
    transform: none !important;
    transition: none !important;
  }

  .reveal-stagger-pills li {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .reveal-work .work-card-media-wrap {
    clip-path: none !important;
  }

  .reveal-work .work-card-media {
    transform: none !important;
  }

  .reveal-work .work-card-body>* {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .work-card:hover {
    transform: none;
    box-shadow: none;
  }

  .work-card:hover .work-card-media {
    transform: none;
  }

  .site-header.header--hide {
    transform: none;
  }

  .cursor-glow {
    display: none !important;
  }
}
/* Preview Overlay */
.preview-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 4rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.preview-overlay:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.preview-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  cursor: zoom-out;
}

.preview-overlay__shell {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.5s var(--ease-out-expo);
}

.preview-overlay:not([hidden]) .preview-overlay__shell {
  transform: scale(1) translateY(0);
}

.preview-overlay__header {
  height: 40px;
  background: #161616;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-overlay__dots {
  display: flex;
  gap: 8px;
}

.preview-overlay__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.preview-overlay__url {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(247, 244, 239, 0.4);
  font-family: var(--font-sans);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.3rem 1.5rem;
  border-radius: 6px;
  max-width: 300px;
  margin: 0 auto;
}

.preview-overlay__close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s, transform 0.25s;
}

.preview-overlay__close:hover {
  color: var(--text);
  transform: rotate(90deg);
}

.preview-overlay__content {
  flex: 1;
  background: #000;
}

.preview-overlay__content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.work-preview-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 210%;
  height: 200%;
  border: none;
  pointer-events: none;
  transform: scale(0.5);
  transform-origin: top left;
  transition: transform 0.8s var(--ease-out-expo);
  z-index: 1;
}

/* Hide scrollbars specifically for the preview context */
.work-card-media {
  overflow: hidden;
  position: relative;
}

/* Work Card Hover Overlay */
.work-card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 55;
  pointer-events: none;
}

.work-card:hover .work-card-hover-overlay {
  opacity: 1;
}

.work-card-hover-btn {
  background: #fff;
  color: #000;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 800;
  transform: scale(0.85);
  transition: transform 0.5s var(--ease-out-expo);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}

.work-card:hover .work-card-hover-btn {
  transform: scale(1);
}

/* Permanent Preview Badge */
.work-card-media-wrap::after {
  content: "LIVE SHOWCASE";
  position: absolute;
  top: 36px;
  right: 16px;
  background: #7c6cff;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  z-index: 70;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  pointer-events: none;
}

/* Browser Mockup Top Bar */
.work-card-media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.work-card-media-wrap::before {
  content: "•••";
  position: absolute;
  top: 4px;
  left: 12px;
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
  z-index: 40;
  pointer-events: none;
}

.work-preview-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 210%;
  height: 200%;
  border: none;
  pointer-events: none;
  transform: scale(0.5);
  transform-origin: top left;
  transition: transform 0.8s var(--ease-out-expo);
  z-index: 1;
}

.work-card:hover .work-preview-iframe {
  transform: scale(0.52);
}

body.preview-open {
  overflow: hidden;
}

.work-card {
  cursor: pointer;
}
