/* ═════════════════════════════════════════════════════════
   DANIJELA JAKIMOVSKA — Preview V2
   Modern Personal Brand · Premium Editorial · High Conversion
   ═════════════════════════════════════════════════════════ */

/* ─── Fonts ───────────────────────────── */
@font-face {
  font-family: 'Fraunces';
  src: url('../assets/fonts/fraunces-v38-latin_latin-ext-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../assets/fonts/fraunces-v38-latin_latin-ext-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../assets/fonts/fraunces-v38-latin_latin-ext-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../assets/fonts/fraunces-v38-latin_latin-ext-500italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-v20-latin_latin-ext-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-v20-latin_latin-ext-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ─── Variables ───────────────────────── */
:root {
  /* Mutige Palette — kein nur-Beige */
  --bg:           #EFE5D2;
  --bg-soft:      #E8DAC0;
  --bg-light:     #F8F1E0;
  --bg-ink:       #16110D;
  --bg-dark:      #1F1812;
  --ink:          #1A1612;
  --ink-soft:     #5A4F46;
  --burgundy:     #5C1410;
  --burgundy-deep:#3F0808;
  --burgundy-light:#7A2018;
  --gold:         #C9A45F;
  --gold-deep:    #A88444;
  --cream:        #FAF5EA;
  --line:         rgba(26, 22, 18, 0.10);
  --line-strong:  rgba(26, 22, 18, 0.22);
  --line-light:   rgba(250, 245, 234, 0.15);

  /* Type */
  --font-serif:   'Fraunces', 'Playfair Display', 'Times New Roman', serif;
  --font-sans:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --max:          1320px;
  --max-narrow:   880px;
  --gutter:       clamp(1.2rem, 4vw, 3rem);
  --section:      clamp(5rem, 11vw, 11rem);
  --radius:       4px;

  /* Anim */
  --ease:         cubic-bezier(0.2, 0.85, 0.2, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:       0.3s;
  --t-med:        0.55s;
  --t-slow:       0.9s;
}

/* ─── Reset ───────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 880px) { body { cursor: auto; } }

img, svg { max-width: 100%; display: block; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--burgundy); color: var(--bg-light); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── Loader ──────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.7s ease 0.4s, visibility 0s 1.1s;
}
.loader__inner {
  display: flex;
  gap: 0.4em;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-style: italic;
  color: var(--ink);
}
.loader__word {
  opacity: 0;
  transform: translateY(40px);
  animation: loaderWord 0.7s var(--ease-out) forwards;
}
.loader__word:nth-child(1) { animation-delay: 0.1s; }
.loader__word:nth-child(2) { animation-delay: 0.25s; }
.loader__word:nth-child(3) { animation-delay: 0.4s; color: var(--burgundy); }
@keyframes loaderWord {
  to { opacity: 1; transform: translateY(0); }
}
body:not(.is-loading) .loader {
  opacity: 0;
  visibility: hidden;
}

/* ─── Custom Cursor ───────────────────── */
.cursor {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1001;
  transform: translate(-50%, -50%);
}
.cursor.is-hover {
  width: 60px;
  height: 60px;
  background: var(--burgundy);
  border-color: var(--burgundy);
}
@media (max-width: 880px) {
  .cursor, .cursor-dot { display: none; }
}

/* ─── Scroll Progress ─────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--burgundy);
  z-index: 110;
  transition: width 0.1s linear;
}

/* ─── Nav ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: padding var(--t-med) var(--ease), background var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 0.9rem 0;
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand img {
  height: 32px;
  width: auto;
  transition: opacity var(--t-fast) ease;
}
.nav__brand:hover img { opacity: 0.7; }
.nav__links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav__links a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
  transition: color var(--t-fast) ease;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--burgundy);
  transition: width var(--t-fast) ease;
}
.nav__links a:hover { color: var(--burgundy); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 1.3rem;
  background: var(--ink);
  color: var(--bg-light);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: background var(--t-fast) ease, transform var(--t-fast) ease;
}
.nav__cta:hover {
  background: var(--burgundy);
  transform: translateY(-1px);
}
.nav__cta-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.nav__toggle { display: none; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.6rem;
  }
  .nav__toggle span {
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: transform var(--t-fast) ease;
  }
  .nav__cta { padding: 0.55rem 1rem; font-size: 0.7rem; }
}

/* ═════════ HERO ═════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 9rem 0 4rem;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 80vh;
}
.hero__text { position: relative; z-index: 2; }
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--burgundy);
  margin: 0 0 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}
.hero__eyebrow span {
  width: 32px;
  height: 1px;
  background: var(--burgundy);
}
.hero__display {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.18em;
}
.hero__display .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px);
  animation: fadeUp 1s var(--ease-out) forwards;
}
.hero__display .word:nth-child(1) { animation-delay: 0.7s; }
.hero__display .word:nth-child(2) { animation-delay: 0.85s; }
.hero__display .word:nth-child(3) { animation-delay: 1.0s; }
.hero__display em {
  font-style: italic;
  color: var(--burgundy);
}
.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.45;
  color: var(--ink);
  max-width: 36ch;
  margin: 0 0 2.5rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.3s forwards;
}
.hero__cta-block {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 1.5s forwards;
}
.hero__live {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero__live-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 1.8s ease-in-out infinite;
}

.hero__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  opacity: 0;
  transform: scale(1.05);
  animation: photoIn 1.4s var(--ease-out) 0.4s forwards;
  box-shadow: 0 50px 100px -40px rgba(0,0,0,0.45);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__photo-tag {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  background: var(--bg-light);
  color: var(--ink);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.3);
}
.hero__photo-tag em {
  color: var(--burgundy);
  font-style: italic;
  font-family: var(--font-serif);
  text-transform: none;
  letter-spacing: 0;
  margin-right: 0.3em;
  font-size: 0.95rem;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes photoIn { to { opacity: 1; transform: scale(1); } }

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ink-soft);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--burgundy);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  to { top: 100%; }
}

@media (max-width: 880px) {
  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; min-height: auto; }
  .hero__display { font-size: clamp(3.5rem, 18vw, 5.5rem); }
  .hero__photo { aspect-ratio: 3 / 4; max-width: 420px; margin: 0 auto; order: -1; }
  .hero__scroll-hint { display: none; }
}

/* ═════════ TRUST STRIP ═════════ */
.trust-strip {
  padding: 3rem 0;
  background: var(--bg-ink);
  color: var(--bg-light);
  position: relative;
  overflow: hidden;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.trust-strip__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-strip__num span {
  font-size: 0.6em;
  color: var(--bg-light);
  opacity: 0.8;
  margin-left: 0.1em;
}
.trust-strip__label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bg-light);
  opacity: 0.7;
}
.trust-strip__divider {
  width: 1px;
  height: 50px;
  background: var(--line-light);
}
@media (max-width: 760px) {
  .trust-strip__divider { display: none; }
  .trust-strip__inner { gap: 2.5rem; }
}

/* ═════════ Section Heads (shared) ═════════ */
.section-head {
  margin-bottom: clamp(3rem, 6vw, 5rem);
  max-width: 760px;
}
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--burgundy);
  margin: 0 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--burgundy);
}
.section-head--center .section-eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow--gold { color: var(--gold); }
.section-eyebrow--gold::before { background: var(--gold); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.section-title--xxl { font-size: clamp(3rem, 7vw, 6.5rem); }
.section-title--light { color: var(--bg-light); }
.section-title em {
  font-style: italic;
  color: var(--burgundy);
}
.section-title--light em { color: var(--gold); }
.section-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  max-width: 50ch;
}
.section-head--center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ═════════ THEMEN ═════════ */
.themes {
  padding: var(--section) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.themes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.theme-card {
  background: var(--bg-light);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) ease, background var(--t-med) ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.theme-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.theme-card:hover {
  border-color: var(--ink);
  transform: translateY(-6px);
}
.theme-card:hover::before { transform: scaleX(1); }
.theme-card__media {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.theme-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--burgundy);
}
.theme-card__icon {
  width: 50px;
  height: 50px;
  color: var(--ink);
  transition: color var(--t-med) ease, transform var(--t-med) ease;
}
.theme-card:hover .theme-card__icon {
  color: var(--burgundy);
  transform: scale(1.1);
}
.theme-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--ink);
}
.theme-card__body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}
.theme-card__body em {
  font-style: italic;
  color: var(--burgundy);
}
.theme-card__link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  transition: color var(--t-fast) ease;
}
.theme-card:hover .theme-card__link { color: var(--burgundy); }

