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

:root {
  --pitch-black: #000000;
  --star-light: #F8FAFC;
  --palladium-gold: #C5A021;
  --anthracite: #18181B;
  --deep-smoke: #3F3F46;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(197, 160, 33, 0.1);
  --shadow-md: 0 4px 16px rgba(197, 160, 33, 0.15);
  --shadow-lg: 0 8px 32px rgba(197, 160, 33, 0.2);
  
  --transition-fast: 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--pitch-black);
  color: var(--star-light);
  line-height: 1.6;
  font-size: 0.9375rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 3.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
}

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

a:hover {
  color: var(--star-light);
}

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

.container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  transform: translateY(0);
  transition: transform var(--transition-base), background var(--transition-base);
}

.header-wrapper.hidden {
  transform: translateY(-100%);
}

.header-wrapper.transparent {
  background: transparent;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  position: relative;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--palladium-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1001;
  transition: all var(--transition-base);
}

.logo:hover {
  transform: scale(1.05);
  color: var(--palladium-gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--palladium-gold);
  transition: all var(--transition-base);
  position: absolute;
  left: 0;
}

.nav-toggle span:nth-child(1) {
  top: 0.5rem;
}

.nav-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span:nth-child(3) {
  bottom: 0.5rem;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 50%;
}

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

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-xs) 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--palladium-gold);
  transition: width var(--transition-base);
}

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

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

.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;
  transform: translateY(3rem);
  animation: fadeInUp var(--transition-luxury) forwards;
  animation-delay: 0.3s;
}

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

.hero-title {
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--star-light), var(--palladium-gold));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--deep-smoke);
  margin-bottom: var(--space-lg);
  font-weight: 300;
  animation: fadeInUp 1s forwards;
  animation-delay: 0.8s;
}

/* ============================================
   HOME PAGE HERO - Gradient Morphing & Floating Elements
   ============================================ */

.hero-home {
  background: radial-gradient(ellipse at center, rgba(197, 160, 33, 0.1) 0%, transparent 70%);
}

.hero-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(197, 160, 33, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(248, 250, 252, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(197, 160, 33, 0.1) 0%, transparent 50%);
  animation: gradientMorph 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes gradientMorph {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.2) rotate(5deg);
    opacity: 0.8;
  }
}

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

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(197, 160, 33, 0.2), rgba(248, 250, 252, 0.1));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 160, 33, 0.3);
}

.element-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation: float1 20s ease-in-out infinite;
}

.element-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation: float2 25s ease-in-out infinite;
}

.element-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation: float3 18s ease-in-out infinite;
}

.element-4 {
  width: 250px;
  height: 250px;
  top: 30%;
  right: 30%;
  animation: float4 22s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -50px) rotate(120deg); }
  66% { transform: translate(-20px, 30px) rotate(240deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-40px, 40px) rotate(-120deg); }
  66% { transform: translate(50px, -30px) rotate(-240deg); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(50px, -40px) rotate(180deg); }
}

@keyframes float4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-30px, 50px) rotate(90deg); }
  75% { transform: translate(40px, -30px) rotate(270deg); }
}

.hero-home .hero-title-wrapper {
  overflow: hidden;
}

.hero-home .title-line {
  display: block;
  transform: translateY(100%);
  animation: slideUpFade 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-home .title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-home .title-line:nth-child(2) {
  animation-delay: 0.4s;
}

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

.hero-home .scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 2rem;
  height: 3rem;
  border: 2px solid var(--palladium-gold);
  border-radius: 1.5rem;
  opacity: 0.6;
  animation: fadeInOut 2s infinite;
}

.hero-home .scroll-indicator::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.25rem;
  height: 0.5rem;
  background: var(--palladium-gold);
  border-radius: 0.25rem;
  animation: scrollDown 2s infinite;
}


/* ============================================
   CURTAINS & DRAPES HERO - Flowing Fabric Animation
   ============================================ */

.hero-curtains {
  min-height: 60vh;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(24, 24, 27, 0.98) 100%);
  overflow: hidden;
}

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

.wave {
  position: absolute;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(197, 160, 33, 0.05) 25%,
    rgba(197, 160, 33, 0.1) 50%,
    rgba(197, 160, 33, 0.05) 75%,
    transparent 100%
  );
  border-radius: 50% 50% 0 0;
}

