/* =========================================================
   Soulfull Love — Lisa Schäfer
   Global stylesheet
   ========================================================= */

:root {
  /* Brand palette (from Canva codes supplied) */
  --magenta: #ed48ab;
  --magenta-deep: #c21e7f;
  --turquoise: #165252;
  --turquoise-light: #3e7c7a;
  --white: #fdfbf7;
  --gold: #bf9649;
  --gold-light: #f6ca45;
  --ink: #5A452B; /* Dark golden brown */
  --ink-soft: #7A664B;
  --grad-warm: linear-gradient(120deg,
      var(--magenta-deep) 0%,
      var(--magenta) 50%,
      var(--magenta-deep) 100%);
  --grad-hero: linear-gradient(135deg, #fff7ea 0%, #fde6f2 45%, #fbeee0 100%);
  --grad-gold: linear-gradient(120deg, #bf9649 0%, #f6ca45 50%, #bf9649 100%);
  --shadow-soft: 0 20px 60px -20px rgb(194 30 127 / 25%);
  --shadow-card: 0 10px 30px -10px rgb(43 35 32 / 15%);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

html,
body {
  overflow-x: hidden;
  -ms-overflow-style: none;

  /* IE and Edge */
  scrollbar-width: none;

  /* Firefox */
}

::-webkit-scrollbar {
  display: none;

  /* Chrome, Safari and Opera */
}

body {
  margin: 0;
  font-family: Jost, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.8em;
  color: var(--gold);
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

p {
  margin: 0 0 1.5em;
  color: var(--ink-soft);
}

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

.script {
  font-family: "Great Vibes", "Brush Script MT", cursive;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: Jost, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  user-select: none;
  user-select: none;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 6vw;
}

section {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  scroll-snap-align: start;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 1em 2em;
  border-radius: 100px;
  font-family: Jost, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
  white-space: normal;
  text-align: center;
}

.btn-primary {
  background: var(--grad-gold);
  background-size: 200% 200%;
  color: #3b2c0e;
  box-shadow: 0 14px 30px -12px rgb(191 150 73 / 55%);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 25px 50px -15px rgb(191 150 73 / 40%);
  background-position: 100% 0;
}

.btn-gold {
  background: var(--grad-gold);
  color: #3b2c0e;
  box-shadow: 0 14px 30px -12px rgb(191 150 73 / 55%);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--turquoise);
  color: var(--turquoise);
}

.btn-outline:hover {
  background: var(--turquoise);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.7em 1.4em;
  font-size: 0.82rem;
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
  flex: none;
}

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 18px 0;
  background: rgb(253 251 247 / 75%);
  backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid rgb(255 255 255 / 20%);
  transition:
    background 0.4s var(--ease),
    padding 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgb(253 251 247 / 95%);
  padding: 10px 0;
  box-shadow: 0 8px 30px -15px rgb(43 35 32 / 25%);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: transform 0.5s var(--ease);
}

.brand:hover img {
  transform: rotate(8deg) scale(1.06);
}

.brand .word-soulfull {
  font-family: "Great Vibes", cursive;
  font-size: 1.7rem;
  color: var(--gold);
}

.brand .word-love {
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--grad-warm);
  transition: width 0.35s var(--ease);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--gold);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s var(--ease),
    transform 0.3s var(--ease),
    visibility 0.3s;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
}

.dropdown a:hover {
  background: #fdf1f8;
  color: var(--gold);
}

.dropdown a::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow-card);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: all 0.3s var(--ease);
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

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

.nav-toggle.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.open span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (width <= 900px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(80vw, 340px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    box-shadow: -20px 0 60px rgb(0 0 0 / 15%);
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 22px;
  }

  .nav-toggle {
    display: flex;
  }

  .dropdown,
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
    display: none;
    padding-left: 10px;
    min-width: 0 !important;
  }

  .has-dropdown.open .dropdown {
    display: block !important;
  }

  .nav-cta {
    margin-top: 20px;
  }
}

/* ---------------- Hero ---------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end; /* changed from center */
  position: relative;
  padding-top: 140px;
  padding-bottom: 120px; /* increased to prevent overlap with scroll hint */
  background: transparent;
  overflow: hidden;
  animation: bounceSection 4s ease-in-out infinite;
}