/* ═════════ STORY (Scroll-Driven) ═════════ */
.story {
  position: relative;
  background: var(--bg-ink);
  color: var(--bg-light);
}
.story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.story__scroll-area {
  height: 300vh;
  pointer-events: none;
}
.story__steps {
  position: relative;
  width: 100%;
  min-height: 60vh;
}
.story__step {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.story__step.is-active {
  opacity: 1;
}
.story__step-num {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 2rem;
  display: inline-block;
}
.story__step-text {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 22ch;
  color: var(--bg-light);
  margin: 0;
}
.story__step-text em {
  font-style: italic;
  color: var(--gold);
}
@media (max-width: 880px) {
  .story__scroll-area { height: 200vh; }
  .story__sticky { height: 90vh; }
}

/* ═════════ METHODE ═════════ */
.method {
  padding: var(--section) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.method__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}
.method__pillar {
  padding: 2.5rem 1.5rem;
  border-top: 2px solid var(--ink);
  transition: transform var(--t-med) var(--ease);
}
.method__pillar:hover { transform: translateY(-4px); }
.method__pillar--feature {
  border-top-color: var(--burgundy);
  background: var(--bg-light);
  padding: 2.5rem 1.8rem;
}
.method__pillar-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.method__pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--ink);
}
.method__pillar p {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.method__pillar em {
  font-style: italic;
  color: var(--burgundy);
}
.method__photo {
  margin: 4rem 0 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
}
.method__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.method__photo figcaption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--bg-light);
  color: var(--ink);
  padding: 0.9rem 1.4rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem;
  border-radius: 2px;
  max-width: 70%;
}
@media (max-width: 760px) {
  .method__grid { grid-template-columns: 1fr; gap: 1rem; }
  .method__photo figcaption { font-size: 0.82rem; padding: 0.7rem 1rem; bottom: 1rem; left: 1rem; }
}