.wave-1 {
  top: -20%;
  left: -50%;
  animation: waveFlow1 20s ease-in-out infinite;
  transform: rotate(5deg);
}

.wave-2 {
  top: 10%;
  left: -30%;
  animation: waveFlow2 25s ease-in-out infinite;
  transform: rotate(-3deg);
  opacity: 0.7;
}

.wave-3 {
  top: 40%;
  left: -40%;
  animation: waveFlow3 30s ease-in-out infinite;
  transform: rotate(2deg);
  opacity: 0.5;
}

@keyframes waveFlow1 {
  0%, 100% { transform: translateX(0) rotate(5deg); }
  50% { transform: translateX(25%) rotate(8deg); }
}

@keyframes waveFlow2 {
  0%, 100% { transform: translateX(0) rotate(-3deg); }
  50% { transform: translateX(-20%) rotate(-5deg); }
}

@keyframes waveFlow3 {
  0%, 100% { transform: translateX(0) rotate(2deg); }
  50% { transform: translateX(30%) rotate(4deg); }
}

.hero-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(197, 160, 33, 0.03) 2px, rgba(197, 160, 33, 0.03) 4px);
  z-index: 0;
  opacity: 0.5;
}

.hero-curtains .hero-title-wrapper {
  position: relative;
  margin-bottom: var(--space-md);
}

.hero-curtains .title-word {
  display: inline-block;
  transform: translateX(-50px);
  animation: slideInFromLeft 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-curtains .title-word:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-curtains .title-ampersand {
  display: inline-block;
  margin: 0 1rem;
  font-size: 0.7em;
  color: var(--palladium-gold);
  transform: scale(0);
  animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  animation-delay: 0.6s;
}

.hero-curtains .title-word:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes slideInFromLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.title-underline {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--palladium-gold), transparent);
  margin: 1rem auto 0;
  animation: drawLine 1.2s ease-out forwards;
  animation-delay: 1.2s;
}

@keyframes drawLine {
  to {
    width: 200px;
  }
}

/* ============================================
   NEW ARRIVALS HERO - Sparkle & Glow Effects
   ============================================ */

.hero-arrivals {
  min-height: 60vh;
  background: radial-gradient(ellipse at center, rgba(197, 160, 33, 0.15) 0%, rgba(0, 0, 0, 0.95) 70%);
  position: relative;
  overflow: hidden;
}

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

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--palladium-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--palladium-gold), 0 0 20px var(--palladium-gold);
}

.sparkle-1 { top: 20%; left: 15%; animation: sparkle1 3s ease-in-out infinite; }
.sparkle-2 { top: 30%; right: 20%; animation: sparkle2 3.5s ease-in-out infinite 0.5s; }
.sparkle-3 { top: 50%; left: 25%; animation: sparkle3 4s ease-in-out infinite 1s; }
.sparkle-4 { top: 60%; right: 30%; animation: sparkle4 3.2s ease-in-out infinite 1.5s; }
.sparkle-5 { top: 10%; left: 50%; animation: sparkle5 3.8s ease-in-out infinite 0.3s; }
.sparkle-6 { top: 70%; right: 15%; animation: sparkle6 3.6s ease-in-out infinite 0.8s; }
.sparkle-7 { top: 40%; left: 60%; animation: sparkle7 4.2s ease-in-out infinite 1.2s; }
.sparkle-8 { top: 80%; right: 50%; animation: sparkle8 3.4s ease-in-out infinite 1.7s; }

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

@keyframes sparkle2 {
  0%, 100% { opacity: 0; transform: scale(0) translate(0, 0); }
  50% { opacity: 1; transform: scale(1.5) translate(-25px, 20px); }
}

@keyframes sparkle3 {
  0%, 100% { opacity: 0; transform: scale(0) translate(0, 0); }
  50% { opacity: 1; transform: scale(1.5) translate(15px, 25px); }
}

@keyframes sparkle4 {
  0%, 100% { opacity: 0; transform: scale(0) translate(0, 0); }
  50% { opacity: 1; transform: scale(1.5) translate(-20px, -15px); }
}

@keyframes sparkle5 {
  0%, 100% { opacity: 0; transform: scale(0) translate(0, 0); }
  50% { opacity: 1; transform: scale(1.5) translate(30px, 10px); }
}

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

