@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --night-plum: #1A161F;
  --silk-lilac: #E9D5FF;
  --champagne-silver: #D1D5DB;
  --deep-orchid: #7E22CE;
  --mist-grey: #374151;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  
  --shadow-sm: 0 2px 8px rgba(126, 34, 206, 0.1);
  --shadow-md: 0 8px 24px rgba(126, 34, 206, 0.15);
  --shadow-lg: 0 16px 48px rgba(126, 34, 206, 0.2);
  
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  --transition-luxury: 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--night-plum);
  color: var(--champagne-silver);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 0.9rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--silk-lilac);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

a {
  color: var(--silk-lilac);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--deep-orchid);
  transform: translateY(-2px);
}

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

.header-wrapper {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 90%;
  max-width: 75rem;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: all var(--transition-luxury);
}

.header-wrapper.scrolled {
  transform: translateX(-50%) translateY(-120%);
}

.header-wrapper.show {
  transform: translateX(-50%) translateY(0);
}

header {
  background: rgba(26, 22, 31, 0.85);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(233, 213, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--silk-lilac);
  letter-spacing: 0.05em;
  transition: all var(--transition-smooth);
}

.logo:hover {
  color: var(--deep-orchid);
  transform: scale(1.05);
}

nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--deep-orchid);
  transition: width var(--transition-smooth);
}

nav a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  width: 1.5rem;
  height: 2px;
  background: var(--silk-lilac);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.4rem, 0.4rem);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.4rem, -0.4rem);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-lg) var(--space-md);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 50rem;
  animation: fadeInUp var(--transition-luxury) ease-out;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--silk-lilac), var(--deep-orchid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  color: var(--champagne-silver);
  font-weight: 300;
}

/* Home Hero - Gradient Mesh & Floating Shapes */
.hero-home {
  background: linear-gradient(135deg, #1A161F 0%, #2D1B3D 50%, #1A161F 100%);
}

.gradient-mesh {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(126, 34, 206, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(233, 213, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(126, 34, 206, 0.15) 0%, transparent 60%);
  animation: meshMove 20s ease-in-out infinite;
  filter: blur(60px);
}

@keyframes meshMove {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(5%, 5%) rotate(120deg); }
  66% { transform: translate(-5%, -5%) rotate(240deg); }
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.4), rgba(233, 213, 255, 0.2));
  filter: blur(20px);
  animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 180px;
  height: 180px;
  top: 30%;
  right: 30%;
  animation-delay: 1s;
}

.shape-5 {
  width: 220px;
  height: 220px;
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  25% { transform: translate(30px, -30px) scale(1.1); opacity: 0.8; }
  50% { transform: translate(-20px, 20px) scale(0.9); opacity: 0.7; }
  75% { transform: translate(20px, 30px) scale(1.05); opacity: 0.75; }
}

.sparkle-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--silk-lilac);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--deep-orchid);
  animation: sparkle 3s ease-in-out infinite;
}

.sparkle-1 { top: 20%; left: 15%; animation-delay: 0s; }
.sparkle-2 { top: 40%; right: 20%; animation-delay: 0.5s; }
.sparkle-3 { bottom: 30%; left: 25%; animation-delay: 1s; }
.sparkle-4 { top: 60%; right: 15%; animation-delay: 1.5s; }
.sparkle-5 { bottom: 20%; right: 30%; animation-delay: 2s; }
.sparkle-6 { top: 10%; left: 50%; animation-delay: 2.5s; }

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

.hero-title-animated {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: 4.5rem;
  margin-bottom: var(--space-md);
}

