/* ============================================
   BAILA VERDE – TROPICAL NIGHTS
   Satori Graphics-inspired Design System
   ============================================ */

/* Font Face Declarations */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/Playfair_Display/static/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/Playfair_Display/static/PlayfairDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/Playfair_Display/static/PlayfairDisplay-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora/static/Lora-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora/static/Lora-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora/static/Lora-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Lora';
  src: url('../fonts/Lora/static/Lora-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* CSS Variables */
:root {
  /* Colors */
  --color-bg: #ffffff;
  --color-bg-off: #faf7f2;
  --color-text: #111111;
  --color-text-secondary: #6b6b6b;
  --color-accent-gold: #cfa74a;
  --color-accent-green: #2fa56d;
  
  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Lora', serif;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 96px;
  --spacing-xxl: 140px;
  
  /* Container */
  --container-max-width: 1200px;
  --container-padding: 24px;
  
  /* Transitions */
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: #2F382B; /* damit oben nicht wieder Weiß sichtbar ist */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-md);
  font-size: 1rem;
  line-height: 1.7;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-accent-green);
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Section Base */
.section {
  padding: var(--spacing-xxl) 0;
  position: relative;
  z-index: 1;
}

.section--scroll-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.section--scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Section Overlays (wie in Hero) - für ALLE Sections */
.section {
  position: relative;
}

.section > * {
  position: relative;
  z-index: 3;
}

/* Section Overlays entfernt */
.section:not(.section--vibe)::before {
  display: none;
}

.section::after {
  display: none;
}

.section--vibe {
  padding: 120px 0;
}

.section__title {
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

/* Events Section Title - volles Weiß */
.section--events .section__title {
  color: #ffffff; /* volles Weiß */
  margin-bottom: var(--spacing-lg); /* Mehr Space zwischen Headline und Untertitel */
}

/* Pakete Section Title - volles Weiß */
.section--pakete .section__title {
  color: #ffffff; /* volles Weiß */
}

/* Events Section Subtitle - wie Hero Description */
.section--events .section__subtitle {
  color: rgba(255, 255, 255, 0.72); /* wie Hero Description */
}

.section__title--serif {
  font-family: var(--font-serif);
}

.section__subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
}

/* ============================================
   HERO ANIMATIONS - Satori Style
   ============================================ */

/* Keyframes */
@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes claimReveal {
  0% {
    opacity: 0;
    letter-spacing: 0.12em;
  }
  100% {
    opacity: 1;
    letter-spacing: 0.08em;
  }
}

@keyframes letterStagger {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes backgroundPulse {
  0%, 100% {
    opacity: 0.20;
  }
  50% {
    opacity: 0.25;
  }
}

@keyframes scrollIndicatorPulse {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 0.4;
  }
}

/* Logo Reveal - 0.0s → 0.7s, 12% easing */
.hero__logo.reveal {
  opacity: 0;
  animation: logoReveal 0.7s cubic-bezier(0.12, 0, 0.39, 1) forwards;
}

/* Claim Reveal - 0.2s delay, fade + tracking tighten */
.hero__eyebrow.reveal {
  opacity: 0;
  animation: claimReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

/* Title Container - centered (styles merged with main .hero__title below) */

/* Letter Stagger Animation */
.hero__title-word,
.hero__bullet {
  display: inline-block;
  opacity: 0;
  animation: letterStagger 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero__title-word[data-word="0"] {
  animation-delay: 0s;
}

.hero__bullet--1 {
  animation-delay: 0.05s;
}

.hero__title-word[data-word="1"] {
  animation-delay: 0.10s;
}

.hero__bullet--2 {
  animation-delay: 0.15s;
}

.hero__title-word[data-word="2"] {
  animation-delay: 0.20s;
}

/* Other Hero Elements - fade up + 10px slide */
.hero .reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero .reveal.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for other hero elements */
.hero .reveal--4 { transition-delay: 0.4s; }
.hero .reveal--5 { transition-delay: 0.5s; }
.hero .reveal--6 { transition-delay: 0.6s; }
.hero .reveal--7 { transition-delay: 0.7s; }

/* Background Pulse Animation entfernt */

/* Scroll Indicator Pulse - continuous */
.hero__scroll-indicator {
  animation: scrollIndicatorPulse 3.5s ease-in-out infinite;
}

/* Reveal Animation - Section Elements (Satori Style) */
.section .reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.header.scrolled {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px var(--container-padding);
  min-height: 48px;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.nav__logo:hover {
  opacity: 0.8;
}

.nav__logo-img {
  height: 14px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: var(--color-accent-gold);
  transition: width 0.25s ease-out;
}

.nav__link {
  transition: letter-spacing 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav__link:hover {
  letter-spacing: calc(0.05em + 1px);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

/* ============================================
   SOUND TOGGLE (Satori Style)
   ============================================ */
.bv-sound-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1.5px solid rgba(246, 113, 100, 0.35); /* Coral, semi-transparent, leicht neon-ish aber soft */
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-text); /* Gleiche schwarze Farbe wie Navigation-Texte */
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  font-family: var(--font-sans);
  font-weight: 400;
}

.bv-sound-toggle:hover {
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(246, 113, 100, 0.5); /* Stärkerer Coral-Border beim Hover */
  color: var(--color-text); /* Bleibt schwarz beim Hover */
}

.bv-sound-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D87972;
  box-shadow: 0 0 0 0 rgba(216, 121, 114, 0.6);
  animation: bv-sound-pulse 2.8s infinite;
  transform-origin: center;
}

.bv-sound-toggle.bv-muted .bv-sound-dot {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: none;
  animation: none;
}

.bv-sound-label {
  font-family: inherit;
}

@keyframes bv-sound-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 121, 114, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(216, 121, 114, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(216, 121, 114, 0);
  }
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: all var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent; /* Hintergrundfarbe kommt vom body */
  padding-top: 90px;
  padding-bottom: 6vh;
  overflow: hidden;
  z-index: 1;
}

/* ============================================
   BACKGROUND SHAPE LAYER (fix hinter allem)
   ============================================ */
.bg-shape-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Minimales, dezentes Overlay über dem Shape zum leichten Abdunkeln */
.bg-shape-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15); /* Minimales, gleichmäßiges Abdunkeln */
  pointer-events: none;
  z-index: 1; /* Über dem Shape, unter dem Content */
}