@keyframes sparkle7 {
  0%, 100% { opacity: 0; transform: scale(0) translate(0, 0); }
  50% { opacity: 1; transform: scale(1.5) translate(25px, -20px); }
}

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

.hero-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 160, 33, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite;
  z-index: 0;
}

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

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--palladium-gold);
  color: var(--pitch-black);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  transform: scale(0) rotate(-180deg);
  animation: badgePop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  animation-delay: 0.3s;
}

@keyframes badgePop {
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.hero-arrivals .title-reveal {
  display: inline-block;
  transform: translateY(50px) rotateX(90deg);
  animation: reveal3D 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-arrivals .title-reveal:nth-child(1) {
  animation-delay: 0.5s;
}

.hero-arrivals .title-reveal:nth-child(2) {
  animation-delay: 0.7s;
  margin-left: 0.5rem;
}

@keyframes reveal3D {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

/* ============================================
   CONTACT HERO - Geometric Patterns
   ============================================ */

.hero-contact {
  min-height: 50vh;
  background: linear-gradient(135deg, rgba(24, 24, 27, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

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

.geo-shape {
  position: absolute;
  border: 2px solid rgba(197, 160, 33, 0.2);
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  border-radius: 50%;
  animation: shapeFadeIn 1s ease-out forwards, shapeRotate1 20s linear infinite;
  animation-delay: 0.2s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 15%;
  transform: rotate(45deg);
  animation: shapeFadeIn 1s ease-out forwards, shapeRotate2 25s linear infinite;
  animation-delay: 0.4s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border: none;
  background: linear-gradient(135deg, rgba(197, 160, 33, 0.1), transparent);
  animation: shapeFadeIn 1s ease-out forwards, shapeFloat1 15s ease-in-out infinite;
  animation-delay: 0.6s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  top: 50%;
  right: 30%;
  transform: rotate(45deg);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  border: none;
  background: linear-gradient(45deg, rgba(197, 160, 33, 0.1), transparent);
  animation: shapeFadeIn 1s ease-out forwards, shapeFloat2 18s ease-in-out infinite;
  animation-delay: 0.8s;
}

.shape-5 {
  width: 180px;
  height: 180px;
  bottom: 10%;
  right: 10%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: shapeFadeIn 1s ease-out forwards, shapeMorph 12s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes shapeFadeIn {
  to {
    opacity: 1;
  }
}

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

@keyframes shapeRotate2 {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

@keyframes shapeFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

@keyframes shapeFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(45deg); }
  50% { transform: translate(-40px, 30px) rotate(45deg); }
}

@keyframes shapeMorph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  25% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
  50% { border-radius: 30% 70% 30% 70% / 70% 30% 70% 30%; }
  75% { border-radius: 70% 30% 70% 30% / 30% 70% 30% 70%; }
}

.hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(197, 160, 33, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 160, 33, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  opacity: 0.5;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.hero-contact .title-char {
  display: inline-block;
  transform: translateY(30px) rotateY(90deg);
  animation: charReveal 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-contact .title-char:nth-child(1) { animation-delay: 0.1s; }
.hero-contact .title-char:nth-child(2) { animation-delay: 0.15s; }
.hero-contact .title-char:nth-child(3) { animation-delay: 0.2s; }
.hero-contact .title-char:nth-child(4) { animation-delay: 0.25s; }
.hero-contact .title-char:nth-child(5) { animation-delay: 0.3s; }
.hero-contact .title-char:nth-child(6) { animation-delay: 0.35s; }
.hero-contact .title-char:nth-child(7) { animation-delay: 0.4s; }
.hero-contact .title-char:nth-child(8) { animation-delay: 0.45s; }
.hero-contact .title-char:nth-child(9) { animation-delay: 0.5s; }
.hero-contact .title-char:nth-child(10) { animation-delay: 0.55s; }
.hero-contact .title-char:nth-child(11) { animation-delay: 0.6s; }
.hero-contact .title-char:nth-child(12) { animation-delay: 0.65s; }
.hero-contact .title-char:nth-child(13) { animation-delay: 0.7s; }

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateY(0deg);
  }
}

/* Responsive adjustments for hero sections */
@media (max-width: 768px) {
  .floating-element {
    opacity: 0.5;
  }
  
  .element-1, .element-2, .element-3, .element-4 {
    width: 150px;
    height: 150px;
  }
  
  .wave {
    height: 80%;
  }
  
  .geo-shape {
    opacity: 0.3;
  }
  
  .hero-contact .title-char {
    font-size: 0.9em;
  }
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--palladium-gold);
  color: var(--pitch-black);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--star-light);
  transform: translate(-50%, -50%);
  transition: width var(--transition-slow), height var(--transition-slow);
}

.btn-primary:hover::before {
  width: 300%;
  height: 300%;
}

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

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

.btn-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--palladium-gold);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  border: 2px solid var(--palladium-gold);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: var(--palladium-gold);
  color: var(--pitch-black);
  transform: translateY(-2px);
}

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--palladium-gold);
}

