/* ==========================================================================
   WISHES FOR YOU – LANDING CSS (FULL REPLACEMENT)
   Dark Luxury / Spiritual Editorial Theme
   ========================================================================== */

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

:root {
  --wfy-bg-primary: #080604;
  --wfy-bg-secondary: #0b0907;
  --wfy-bg-surface: #11100d;

  --wfy-gold-soft: #d9b98f;
  --wfy-gold-mid: #c89b62;
  --wfy-gold-deep: #c9a96e;

  --wfy-text-main: #f4efe7;
  --wfy-text-soft: rgba(255, 247, 235, 0.74);
  --wfy-text-muted: rgba(255, 247, 235, 0.46);

  --wfy-border-soft: rgba(217, 185, 143, 0.12);
  --wfy-border-strong: rgba(217, 185, 143, 0.24);

  --wfy-shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.35);
  --wfy-shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top center, rgba(201, 169, 110, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 230, 190, 0.025), transparent 30%),
    linear-gradient(180deg, var(--wfy-bg-primary), var(--wfy-bg-secondary) 35%, #0d0b09 100%);
  color: var(--wfy-text-main);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}

/* Ambient warm veil */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at top,
      rgba(217, 185, 143, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.02),
      transparent 24%
    );
  z-index: -2;
  pointer-events: none;
}

/* Frontpage-Inhalt wird beim Overlay-Öffnen unscharf und abgedunkelt.
   Der Körper-Hintergrund (schwarz) bleibt unverändert sichtbar. */
.landing-page {
  transition: filter 550ms cubic-bezier(0.4, 0, 0.2, 1);
}

body.wt-page-leaving .landing-page {
  filter: blur(5px) brightness(0.38);
}

/* ==========================================================================
   STARS
   ========================================================================== */

.stars {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.34), transparent),
    radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.22), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.16), transparent),
    radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.18), transparent);
  background-size: 220px 220px;
  opacity: 0.26;
  animation: moveStars 150s linear infinite;
  z-index: -1;
  transition:
    opacity 700ms ease,
    filter 700ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 700ms ease;
}

body.wt-page-leaving .stars {
  opacity: 0.16;
  filter: blur(1.5px) brightness(0.72);
  transform: scale(1.01);
}

@keyframes moveStars {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-220px);
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 920px;
  animation: fadeIn 1.6s ease;
  transition:
    opacity 480ms ease,
    transform 480ms cubic-bezier(0.4, 0, 1, 1),
    filter 480ms ease;
}

body.wt-page-leaving .hero-content {
  opacity: 0.6;
}

.hero-label {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.76rem;
  color: rgba(217, 185, 143, 0.72);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-message {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.4rem, 8vw, 6.3rem);
  line-height: 1.02;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  color: rgba(255, 247, 235, 0.96);
  text-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--wfy-text-soft);
  max-width: 720px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.85;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta-group {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

button.btn {
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  min-height: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.35s ease;
  cursor: pointer;
  border: 1px solid var(--wfy-border-soft);
  background: transparent;
}

.btn-primary {
  background:
    linear-gradient(
      135deg,
      var(--wfy-gold-soft),
      var(--wfy-gold-mid)
    );
  color: #111;
  font-weight: 600;
  box-shadow: 0 12px 36px rgba(200,155,98,0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(200,155,98,0.30);
}

.btn-secondary {
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.025);
}

.btn-secondary:hover {
  background: rgba(217,185,143,0.06);
  border-color: var(--wfy-border-strong);
}

/* ==========================================================================
   GENERIC SECTIONS
   ========================================================================== */

.section {
  padding: 110px 24px;
  position: relative;
  z-index: 2;
}

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

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 18px;
  font-weight: 500;
  color: rgba(255, 247, 235, 0.94);
}

.section-title p {
  color: var(--wfy-text-soft);
  max-width: 720px;
  margin: 0 auto;
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background:
    linear-gradient(
      180deg,
      rgba(17, 16, 13, 0.92),
      rgba(12, 10, 8, 0.96)
    );
  border: 1px solid rgba(217,185,143,0.10);
  border-radius: 28px;
  padding: 38px;
  transition: all 0.4s ease;
  backdrop-filter: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.015);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,155,98,0.24);
  box-shadow: var(--wfy-shadow-soft);
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217,185,143,0.08);
  border: 1px solid rgba(217,185,143,0.12);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  font-weight: 500;
  color: rgba(255,247,235,0.92);
}

.card p {
  color: var(--wfy-text-soft);
  font-size: 0.97rem;
}

/* ==========================================================================
   JOURNEY
   ========================================================================== */

.journey {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 20px;
}

.journey-step {
  position: relative;
  padding: 34px;
  border-radius: 26px;
  background:
    linear-gradient(
      180deg,
      rgba(14, 12, 10, 0.96),
      rgba(10, 8, 7, 0.98)
    );
  border: 1px solid rgba(217,185,143,0.08);
  transition: all .35s ease;
}

.journey-step:hover {
  border-color: rgba(217,185,143,0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
}

.step-number {
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(217,185,143,0.84);
  margin-bottom: 18px;
}

.journey-step h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 500;
  color: rgba(255,247,235,0.9);
}

.journey-step p {
  color: var(--wfy-text-soft);
  font-size: 0.95rem;
}

/* ==========================================================================
   QUOTE
   ========================================================================== */

.quote-section {
  text-align: center;
  padding: 140px 24px;
}

.quote {
  max-width: 860px;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.35;
  color: rgba(255,255,255,0.94);
}

.quote-author {
  margin-top: 28px;
  color: rgba(217,185,143,0.5);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-cta {
  text-align: center;
  padding: 110px 24px 140px;
}

.final-box {
  max-width: 880px;
  margin: 0 auto;
  background:
    linear-gradient(
      180deg,
      rgba(16,14,11,0.96),
      rgba(10,8,6,0.98)
    );
  border: 1px solid rgba(217,185,143,0.12);
  border-radius: 36px;
  padding: 70px 40px;
  backdrop-filter: none;
  box-shadow: var(--wfy-shadow-deep);
}

.final-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 20px;
  font-weight: 500;
  color: rgba(255,247,235,0.95);
}

.final-box p {
  max-width: 620px;
  margin: 0 auto 38px;
  color: var(--wfy-text-soft);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  padding: 40px 24px 60px;
  text-align: center;
  color: var(--wfy-text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
  }

  .hero-message {
    font-size: clamp(3rem, 10vw, 4.4rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.75;
  }

  .card,
  .journey-step,
  .final-box {
    padding: 30px;
  }

  .quote-section {
    padding: 90px 24px;
  }

  .cta-group {
    gap: 14px;
  }
}