/* ═════════ VOICES ═════════ */
.voices {
  padding: var(--section) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.voices__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.voice-card {
  background: var(--bg-light);
  padding: 3rem 2rem 2.5rem;
  position: relative;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) ease;
}
.voice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.25);
}
.voice-card__mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 5rem;
  color: var(--burgundy);
  line-height: 0.5;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  opacity: 0.3;
}
.voice-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 1rem 0 2rem;
  position: relative;
  z-index: 2;
}
.voice-card__attr {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.voice-card__name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--burgundy);
  letter-spacing: -0.01em;
}
.voice-card__meta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}
@media (max-width: 880px) {
  .voices__list { grid-template-columns: 1fr; }
}

/* ═════════ ABOUT ═════════ */
.about {
  padding: var(--section) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.3);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.about__photo:hover img { transform: scale(1.04); }
.about__text {
  padding-top: 1rem;
}
.about__text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 1.4em;
}
.about__text em {
  font-style: italic;
  color: var(--burgundy);
}
.about__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem !important;
  line-height: 1.5 !important;
  color: var(--burgundy) !important;
  margin: 2rem 0 !important;
  padding: 1.5rem 0 !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__pull {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
  margin: 2.5rem 0;
  padding: 2rem 0 2rem 2rem;
  border-left: 3px solid var(--burgundy);
}
.about__signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--burgundy);
  margin: 2rem 0;
}
.about__trust {
  list-style: none;
  padding: 2.5rem 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.about__trust li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.about__trust li:last-child { border-bottom: none; }
.about__trust span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  align-self: center;
}
.about__trust strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.45;
}
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 480px; margin: 0 auto; }
  .about__trust li { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* ═════════ ANGEBOTE ═════════ */
.offers {
  padding: var(--section) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.offer {
  position: relative;
  background: var(--bg-light);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) ease, box-shadow var(--t-med) ease;
  display: flex;
  flex-direction: column;
}
.offer:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.18);
}
.offer--feature {
  background: var(--bg-ink);
  color: var(--bg-light);
  border-color: var(--bg-ink);
  grid-column: span 2;
  grid-row: span 1;
}
.offer--feature:hover { border-color: var(--burgundy); }
.offer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
}
.offer__badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}
.offer__head {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.offer--feature .offer__head {
  border-bottom-color: var(--line-light);
}
.offer__duration {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  margin: 0 0 0.8rem;
}
.offer--feature .offer__duration { color: var(--gold); }
.offer h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0 0 0.8rem;
  line-height: 1.15;
  color: var(--ink);
}
.offer--feature h3 {
  color: var(--bg-light);
  font-size: 2.2rem;
}
.offer__price {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--burgundy);
  margin: 0;
}
.offer--feature .offer__price {
  color: var(--gold);
  font-size: 1.5rem;
}
.offer__body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
  flex-grow: 1;
}
.offer--feature .offer__body {
  color: rgba(250, 245, 234, 0.78);
  font-size: 1.02rem;
}
.offer em {
  font-style: italic;
  color: var(--burgundy);
}
.offer--feature em { color: var(--gold); }
.offer__cta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--t-fast) ease;
}
.offer--feature .offer__cta { color: var(--gold); }
.offer__cta:hover { color: var(--burgundy); }
.offer--feature .offer__cta:hover { color: var(--bg-light); }
@media (max-width: 980px) {
  .offers__grid { grid-template-columns: repeat(2, 1fr); }
  .offer--feature { grid-column: span 2; }
}
@media (max-width: 640px) {
  .offers__grid { grid-template-columns: 1fr; }
  .offer--feature { grid-column: span 1; }
}