.hero-title-animated .word {
  display: inline-block;
  background: linear-gradient(135deg, var(--silk-lilac), var(--deep-orchid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wordSlideIn 0.8s ease-out backwards;
}

.hero-title-animated .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title-animated .word:nth-child(2) { animation-delay: 0.2s; }
.hero-title-animated .word:nth-child(3) { animation-delay: 0.3s; }
.hero-title-animated .word:nth-child(4) { animation-delay: 0.4s; }

@keyframes wordSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) rotateX(90deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.hero-text-animated {
  animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn-hero-animated {
  animation: fadeInUp 1s ease-out 0.8s backwards;
}

/* Blooms Hero - Petal Animation */
.hero-blooms {
  background: linear-gradient(135deg, #1A161F 0%, #2A1F3D 50%, #1A161F 100%);
}

.petal-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.petal {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.6), rgba(233, 213, 255, 0.4));
  border-radius: 50% 0 50% 0;
  transform: rotate(45deg);
  animation: petalFall 12s linear infinite;
  filter: blur(1px);
}

.petal-1 { left: 10%; animation-delay: 0s; animation-duration: 10s; }
.petal-2 { left: 20%; animation-delay: 1s; animation-duration: 12s; }
.petal-3 { left: 30%; animation-delay: 2s; animation-duration: 11s; }
.petal-4 { left: 40%; animation-delay: 0.5s; animation-duration: 13s; }
.petal-5 { left: 50%; animation-delay: 1.5s; animation-duration: 10s; }
.petal-6 { left: 60%; animation-delay: 2.5s; animation-duration: 12s; }
.petal-7 { left: 70%; animation-delay: 0.8s; animation-duration: 11s; }
.petal-8 { left: 80%; animation-delay: 1.8s; animation-duration: 13s; }

@keyframes petalFall {
  0% {
    top: -10%;
    transform: rotate(45deg) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 110%;
    transform: rotate(225deg) translateX(50px);
    opacity: 0;
  }
}

.organic-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.organic-shape {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.3), rgba(233, 213, 255, 0.2));
  filter: blur(30px);
  animation: morphShape 8s ease-in-out infinite;
}

.organic-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 5%;
  animation-duration: 10s;
}

.organic-2 {
  width: 300px;
  height: 300px;
  bottom: 15%;
  right: 10%;
  animation-duration: 12s;
  animation-delay: 2s;
}

.organic-3 {
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 9s;
  animation-delay: 1s;
}

@keyframes morphShape {
  0%, 100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    transform: translate(20px, -20px) rotate(90deg);
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: translate(-15px, 15px) rotate(180deg);
  }
  75% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(10px, 20px) rotate(270deg);
  }
}

.bloom-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(126, 34, 206, 0.4) 0%, transparent 70%);
  filter: blur(60px);
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-title-blooms {
  animation: bloomFadeIn 1.2s ease-out;
}

.hero-text-blooms {
  animation: bloomFadeIn 1.2s ease-out 0.3s backwards;
}

@keyframes bloomFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Fresh Hero - Geometric Shapes */
.hero-fresh {
  background: linear-gradient(135deg, #1A161F 0%, #1F1A2E 50%, #1A161F 100%);
}

.geometric-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.geometric-shape {
  position: absolute;
  border: 2px solid rgba(126, 34, 206, 0.4);
  animation: geometricMove 15s linear infinite;
}

.geo-1 {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 10%;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation-duration: 12s;
}

.geo-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  animation-duration: 14s;
  animation-delay: 2s;
}

.geo-3 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 20%;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  animation-duration: 16s;
  animation-delay: 1s;
}

.geo-4 {
  width: 90px;
  height: 90px;
  top: 30%;
  right: 30%;
  clip-path: circle(50%);
  animation-duration: 13s;
  animation-delay: 0.5s;
}

.geo-5 {
  width: 70px;
  height: 70px;
  bottom: 15%;
  right: 10%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation-duration: 11s;
  animation-delay: 1.5s;
}

.geo-6 {
  width: 110px;
  height: 110px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-duration: 15s;
  animation-delay: 0.8s;
}

@keyframes geometricMove {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg);
    opacity: 0.6;
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg);
    opacity: 0.5;
  }
  75% {
    transform: translate(20px, 30px) rotate(270deg);
    opacity: 0.6;
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
    opacity: 0.4;
  }
}

.morphing-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: morphBlob 8s ease-in-out infinite;
}

.blob-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 5%;
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.4), rgba(233, 213, 255, 0.2));
  animation-duration: 10s;
}

.blob-2 {
  width: 350px;
  height: 350px;
  bottom: 15%;
  right: 10%;
  background: linear-gradient(135deg, rgba(233, 213, 255, 0.3), rgba(126, 34, 206, 0.2));
  animation-duration: 12s;
  animation-delay: 2s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.3), rgba(233, 213, 255, 0.25));
  animation-duration: 9s;
  animation-delay: 1s;
}

@keyframes morphBlob {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(0, 0) scale(1);
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: translate(20px, -20px) scale(1.1);
  }
  50% {
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    transform: translate(-15px, 15px) scale(0.9);
  }
  75% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(10px, 20px) scale(1.05);
  }
}

.fresh-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.fresh-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--deep-orchid);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--silk-lilac);
  animation: particleFloat 6s ease-in-out infinite;
}