.section-subtitle {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto var(--space-lg);
  color: var(--deep-smoke);
  font-size: 1rem;
}

.asymmetric-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--anthracite);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.card:hover {
  transform: translateY(-0.5rem) rotate(0.5deg);
  box-shadow: var(--shadow-lg);
}

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

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

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

.card-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--star-light);
}

.card-text {
  color: var(--deep-smoke);
  font-size: 0.875rem;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.product-card {
  background: var(--anthracite);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-1rem);
  box-shadow: var(--shadow-lg);
}

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

.product-card:hover .product-image {
  transform: scale(1.15) rotate(2deg);
}

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

.product-name {
  font-size: 1.75rem;
  margin-bottom: var(--space-xs);
  color: var(--palladium-gold);
}

.product-description {
  color: var(--deep-smoke);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.product-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--star-light);
  font-family: var(--font-display);
}

.features-section {
  background: var(--anthracite);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(197, 160, 33, 0.1), transparent);
  border-radius: 50%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.feature-item {
  text-align: center;
  padding: var(--space-md);
  transition: transform var(--transition-base);
}

.feature-item:hover {
  transform: translateY(-0.5rem);
}

.feature-icon {
  font-size: 3rem;
  color: var(--palladium-gold);
  margin-bottom: var(--space-sm);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--star-light);
}

.feature-text {
  color: var(--deep-smoke);
  font-size: 0.875rem;
}

.contact-section {
  background: linear-gradient(135deg, var(--anthracite), var(--pitch-black));
  position: relative;
  overflow: hidden;
}

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

.contact-info {
  position: sticky;
  top: var(--space-lg);
}

.contact-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
  color: var(--palladium-gold);
}

.contact-details {
  margin-bottom: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--star-light);
}

.contact-item i {
  color: var(--palladium-gold);
  font-size: 1.5rem;
}

.contact-form {
  background: var(--anthracite);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--star-light);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem;
  background: var(--pitch-black);
  border: 1px solid var(--deep-smoke);
  border-radius: var(--radius-md);
  color: var(--star-light);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--palladium-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 33, 0.1);
}

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

.form-checkbox-wrapper {
  display: flex;
  align-items: start;
  gap: var(--space-sm);
}

.form-checkbox {
  margin-top: 0.25rem;
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 0.8125rem;
  color: var(--deep-smoke);
  line-height: 1.5;
}

.form-checkbox-label a {
  color: var(--palladium-gold);
  text-decoration: underline;
}

.map-container {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 25rem;
}

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

.footer {
  background: var(--anthracite);
  padding: var(--space-md);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--deep-smoke);
}

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

.footer-links a {
  color: var(--deep-smoke);
  font-size: 0.8125rem;
}

.footer-links a:hover {
  color: var(--palladium-gold);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--anthracite);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 70rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.privacy-text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--star-light);
}

.privacy-text a {
  color: var(--palladium-gold);
  text-decoration: underline;
}

.privacy-actions {
  display: flex;
  gap: var(--space-sm);
}