/* ═════════ SLOTS (Scarcity) ═════════ */
.slots {
  padding: var(--section) 0;
  background: var(--bg-ink);
  color: var(--bg-light);
}
.slots__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.slots__text .section-title { color: var(--bg-light); font-size: clamp(2.4rem, 4.5vw, 4rem); }
.slots__text .section-title em { color: var(--gold); }
.slots__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(250, 245, 234, 0.75);
  line-height: 1.55;
  margin: 1.5rem 0 0;
  max-width: 38ch;
}
.slots__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.slot-card {
  background: rgba(250, 245, 234, 0.04);
  border: 1px solid var(--line-light);
  padding: 2rem 1.4rem;
  text-align: center;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) ease, background var(--t-med) ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.slot-card:hover {
  background: rgba(201, 164, 95, 0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.slot-card--featured {
  background: var(--burgundy);
  border-color: var(--burgundy);
}
.slot-card--featured:hover {
  background: var(--burgundy-light);
  border-color: var(--gold);
}
.slot-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slot-card__day {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.slot-card--featured .slot-card__day { color: var(--bg-light); }
.slot-card__month {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bg-light);
  opacity: 0.8;
  margin-top: 0.3rem;
}
.slot-card__time {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--bg-light);
  opacity: 0.85;
  margin: 0;
}
.slot-card__cta {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--gold);
  transition: color var(--t-fast) ease;
}
.slot-card--featured .slot-card__cta { color: var(--bg-light); }
.slot-card:hover .slot-card__cta { color: var(--bg-light); }
@media (max-width: 880px) {
  .slots__inner { grid-template-columns: 1fr; }
  .slots__cards { grid-template-columns: 1fr; }
}

/* ═════════ NEWSLETTER ═════════ */
.newsletter {
  padding: var(--section) 0;
  background: var(--bg-dark);
  color: var(--bg-light);
}
.newsletter__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.newsletter__body {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(250, 245, 234, 0.75);
  margin: 0 0 2rem;
  max-width: 40ch;
}
.newsletter__hint {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(250, 245, 234, 0.6);
  line-height: 1.6;
  margin: 0;
}
.newsletter__hint a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--t-fast) ease;
}
.newsletter__hint a:hover { color: var(--bg-light); }
.newsletter__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5);
}
.newsletter__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .newsletter__grid { grid-template-columns: 1fr; }
  .newsletter__photo { max-width: 480px; margin: 0 auto; }
}

/* ═════════ FAQ ═════════ */
.faq {
  padding: var(--section) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.faq__list {
  max-width: 880px;
  margin: 4rem auto 0;
}
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 1.8rem 0;
  transition: padding var(--t-fast) ease;
}
.faq__item[open] {
  padding-bottom: 2rem;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--t-fast) ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--burgundy); }
.faq__toggle {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--burgundy);
  transition: transform var(--t-fast) ease;
  line-height: 1;
}
.faq__item[open] .faq__toggle {
  transform: rotate(45deg);
}
.faq__item p {
  margin: 1.2rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 70ch;
}

/* ═════════ FINAL CTA ═════════ */
.final-cta {
  padding: var(--section) 0;
  background: var(--burgundy);
  color: var(--bg-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,164,95,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,164,95,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  z-index: 2;
}
.final-cta .section-eyebrow {
  color: var(--gold);
  margin-bottom: 2rem;
}
.final-cta .section-eyebrow::before { background: var(--gold); }
.final-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 auto 2rem;
  max-width: 16ch;
  color: var(--bg-light);
}
.final-cta__title em {
  font-style: italic;
  color: var(--gold);
}
.final-cta__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  color: rgba(250, 245, 234, 0.85);
  margin: 0 auto 3rem;
  max-width: 50ch;
  line-height: 1.5;
}
.final-cta__alt {
  margin: 3rem 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(250, 245, 234, 0.65);
}
.final-cta__alt a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ═════════ BUTTON ═════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2rem;
  background: var(--ink);
  color: var(--bg-light);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--burgundy);
  transform: translateY(100%);
  transition: transform var(--t-med) var(--ease);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { border-color: var(--burgundy); transform: translateY(-2px); }
.btn:hover::before { transform: translateY(0); }
.btn--primary { background: var(--ink); color: var(--bg-light); }
.btn--xl {
  padding: 1.4rem 2.6rem;
  font-size: 1.05rem;
  background: var(--bg-light);
  color: var(--ink);
  border-color: var(--bg-light);
}
.btn--xl::before { background: var(--gold); }
.btn--xl:hover { border-color: var(--gold); color: var(--ink); }