.hero-bg-anim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-anim::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgb(0 0 0 / 35%) 0%,
      rgb(0 0 0 / 45%) 50%,
      rgb(0 0 0 / 75%) 75%,
      rgb(0 0 0 / 95%) 100%);
  pointer-events: none;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  pointer-events: none;
  user-select: none;
}

@media (width <= 900px) {
  .hero-bg-img {
    object-position: 82% 25%;
  }
}

.hero-bg-anim .layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;

  /* mask-ready is implied */
}

/* bgShift */
.hero-bg-anim .bg-shift {
  background: radial-gradient(circle at 50% 35%,
      rgb(255 255 255 / 55%),
      rgb(255 170 80 / 25%) 45%,
      transparent 75%);
  mix-blend-mode: soft-light;
  animation: bgDrift 26s ease-in-out infinite;
  opacity: 0.35;
}

@keyframes bgDrift {
  0%,
  100% {
    background-position: 0% 0%;
    transform: scale(1);
  }

  50% {
    background-position: 3% -2%;
    transform: scale(1.015);
  }
}

/* flowA */
.hero-bg-anim .flow-a {
  background: repeating-linear-gradient(12deg,
      transparent 0%,
      transparent 10%,
      rgb(255 255 255 / 90%) 13%,
      rgb(255 214 140 / 85%) 16%,
      transparent 20%,
      transparent 38%);
  background-size: 260% 260%;
  mix-blend-mode: screen;
  animation: flowA 13s linear infinite;
  opacity: 0.55;
}

@keyframes flowA {
  from {
    background-position: 0% 100%;
  }

  to {
    background-position: 0% -160%;
  }
}

/* flowB */
.hero-bg-anim .flow-b {
  background: repeating-linear-gradient(-18deg,
      transparent 0%,
      transparent 14%,
      rgb(255 236 200 / 80%) 18%,
      transparent 24%,
      transparent 46%);
  background-size: 220% 220%;
  mix-blend-mode: screen;
  animation: flowB 19s linear infinite reverse;
  opacity: 0.4;
}

@keyframes flowB {
  from {
    background-position: 0% 0%;
  }

  to {
    background-position: 0% 200%;
  }
}

.hero .container {
  display: block;
  position: relative;
  z-index: 2;
  margin-left: 0;
  max-width: none;
}

.hero-copy {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  text-shadow: 0 4px 15px rgb(0 0 0 / 80%);
}

.hero-copy h1, 
.hero-copy p, 
.hero-copy .eyebrow {
  color: #fff !important;
}

.hero-badge-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-wrap img {
  width: min(420px, 80vw);
  border-radius: 50%;
  filter: drop-shadow(0 30px 60px rgb(194 30 127 / 30%));
  animation: spinSlow 60s linear infinite;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-badge-wrap .ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px dashed rgb(191 150 73 / 50%);
  animation: spinSlow 90s linear infinite reverse;
}

.sparkle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0;
  animation: sparkle 3.6s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.4);
  }

  50% {
    opacity: 0.9;
    transform: scale(1);
  }
}

.hero-tagline {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero-tagline .script {
  color: var(--gold);
  font-size: 1.3em;
}

.hero-cta-row {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  z-index: 2;
}

.scroll-hint .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold), transparent);
  animation: pulseLine 2s ease-in-out infinite;
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* ---------------- Reveal on scroll ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.reveal-scale.in {
  opacity: 1;
  transform: scale(1);
}

.stagger>* {
  transition-delay: calc(var(--i, 0) * 110ms);
}

/* ---------------- Section heading ---------------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

/* ---------------- Recognition strip ---------------- */
.recognition {
  background: var(--turquoise);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.recognition::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%,
      rgb(246 202 69 / 18%),
      transparent 60%);
}

.recognition h2,
.recognition p {
  color: var(--white);
}