.btn-accept {
  padding: 0.75rem 1.5rem;
  background: var(--palladium-gold);
  color: var(--pitch-black);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.thankyou-content {
  max-width: 40rem;
}

.thankyou-icon {
  font-size: 5rem;
  color: var(--palladium-gold);
  margin-bottom: var(--space-md);
  animation: scaleIn var(--transition-slow) ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thankyou-title {
  margin-bottom: var(--space-md);
  color: var(--palladium-gold);
}

.thankyou-text {
  color: var(--deep-smoke);
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
}

.error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.error-content {
  max-width: 40rem;
}

.error-code {
  font-size: 10rem;
  font-weight: 700;
  color: var(--palladium-gold);
  line-height: 1;
  font-family: var(--font-display);
  margin-bottom: var(--space-md);
}

.error-title {
  margin-bottom: var(--space-md);
}

.error-text {
  color: var(--deep-smoke);
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
}

.policy-section {
  padding: var(--space-xl) var(--space-md);
  max-width: 60rem;
  margin: 0 auto;
}

.policy-title {
  margin-bottom: var(--space-lg);
  color: var(--palladium-gold);
}

.policy-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--star-light);
  font-size: 1.75rem;
}

.policy-content p {
  margin-bottom: var(--space-md);
  color: var(--deep-smoke);
  line-height: 1.8;
}

.policy-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
  color: var(--deep-smoke);
}

.policy-content li {
  margin-bottom: var(--space-xs);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 3rem;
  border: 2px solid var(--palladium-gold);
  border-radius: 1.5rem;
  opacity: 0.6;
  animation: fadeInOut 2s infinite;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.25rem;
  height: 0.5rem;
  background: var(--palladium-gold);
  border-radius: 0.25rem;
  animation: scrollDown 2s infinite;
}

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

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

.parallax-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  z-index: 0;
  transform: translateY(0);
}

.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 50rem;
  padding: var(--space-lg);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
}

.stagger-fade {
  opacity: 0;
  transform: translateY(2rem);
  transition: all var(--transition-slow);
}

.stagger-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    transition: right var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .main-nav a {
    font-size: 1.5rem;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .contact-info {
    position: static;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .privacy-content {
    flex-direction: column;
    text-align: center;
  }
  
  .privacy-actions {
    width: 100%;
    justify-content: center;
  }
}

.luxury-policy-hero {
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  background: linear-gradient(135deg, var(--anthracite), var(--pitch-black));
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.luxury-policy-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 50rem;
  height: 50rem;
  background: radial-gradient(circle, rgba(197, 160, 33, 0.08), transparent);
  border-radius: 50%;
}

.luxury-policy-header {
  text-align: center;
  position: relative;
  z-index: 1;
}

.luxury-policy-icon {
  font-size: 4rem;
  color: var(--palladium-gold);
  margin-bottom: var(--space-md);
  display: block;
  animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.luxury-policy-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--star-light);
  margin-bottom: var(--space-sm);
}

.luxury-policy-date {
  color: var(--deep-smoke);
  font-size: 0.9375rem;
  font-weight: 300;
}

.luxury-policy-section {
  padding: var(--space-xl) var(--space-md);
}

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

.luxury-policy-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--star-light);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--anthracite);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--palladium-gold);
}

.luxury-policy-block {
  margin-bottom: var(--space-xl);
  position: relative;
  padding-left: 5rem;
}

.luxury-policy-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--palladium-gold), #8B7016);
  color: var(--pitch-black);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.luxury-policy-block h2 {
  font-size: 1.75rem;
  color: var(--palladium-gold);
  margin-bottom: var(--space-md);
}

.luxury-policy-block p {
  color: var(--deep-smoke);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.luxury-policy-block a {
  color: var(--palladium-gold);
  text-decoration: underline;
  transition: color var(--transition-base);
}

.luxury-policy-block a:hover {
  color: var(--star-light);
}

.luxury-policy-contact {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--anthracite);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.luxury-policy-contact h2 {
  font-size: 2rem;
  color: var(--palladium-gold);
  margin-bottom: var(--space-md);
  text-align: center;
}

.luxury-policy-contact > p {
  text-align: center;
  color: var(--star-light);
  margin-bottom: var(--space-lg);
}

.luxury-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

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

.luxury-contact-item i {
  color: var(--palladium-gold);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.luxury-contact-item strong {
  display: block;
  color: var(--star-light);
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.luxury-contact-item p {
  color: var(--deep-smoke);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.luxury-contact-item a {
  color: var(--palladium-gold);
  text-decoration: none;
}

.luxury-contact-item a:hover {
  text-decoration: underline;
}

.luxury-thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: var(--space-xl) var(--space-md);
  background: linear-gradient(135deg, var(--pitch-black), var(--anthracite));
}

.luxury-thankyou-content {
  text-align: center;
  max-width: 45rem;
  margin: 30px auto var(--space-xl);
}

.luxury-thankyou-icon-wrapper {
  margin-bottom: var(--space-md);
}

.luxury-thankyou-icon {
  font-size: 6rem;
  color: var(--palladium-gold);
  animation: scaleIn 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.luxury-thankyou-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--star-light);
  margin-bottom: var(--space-sm);
}

.luxury-thankyou-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--palladium-gold);
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

.luxury-thankyou-text {
  margin-bottom: var(--space-lg);
}

.luxury-thankyou-text p {
  color: var(--deep-smoke);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.luxury-thankyou-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.luxury-thankyou-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  max-width: 60rem;
  margin: 0 auto;
}

.luxury-thankyou-feature {
  text-align: center;
  padding: var(--space-md);
  background: var(--anthracite);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base);
}