/* ═════════ FOOTER ═════════ */
.footer {
  padding: 5rem 0 2rem;
  background: var(--bg-ink);
  color: rgba(250, 245, 234, 0.65);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-light);
  margin-bottom: 2rem;
}
.footer__brand img {
  height: 32px;
  width: auto;
  color: var(--bg-light);
  margin-bottom: 0.7rem;
}
.footer__brand p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin: 0;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: flex-end;
}
.footer__nav a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bg-light);
  opacity: 0.7;
  transition: opacity var(--t-fast) ease, color var(--t-fast) ease;
}
.footer__nav a:hover { color: var(--gold); opacity: 1; }
.footer__copy {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
  margin: 0;
}
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__nav { justify-content: flex-start; }
}

/* ═════════ Reveal Animation ═════════ */
.reveal {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 760px) {
  .nav__brand img { height: 40px; }
  .footer__brand img { height: 40px; max-width: 80%; }
}

/* ═══════ View Transitions API (Native Navigation) ═══════ */
@view-transition { navigation: auto; }

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.42s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
::view-transition-old(root) {
  animation-name: dj-fade-out;
}
::view-transition-new(root) {
  animation-name: dj-fade-in;
}
@keyframes dj-fade-out {
  to { opacity: 0; transform: translateY(-12px); filter: blur(4px); }
}
@keyframes dj-fade-in {
  from { opacity: 0; transform: translateY(12px); filter: blur(4px); }
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none !important;
  }
}

/* ═══════ BRIEFE-KATEGORIEN ═══════ */
.briefe {
  padding: 8rem 0 9rem;
  background: var(--bg-light);
  position: relative;
}
.briefe::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 5rem;
  background: var(--ink);
  opacity: 0.12;
}
.briefe__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin: 5rem 0 3.5rem;
  align-items: stretch;
}
.brief-card {
  display: flex;
  flex-direction: column;
  padding: 2.2rem 1.8rem 1.8rem;
  background: var(--cream);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  transition: transform var(--t-med) ease, box-shadow var(--t-med) ease, border-color var(--t-med) ease, background var(--t-med) ease;
  will-change: transform;
  min-height: 280px;
}
.brief-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 60px -20px rgba(26, 22, 18, 0.18);
  background: #FAF3DD;
}
.brief-card--featured {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
}
.brief-card--featured:hover {
  background: #6D1A14;
  border-color: var(--gold);
  color: var(--cream);
}
.brief-card--new {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.brief-card--new:hover {
  background: #2A201A;
  border-color: var(--gold);
  color: var(--cream);
}
.brief-card__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin: 0 0 1.4rem;
  font-weight: 500;
}
.brief-card--featured .brief-card__eyebrow,
.brief-card--new .brief-card__eyebrow {
  color: var(--gold);
}
.brief-card__title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.brief-card__desc {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  opacity: 0.78;
  font-style: italic;
  flex: 1;
}
.brief-card--featured .brief-card__desc,
.brief-card--new .brief-card__desc {
  opacity: 0.92;
  color: rgba(239, 229, 210, 0.92);
}
.brief-card__arrow {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-top: 1.5rem;
  display: block;
  transition: transform var(--t-med) ease;
}
.brief-card:hover .brief-card__arrow {
  transform: translateX(6px);
  color: var(--gold);
}
.brief-card--new .brief-card__eyebrow::after {
  content: "•";
  margin-left: 0.6rem;
  color: var(--gold);
  animation: dj-pulse 2s ease-in-out infinite;
}
@keyframes dj-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.briefe__foot {
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 1100px) {
  .briefe__grid { grid-template-columns: repeat(3, 1fr); }
  .brief-card { min-height: 240px; }
}
@media (max-width: 700px) {
  .briefe { padding: 5rem 0 6rem; }
  .briefe__grid { grid-template-columns: 1fr; gap: 0.9rem; }
  .brief-card { min-height: auto; padding: 1.8rem 1.5rem 1.5rem; }
  .brief-card__title { font-size: 1.35rem; }
}

/* ═══════════════════════════════════════════════════════
   TIER 4 PREMIUM MAGIC — 2026-06-30
   1 Sparkles · 2 Lamp · 3 Aurora · 4 Tracing Beam · 5 Bento
   6 Cursor Spotlight · 7 Glare Card · 8 Timeline · 9 Infinite
   10 Text Generate
   ═══════════════════════════════════════════════════════ */

/* ─── 1. Sparkles (Hero) ─────────────────── */
.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 65%);
  border-radius: 50%;
  opacity: 0;
  animation: dj-sparkle 4s ease-in-out infinite;
}
@keyframes dj-sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%      { opacity: 0.9; transform: scale(1.4); }
}

