@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 {
  --color-primary: #B36A5E;
  --color-secondary: #8E4B3D;
  --color-bg: #1F1F1F;
  --color-text: #D1D5DB;
  --color-muted: #4B5563;
  --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(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  --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.8s cubic-bezier(0.76, 0, 0.24, 1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 0.9rem;
}

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

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(--color-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--color-secondary);
}

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

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

header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 1000;
  background: rgba(31, 31, 31, 0.95);
  backdrop-filter: blur(20px);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-luxury);
  width: 90%;
  max-width: 1200px;
}

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  transition: all var(--transition-smooth);
}

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

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

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition-smooth);
  transform: translateX(-50%);
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
  position: relative;
  width: 30px;
  height: 24px;
  justify-content: center;
  align-items: center;
}

.burger span {
  width: 1.8rem;
  height: 2.5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: all var(--transition-smooth);
  border-radius: 2px;
  position: absolute;
  box-shadow: 0 0 8px rgba(179, 106, 94, 0.3);
}

.burger span:nth-child(1) {
  top: 0;
}

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

.burger span:nth-child(3) {
  bottom: 0;
}

.burger.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 12px rgba(179, 106, 94, 0.5);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.burger.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
  box-shadow: 0 0 12px rgba(179, 106, 94, 0.5);
}

.burger:hover span {
  box-shadow: 0 0 12px rgba(179, 106, 94, 0.5);
}

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

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

.hero-bg canvas {
  width: 100%;
  height: 100%;
}

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

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

.hero p {
  font-size: 1.2rem;
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Luxury Hero Sections with Advanced Animations */

/* Home Hero - Grand Welcome */
.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
  background: radial-gradient(ellipse at center, rgba(179, 106, 94, 0.15) 0%, rgba(31, 31, 31, 0.95) 70%);
}

.hero-home::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(179, 106, 94, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(142, 75, 61, 0.08) 0%, transparent 50%);
  animation: luxuryOrbit 25s linear infinite;
  pointer-events: none;
}

.hero-home::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(179, 106, 94, 0.03) 2px, rgba(179, 106, 94, 0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(179, 106, 94, 0.03) 2px, rgba(179, 106, 94, 0.03) 4px);
  animation: gridPulse 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-home-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin-top: 50px;
  padding: var(--space-xl);
  background: rgba(31, 31, 31, 0.4);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(179, 106, 94, 0.2);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: heroHomeReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-home-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(179, 106, 94, 0.6), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.hero-home h1 {
  font-size: 5rem;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-primary) 0%, #D4AF37 50%, var(--color-text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
  position: relative;
  display: inline-block;
}

.hero-home h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  animation: lineExpand 1.5s ease-out 0.5s both;
}

.hero-home .floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-home .floating-elements span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.6;
  animation: floatUp 15s infinite ease-in-out;
}

.hero-home .floating-elements span:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.hero-home .floating-elements span:nth-child(2) {
  left: 30%;
  animation-delay: 2s;
  animation-duration: 18s;
}

.hero-home .floating-elements span:nth-child(3) {
  left: 50%;
  animation-delay: 4s;
  animation-duration: 14s;
}

.hero-home .floating-elements span:nth-child(4) {
  left: 70%;
  animation-delay: 1s;
  animation-duration: 16s;
}

.hero-home .floating-elements span:nth-child(5) {
  left: 90%;
  animation-delay: 3s;
  animation-duration: 13s;
}

/* Lighting Hero - Illuminated Focus */
.hero-lighting {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  padding: var(--space-xl) var(--space-md);
  background: linear-gradient(135deg, rgba(31, 31, 31, 1) 0%, rgba(45, 35, 32, 1) 100%);
}

.hero-lighting::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(179, 106, 94, 0.3) 0%, transparent 70%);
  animation: lightPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-lighting::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(179, 106, 94, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(142, 75, 61, 0.12) 0%, transparent 40%);
  animation: lightMove 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-lighting-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--space-xl);
  animation: lightingReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-lighting h1 {
  font-size: 4.5rem;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-primary) 0%, #FFD700 50%, var(--color-text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 0 20px rgba(179, 106, 94, 0.3));
  animation: textGlow 3s ease-in-out infinite;
}