.fresh-particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.fresh-particle:nth-child(2) { top: 40%; right: 20%; animation-delay: 1s; }
.fresh-particle:nth-child(3) { bottom: 30%; left: 25%; animation-delay: 2s; }
.fresh-particle:nth-child(4) { top: 60%; right: 15%; animation-delay: 0.5s; }
.fresh-particle:nth-child(5) { bottom: 20%; right: 30%; animation-delay: 1.5s; }
.fresh-particle:nth-child(6) { top: 10%; left: 50%; animation-delay: 2.5s; }

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(30px, -40px) scale(1.5);
    opacity: 1;
  }
}

.hero-title-fresh {
  animation: freshSlideIn 1s ease-out;
}

.hero-text-fresh {
  animation: freshSlideIn 1s ease-out 0.3s backwards;
}

@keyframes freshSlideIn {
  from {
    opacity: 0;
    transform: translateX(-50px) rotateY(90deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
  }
}

/* Contact Hero - Waves & Ripples */
.hero-contact {
  background: linear-gradient(135deg, #1A161F 0%, #1E1A2F 50%, #1A161F 100%);
  min-height: 60vh;
}

.wave-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.wave {
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.2), rgba(233, 213, 255, 0.1));
  border-radius: 50%;
  animation: waveMove 8s ease-in-out infinite;
  filter: blur(30px);
}

.wave-1 {
  top: -50%;
  left: -50%;
  animation-duration: 10s;
}

.wave-2 {
  top: -40%;
  left: -40%;
  animation-duration: 12s;
  animation-delay: 2s;
}

.wave-3 {
  top: -60%;
  left: -60%;
  animation-duration: 14s;
  animation-delay: 1s;
}

@keyframes waveMove {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: translate(5%, 5%) rotate(180deg);
    opacity: 0.6;
  }
}

.ripple-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ripple {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(126, 34, 206, 0.5);
  border-radius: 50%;
  animation: rippleExpand 3s ease-out infinite;
}

.ripple-1 {
  animation-delay: 0s;
}

.ripple-2 {
  animation-delay: 0.75s;
}

.ripple-3 {
  animation-delay: 1.5s;
}

.ripple-4 {
  animation-delay: 2.25s;
}

@keyframes rippleExpand {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(126, 34, 206, 0.5) 0%, transparent 70%);
  filter: blur(50px);
  animation: contactPulse 3s ease-in-out infinite;
}

@keyframes contactPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.7;
  }
}

.connection-lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.connection-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(126, 34, 206, 0.6), transparent);
  animation: lineFlow 4s ease-in-out infinite;
}

.line-1 {
  top: 20%;
  left: 10%;
  width: 200px;
  transform: rotate(45deg);
  animation-delay: 0s;
}

.line-2 {
  bottom: 30%;
  right: 15%;
  width: 250px;
  transform: rotate(-45deg);
  animation-delay: 1s;
}

.line-3 {
  top: 50%;
  left: 50%;
  width: 180px;
  transform: translate(-50%, -50%) rotate(90deg);
  animation-delay: 2s;
}

@keyframes lineFlow {
  0%, 100% {
    opacity: 0.3;
    transform: scaleX(0.5);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero-title-contact {
  animation: contactFadeIn 1s ease-out;
}

.hero-text-contact {
  animation: contactFadeIn 1s ease-out 0.3s backwards;
}

@keyframes contactFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--deep-orchid);
  color: var(--silk-lilac);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(233, 213, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width var(--transition-smooth), height var(--transition-smooth);
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.btn span {
  position: relative;
  z-index: 1;
}

section {
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

.container {
  max-width: 75rem;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  transform: translateY(30px);
  transition: all var(--transition-luxury);
}

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

.asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.grid-item {
  background: rgba(55, 65, 81, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233, 213, 255, 0.1);
  transition: all var(--transition-smooth);
  transform: translateY(40px) rotate(-2deg);
}

.grid-item.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.grid-item:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--deep-orchid);
}

.grid-item:nth-child(1) { grid-column: span 7; }
.grid-item:nth-child(2) { grid-column: span 5; }
.grid-item:nth-child(3) { grid-column: span 4; }
.grid-item:nth-child(4) { grid-column: span 8; }
.grid-item:nth-child(5) { grid-column: span 6; }
.grid-item:nth-child(6) { grid-column: span 6; }

.grid-item img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  transition: transform var(--transition-smooth);
}

.grid-item:hover img {
  transform: scale(1.05);
}

.grid-item h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.5rem;
}