.recognition .container {
  position: relative;
  z-index: 1;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

@media (width <= 860px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

.quote-card {
  background: rgb(255 255 255 / 6%);
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  backdrop-filter: blur(6px);
  transition:
    transform 0.5s var(--ease),
    background 0.5s var(--ease);
}

.quote-card:hover {
  transform: translateY(-8px);
  background: rgb(255 255 255 / 11%);
}

.quote-card .num {
  display: block;
  font-family: Jost, sans-serif;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 14px;
}

/* ---------------- Offer cards ---------------- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (width <= 980px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease);
  border: 1px solid rgb(191 150 73 / 15%);
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -20px rgb(194 30 127 / 30%);
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}

.offer-card:hover::before {
  transform: scaleX(1);
}

.offer-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-hero);
  margin-bottom: 22px;
  font-size: 1.6rem;
  transition: transform 0.5s var(--ease);
}

.offer-card:hover .offer-icon {
  transform: rotate(-8deg) scale(1.08);
}

.offer-price {
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
  font-family: Jost, sans-serif;
  font-weight: 600;
  color: var(--gold);
  margin: 10px 0 18px;
}

.offer-price .amount {
  font-size: 1.5rem;
}

.offer-price .unit {
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 400;
}

.offer-card .btn {
  margin-top: 10px;
}

.free-tag {
  position: absolute;
  top: 24px;
  right: -34px;
  background: var(--grad-gold);
  color: #3b2c0e;
  padding: 6px 40px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transform: rotate(38deg);
}

/* ---------------- Steps ---------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: step;
}

@media (width <= 900px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step-card {
  text-align: center;
  padding: 20px;
  position: relative;
}

.step-num {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: var(--gold);
  position: relative;
}

.step-num::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgb(191 150 73 / 40%);
  animation: spinSlow 40s linear infinite;
}

.steps-track {
  position: absolute;
  top: 35px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: repeating-linear-gradient(90deg,
      var(--gold) 0 8px,
      transparent 8px 16px);
  z-index: 0;
}

@media (width <= 900px) {
  .steps-track {
    display: none;
  }
}

/* ---------------- About teaser / split ---------------- */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}

@media (width <= 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--grad-hero);
}

.portrait-frame .eyes-focus {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--gold);
  text-align: center;
  padding: 30px;
}

.portrait-frame .eyes-focus svg {
  width: 74px;
  height: 74px;
  opacity: 0.8;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgb(191 150 73 / 40%);
  border-radius: var(--radius-lg);
  margin: 14px;
  pointer-events: none;
}

/* ---------------- Testimonials ---------------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (width <= 980px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testi-card .quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  color: var(--gold);
  line-height: 0;
  display: block;
  margin-bottom: 14px;
}

.testi-card p {
  font-style: italic;
  color: var(--ink);
}

.testi-name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-weight: 600;
  font-family: Jost, sans-serif;
  font-size: 0.88rem;
  color: var(--gold);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.8rem;
}

/* ---------------- CTA banner ---------------- */
section:has(.cta-banner) {
  padding-bottom: 0;
}

.cta-banner {
  background: transparent;
  padding: clamp(50px, 8vw, 90px) 20px;
  text-align: center;
  position: relative;
  color: var(--ink);
  margin: 0;
  width: 100%;
}

.cta-banner h2,
.cta-banner p {
  color: var(--ink);
}

.cta-banner::before {
  content: "";
  display: none;
}

.cta-banner .btn-gold {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--turquoise);
  color: #e9e2d8;
  padding: 70px 0 30px;
  scroll-snap-align: start;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