.hero-lighting .light-rays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-lighting .light-rays::before,
.hero-lighting .light-rays::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, rgba(179, 106, 94, 0.4), transparent);
  transform-origin: top center;
  animation: rayRotate 20s linear infinite;
}

.hero-lighting .light-rays::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.hero-lighting .light-rays::after {
  transform: translate(-50%, -50%) rotate(90deg);
  animation-delay: -5s;
}

/* New Arrivals Hero - Dynamic Reveal */
.hero-new-arrivals {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
  background: linear-gradient(180deg, rgba(31, 31, 31, 1) 0%, rgba(40, 35, 33, 1) 100%);
}

.hero-new-arrivals::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: 
    conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(179, 106, 94, 0.1) 90deg, transparent 180deg, rgba(142, 75, 61, 0.08) 270deg, transparent 360deg);
  animation: conicRotate 30s linear infinite;
  pointer-events: none;
}

.hero-new-arrivals-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin-top: 50px;
  padding: var(--space-xl);
  background: rgba(31, 31, 31, 0.5);
  backdrop-filter: blur(30px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(179, 106, 94, 0.3);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: newArrivalsReveal 1.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.hero-new-arrivals-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(179, 106, 94, 0.1) 50%, transparent 70%);
  animation: diagonalSweep 4s ease-in-out infinite;
}

.hero-new-arrivals h1 {
  font-size: 4.5rem;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-primary) 0%, #C9A961 30%, #FFD700 60%, var(--color-text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientFlow 6s ease infinite;
  position: relative;
  display: inline-block;
}

.hero-new-arrivals h1::before {
  content: 'NEW';
  position: absolute;
  top: -30px;
  right: -80px;
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0.8;
  animation: badgePulse 2s ease-in-out infinite;
  transform: rotate(-15deg);
}

.hero-new-arrivals .sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-new-arrivals .sparkles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-primary);
  animation: sparkle 3s infinite ease-in-out;
}

.hero-new-arrivals .sparkles span:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.hero-new-arrivals .sparkles span:nth-child(2) {
  top: 40%;
  right: 20%;
  animation-delay: 0.5s;
}

.hero-new-arrivals .sparkles span:nth-child(3) {
  bottom: 30%;
  left: 25%;
  animation-delay: 1s;
}

.hero-new-arrivals .sparkles span:nth-child(4) {
  bottom: 20%;
  right: 15%;
  animation-delay: 1.5s;
}

/* Contact Hero - Elegant Professional */
.hero-contact {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
  background: linear-gradient(135deg, rgba(31, 31, 31, 1) 0%, rgba(35, 32, 31, 1) 50%, rgba(31, 31, 31, 1) 100%);
}

.hero-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(179, 106, 94, 0.05) 49%, rgba(179, 106, 94, 0.05) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(179, 106, 94, 0.05) 49%, rgba(179, 106, 94, 0.05) 51%, transparent 52%);
  background-size: 60px 60px;
  animation: subtleGrid 20s linear infinite;
  pointer-events: none;
  opacity: 0.3;
}

.hero-contact::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border: 1px solid rgba(179, 106, 94, 0.2);
  border-radius: 50%;
  animation: contactRing 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--space-xl);
  background: rgba(31, 31, 31, 0.6);
  backdrop-filter: blur(25px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(179, 106, 94, 0.25);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: contactReveal 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-contact-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  animation: contactLine 2s ease-in-out infinite;
}

.hero-contact h1 {
  font-size: 4rem;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero-contact .contact-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
}

/* Animation Keyframes */
@keyframes luxuryOrbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

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

@keyframes shimmer {
  0%, 100% { opacity: 0.5; transform: translateX(-100%); }
  50% { opacity: 1; transform: translateX(100%); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes lineExpand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100px;
    opacity: 1;
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) translateX(50px) scale(1);
    opacity: 0;
  }
}

@keyframes lightPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.5;
  }
}

@keyframes lightMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(5%, 5%);
  }
}

@keyframes lightingReveal {
  from {
    opacity: 0;
    transform: scale(0.8) rotateY(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
}

@keyframes textGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(179, 106, 94, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(179, 106, 94, 0.6));
  }
}