.luxury-thankyou-feature:hover {
  transform: translateY(-0.5rem);
}

.luxury-thankyou-feature i {
  font-size: 2.5rem;
  color: var(--palladium-gold);
  margin-bottom: var(--space-sm);
}

.luxury-thankyou-feature h3 {
  font-size: 1.25rem;
  color: var(--star-light);
  margin-bottom: var(--space-xs);
}

.luxury-thankyou-feature p {
  color: var(--deep-smoke);
  font-size: 0.875rem;
}

.luxury-error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: var(--space-xl) var(--space-md);
  background: linear-gradient(135deg, var(--pitch-black), var(--anthracite));
}

.luxury-error-content {
  text-align: center;
  max-width: 45rem;
  margin: 0 auto var(--space-xl);
}

.luxury-error-code-wrapper {
  position: relative;
  margin-bottom: var(--space-lg);
}

.luxury-error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  color: var(--palladium-gold);
  line-height: 1;
  font-family: var(--font-display);
  position: relative;
  display: inline-block;
}

.luxury-error-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border: 2px solid var(--palladium-gold);
  border-radius: 50%;
  opacity: 0.2;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
}

.luxury-error-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--star-light);
  margin-bottom: var(--space-md);
}

.luxury-error-text {
  color: var(--deep-smoke);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.luxury-error-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.luxury-error-links {
  max-width: 40rem;
  margin: 0 auto;
}

.luxury-error-links h3 {
  text-align: center;
  color: var(--palladium-gold);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.luxury-error-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-md);
}

.luxury-error-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--anthracite);
  border-radius: var(--radius-lg);
  color: var(--star-light);
  text-decoration: none;
  transition: all var(--transition-base);
}

.luxury-error-link:hover {
  transform: translateY(-0.5rem);
  background: var(--deep-smoke);
  color: var(--palladium-gold);
}

.luxury-error-link i {
  font-size: 2rem;
  color: var(--palladium-gold);
}

.luxury-error-link span {
  font-size: 0.9375rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .luxury-policy-block {
    padding-left: 4rem;
  }
  
  .luxury-policy-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }
  
  .luxury-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  .hero-section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .asymmetric-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .luxury-policy-hero {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .luxury-policy-section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .luxury-policy-block {
    padding-left: 0;
    padding-top: 4rem;
  }
  
  .luxury-policy-number {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .luxury-policy-intro {
    padding: var(--space-md);
  }
  
  .luxury-policy-contact {
    padding: var(--space-md);
  }
  
  .luxury-thankyou-section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .luxury-error-section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .luxury-thankyou-features {
    grid-template-columns: 1fr;
  }
  
  .luxury-error-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  :root {
    --space-sm: 0.75rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 3.5rem;
  }
  
  body {
    font-size: 0.875rem;
  }
  
  .main-header {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.875rem 1.75rem;
    font-size: 0.8125rem;
  }
  
  .card-content,
  .product-info {
    padding: var(--space-sm);
  }
  
  .contact-form {
    padding: var(--space-md);
  }
  
  .form-input,
  .form-textarea {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
  
  .luxury-policy-icon {
    font-size: 3rem;
  }
  
  .luxury-thankyou-icon {
    font-size: 4.5rem;
  }
  
  .luxury-policy-block h2 {
    font-size: 1.5rem;
  }
  
  .luxury-thankyou-feature,
  .luxury-error-link {
    padding: var(--space-sm);
  }
}