@media (width <= 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (width <= 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col-brand {
  padding-right: 20px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-desc {
  margin-top: 18px;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #cfc6ba;
}

.site-footer h4 {
  color: var(--gold-light);
  font-family: Jost, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.site-footer a {
  color: #cfc6ba;
  display: inline-block;
  padding: 6px 0;
  transition:
    color 0.3s,
    transform 0.3s;
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.site-footer .brand {
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
}

.site-footer .brand .word-soulfull {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
  font-size: 0.85rem;
  color: #9d9488;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  display: inline;
  padding: 0;
  transform: none !important;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.social-row a:hover {
  background: var(--magenta);
  border-color: var(--magenta);
  color: white;
  transform: translateY(-3px);
}

/* ---------------- WhatsApp floating button ---------------- */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgb(37 211 102 / 60%);
  z-index: 600;
  animation: pulseWa 2.6s ease-in-out infinite;
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@keyframes pulseWa {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes shakeBtn {
  0%, 80% {
    transform: translateX(0);
  }
  82% {
    transform: translateX(-5px) rotate(-3deg);
  }
  86% {
    transform: translateX(5px) rotate(3deg);
  }
  90% {
    transform: translateX(-5px) rotate(-3deg);
  }
  94% {
    transform: translateX(5px) rotate(3deg);
  }
  98% {
    transform: translateX(-3px) rotate(-1deg);
  }
  100% {
    transform: translateX(0) rotate(0);
  }
}

/* ---------------- Cookie banner ---------------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px -10px rgb(0 0 0 / 35%);
  padding: 26px 30px;
  z-index: 800;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  transform: translateY(140%);
  transition: transform 0.6s var(--ease);
  border: 1px solid rgb(191 150 73 / 25%);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.88rem;
  max-width: 56ch;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------------- Page hero (inner pages) ---------------- */
.page-hero {
  padding: 170px 0 90px;
  background: var(--grad-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: bounceSection 4s ease-in-out infinite;
}

.page-hero.has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.energie-hero {
  background-position: center 15%;
}

@media (max-width: 900px) {
  .energie-hero {
    background-position: 85% 15%;
  }
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgb(26 15 26 / 20%) 0%,
      rgb(26 15 26 / 60%) 100%);
  z-index: 1;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--magenta) 0%, transparent 70%);
  opacity: 0.35;
  top: -160px;
  right: -100px;
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

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

/* ---------------- Offer detail layout ---------------- */
.offer-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

@media (width <= 940px) {
  .offer-detail {
    grid-template-columns: 1fr;
  }
}

.offer-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 40px;
  position: sticky;
  top: 120px;
}

.meta-row {
  display: flex;
  gap: 26px;
  margin: 18px 0 26px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-item .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

.meta-item .value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--gold);
}

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

.experience-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease);
}

.experience-list li:hover {
  transform: translateX(6px);
}

.experience-list .n {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-warm);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

.experience-list h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.experience-list p {
  margin: 0;
  font-size: 0.92rem;
}

/* ---------------- Forms ---------------- */
.form-grid {
  display: grid;
  gap: 30px;
  margin-top: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-family: Jost, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.field input,
.field textarea,
.field select {
  padding: 10px 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 15%);
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition:
    border-color 0.4s ease,
    background-color 0.4s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--gold);
  background: rgb(0 0 0 / 2%);
}

.field .hint {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: 10px;
}

.checkbox-row input {
  margin-top: 4px;
  accent-color: var(--gold);
}

.form-grid .btn {
  justify-self: start;
  padding: 14px 40px;
  margin-top: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

@media (width <= 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (width <= 768px) {
  .contact-boxes {
    grid-template-columns: 1fr;
  }
}

.contact-box {
  background: rgb(255 255 255 / 3%);
  border: 1px solid rgb(255 255 255 / 8%);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #cfc6ba;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.contact-box:hover {
  background: rgb(255 255 255 / 6%);
  border-color: rgb(255 255 255 / 15%);
  color: var(--white);
}

.contact-box svg {
  width: 22px;
  height: 22px;
  color: var(--turquoise);
}

.contact-box span {
  font-size: 0.9rem;
  font-weight: 500;
}

.whatsapp-box {
  background: rgb(37 211 102 / 4%);
  border-color: rgb(37 211 102 / 20%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 20%);
}

.whatsapp-box:hover {
  background: rgb(37 211 102 / 8%);
  border-color: #25d366;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgb(37 211 102 / 15%);
}

.whatsapp-box svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.whatsapp-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.2;
}

.whatsapp-title {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.whatsapp-status {
  font-size: 0.75rem;
  color: rgb(255 255 255 / 70%);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: #25d366;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgb(37 211 102 / 70%);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgb(37 211 102 / 0%);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgb(37 211 102 / 0%);
  }
}

.luxury-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.luxury-form .field input,
.luxury-form .field textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgb(255 255 255 / 4%);
  border: 1px solid rgb(255 255 255 / 10%);
  padding: 18px 24px;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.4s ease;
}

.luxury-form .field input::placeholder,
.luxury-form .field textarea::placeholder {
  color: rgb(255 255 255 / 40%);
}

.luxury-form .field input:focus,
.luxury-form .field textarea:focus {
  outline: none;
  background: rgb(255 255 255 / 7%);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgb(191 150 73 / 20%);
}

.btn-luxury-submit {
  width: 100%;
  background: var(--grad-gold);
  color: var(--ink);
  border: none;
  padding: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 10px;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 10px 30px -10px rgb(191 150 73 / 40%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-luxury-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px -10px rgb(191 150 73 / 60%);
}

.bg-dark {
  background: var(--turquoise);
}

.bg-dark .eyebrow {
  color: var(--gold-light);
}

.bg-dark .eyebrow::before {
  display: inline-block;
  background: var(--gold-light);
}

.social-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 15%);
  color: rgb(255 255 255 / 70%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-round:hover {
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.1);
  background: rgb(255 255 255 / 5%);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.area-tags span {
  background: rgb(255 255 255 / 12%);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
}

/* ═══════════ WHATSAPP FLOAT ═══════════ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9997;
  box-shadow: 0 4px 25px rgb(37 211 102 / 35%);
  transition: all 0.5s var(--ease-out-expo, cubic-bezier(0.19, 1, 0.22, 1));
  text-decoration: none;
  opacity: 0;
  transform: scale(0) translateY(20px);
  cursor: pointer;
}

.wa-float.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.wa-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 35px rgb(37 211 102 / 50%);
}

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.wa-float-label {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  opacity: 1;
  pointer-events: none;
  border-radius: 4px;
  animation: nudgeWaLabel 3s ease-in-out infinite;
}

@keyframes nudgeWaLabel {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-6px); }
}

.wa-float-label::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--ink);
}

/* Removed hover opacity since it's now always visible */

/* Pulse ring */
.wa-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgb(37 211 102 / 40%);
  animation: waPulse 2.5s ease infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Responsive */
@media (width <= 768px) {
  .wa-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }

  .wa-float svg {
    width: 22px;
    height: 22px;
  }

  .wa-float-label {
    display: block;
    right: 58px;
    font-size: 0.6rem;
    padding: 0.4rem 0.8rem;
  }
}

.accordion-item {
  border-bottom: 1px solid #e7ded2;
}

.accordion-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary .plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 0.4s var(--ease);
  font-size: 1rem;
  color: var(--gold);
}