.grid-item p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.product-card {
  background: rgba(55, 65, 81, 0.3);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(233, 213, 255, 0.1);
  transform: translateY(40px);
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-12px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-info {
  padding: var(--space-md);
}

.product-price {
  font-size: 1.8rem;
  color: var(--deep-orchid);
  font-weight: 600;
  margin: var(--space-sm) 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.contact-section {
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.1), rgba(26, 22, 31, 0.9));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
  border: 1px solid rgba(233, 213, 255, 0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--silk-lilac);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  background: rgba(26, 22, 31, 0.6);
  border: 1px solid rgba(233, 213, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.7rem;
  color: var(--champagne-silver);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--deep-orchid);
  box-shadow: 0 0 0 3px rgba(126, 34, 206, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 8rem;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.info-item {
  display: flex;
  align-items: start;
  gap: var(--space-sm);
}

.info-item i {
  color: var(--deep-orchid);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.map-container {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 20rem;
  border: 1px solid rgba(233, 213, 255, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background: rgba(26, 22, 31, 0.95);
  padding: var(--space-md);
  text-align: center;
  border-top: 1px solid rgba(233, 213, 255, 0.1);
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  opacity: 1;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  animation: fadeIn var(--transition-fast);
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--night-plum);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 35rem;
  width: 90%;
  border: 1px solid rgba(233, 213, 255, 0.2);
  box-shadow: var(--shadow-lg);
  animation: slideUp var(--transition-smooth);
  position: relative;
}

.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: none;
  border: none;
  color: var(--silk-lilac);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  color: var(--deep-orchid);
  transform: rotate(90deg);
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  max-width: 40rem;
  animation: fadeInUp var(--transition-luxury);
}

.thank-you-content i {
  font-size: 4rem;
  color: var(--deep-orchid);
  margin-bottom: var(--space-md);
  animation: pulse 2s infinite;
}

.error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content h1 {
  font-size: 8rem;
  background: linear-gradient(135deg, var(--silk-lilac), var(--deep-orchid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }

  .hero h1 { font-size: 3rem; }
  
  .hero-title-animated {
    font-size: 2.5rem;
    gap: 0.3rem;
  }
  
  .hero-title-animated .word {
    font-size: 2.5rem;
  }
  
  .shape {
    width: 150px !important;
    height: 150px !important;
  }
  
  .petal {
    width: 40px;
    height: 40px;
  }
  
  .organic-shape {
    width: 200px !important;
    height: 200px !important;
  }
  
  .geometric-shape {
    width: 60px !important;
    height: 60px !important;
  }
  
  .morphing-blob {
    width: 200px !important;
    height: 200px !important;
  }
  
  .bloom-glow,
  .contact-glow {
    width: 300px !important;
    height: 300px !important;
  }
  
  .ripple {
    width: 150px;
    height: 150px;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(26, 22, 31, 0.98);
    flex-direction: column;
    justify-content: center;
    transition: right var(--transition-smooth);
    backdrop-filter: blur(20px);
  }

  nav ul.active {
    right: 0;
  }

  .burger {
    display: flex;
  }

  .asymmetric-grid {
    grid-template-columns: 1fr;
  }

  .grid-item {
    grid-column: span 1 !important;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .header-wrapper {
    width: 95%;
  }
}

@media (max-width: 480px) {
  body { font-size: 0.85rem; }
  h1 { font-size: 2rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 0.95rem; }
  
  .hero-title-animated {
    font-size: 1.8rem;
    gap: 0.2rem;
  }
  
  .hero-title-animated .word {
    font-size: 1.8rem;
  }
  
  .shape {
    width: 100px !important;
    height: 100px !important;
  }
  
  .petal {
    width: 30px;
    height: 30px;
  }
  
  .organic-shape {
    width: 150px !important;
    height: 150px !important;
  }
  
  .geometric-shape {
    width: 40px !important;
    height: 40px !important;
  }
  
  .morphing-blob {
    width: 150px !important;
    height: 150px !important;
  }
  
  .bloom-glow,
  .contact-glow {
    width: 200px !important;
    height: 200px !important;
  }
  
  .ripple {
    width: 100px;
    height: 100px;
  }
  
  .connection-line {
    width: 100px !important;
  }
}

.luxury-thank-you,
.luxury-error {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
  position: relative;
}

.luxury-card {
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.1), rgba(55, 65, 81, 0.3));
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  max-width: 40rem;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(233, 213, 255, 0.2);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(126, 34, 206, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

.luxury-icon-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-md);
}

.luxury-icon-wrapper i {
  font-size: 4rem;
  color: var(--deep-orchid);
  animation: pulse 2s ease-in-out infinite;
}

.luxury-card h1 {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.luxury-divider {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--deep-orchid), transparent);
  margin: var(--space-md) auto;
  position: relative;
  z-index: 1;
}

.luxury-subtitle {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  color: var(--silk-lilac);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.luxury-text {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

.luxury-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--deep-orchid);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--deep-orchid);
}