/* Shape selbst */
.bg-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Parallax in X und Y über Variablen */
  transform: translate(calc(-50% + var(--parallax-x, 0px)), calc(-50% + var(--parallax-y, 0px)));
  
  width: 140%;
  height: 140%;
  max-width: none;
  
  background-image: url('../images/Backgroud 2.png');
  background-size: cover;
  background-position: center; /* ggf. mit 52% o.Ä. feinjustieren */
  background-repeat: no-repeat;
  
  opacity: 0.3; /* noch dezenter */
  filter: contrast(1.18) saturate(1.05);
  mix-blend-mode: normal;
  
  pointer-events: none;
  will-change: transform, opacity;
}

/* Soft Gradient Overlay auf Shape - optional, sehr dezent */
.bg-shape::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0) 70%,
    rgba(30, 39, 32, 0.2) 100%
  );
  z-index: 1;
}

/* Hero Content über dem Shape */
.hero__content {
  position: relative;
  z-index: 2;
}

/* Dunkler Vignette-Layer über Hero - entfernt */
.hero::after {
  display: none;
}

/* Alte hero__background-2 Styles entfernt - jetzt in .bg-shape */

/* .hero__background entfernt */

/* Hero Overlays entfernt */
.hero__overlay {
  display: none;
}

.hero__background-overlay {
  display: none;
}

.hero__grain {
  display: none;
}

/* Hero-Overlays sind jetzt mit niedrigerer Opacity versehen, damit Shape durchscheint */


.hero__content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: 0;
  font-weight: 600;
  opacity: 0.75;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.03);
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 6.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #FF7B76;
  margin: 0 auto 12px auto;
  line-height: 0.92;
  white-space: nowrap;
  text-align: center;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.hero__title-word {
  display: inline-block;
}

.hero__bullet {
  font-size: 0.6em;
  vertical-align: middle;
  margin: 0 0.1em;
  opacity: 0.85;
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFA8A8;
  margin-bottom: 40px;
  font-weight: 400;
  opacity: 1;
}

.hero__logo {
  margin: 0 0 2px 0;
}

.hero__logo-img {
  max-width: 170px;
  height: auto;
  opacity: 0.9;
}

.hero__description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 650px;
  margin: 0 auto 48px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-weight: 300;
  opacity: 1;
}

.hero__cta {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-top: 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero__trust {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 0;
  opacity: 0.65;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 127, 127, 0.4);
  animation: breathe 2s ease-in-out infinite;
  cursor: pointer;
  opacity: 1;
}

.hero__scroll-indicator svg {
  width: 22px;
  height: 22px;
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(17, 17, 17, 0.3);
  background-color: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.25s ease-out;
  font-family: var(--font-sans);
  text-align: center;
  border-radius: 2px;
}

.btn--primary {
  border-color: #FF7F7F;
  background-color: #FF7F7F;
  color: #ffffff;
  transition: background-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              border-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0.9rem 3rem;
  font-weight: 800;
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.btn--primary:hover {
  background-color: #FF9292;
  border-color: #FFA5A5;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--secondary {
  border-color: rgba(255, 255, 255, 0.75);
  color: rgba(255, 255, 255, 0.65);
  transition: border-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 300;
  background-color: transparent;
  position: relative;
}

.btn--secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: inherit;
}

.btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.95);
  color: rgba(255, 255, 255, 0.95);
  background-color: transparent;
  transform: translateY(-1px);
}

.btn--secondary:hover::before {
  opacity: 1;
}

.btn--outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: rgba(255, 255, 255, 0.75);
  background-color: transparent;
  transition: border-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.btn--outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: inherit;
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.95);
  color: rgba(255, 255, 255, 0.95);
  background-color: transparent;
  transform: translateY(-1px);
}

.btn--outline:hover::before {
  opacity: 1;
}

.btn--full {
  width: 100%;
}

/* ============================================
   VIBE SECTION
   ============================================ */
/* ============================================
   VIBE SECTION (Satori Style)
   ============================================ */
.section--vibe {
  background: transparent; /* Hintergrundfarbe kommt vom body, Shape scheint durch */
  position: relative;
  padding: 80px 0 120px 0;
  opacity: 0;
  transform: translateY(24px);
  z-index: 1;
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.section--vibe.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Vibe Section Overlays entfernt */
.section--vibe::before {
  display: none;
}

.section--vibe::after {
  display: none;
}

@keyframes vibeBGShift {
  0% {
    background: radial-gradient(circle at top left, rgba(255, 174, 158, 0.35), transparent 60%);
  }
  50% {
    background: radial-gradient(circle at top center, rgba(255, 154, 188, 0.35), transparent 60%);
  }
  100% {
    background: radial-gradient(circle at top right, rgba(255, 174, 158, 0.35), transparent 60%);
  }
}

.container--vibe {
  max-width: 1160px;
  position: relative;
  z-index: 2;
}

.vibe__grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 80px;
  align-items: center;
}