.accordion-item[open] summary .plus {
  transform: rotate(135deg);
}

.accordion-item .a-body {
  padding-bottom: 22px;
  color: var(--ink-soft);
}

/* ---------------- Legal / static pages ---------------- */
.legal-body {
  max-width: 780px;
  margin: 0 auto;
}

.legal-body h2 {
  margin-top: 1.4em;
}

.legal-note {
  background: #fdf1f8;
  border: 1px solid rgb(237 72 171 / 25%);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 0.88rem;
  margin-bottom: 30px;
}

/* ---------------- Utility ---------------- */
.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.badge-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.divider-gold {
  width: 70px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto;
}

/* ============================================================
   Animation extras
   ============================================================ */

/* Hero orbs follow mouse via CSS custom props */
.hero::before {
  left: calc(var(--mx, 75%) - 240px);
  top: calc(var(--my, 15%) - 240px);
  transition:
    left 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    top 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  animation: none;
}

.hero::after {
  left: calc(var(--mx, 10%) - 190px);
  top: calc(var(--my, 75%) - 190px);
  transition:
    left 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    top 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  animation: none;
}

/* ---------------- Scroll Down Animation ---------------- */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation:
    fadeIn 2s ease-in-out 1s forwards,
    bounceUp 2s infinite;
  pointer-events: none;
}

@keyframes bounceUp {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-15px);
  }

  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}

@keyframes bounceSection {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgb(255 255 255 / 70%);
  border-radius: 20px;
  position: relative;
}

.scroller {
  width: 4px;
  height: 8px;
  background: rgb(255 255 255 / 90%);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

@keyframes fadeIn {
  to {
    opacity: 0.8;
  }
}

/* ---------------- Veranstaltungen ---------------- */
.bg-alt {
  background: #fcf9f5;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--ink);
}

.icon-list li .icon {
  font-size: 1.2rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.info-bar {
  background: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.info-item strong {
  color: var(--ink);
  font-weight: 600;
  font-family: Jost, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.gold-icon {
  width: 1.4em;
  height: 1.4em;
  vertical-align: middle;
  flex-shrink: 0;
  display: inline-block;
}

.icon-list li .icon {
  font-size: 1.2rem;
  line-height: 1.4;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Inline icon replacement for emojis */
.inline-icon {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  margin-top: -0.15em;
  border-radius: 50%; /* Optional: ensures circle if favicon is not perfectly round */
}

/* Mobile Text Justification */
@media (width <= 900px) {
  p, 
  .section-content p, 
  .about-content p, 
  .hero-tagline {
    text-align: justify !important;
    -webkit-hyphens: auto;
    hyphens: auto;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}