@keyframes rayRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); opacity: 0.4; }
  50% { opacity: 0.6; }
  100% { transform: translate(-50%, -50%) rotate(360deg); opacity: 0.4; }
}

@keyframes conicRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes newArrivalsReveal {
  from {
    opacity: 0;
    transform: translateY(80px) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

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

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes badgePulse {
  0%, 100% {
    transform: rotate(-15deg) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: rotate(-15deg) scale(1.1);
    opacity: 1;
  }
}

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

@keyframes subtleGrid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

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

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

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

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

@keyframes navItemSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--color-secondary);
  color: var(--color-text);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all var(--transition-smooth);
  border: none;
  cursor: pointer;
  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(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width var(--transition-smooth), height var(--transition-smooth);
}

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

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

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

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}

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

.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);
}

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

.card {
  background: rgba(75, 85, 99, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(179, 106, 94, 0.2);
  backdrop-filter: blur(10px);
  transform: translateY(40px);
}

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

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  transition: all var(--transition-smooth);
}

.card:hover img {
  transform: scale(1.05);
}

.card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  font-size: 1.4rem;
}

.card p {
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.asymmetric-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
  margin: var(--space-xl) 0;
}

.asymmetric-section:nth-child(even) {
  grid-template-columns: 0.8fr 1.2fr;
}

.asymmetric-section:nth-child(even) .content {
  order: 2;
}

.asymmetric-section:nth-child(even) .visual {
  order: 1;
}

.asymmetric-section .content {
  padding: var(--space-md);
  transform: translateX(-30px);
  transition: all var(--transition-luxury);
}

.asymmetric-section .content.visible {
  transform: translateX(0);
  opacity: 1;
}

.asymmetric-section .visual {
  position: relative;
  transform: rotate(-3deg);
  transition: all var(--transition-luxury);
}

.asymmetric-section .visual.visible {
  transform: rotate(0deg);
}

.asymmetric-section .visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.overlap-section {
  position: relative;
  margin: var(--space-xl) 0;
}

.overlap-content {
  position: relative;
  z-index: 2;
  background: rgba(31, 31, 31, 0.9);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin-left: 10%;
  margin-top: -100px;
  box-shadow: var(--shadow-lg);
}

.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: rgba(75, 85, 99, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(179, 106, 94, 0.2);
  transform: scale(0.9);
}

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

.product-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

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

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

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

.product-price {
  font-size: 1.8rem;
  color: var(--color-primary);
  font-weight: 700;
  font-family: var(--font-display);
  margin: var(--space-sm) 0;
}

.contact-section {
  background: linear-gradient(135deg, rgba(179, 106, 94, 0.1), rgba(142, 75, 61, 0.1));
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(179, 106, 94, 0.2), transparent);
  animation: pulse 4s ease-in-out infinite;
}

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

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

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: rgba(75, 85, 99, 0.1);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.contact-item:hover {
  background: rgba(179, 106, 94, 0.2);
  transform: translateX(10px);
}

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

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

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

label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

input, textarea {
  padding: 0.9rem;
  background: rgba(75, 85, 99, 0.2);
  border: 1px solid rgba(179, 106, 94, 0.3);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(75, 85, 99, 0.3);
  box-shadow: 0 0 0 3px rgba(179, 106, 94, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

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

.checkbox-group label {
  font-size: 0.75rem;
  text-transform: none;
  cursor: pointer;
  color: var(--color-muted);
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-md);
  box-shadow: var(--shadow-md);
}

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

footer {
  background: rgba(31, 31, 31, 0.8);
  padding: var(--space-md);
  text-align: center;
  border-top: 1px solid rgba(179, 106, 94, 0.2);
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  max-width: 1400px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--color-muted);
  transition: all var(--transition-fast);
}

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

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(31, 31, 31, 0.98);
  padding: var(--space-md);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  max-width: 600px;
  width: 90%;
  transition: all var(--transition-luxury);
  border: 1px solid var(--color-primary);
}

.cookie-popup.show {
  bottom: 0;
}

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

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
}

.cookie-buttons .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.8rem;
}

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