.vibe__content {
  max-width: 660px;
}

.vibe__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(32, 32, 28, 0.5);
  margin-bottom: 16px;
  font-weight: 500;
}

.vibe__coral-accent {
  color: #D87972;
  margin-right: 8px;
}

.vibe__title {
  font-family: 'Playfair Display', serif;
  font-size: 3.25rem;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #ffffff; /* volles Weiß */
  margin-bottom: 48px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.section--vibe.in-view .vibe__title {
  transition-delay: 80ms;
  opacity: 1;
  transform: translateY(0);
}

.vibe__title-line {
  display: block;
}

.vibe__text {
  margin-bottom: 32px;
  position: relative;
}

.vibe__text::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 60px;
  height: 1px;
  background-color: #D87972;
  opacity: 0.6;
}

.vibe__text p {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72); /* wie Hero Description */
  margin-bottom: 32px;
  max-width: 640px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.section--vibe.in-view .vibe__text p:nth-of-type(1) {
  transition-delay: 160ms;
  opacity: 1;
  transform: translateY(0);
}

.section--vibe.in-view .vibe__text p:nth-of-type(2) {
  transition-delay: 220ms;
  opacity: 1;
  transform: translateY(0);
}

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

.vibe__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.4rem;
  margin-top: 2.2rem;
}

.vibe__feature {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.6rem;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
  
  /* Glass-Dark Look wie Event Cards */
  background: rgba(0, 0, 0, 0.25); /* Dunkler Glass-Layer statt weiß */
  border: 1px solid rgba(246, 113, 100, 0.28); /* Coral, filigraner Rand */
  
  /* Glass-Effekt */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  
  /* Softer Schatten wie Event Cards */
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 123, 118, 0.1);
  
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    background 0.18s ease-out,
    border-color 0.18s ease-out;
  
  width: 100%;
  max-width: 280px;
  opacity: 0;
  transform: translateY(10px);
  animation: chipIn 0.4s ease-out forwards;
}

/* Coral-Rand als subtiler Glow */
.vibe__feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(246, 113, 100, 0.28); /* Coral, filigraner Rand */
  pointer-events: none;
  opacity: 0.6;
  z-index: 1;
}

/* Noise Texture für Premium-Look (super subtil) */
.vibe__feature::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: 
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.008) 0px, transparent 1px, transparent 2px, rgba(0, 0, 0, 0.008) 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.008) 0px, transparent 1px, transparent 2px, rgba(0, 0, 0, 0.008) 3px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.005) 0px, transparent 1px, transparent 3px, rgba(0, 0, 0, 0.005) 4px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.vibe__feature:nth-child(1) {
  animation-delay: 0s;
}

.vibe__feature:nth-child(2) {
  animation-delay: 0.05s;
}

.vibe__feature:nth-child(3) {
  animation-delay: 0.1s;
}

.vibe__feature:nth-child(4) {
  animation-delay: 0.15s;
}

@keyframes chipIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vibe__feature:hover {
  transform: translateY(-3px);
  background: rgba(0, 0, 0, 0.32); /* Dunkler beim Hover */
  border-color: rgba(246, 113, 100, 0.42); /* Leicht stärkerer Coral-Border beim Hover */
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.12), /* Softer Schatten beim Hover */
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 20px rgba(255, 123, 118, 0.2);
}

.vibe__feature:hover::before {
  border-color: rgba(246, 113, 100, 0.42);
  opacity: 0.85;
}

.vibe__feature-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  font-size: 1.3rem; /* minimal kleiner, cleaner */
  filter: brightness(0) saturate(100%) invert(48%) sepia(15%) saturate(1200%) hue-rotate(320deg) brightness(0.85);
  transition: transform 0.18s ease-out, filter 0.18s ease-out;
  color: #f77262; /* Coral */
  position: relative;
  z-index: 2; /* Über Noise */
}

.vibe__feature:hover .vibe__feature-icon {
  transform: translateY(-1px) scale(1.05);
  filter: drop-shadow(0 0 6px rgba(247, 114, 98, 0.55));
}

/* Typografie für Chip-Labels */
.vibe__feature span:not(.vibe__feature-icon) {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #F6F6F4; /* Höchste Lesbarkeit auf dunklem Hintergrund */
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  z-index: 2; /* Über Noise */
}

/* Optional: Sekundäre Zeile für Sub-Labels */
.vibe__feature-label-sub {
  display: block;
  font-size: 0.78rem;
  opacity: 0.7;
  margin-top: 0.1rem;
}

.vibe__visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 0;
  margin-top: 0;
  position: relative;
  transform: translateY(18px);
  transition: transform 800ms ease-out;
}

.section--vibe.in-view .vibe__visual {
  transform: translateY(0);
}

/* Glow Atmosphere - Nightclub Vibe (rings um das Bild) - reduziert */
.vibe__visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 182, 193, 0.2) 0%,
    rgba(255, 218, 185, 0.15) 25%,
    rgba(221, 160, 221, 0.1) 50%,
    rgba(255, 105, 180, 0.08) 70%,
    transparent 100%
  );
  border-radius: 30px;
  z-index: 0;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.5; /* reduziert, damit keine Linie am Übergang entsteht */
}

.vibe__frame {
  width: calc(100% + 20px);
  max-width: 80%;
  aspect-ratio: 3 / 4.2;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #FFF7E8;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-left: -10px;
  margin-right: -10px;
  box-shadow: 
    0 40px 120px rgba(255, 155, 144, 0.22);
  animation: vibeGlow 6s ease-in-out infinite alternate;
}