.btn-secondary:hover {
  background: var(--deep-orchid);
}

.luxury-footer-note {
  position: relative;
  z-index: 1;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(233, 213, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  opacity: 0.8;
}

.luxury-footer-note i {
  color: var(--deep-orchid);
}

.error-number {
  font-size: 8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--silk-lilac), var(--deep-orchid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.luxury-policy {
  padding: 8rem var(--space-md) var(--space-xl);
  min-height: 100vh;
}

.policy-container {
  max-width: 55rem;
  margin: 0 auto;
}

.policy-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid rgba(126, 34, 206, 0.3);
}

.policy-header h1 {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

.policy-date {
  font-size: 0.85rem;
  opacity: 0.7;
  font-style: italic;
}

.policy-content {
  background: rgba(55, 65, 81, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(233, 213, 255, 0.1);
  backdrop-filter: blur(10px);
}

.policy-section {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(233, 213, 255, 0.05);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
  color: var(--silk-lilac);
}

.policy-section h3 {
  font-size: 1.3rem;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--silk-lilac);
}

.policy-section h4 {
  font-size: 1.1rem;
  margin: var(--space-sm) 0;
  color: var(--silk-lilac);
}

.policy-section p {
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.policy-section ul {
  margin: var(--space-sm) 0 var(--space-sm) var(--space-md);
  line-height: 1.8;
}

.policy-section li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

.contact-info-box {
  background: rgba(126, 34, 206, 0.1);
  border-left: 3px solid var(--deep-orchid);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  margin-top: var(--space-md);
}

.contact-info-box p {
  margin-bottom: 0.5rem;
}

.contact-info-box strong {
  color: var(--silk-lilac);
  font-size: 1.1rem;
}

.policy-footer {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 2px solid rgba(126, 34, 206, 0.3);
}

@media (max-width: 768px) {
  .luxury-card {
    padding: var(--space-lg) var(--space-md);
  }

  .luxury-card h1 {
    font-size: 2rem;
  }

  .luxury-icon-wrapper i {
    font-size: 3rem;
  }

  .error-number {
    font-size: 5rem;
  }

  .policy-header h1 {
    font-size: 2.2rem;
  }

  .policy-content {
    padding: var(--space-md);
  }

  .policy-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .luxury-card h1 {
    font-size: 1.7rem;
  }

  .luxury-subtitle {
    font-size: 1rem;
  }

  .luxury-text {
    font-size: 0.9rem;
  }

  .luxury-actions {
    flex-direction: column;
  }

  .luxury-actions .btn {
    width: 100%;
  }

  .error-number {
    font-size: 4rem;
  }

  .policy-header h1 {
    font-size: 1.8rem;
  }

  .policy-section h2 {
    font-size: 1.3rem;
  }

  .policy-section ul {
    margin-left: var(--space-sm);
  }
}

@media (max-width: 320px) {
  :root {
    --space-xs: 0.4rem;
    --space-sm: 0.7rem;
    --space-md: 1.2rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
  }
  
  body { 
    font-size: 0.8rem;
    line-height: 1.5;
  }
  
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }
  h4 { font-size: 1rem; }
  
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 0.85rem; }
  
  .logo { font-size: 1.4rem; }
  
  nav a { font-size: 0.75rem; }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
  }
  
  header {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .luxury-card {
    padding: var(--space-md) var(--space-sm);
  }
  
  .luxury-card h1 {
    font-size: 1.5rem;
  }
  
  .luxury-icon-wrapper i {
    font-size: 2.5rem;
  }
  
  .luxury-subtitle {
    font-size: 0.9rem;
  }
  
  .luxury-text {
    font-size: 0.8rem;
  }
  
  .error-number {
    font-size: 3rem;
  }
  
  .policy-header h1 {
    font-size: 1.6rem;
  }
  
  .policy-content {
    padding: var(--space-sm);
  }
  
  .policy-section {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
  }
  
  .policy-section h2 {
    font-size: 1.2rem;
  }
  
  .policy-section h3 {
    font-size: 1rem;
  }
  
  .policy-section p,
  .policy-section li {
    font-size: 0.8rem;
  }
  
  .contact-info-box {
    padding: var(--space-sm);
  }
  
  .product-info {
    padding: var(--space-sm);
  }
  
  .product-price {
    font-size: 1.4rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  
  .footer-links {
    gap: var(--space-sm);
  }
  
  .footer-links a {
    font-size: 0.7rem;
  }
  
  footer {
    padding: var(--space-sm);
    font-size: 0.7rem;
  }
}