.thank-you-content {
  max-width: 700px;
  animation: fadeInUp var(--transition-luxury) ease-out;
}

.thank-you-content i {
  font-size: 5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  animation: bounce 1s ease-in-out;
}

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

.error-content {
  max-width: 700px;
}

.error-content h1 {
  font-size: 8rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

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

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

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

@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .hero h1 { font-size: 3rem; }
  
  .asymmetric-section,
  .asymmetric-section:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .asymmetric-section .content,
  .asymmetric-section:nth-child(even) .content {
    order: 2;
  }
  
  .asymmetric-section .visual,
  .asymmetric-section:nth-child(even) .visual {
    order: 1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  header {
    width: 95%;
    padding: var(--space-xs) var(--space-sm);
  }
  
  /* Mobile Navigation Overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-luxury);
  }
  
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.98) 0%, rgba(40, 35, 33, 0.98) 100%);
    backdrop-filter: blur(30px);
    padding: 0;
    transition: all var(--transition-luxury);
    box-shadow: 
      -10px 0 50px rgba(0, 0, 0, 0.5),
      inset 1px 0 0 rgba(179, 106, 94, 0.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(179, 106, 94, 0.5), transparent);
  }
  
  nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary), transparent);
    opacity: 0.3;
  }
  
  nav.active {
    right: 0;
  }
  
  /* Mobile Nav Header */
  .nav-header {
    padding: var(--space-lg) var(--space-md);
    border-bottom: 1px solid rgba(179, 106, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  .nav-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(179, 106, 94, 0.3), transparent);
  }
  
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--color-primary), var(--color-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  /* Mobile Nav Menu Items */
  nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-md) 0;
    list-style: none;
    margin: 0;
  }
  
  nav ul li {
    width: 100%;
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    animation: navItemSlideIn 0.5s ease-out forwards;
  }
  
  nav.active ul li:nth-child(1) {
    animation-delay: 0.1s;
  }
  
  nav.active ul li:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  nav.active ul li:nth-child(3) {
    animation-delay: 0.3s;
  }
  
  nav.active ul li:nth-child(4) {
    animation-delay: 0.4s;
  }
  
  nav a {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: var(--space-md) var(--space-lg);
    display: block;
    color: var(--color-text);
    transition: all var(--transition-smooth);
    position: relative;
    border-left: 3px solid transparent;
    margin: 0 var(--space-sm);
    border-radius: var(--radius-sm);
  }
  
  nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    transform: scaleY(0);
    transition: transform var(--transition-smooth);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  }
  
  nav a::after {
    content: '';
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-primary);
    border-top: 2px solid var(--color-primary);
    transform: translateY(-50%) translateX(-10px) rotate(45deg);
    opacity: 0;
    transition: all var(--transition-smooth);
  }
  
  nav a:hover,
  nav a:focus {
    color: var(--color-primary);
    background: rgba(179, 106, 94, 0.1);
    border-left-color: var(--color-primary);
    padding-left: calc(var(--space-lg) + 5px);
    transform: translateX(5px);
  }
  
  nav a:hover::before {
    transform: scaleY(1);
  }
  
  nav a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0) rotate(45deg);
  }
  
  /* Active Nav Item */
  nav a.active {
    color: var(--color-primary);
    background: rgba(179, 106, 94, 0.15);
    border-left-color: var(--color-primary);
  }
  
  nav a.active::before {
    transform: scaleY(1);
  }
  
  /* Mobile Nav Footer */
  .nav-footer {
    margin-top: auto;
    padding: var(--space-md);
    border-top: 1px solid rgba(179, 106, 94, 0.2);
    text-align: center;
  }
  
  .nav-footer p {
    font-size: 0.75rem;
    color: var(--color-muted);
    margin: 0;
  }
  
  .burger {
    display: flex;
  }
  
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  
  /* Luxury Hero Responsive Styles */
  .hero-home h1,
  .hero-lighting h1,
  .hero-new-arrivals h1,
  .hero-contact h1 {
    font-size: 2.5rem;
  }
  
  .hero-home-content,
  .hero-lighting-content,
  .hero-new-arrivals-content,
  .hero-contact-content {
    padding: var(--space-md);
  }
  
  .hero-home p,
  .hero-lighting p,
  .hero-new-arrivals p,
  .hero-contact p {
    font-size: 1rem;
  }
  
  .hero-new-arrivals h1::before {
    font-size: 0.9rem;
    top: -25px;
    right: -60px;
  }
  
  .hero-contact .contact-icon {
    font-size: 2.5rem;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .overlap-content {
    margin-left: 0;
    margin-top: 0;
  }
  
  .error-content h1 {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  
  .hero h1 { font-size: 1.8rem; }
  
  /* Luxury Hero Mobile Styles */
  .hero-home h1,
  .hero-lighting h1,
  .hero-new-arrivals h1,
  .hero-contact h1 {
    font-size: 2rem;
  }
  
  .hero-home-content,
  .hero-lighting-content,
  .hero-new-arrivals-content,
  .hero-contact-content {
    padding: var(--space-sm);
  }
  
  .hero-home,
  .hero-lighting,
  .hero-new-arrivals,
  .hero-contact {
    min-height: 60vh;
    padding: var(--space-md) var(--space-sm);
  }
  
  .hero-new-arrivals h1::before {
    display: none;
  }
  
  .hero-contact .contact-icon {
    font-size: 2rem;
  }
  
  .logo {
    font-size: 1.3rem;
  }
  
  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
  }
  
  section {
    padding: var(--space-md) var(--space-sm);
  }
  
  .contact-section {
    padding: var(--space-md);
  }
}