@keyframes vibeGlow {
  0%, 100% {
    box-shadow: 
      0 40px 120px rgba(255, 155, 144, 0.22);
  }
  50% {
    box-shadow: 
      0 60px 160px rgba(255, 155, 144, 0.32);
  }
}

/* Color Grading Overlay - Coral + Olive */
.vibe__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(209, 71, 78, 0.25),
    rgba(54, 59, 41, 0.45)
  );
  mix-blend-mode: soft-light;
  z-index: 1;
  pointer-events: none;
}

/* Coral Gradient Edge Glow - Heat/Fog/Mood */
.vibe__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(209, 71, 78, 0.45) 0%,
    rgba(0, 0, 0, 0) 35%,
    rgba(54, 59, 41, 0.4) 100%
  );
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
}

/* Olive Shadow Overlay - Abdunkeln */
.vibe__frame-color-overlay {
  position: absolute;
  inset: 0;
  background-color: #2e3326;
  mix-blend-mode: multiply;
  opacity: 0.25;
  z-index: 3;
  pointer-events: none;
}

/* Coral Reflex in Highlights */
.vibe__frame-coral-reflex {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(216, 121, 114, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 4;
  pointer-events: none;
}

.vibe__frame-image {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: 75% 20%;
  display: block;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 0;
  filter: brightness(0.88) contrast(1.05);
}

.vibe__frame.is-visible .vibe__frame-image {
  transform: scale(1.02);
}

/* Vibe Section Reveal Animations */
.vibe__content.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.12s,
              transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.12s;
}

.vibe__content.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vibe__visual.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.24s,
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.24s;
}

.vibe__visual.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vibe__visual.reveal.is-visible .vibe__frame {
  transform: scale(1.02);
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.section--events {
  background: transparent; /* Hintergrundfarbe kommt vom body, Shape scheint durch */
  padding: 60px 0 60px 0; /* Reduziertes unteres Padding für weniger Abstand zur Pakete-Section */
}

.events__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(32, 32, 28, 0.5);
  margin-bottom: 16px;
  font-weight: 500;
  text-align: center;
}

.events__coral-accent {
  color: #D87972;
  margin-right: 8px;
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.event-card {
  /* Glass-Dark Look mit Coral-Touch */
  background: rgba(0, 0, 0, 0.25); /* Dunkler Glass-Layer statt weiß */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px 24px;
  position: relative;
  border: 1px solid rgba(255, 123, 118, 0.2); /* Coral Border */
  border-radius: 24px; /* Reduziert von 28px für Premium-Look */
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.08), /* Softer Schatten: höherer blur, niedrigere opacity */
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 123, 118, 0.1); /* Subtiler Coral Glow */
  overflow: hidden; /* Für Noise Overlay */
}

/* Noise Texture für Premium-Look (super subtil) */
.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.008) 0px, transparent 1px, transparent 2px, rgba(0, 0, 0, 0.008) 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.008) 0px, transparent 1px, transparent 2px, rgba(0, 0, 0, 0.008) 3px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.005) 0px, transparent 1px, transparent 3px, rgba(0, 0, 0, 0.005) 4px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 123, 118, 0.4); /* Stärkerer Coral Border beim Hover */
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.12), /* Softer Schatten beim Hover */
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 20px rgba(255, 123, 118, 0.2); /* Coral Glow beim Hover */
}

.event-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 123, 118, 0.0) 0%,
    rgba(255, 123, 118, 0.6) 50%,
    rgba(255, 123, 118, 0.0) 100%
  );
  border-radius: 24px 24px 0 0; /* Angepasst an neuen border-radius */
  z-index: 2; /* Über Noise */
}

.event-card__icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: var(--spacing-md);
  filter: grayscale(0);
  position: relative;
  z-index: 2; /* Über Noise */
}

.event-card__title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: #FF7B76; /* Coral wie Hero Headline */
  font-weight: 600;
  position: relative;
  z-index: 2; /* Über Noise */
}

.event-card__description {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.72); /* wie Hero Description */
  line-height: 1.7;
  position: relative;
  z-index: 2; /* Über Noise */
}

/* ============================================
   PAKETE SECTION
   ============================================ */
.section--pakete {
  background: transparent; /* Hintergrundfarbe kommt vom body, Shape scheint durch */
  padding-top: 60px; /* Reduziertes oberes Padding für weniger Abstand zur Events-Section */
  padding-bottom: 60px; /* Gleicher Abstand wie Events-Pakete */
}

.section--pakete .container {
  padding-left: 0;
  padding-right: 0;
}

.pakete__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  align-items: stretch; /* Alle Cards haben die gleiche Höhe */
}

.package-card {
  /* Glass-Dark Look wie Event Cards */
  background: rgba(0, 0, 0, 0.25); /* Dunkler Glass-Layer statt weiß */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  
  padding: var(--spacing-lg) var(--spacing-xl); /* Reduziertes vertikales Padding */
  border: 1px solid rgba(246, 113, 100, 0.28); /* Coral, filigraner Rand */
  border-radius: 24px; /* Reduziert von 28px für Premium-Look */
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), background var(--transition-base);
  overflow: visible; /* Badge soll nicht abgeschnitten werden */
  
  /* Softer Schatten wie Event Cards */
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 123, 118, 0.1);
  
  /* Gleiche Breite für alle Cards */
  width: 100%;
  min-width: 0; /* Verhindert Overflow */
}