/* ─── 2. Lamp Effect (Briefe-Section) ─────────────────── */
.briefe { position: relative; overflow: hidden; }
.briefe::after {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 30rem;
  background:
    radial-gradient(ellipse at 50% 0%,
      rgba(201, 164, 95, 0.32) 0%,
      rgba(201, 164, 95, 0.10) 30%,
      transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
  animation: dj-lamp-pulse 6s ease-in-out infinite;
}
.briefe > * { position: relative; z-index: 2; }
@keyframes dj-lamp-pulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

/* ─── 3. Aurora Background (Final CTA) ─────────────────── */
.final-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(at 22% 30%, rgba(201, 164, 95, 0.28) 0%, transparent 45%),
    radial-gradient(at 78% 50%, rgba(92, 20, 16, 0.55) 0%, transparent 50%),
    radial-gradient(at 50% 80%, rgba(239, 229, 210, 0.18) 0%, transparent 45%),
    radial-gradient(at 30% 75%, rgba(201, 164, 95, 0.2) 0%, transparent 40%);
  filter: blur(50px) saturate(1.1);
  animation: dj-aurora 18s ease-in-out infinite alternate;
  z-index: 0;
}
.final-cta > * { position: relative; z-index: 2; }
@keyframes dj-aurora {
  0%   { transform: translate(0, 0)   scale(1);    filter: blur(50px) saturate(1.1); }
  33%  { transform: translate(-3%, 4%) scale(1.08); filter: blur(60px) saturate(1.25); }
  66%  { transform: translate(3%, -4%) scale(1.05); filter: blur(55px) saturate(1.15); }
  100% { transform: translate(0, 2%)   scale(1.1);  filter: blur(58px) saturate(1.2); }
}

/* ─── 4. Tracing Beam (Brief-Seite) ─────────────────── */
.tracing-beam {
  position: fixed;
  left: max(2rem, calc((100vw - 1100px) / 2 - 30px));
  top: 12vh;
  bottom: 12vh;
  width: 2px;
  pointer-events: none;
  z-index: 40;
  display: none;
}
@media (min-width: 1024px) {
  .post .tracing-beam { display: block; }
}
.tracing-beam__rail {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(26, 22, 18, 0.12) 8%,
    rgba(26, 22, 18, 0.12) 92%,
    transparent 100%);
}
.tracing-beam__progress {
  position: absolute;
  top: 0;
  left: -1px;
  width: 4px;
  background: linear-gradient(to bottom, var(--gold, #C9A45F), var(--burgundy, #5C1410));
  border-radius: 2px;
  height: 0;
  box-shadow: 0 0 16px rgba(201, 164, 95, 0.7);
}
.tracing-beam__head {
  position: absolute;
  left: -7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold, #C9A45F);
  box-shadow: 0 0 22px rgba(201, 164, 95, 0.95), 0 0 0 4px rgba(255, 240, 200, 0.18);
  transform: translateY(-50%);
  transition: top 0.05s linear;
}

/* ─── 5. Bento Grid (Themes) ─────────────────── */
.themes__grid--bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1rem;
}
/* 4 Karten Bento: 1=groß links, 2+3=rechts gestapelt, 4=full-width unten */
.themes__grid--bento .theme-card:nth-child(1) {
  grid-column: span 4; grid-row: span 2;
}
.themes__grid--bento .theme-card:nth-child(2) {
  grid-column: span 2; grid-row: span 1;
}
.themes__grid--bento .theme-card:nth-child(3) {
  grid-column: span 2; grid-row: span 1;
}
.themes__grid--bento .theme-card:nth-child(4) {
  grid-column: span 6; grid-row: span 1;
}
/* 5+ Karten Override falls je erweitert */
.themes__grid--bento .theme-card:nth-child(4):nth-last-child(2) {
  grid-column: span 3;
}
.themes__grid--bento .theme-card:nth-child(5) {
  grid-column: span 3; grid-row: span 1;
}
.themes__grid--bento .theme-card:nth-child(1) .theme-card__title {
  font-size: clamp(2rem, 3vw, 2.6rem);
}
@media (max-width: 900px) {
  .themes__grid--bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .themes__grid--bento .theme-card { grid-column: span 1; grid-row: span 1; }
}

/* ─── 6. Cursor Spotlight (ersetzt klassischen Cursor) ──── */
.cursor-spotlight {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(201, 164, 95, 0.16) 0%,
    rgba(201, 164, 95, 0.06) 35%,
    transparent 70%);
  pointer-events: none;
  z-index: 9990;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(10px);
}
.cursor-spotlight.is-visible { opacity: 1; }
@media (hover: none) { .cursor-spotlight { display: none; } }