.luxury-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #1F1F1F 0%, #2a2a2a 100%);
  position: relative;
  overflow: hidden;
}

.luxury-page::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(179, 106, 94, 0.08), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(142, 75, 61, 0.06), transparent 50%);
  animation: luxuryFloat 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes luxuryFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(5%, 5%) rotate(5deg); }
}

.luxury-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  z-index: 1;
}

.luxury-box {
  max-width: 800px;
  width: 100%;
  background: rgba(31, 31, 31, 0.8);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(179, 106, 94, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(179, 106, 94, 0.1) inset;
  animation: luxurySlideUp 1s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.luxury-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(179, 106, 94, 0.5), transparent);
}

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

.luxury-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(179, 106, 94, 0.2), rgba(142, 75, 61, 0.2));
  border-radius: 50%;
  position: relative;
  animation: luxuryPulse 2s ease-in-out infinite;
}

.luxury-icon::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(179, 106, 94, 0.1), rgba(142, 75, 61, 0.1));
  animation: luxuryRipple 2s ease-out infinite;
}

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

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

.luxury-icon i {
  font-size: 3rem;
  color: var(--color-primary);
  position: relative;
  z-index: 1;
}

.luxury-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, var(--color-primary), var(--color-text));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.luxury-subtitle {
  font-size: 1.5rem;
  text-align: center;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  font-weight: 400;
}