/* Noise Texture für Premium-Look (super subtil) */
.package-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.008) 0px, transparent 1px, transparent 2px, rgba(0, 0, 0, 0.008) 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.008) 0px, transparent 1px, transparent 2px, rgba(0, 0, 0, 0.008) 3px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.005) 0px, transparent 1px, transparent 3px, rgba(0, 0, 0, 0.005) 4px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
  border-radius: 24px; /* Begrenzt Noise auf Card-Bereich */
  overflow: hidden; /* Noise bleibt innerhalb der Card */
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 113, 100, 0.42); /* Leicht stärkerer Coral Border beim Hover */
  background: rgba(0, 0, 0, 0.32); /* Dunkler beim Hover */
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.12), /* Softer Schatten beim Hover */
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 20px rgba(255, 123, 118, 0.2);
}

.package-card--featured {
  background: rgba(0, 0, 0, 0.28); /* Etwas heller für Featured */
  border: 1px solid rgba(246, 113, 100, 0.35); /* Stärkerer Coral Border für Featured */
  /* Kein Scale mehr, damit alle Cards die gleiche Breite haben */
}

.package-card--featured:hover {
  transform: translateY(-4px); /* Nur translateY, kein Scale */
  border-color: rgba(246, 113, 100, 0.48);
  background: rgba(0, 0, 0, 0.35); /* Etwas heller beim Hover */
}

.package-card__badge {
  position: absolute;
  top: -12px;
  right: var(--spacing-md);
  background: linear-gradient(135deg, rgba(246, 113, 100, 0.9), rgba(216, 121, 114, 0.9)); /* Coral Gradient */
  color: #F6F6F4;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(246, 113, 100, 0.3);
  z-index: 10; /* Über Noise und Card - höher für Sichtbarkeit */
  white-space: nowrap; /* Verhindert Zeilenumbruch */
}

.package-card__title {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-xs);
  color: #FF7B76; /* Coral wie Hero Headline und Event Cards */
  font-weight: 600;
  position: relative;
  z-index: 2; /* Über Noise */
}

.package-card__subtitle {
  font-family: var(--font-body);
  color: rgba(246, 246, 244, 0.72); /* Wie Hero Description */
  font-size: 0.9375rem;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 2; /* Über Noise */
}

.package-card__features {
  list-style: none;
  margin-bottom: var(--spacing-lg); /* Reduziertes Margin */
  flex-grow: 1;
  position: relative;
  z-index: 2; /* Über Noise */
}

.package-card__features li {
  padding: var(--spacing-xs) 0;
  padding-left: var(--spacing-md);
  position: relative;
  color: rgba(246, 246, 244, 0.72); /* Wie Hero Description */
  line-height: 1.6;
}

.package-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(246, 113, 100, 0.6); /* Coral statt Gold */
}

.package-card .btn {
  margin-top: auto;
  position: relative;
  z-index: 2; /* Über Noise */
  width: 100%; /* Volle Breite wie in Hero */
  padding: 0.9rem 2.4rem; /* Gleiche Höhe und Padding wie Hero Buttons */
  font-size: 0.88rem; /* Gleiche Schriftgröße */
  letter-spacing: 0.12em; /* Gleicher Letter-Spacing */
  text-transform: uppercase; /* Gleiche Text-Transform */
  font-family: var(--font-sans); /* Gleiche Schriftart */
  border-radius: 2px; /* Gleicher Border-Radius */
}

/* Primary Button in Pakete Cards - gleiche Breite wie Outline */
.package-card .btn--primary {
  padding: 0.9rem 2.4rem; /* Gleiche Breite wie Outline Buttons */
}

/* ============================================
   DJs SECTION
   ============================================ */
.section--djs {
  background: transparent; /* Hintergrundfarbe kommt vom body, Shape scheint durch */
  padding-top: 60px; /* Gleicher Abstand wie Events-Pakete */
  padding-bottom: 60px; /* Gleicher Abstand zu Impressions */
  position: relative; /* Für Gradient Overlay */
}

/* Hintergrundbild für DJ Section - auf Container */
.section--djs .container {
  position: relative;
}

.section--djs .container::before {
  content: "";
  position: absolute;
  top: -45px; /* Minimal kürzer oben */
  left: 5%; /* Padding links */
  right: 5%; /* Padding rechts */
  bottom: -45px; /* Minimal kürzer unten */
  background-image: url('../images/Background_dj.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2; /* Entstört: 20% für klareren Fokus auf Portraits */
  z-index: 0;
  pointer-events: none;
  border-radius: 24px; /* Leicht abgerundete Ecken */
}

/* DJs Section Title - volles Weiß wie Pakete */
.section--djs .section__title {
  color: #ffffff; /* volles Weiß */
  margin-bottom: var(--spacing-lg); /* Minimaler Abstand nach unten zu den DJ Images */
  letter-spacing: -0.015em; /* Tracking leicht reduziert für Premium-Look */
  position: relative;
  z-index: 3; /* Über Hintergrundbild */
}

/* Sanfter Center Gradient - Mitte heller Oliv, Außen dunkler */
.section--djs::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(47, 58, 50, 0.18) 0%, /* Mitte: minimal heller Oliv #2F3A32, 18% */
    rgba(47, 58, 50, 0.15) 25%, /* Übergang */
    rgba(29, 38, 32, 0.12) 50%, /* Übergang */
    rgba(29, 38, 32, 0.08) 70%, /* Außenränder: deutlich dunkler #1D2620 */
    transparent 100%
  );
  pointer-events: none;
  z-index: 1; /* Über Hintergrundbild */
}