/* ─── 7. Glare Card (About-Bild) ─────────────────── */
.glare-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 4px;
}
.glare-card__glare {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 244, 210, 0.35) 0%,
    rgba(255, 244, 210, 0.15) 18%,
    transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: 2;
}
.glare-card:hover .glare-card__glare { opacity: 1; }

/* ─── 8. Animated Timeline (Methode) ─────────────────── */
.method__pillars {
  position: relative;
}
.method__pillars::before {
  content: "";
  position: absolute;
  left: 1.6rem;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(201, 164, 95, 0.15) 10%,
    rgba(201, 164, 95, 0.4) 50%,
    rgba(201, 164, 95, 0.15) 90%,
    transparent);
  z-index: 0;
}
.method__pillars::after {
  content: "";
  position: absolute;
  left: 1.6rem;
  top: 2rem;
  width: 2px;
  height: var(--timeline-progress, 0%);
  background: linear-gradient(to bottom, var(--gold), var(--burgundy));
  box-shadow: 0 0 14px rgba(201, 164, 95, 0.6);
  z-index: 1;
  transition: height 0.2s ease-out;
}
.method__pillar {
  position: relative;
  padding-left: 4rem;
  z-index: 2;
}
.method__pillar::before {
  content: "";
  position: absolute;
  left: calc(1.6rem - 7px);
  top: 0.6rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid rgba(201, 164, 95, 0.5);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 3;
}
.method__pillar.is-active::before {
  background: var(--gold);
  border-color: var(--burgundy);
  box-shadow: 0 0 18px rgba(201, 164, 95, 0.9), 0 0 0 6px rgba(201, 164, 95, 0.15);
  transform: scale(1.15);
}

/* ─── 9. Infinite Moving Cards (Voices) ─────────────────── */
.voices--marquee {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  --speed: 60s;
}
.voices--marquee::before,
.voices--marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18%;
  z-index: 4;
  pointer-events: none;
}
.voices--marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}
.voices--marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}
.voices__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: dj-marquee var(--speed) linear infinite;
}
.voices__track:hover { animation-play-state: paused; }
.voices__track--reverse {
  animation: dj-marquee-reverse calc(var(--speed) * 0.8) linear infinite;
  margin-top: 2rem;
}
.voices__track--reverse:hover { animation-play-state: paused; }
@keyframes dj-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes dj-marquee-reverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.voice-card--mini {
  flex: 0 0 380px;
  padding: 2rem;
  background: var(--bg-light);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.voice-card--mini:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px -16px rgba(26,22,18,0.15);
}
.voice-card--mini cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