.luxury-text {
  text-align: center;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.luxury-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.policy-page {
  padding-top: 8rem;
  padding-bottom: var(--space-xl);
  background: linear-gradient(180deg, #1F1F1F 0%, #252525 100%);
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.policy-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(179, 106, 94, 0.2);
  position: relative;
}

.policy-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.policy-header h1 {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, var(--color-primary), var(--color-text));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-date {
  color: var(--color-muted);
  font-size: 0.9rem;
  font-style: italic;
}

.policy-content {
  background: rgba(31, 31, 31, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(179, 106, 94, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.policy-content h2 {
  color: var(--color-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.8rem;
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(179, 106, 94, 0.2);
}

.policy-content h3 {
  color: var(--color-text);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  font-size: 1.3rem;
}

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

.policy-content ul {
  margin: var(--space-sm) 0 var(--space-md) var(--space-md);
  color: var(--color-muted);
}

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

.policy-highlight {
  background: rgba(179, 106, 94, 0.1);
  border-left: 3px solid var(--color-primary);
  padding: var(--space-md);
  margin: var(--space-md) 0;
  border-radius: var(--radius-sm);
}

.policy-actions {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(179, 106, 94, 0.2);
}

@media (max-width: 768px) {
  .luxury-title {
    font-size: 2.2rem;
  }
  
  .luxury-subtitle {
    font-size: 1.2rem;
  }
  
  .luxury-box {
    padding: var(--space-md);
  }
  
  .policy-header h1 {
    font-size: 2rem;
  }
  
  .policy-content {
    padding: var(--space-md);
  }
  
  .policy-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .luxury-title {
    font-size: 1.8rem;
  }
  
  .luxury-subtitle {
    font-size: 1rem;
  }
  
  .luxury-icon {
    width: 60px;
    height: 60px;
  }
  
  .luxury-icon i {
    font-size: 2rem;
  }
  
  .policy-header h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 320px) {
  /* Base Typography */
  html {
    font-size: 14px;
  }
  
  h1 { 
    font-size: 1.5rem; 
    line-height: 1.3;
  }
  
  h2 { 
    font-size: 1.3rem; 
    line-height: 1.3;
  }
  
  h3 { 
    font-size: 1.1rem; 
    line-height: 1.3;
  }
  
  h4 { 
    font-size: 1rem; 
  }
  
  h5, h6 { 
    font-size: 0.9rem; 
  }
  
  p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  /* Spacing Adjustments */
  :root {
    --space-xs: 0.4rem;
    --space-sm: 0.7rem;
    --space-md: 1.2rem;
    --space-lg: 2rem;
    --space-xl: 2.5rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  section {
    padding: var(--space-md) var(--space-sm);
  }
  
  /* Header */
  header {
    width: 100%;
    padding: var(--space-xs) var(--space-sm);
    border-radius: 0;
  }
  
  .logo {
    font-size: 1.1rem;
  }
  
  /* Mobile Navigation 320px */
  .nav-overlay {
    backdrop-filter: blur(3px);
  }
  
  nav {
    width: 90%;
    max-width: 350px;
  }
  
  .nav-header {
    padding: var(--space-md);
  }
  
  .nav-logo {
    font-size: 1.1rem;
  }
  
  nav ul {
    gap: 0;
    padding: var(--space-sm) 0;
  }
  
  nav a {
    font-size: 1rem;
    padding: var(--space-sm) var(--space-md);
    margin: 0 var(--space-xs);
    letter-spacing: 0.1em;
  }
  
  .nav-footer {
    padding: var(--space-sm);
  }
  
  .nav-footer p {
    font-size: 0.7rem;
  }
  
  .burger {
    width: 26px;
    height: 20px;
  }
  
  .burger span {
    width: 1.5rem;
    height: 2px;
  }
  
  /* Hero Sections */
  .hero-home,
  .hero-lighting,
  .hero-new-arrivals,
  .hero-contact {
    min-height: 50vh;
    padding: var(--space-md) var(--space-sm);
  }
  
  .hero-home h1,
  .hero-lighting h1,
  .hero-new-arrivals h1,
  .hero-contact h1 {
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
  }
  
  .hero-home-content,
  .hero-lighting-content,
  .hero-new-arrivals-content,
  .hero-contact-content {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .hero-home p,
  .hero-lighting p,
  .hero-new-arrivals p,
  .hero-contact p {
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
  }
  
  .hero-home h1::after {
    width: 60px;
    height: 2px;
  }
  
  .hero-new-arrivals h1::before {
    display: none;
  }
  
  .hero-contact .contact-icon {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
  }
  
  /* Buttons */
  .btn {
    width: 100%;
    padding: 0.75rem 1.2rem;
    font-size: 0.8rem;
    border-radius: var(--radius-md);
  }
  
  .btn-outline {
    width: 100%;
  }
  
  /* Cards */
  .card {
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
  }
  
  .card img {
    height: 180px;
    margin-bottom: var(--space-xs);
  }
  
  .card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
  }
  
  .card p {
    font-size: 0.8rem;
  }
  
  /* Product Cards */
  .product-card {
    border-radius: var(--radius-md);
  }
  
  .product-image {
    height: 200px;
  }
  
  .product-info {
    padding: var(--space-sm);
  }
  
  .product-price {
    font-size: 1.4rem;
    margin: var(--space-xs) 0;
  }
  
  /* Grid Layouts */
  .grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  /* Asymmetric Sections */
  .asymmetric-section {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .asymmetric-section .content,
  .asymmetric-section .visual {
    order: initial;
    transform: none;
  }
  
  .asymmetric-section .content {
    padding: var(--space-sm);
  }
  
  .asymmetric-section .visual img {
    border-radius: var(--radius-md);
  }
  
  /* Overlap Section */
  .overlap-content {
    margin-left: 0;
    margin-top: 0;
    padding: var(--space-md);
    max-width: 100%;
  }
  
  /* Contact Section */
  .contact-section {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .contact-info {
    padding: var(--space-sm);
  }
  
  .contact-item {
    padding: var(--space-xs);
    margin-bottom: var(--space-sm);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }
  
  .contact-item i {
    font-size: 1.2rem;
  }
  
  /* Forms */
  form {
    gap: var(--space-xs);
  }
  
  .form-group {
    gap: var(--space-xs);
  }
  
  label {
    font-size: 0.75rem;
  }
  
  input,
  textarea {
    padding: 0.7rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
  }
  
  textarea {
    min-height: 100px;
  }
  
  .checkbox-group {
    gap: var(--space-xs);
  }
  
  .checkbox-group label {
    font-size: 0.7rem;
    line-height: 1.4;
  }
  
  /* Map */
  .map-container {
    height: 250px;
    border-radius: var(--radius-sm);
  }
  
  /* Footer */
  footer {
    padding: var(--space-sm);
    font-size: 0.7rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-xs);
    align-items: center;
  }
  
  .footer-links a {
    font-size: 0.7rem;
  }
  
  /* Cookie Popup */
  .cookie-popup {
    width: 100%;
    max-width: 100%;
    padding: var(--space-sm);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
  
  .cookie-content {
    gap: var(--space-xs);
  }
  
  .cookie-content h4 {
    font-size: 1rem;
  }
  
  .cookie-content p {
    font-size: 0.75rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
    gap: var(--space-xs);
  }
  
  .cookie-buttons .btn {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }
  
  /* Section Titles */
  .section-title {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
  }
  
  /* Luxury Components */
  .luxury-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  
  .luxury-subtitle {
    font-size: 0.95rem;
  }
  
  .luxury-text {
    font-size: 0.85rem;
    line-height: 1.7;
  }
  
  .luxury-box {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }
  
  .luxury-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--space-sm);
  }
  
  .luxury-icon i {
    font-size: 1.5rem;
  }
  
  .luxury-actions {
    flex-direction: column;
    gap: var(--space-xs);
  }
  
  /* Policy Pages */
  .policy-page {
    padding-top: 6rem;
    padding-bottom: var(--space-md);
  }
  
  .policy-container {
    padding: 0 var(--space-sm);
  }
  
  .policy-header {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
  }
  
  .policy-header h1 {
    font-size: 1.5rem;
  }
  
  .policy-date {
    font-size: 0.75rem;
  }
  
  .policy-content {
    padding: var(--space-sm);
    border-radius: var(--radius-md);
  }
  
  .policy-content h2 {
    font-size: 1.2rem;
    margin-top: var(--space-md);
  }
  
  .policy-content h3 {
    font-size: 1rem;
  }
  
  .policy-content p {
    font-size: 0.8rem;
  }
  
  .policy-highlight {
    padding: var(--space-sm);
    margin: var(--space-sm) 0;
  }
  
  .policy-actions {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
  }
  
  /* Error & Thank You Pages */
  .error-content h1 {
    font-size: 4rem;
  }
  
  .thank-you-content i {
    font-size: 3rem;
  }
  
  /* Animations - Reduce for performance on small devices */
  .hero-home::before,
  .hero-home::after,
  .hero-lighting::before,
  .hero-lighting::after,
  .hero-new-arrivals::before,
  .hero-contact::before,
  .hero-contact::after {
    animation-duration: 30s;
  }
  
  /* Disable heavy animations on very small screens */
  .floating-elements,
  .light-rays,
  .sparkles {
    display: none;
  }
  
  /* Ensure touch targets are large enough */
  a,
  button,
  .btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  * {
    max-width: 100%;
  }
  
  img {
    height: auto;
    max-width: 100%;
  }
}