.djs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xxl);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 3; /* Über Hintergrundbild und Gradient Overlay */
}

.dj-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dj-card__image {
  margin-bottom: 28px; /* Präzises Spacing: Portrait → Name */
  display: flex;
  justify-content: center;
  overflow: visible;
  position: relative;
}

/* Spotlight-Glow hinter jedem Portrait */
.dj-card__image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(246, 113, 100, 0.12) 0%,
    rgba(54, 59, 41, 0.08) 40%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
  filter: blur(20px);
}

.dj-card__img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 1.5px solid rgba(246, 113, 100, 0.22); /* Coral-Lichtkante: 1.5px, 22% opacity */
  transform: scale(1);
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Subtiler Glow: Inner Coral + Outer dunkelgrün */
  box-shadow: 
    0 0 20px rgba(29, 38, 32, 0.1), /* Outer-Glow: dunkelgrün, 20px Blur, 10% Opacity */
    0 12px 28px rgba(0, 0, 0, 0.18),
    0 4px 8px rgba(0, 0, 0, 0.12),
    inset 0 0 8px rgba(246, 113, 100, 0.09); /* Inner-Glow: Coral, 8px, 9% Opacity */
}

/* Premium Hover-Animation */
.dj-card:hover .dj-card__img {
  transform: scale(1.015);
  border-color: rgba(246, 113, 100, 0.35); /* Stärkerer Coral-Lichtkante beim Hover */
  box-shadow: 
    0 0 25px rgba(29, 38, 32, 0.12), /* Stärkerer Outer-Glow beim Hover */
    0 16px 36px rgba(0, 0, 0, 0.24),
    0 6px 12px rgba(0, 0, 0, 0.16),
    0 0 20px rgba(246, 113, 100, 0.15), /* Subtiler Coral Glow */
    inset 0 0 10px rgba(246, 113, 100, 0.1); /* Stärkerer Inner-Glow beim Hover */
}

.dj-card:hover .dj-card__image::before {
  background: radial-gradient(
    circle,
    rgba(246, 113, 100, 0.18) 0%,
    rgba(54, 59, 41, 0.10) 40%,
    transparent 70%
  );
}

.dj-card__placeholder {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-text-secondary);
}

.dj-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.dj-card__name {
  font-size: 1.5rem;
  margin: 0;
  color: #FF7B76; /* Coral wie Hero Headline und andere Headlines */
  transition: text-shadow 0.25s ease-out;
  position: relative;
  z-index: 2;
}

/* Premium Hover: Coral Text bekommt soft glow */
.dj-card:hover .dj-card__name {
  text-shadow: 0 0 12px rgba(255, 123, 118, 0.4);
}

.dj-card__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dj-card__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(6, 18, 11, 0.9);
  border: 1px solid rgba(244, 118, 107, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dj-card__social a:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  border-color: rgba(244, 118, 107, 0.6);
}

.dj-card__social img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.dj-card__social a:hover img {
  opacity: 1;
}

.dj-card__bio {
  font-family: var(--font-body);
  color: #C9C9C9; /* Heller für bessere Lesbarkeit */
  margin-bottom: 20px; /* Präzises Spacing: Beschreibung → Genres */
  line-height: 1.65; /* Mehr Zeilenhöhe für edleren Look */
  position: relative;
  z-index: 2;
  height: 90px; /* Feste Höhe, damit beide Bio-Texte gleich hoch sind und Chips oben auf gleicher Höhe starten */
  overflow: hidden; /* Verhindert Overflow */
}

.dj-card__genres {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 0; /* Chips starten direkt nach der Bio auf gleicher Höhe */
  position: relative;
  z-index: 2;
}

/* Genre Chips - Edler, konsistenter Style */
.dj-genre-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  min-width: 80px; /* Gleiche Mindestbreite für Konsistenz */
  height: 32px; /* Gleiche Höhe für alle Chips */
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-sans);
  
  /* Innen dunkler */
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  /* Outline in Coral 1px */
  border: 1px solid rgba(246, 113, 100, 0.35);
  border-radius: 16px; /* Reduzierte Rundung: 16px für erwachsenen Look */
  
  /* Coral Text */
  color: #FF7B76;
  
  transition: transform 0.2s ease-out,
              border-color 0.2s ease-out,
              background-color 0.2s ease-out,
              box-shadow 0.2s ease-out;
  
  /* Subtiler Schatten */
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.dj-genre-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(246, 113, 100, 0.5); /* Leichter Coral-Sheen */
  background-color: rgba(0, 0, 0, 0.45);
  box-shadow: 
    0 6px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 8px rgba(246, 113, 100, 0.2); /* Ganz leichter Coral-Sheen */
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.section--gallery {
  background: transparent; /* Hintergrundfarbe kommt vom body, Shape scheint durch */
  padding-top: 60px; /* Gleicher Abstand wie DJs-Pakete */
  padding-bottom: 60px; /* Gleicher Abstand zu FAQ */
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
}

.gallery__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 24px; /* Abgerundete Ecken wie andere Cards */
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__item:hover .gallery__image {
  transform: scale(1.05);
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-off);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color var(--transition-base);
}