/* ─── 10. Text Generate Effect (Hero) ─────────────────── */
.hero__word--gen {
  opacity: 0;
  filter: blur(8px);
  display: inline-block;
  animation: dj-text-gen 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes dj-text-gen {
  from { opacity: 0; filter: blur(8px); transform: translateY(8px); }
  to   { opacity: 1; filter: blur(0);   transform: translateY(0); }
}

/* Hide native cursor on desktop where spotlight is active */
@media (hover: hover) and (min-width: 900px) {
  body.has-spotlight { cursor: none; }
  body.has-spotlight a,
  body.has-spotlight button,
  body.has-spotlight [data-magnetic] { cursor: none; }
}

/* ═══════ TIER 4 FIXES — 2026-06-30 ═══════ */
/* Text Generate: Blur muss wirklich auflösen — höhere Spezifität als ".hero__display .word" */
.hero__display .word.hero__word--gen{
  opacity: 0;
  filter: blur(8px);
  animation: dj-text-gen 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

/* Animated Timeline: HORIZONTAL (die 3 Pfeiler stehen nebeneinander, nicht untereinander) */
@media (min-width: 760px){
  .method__pillars{ margin-top: 2.6rem; }
  .method__pillars::before{
    left: 9%; right: 9%; top: 0; bottom: auto; width: auto; height: 2px;
    background: linear-gradient(to right,
      transparent,
      rgba(201,164,95,.30) 14%,
      rgba(201,164,95,.46) 50%,
      rgba(201,164,95,.30) 86%,
      transparent);
  }
  .method__pillars::after{
    left: 9%; right: auto; top: 0; bottom: auto;
    width: var(--timeline-progress, 0%); max-width: 82%; height: 2px;
    background: linear-gradient(to right, var(--gold), var(--burgundy));
    box-shadow: 0 0 14px rgba(201,164,95,.55);
    transition: width 0.25s ease-out;
  }
  .method__pillar{ padding-left: 0; padding-top: 2.6rem; }
  .method__pillar::before{
    left: 50%; top: -7px; transform: translateX(-50%);
  }
  .method__pillar.is-active::before{ transform: translateX(-50%) scale(1.15); }
}
@media (max-width: 759px){
  .method__pillars::before,
  .method__pillars::after{ display: none; }
  .method__pillar{ padding-left: 0; }
  .method__pillar::before{ display: none; }
}

/* ─── Themes auf Timeline-Layout (wie Methode) ──── */
.themes__timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-left: 0;
}
.themes__timeline::before {
  content: "";
  position: absolute;
  left: 1.6rem;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(201, 164, 95, 0.15) 8%,
    rgba(201, 164, 95, 0.4) 50%,
    rgba(201, 164, 95, 0.15) 92%,
    transparent);
  z-index: 0;
}
.themes__timeline::after {
  content: "";
  position: absolute;
  left: 1.6rem;
  top: 2rem;
  width: 2px;
  height: var(--themes-progress, 0%);
  background: linear-gradient(to bottom, var(--gold), var(--burgundy));
  box-shadow: 0 0 14px rgba(201, 164, 95, 0.6);
  z-index: 1;
  transition: height 0.2s ease-out;
}
.themes__timeline .theme-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  padding: 1.8rem 1.8rem 1.8rem 4.4rem;
  background: var(--cream);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  /* override bento grid */
  grid-column: unset !important;
  grid-row: unset !important;
}
.themes__timeline .theme-card::before {
  content: "";
  position: absolute;
  left: calc(1.6rem - 7px);
  top: 2rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid rgba(201, 164, 95, 0.5);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 3;
}
.themes__timeline .theme-card.is-active::before {
  background: var(--gold);
  border-color: var(--burgundy);
  box-shadow: 0 0 18px rgba(201, 164, 95, 0.9), 0 0 0 6px rgba(201, 164, 95, 0.15);
  transform: scale(1.15);
}
.themes__timeline .theme-card:hover {
  transform: translateX(4px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px -18px rgba(26, 22, 18, 0.18);
}
.themes__timeline .theme-card__media {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-right: 0;
}
.themes__timeline .theme-card__num {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.themes__timeline .theme-card__icon {
  width: 32px;
  height: 32px;
  color: var(--burgundy);
  opacity: 0.7;
}
.themes__timeline .theme-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 0.6rem;
  line-height: 1.2;
}
.themes__timeline .theme-card__body p {
  margin: 0 0 0.8rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.55;
  font-style: italic;
  color: rgba(26, 22, 18, 0.78);
}
.themes__timeline .theme-card__link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}
@media (max-width: 720px) {
  .themes__timeline { gap: 1rem; }
  .themes__timeline::before,
  .themes__timeline::after { left: 1.1rem; }
  .themes__timeline .theme-card {
    padding: 1.4rem 1.2rem 1.4rem 3rem;
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .themes__timeline .theme-card::before { left: calc(1.1rem - 7px); top: 1.6rem; }
  .themes__timeline .theme-card__media { padding-right: 0; }
  .themes__timeline .theme-card__body h3 { font-size: 1.2rem; }
  .themes__timeline .theme-card__body p { font-size: 0.95rem; }
}

/* ─── Calendly Slots-Section ───────────────── */
.slots--calendly {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
}
.slots--calendly .slots__text {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.slots--calendly .slots__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(26, 22, 18, 0.75);
  margin: 1.5rem 0 0;
}
.calendly-inline-widget {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 22px 60px -24px rgba(26, 22, 18, 0.22);
  border: 1px solid rgba(201, 164, 95, 0.25);
  background: var(--bg-light);
}
.slots__note {
  text-align: center;
  margin: 2rem 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(26, 22, 18, 0.6);
}
.slots__note a {
  color: var(--burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.slots__note a:hover { color: var(--gold); }

@media (max-width: 720px) {
  .slots--calendly { padding: 3.5rem 0; }
  .calendly-inline-widget { min-height: 780px !important; height: 780px !important; }
}

/* ═══ Fixes 2026-07-05 (Paddy-Feedback) ═══ */
/* Scroll-Hint auch auf Desktop ausblenden */
.hero__scroll-hint { display: none; }
/* Mehr Luft oben in den Timeline-Boxen (Methode + Themen) */
.method__pillar { padding-top: 3rem; }
.themes__timeline .theme-card { padding-top: 2.4rem; }
/* Slots-Titel „Wähle Deinen Termin" lesbar auf Cream-Hintergrund */
.slots--calendly .slots__text .section-title { color: var(--ink); }
.slots--calendly .slots__text .section-title em { color: var(--gold); }