.gallery__placeholder:hover {
  background-color: rgba(47, 165, 109, 0.05);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.section--faq {
  background: transparent; /* Hintergrundfarbe kommt vom body, Shape scheint durch */
  padding-top: 60px; /* Gleicher Abstand wie Impressions-FAQ */
  padding-bottom: 60px; /* Gleicher Abstand wie andere Sections */
}

/* Gallery Section Title - volles Weiß */
.section--gallery .section__title {
  color: #ffffff; /* volles Weiß */
}


/* FAQ Section Title - volles Weiß wie Pakete und DJs */
.section--faq .section__title {
  color: #ffffff; /* volles Weiß */
}

/* Contact Section Title "Let's make your night tropical." - volles Weiß */
.section--contact .section__title {
  color: #ffffff; /* volles Weiß */
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: var(--spacing-sm);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  color: #FF7B76; /* Coral wie andere Headlines */
  cursor: pointer;
  font-family: var(--font-sans);
  transition: color var(--transition-base);
}

.faq-item__question:hover {
  color: #FF9292; /* Helleres Coral beim Hover */
}

.faq-item__icon {
  flex-shrink: 0;
  margin-left: var(--spacing-md);
  transition: transform var(--transition-base);
  color: var(--color-text-secondary);
}

.faq-item[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.faq-item[aria-expanded="true"] .faq-item__answer {
  max-height: 500px;
  padding-bottom: var(--spacing-lg);
}

.faq-item__answer p {
  font-family: var(--font-body);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.section--contact {
  background: transparent; /* Hintergrundfarbe kommt vom body, Shape scheint durch */
  padding-top: 60px; /* Gleicher Abstand wie andere Sections */
  padding-bottom: 60px; /* Gleicher Abstand */
}

/* Zentrale Card für Formular - wie DJ-Cards und Event-Cards */
.contact__card {
  max-width: 1150px;
  margin: 0 auto;
  border-radius: 32px;
  background: rgba(0, 0, 0, 0.25); /* Glass-Dark Look wie Event-Cards - Deep-Olive */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(246, 113, 100, 0.28); /* Filigraner Coral Border */
  padding: 48px 56px;
  position: relative;
  z-index: 2;
  overflow: hidden; /* Für Vignette-Gradient */
  
  /* Noise Texture für Premium-Look */
  background-image: 
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.008) 0px, transparent 1px, transparent 2px, rgba(0, 0, 0, 0.008) 3px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.008) 0px, transparent 1px, transparent 2px, rgba(0, 0, 0, 0.008) 3px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.005) 0px, transparent 1px, transparent 3px, rgba(0, 0, 0, 0.005) 4px);
  background-color: rgba(0, 0, 0, 0.25);
  background-blend-mode: overlay;
  
  /* Sehr weicher Schatten nach außen */
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 123, 118, 0.1);
}


/* Kaum sichtbarer Gloss */
.contact__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
  z-index: 2;
}

/* Ganz leichter Vignette-Gradient im Inneren */
.contact__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    transparent 60%,
    rgba(0, 0, 0, 0.12) 100%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
  mix-blend-mode: overlay;
}

.contact__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  position: relative;
  z-index: 3; /* Über Vignette-Gradient */
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Form Section Trenner */
.form-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(244, 118, 107, 0.15);
}

.form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.form-section__title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  font-weight: 500;
  font-family: var(--font-sans);
}

.form-group {
  display: flex;
  flex-direction: column;
}

/* Labels - Small Caps mit Tracking */
.form-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-sans);
}

.form-label__required {
  color: #f4766b;
  margin-left: 2px;
}

/* Form Fields - Luxuriöser Look */
.form-field {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 10, 7, 0.9);
  color: #f7f5ed;
  font-size: 15px;
  font-family: var(--font-sans);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field::placeholder {
  color: rgba(247, 245, 237, 0.45);
}

.form-field:focus-visible {
  outline: none;
  border-color: #f4766b; /* Coral */
  box-shadow: 0 0 0 1px rgba(244, 118, 107, 0.5);
}

/* Select mit Custom Arrow */
.form-select-wrapper {
  position: relative;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23f4766b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 45px;
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 180px;
  font-family: var(--font-sans);
}

/* Paket-Chips */
.form-packages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.package-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(244, 118, 107, 0.6);
  padding: 7px 16px;
  cursor: pointer;
  font-size: 13px;
  color: rgba(247, 245, 237, 0.9);
  background: rgba(6, 18, 11, 0.9);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  font-family: var(--font-sans);
  font-weight: 500;
}

.package-chip input {
  display: none;
}

.package-chip:hover span {
  color: #fff;
}

.package-chip:has(input:checked) {
  background: radial-gradient(circle at top left, #f4766b 0, #8e2f2b 55%, #050e08 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transform: translateY(-1px);
  border-color: rgba(244, 118, 107, 0.8);
}

.package-chip:has(input:checked) span {
  color: #fff;
  font-weight: 600;
}

/* Button - Premium CTA */
.contact__form .btn {
  width: 100%;
  padding: 18px 28px;
  border-radius: 999px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}

/* Kontakt-Info Block */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 0;
}

.contact__info-title {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-weight: 600;
  font-family: var(--font-sans);
}

.contact__info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(247, 245, 237, 0.85);
  font-size: 15px;
}

.contact__icon {
  flex-shrink: 0;
  color: #f4766b; /* Coral */
  width: 20px;
  height: 20px;
}

.contact__info-item a {
  color: rgba(247, 245, 237, 0.85);
  transition: color 0.2s ease;
  text-decoration: none;
}

.contact__info-item a:hover {
  color: #f4766b;
}

.contact__info-note {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__info-note p {
  font-size: 13px;
  color: rgba(247, 245, 237, 0.6);
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-body);
}

.contact__badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(244, 118, 107, 0.15);
  border: 1px solid rgba(244, 118, 107, 0.3);
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 118, 107, 0.9);
  font-weight: 500;
  font-family: var(--font-sans);
  margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-bg-off);
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.bv-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(28, 35, 27, 0.1);
  padding-top: 32px;
  color: #56524a;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.bv-footer__logo img {
  height: 16px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.bv-footer__logo:hover img {
  opacity: 1;
}

.bv-footer__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bv-footer__link {
  color: #56524a;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.bv-footer__link:hover {
  color: #c75a48;
  text-decoration: underline;
}

.bv-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bv-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(22, 35, 27, 0.3);
  border: 1px solid rgba(22, 35, 27, 0.45);
  transition: all 0.18s ease-out;
}

.bv-footer__social img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.18s ease-out, filter 0.18s ease-out;
}

.bv-footer__social a:hover {
  background: rgba(244, 118, 107, 0.15);
  border-color: rgba(244, 118, 107, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.bv-footer__social a:hover img {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(244, 118, 107, 0.35));
}

.footer__back-to-top {
  position: absolute;
  right: var(--container-padding);
  bottom: var(--spacing-xl);
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--color-text-secondary);
  opacity: 0;
  visibility: hidden;
}

.footer__back-to-top:hover {
  border-color: var(--color-accent-green);
  color: var(--color-accent-green);
  transform: translateY(-2px);
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.success-message {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(4px);
}

.success-message.show {
  display: flex;
}

.success-message__content {
  background-color: var(--color-bg);
  padding: var(--spacing-xl);
  border-radius: 4px;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.success-message__content p {
  font-size: 1.125rem;
  margin: 0;
}

.success-message__close {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-secondary);
  transition: color var(--transition-base);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-message__close:hover {
  color: var(--color-text);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet ≤992px */
@media (max-width: 992px) {
  :root {
    --spacing-xl: 72px;
    --spacing-xxl: 110px;
  }
  
  .nav__list {
    gap: var(--spacing-md);
  }
  
  .hero__title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    position: static;
    left: auto;
    transform: none;
    white-space: nowrap;
    letter-spacing: 0.06em;
    margin-left: auto;
    margin-right: auto;
  }
  
  .vibe__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .vibe__content {
    max-width: 100%;
  }
  
  .vibe__title {
    font-size: 2.4rem;
  }
  
  .vibe__features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .vibe__feature {
    max-width: 100%;
  }
  
  .vibe__visual {
    order: -1;
    margin-top: 0;
  }
  
  .vibe__frame {
    width: 100%;
    aspect-ratio: 3 / 4;
    margin-inline: 0;
  }
  
  .events__grid,
  .pakete__grid,
  .djs__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .event-card,
  .package-card {
    padding: 28px 22px;
    min-height: auto;
  }
  
  .package-card--featured {
    transform: none;
  }
  
  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    margin: 0;
  }
  
  .contact__card {
    padding: 32px 28px;
    border-radius: 28px;
  }
  
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact__form {
    gap: 28px;
  }
  
  .form-section {
    gap: 18px;
    padding-bottom: 22px;
  }
  
  .package-chip {
    font-size: 12px;
    padding: 6px 14px;
  }
  
  .bv-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Large Mobile ≤768px */
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
    --spacing-xl: 60px;
    --spacing-xxl: 80px;
  }
  
  .section {
    padding: var(--spacing-xl) 0;
  }
  
  .hero__title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    white-space: nowrap;
    line-height: 1;
    letter-spacing: 0.08em;
  }
  
  .hero__subtitle {
    font-size: 0.9rem;
  }
  
  .hero__description {
    font-size: 0.95rem;
  }
  
  .events__grid,
  .pakete__grid,
  .djs__grid,
  .gallery__grid {
    grid-template-columns: 1fr;
  }
  
  .event-card,
  .package-card {
    width: 100%;
    padding: 24px 18px;
    min-height: auto;
  }
  
  .package-card__features {
    gap: 10px;
  }
  
  .djs__grid {
    gap: var(--spacing-lg);
  }
  
  .contact__card {
    padding: 28px 24px;
  }
  
  .contact__grid {
    gap: 36px;
  }
  
  .contact__info {
    gap: 18px;
  }
  
  .contact__badge {
    align-self: flex-start;
  }
  
  .bv-footer__nav {
    flex-direction: column;
    gap: 6px;
  }
  
  .bv-footer__social {
    justify-content: center;
  }
  
  .footer__back-to-top {
    position: static;
    margin-top: var(--spacing-md);
  }
}

/* Small Mobile ≤600px (burger menu) */
@media (max-width: 600px) {
  :root {
    --container-padding: 16px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
  }
  
  .section {
    padding: var(--spacing-xl) 0;
  }
  
  .nav__list {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    flex-direction: column;
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav__list.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero__cta {
    flex-direction: column;
  }
  
  .hero__cta .btn {
    width: 100%;
  }
  
  .vibe__features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .vibe__feature {
    max-width: 100%;
  }
  
  .gallery__grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
  
  .hero__title {
    font-size: clamp(1.8rem, 11vw, 2.3rem);
  }
  
  .hero__bullet {
    font-size: 0.45em;
    margin: 0 0.08em;
  }
  
  .hero__logo-img {
    max-width: 150px;
  }
  
  .contact__card {
    padding: 24px 20px;
    border-radius: 20px;
  }
  
  .contact__grid {
    gap: 32px;
  }
  
  .form-field {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .contact__form .btn {
    padding: 16px 24px;
    font-size: 12px;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .section--vibe,
  .vibe__title,
  .vibe__text p,
  .vibe__features,
  .vibe__feature,
  .vibe__visual,
  .vibe__frame {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

