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

:root {
  --obsidian: #0B0B0C;
  --copper: #B87333;
  --titanium: #E5E7EB;
  --carbon: #1C1C1E;
  --bronze: #78350F;
  
  --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(184, 115, 51, 0.1);
  --shadow-md: 0 4px 16px rgba(184, 115, 51, 0.15);
  --shadow-lg: 0 8px 32px rgba(184, 115, 51, 0.2);
  
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  --transition-luxury: 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

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

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

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

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

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
}

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

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

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

a:hover {
  color: var(--titanium);
  transform: translateX(0.25rem);
}

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

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 90%;
  max-width: 75rem;
  padding: var(--space-sm) var(--space-md);
  background: rgba(28, 28, 30, 0.85);
  backdrop-filter: blur(1.25rem);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  z-index: 1000;
  transition: all var(--transition-luxury);
  box-shadow: var(--shadow-lg);
}

.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: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 0.05em;
  transition: all var(--transition-smooth);
}

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

.nav {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

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

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.125rem;
  background: var(--copper);
  transition: width var(--transition-smooth);
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  cursor: pointer;
  padding: var(--space-xs);
  background: transparent;
  border: none;
}

.burger span {
  width: 1.5rem;
  height: 0.125rem;
  background: var(--copper);
  transition: all var(--transition-fast);
  border-radius: 0.125rem;
}

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

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

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

.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%;
  background: radial-gradient(circle at 30% 50%, rgba(184, 115, 51, 0.15), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(120, 53, 15, 0.1), transparent 50%);
  animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

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

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

.hero h1 {
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--titanium), var(--copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1rem;
  margin-bottom: var(--space-lg);
  color: var(--titanium);
  opacity: 0.9;
}

/* ============================================
   LUXURY HERO SECTIONS - HOME PAGE
   ============================================ */

.hero-home {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

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

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--copper);
  border-radius: 50%;
  opacity: 0.6;
  animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; top: 10%; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; top: 80%; animation-delay: 1s; }
.particle:nth-child(5) { left: 85%; top: 30%; animation-delay: 3s; }
.particle:nth-child(6) { left: 20%; top: 70%; animation-delay: 5s; }
.particle:nth-child(7) { left: 60%; top: 50%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 90%; top: 15%; animation-delay: 4.5s; }

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-30px) translateX(20px) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-60px) translateX(-15px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-30px) translateX(10px) scale(1.1);
    opacity: 0.7;
  }
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 1;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--copper), transparent);
  top: -200px;
  left: -200px;
  animation: orbFloat1 20s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.5), transparent);
  bottom: -150px;
  right: -150px;
  animation: orbFloat2 25s ease-in-out infinite;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--bronze), transparent);
  top: 50%;
  right: 10%;
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, 100px) scale(1.2); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-80px, -80px) scale(1.1); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -50px) scale(1.15); }
}

.hero-bg-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(184, 115, 51, 0.1), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(120, 53, 15, 0.08), transparent 50%);
  animation: bgPulse 8s ease-in-out infinite;
  z-index: 1;
}

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

.hero-content-home {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 60rem;
  padding: var(--space-xl) var(--space-md);
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(184, 115, 51, 0.1);
  border: 1px solid rgba(184, 115, 51, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--space-md);
  animation: badgeFadeIn 1s ease-out;
  backdrop-filter: blur(10px);
}

@keyframes badgeFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title-animated {
  margin-bottom: var(--space-md);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
}

.title-line {
  display: block;
  background: linear-gradient(135deg, var(--titanium) 0%, var(--copper) 50%, var(--titanium) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleSlideIn 1.2s ease-out;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.title-line:nth-child(2) {
  animation-delay: 0.4s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.title-accent {
  background: linear-gradient(135deg, var(--copper) 0%, var(--titanium) 50%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: titleSlideIn 1.2s ease-out 0.4s, gradientShift 3s ease infinite;
}

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

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

.hero-subtitle-animated {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
  color: var(--titanium);
  opacity: 0.9;
  animation: subtitleFadeIn 1.5s ease-out 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
}

@keyframes subtitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

.hero-cta-wrapper {
  animation: ctaFadeIn 1.8s ease-out 0.8s;
  opacity: 0;
  animation-fill-mode: forwards;
}

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

.btn-luxury {
  position: relative;
  overflow: hidden;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

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

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

.btn-luxury i {
  transition: transform 0.3s ease;
}

.btn-luxury:hover i {
  transform: translateX(5px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--copper);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollIndicator 2s ease-in-out infinite;
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--copper), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollIndicator {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollLine {
  0% { height: 40px; opacity: 1; }
  100% { height: 0; opacity: 0; }
}

/* ============================================
   LUXURY HERO SECTIONS - DECOR PAGE
   ============================================ */

.hero-decor {
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.hero-panel {
  position: absolute;
  width: 50%;
  height: 100%;
  background: var(--carbon);
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}

.hero-panel-left {
  left: 0;
  transform: translateX(-100%);
  animation: panelSlideLeft 1.2s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.hero-panel-right {
  right: 0;
  transform: translateX(100%);
  animation: panelSlideRight 1.2s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes panelSlideLeft {
  to { transform: translateX(0); }
}

@keyframes panelSlideRight {
  to { transform: translateX(0); }
}

.hero-decor-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
  z-index: 2;
  opacity: 0.1;
}

.decor-grid-item {
  background: linear-gradient(135deg, var(--copper), transparent);
  animation: gridPulse 4s ease-in-out infinite;
}

.decor-grid-item:nth-child(1) { animation-delay: 0s; }
.decor-grid-item:nth-child(2) { animation-delay: 0.5s; }
.decor-grid-item:nth-child(3) { animation-delay: 1s; }
.decor-grid-item:nth-child(4) { animation-delay: 1.5s; }
.decor-grid-item:nth-child(5) { animation-delay: 2s; }
.decor-grid-item:nth-child(6) { animation-delay: 2.5s; }

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

.hero-content-decor {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 60rem;
  padding: var(--space-xl) var(--space-md);
}

.hero-number {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 700;
  color: rgba(184, 115, 51, 0.15);
  font-family: 'Montserrat', sans-serif;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  animation: numberFadeIn 1s ease-out;
}

@keyframes numberFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

.hero-title-slide {
  margin-bottom: var(--space-md);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.title-word {
  display: inline-block;
  background: linear-gradient(135deg, var(--titanium), var(--copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: wordSlideIn 0.8s ease-out forwards;
}

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

.title-word:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes wordSlideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-subtitle-slide {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
  color: var(--titanium);
  opacity: 0;
  animation: subtitleSlide 1s ease-out 0.7s forwards;
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
}

@keyframes subtitleSlide {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 0.9;
    transform: translateX(0);
  }
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(28, 28, 30, 0.5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(184, 115, 51, 0.2);
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: featureFadeIn 0.8s ease-out forwards;
  min-width: 120px;
}

.feature-item:nth-child(1) { animation-delay: 1s; }
.feature-item:nth-child(2) { animation-delay: 1.2s; }
.feature-item:nth-child(3) { animation-delay: 1.4s; }

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

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

.feature-item span {
  font-size: 0.85rem;
  color: var(--titanium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   LUXURY HERO SECTIONS - INSPIRATIONS PAGE
   ============================================ */

.hero-inspirations {
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

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

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.carousel-slide-active {
  opacity: 1;
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(11, 11, 12, 0.7) 0%,
    rgba(11, 11, 12, 0.5) 50%,
    rgba(11, 11, 12, 0.8) 100%
  );
  z-index: 2;
}

.hero-content-inspirations {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 60rem;
  padding: var(--space-xl) var(--space-md);
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(184, 115, 51, 0.2);
  border: 1px solid rgba(184, 115, 51, 0.4);
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--space-md);
  animation: tagFadeIn 1s ease-out;
  backdrop-filter: blur(10px);
}

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

.hero-title-fade {
  margin-bottom: var(--space-md);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  display: inline-block;
}

.title-char {
  display: inline-block;
  background: linear-gradient(135deg, var(--titanium), var(--copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: charFadeIn 0.5s ease-out forwards;
  transform: translateY(30px);
}

.title-space {
  width: 0.3em;
}

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

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

.hero-subtitle-fade {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
  color: var(--titanium);
  opacity: 0;
  animation: subtitleFade 1.2s ease-out 1s forwards;
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
}

@keyframes subtitleFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(28, 28, 30, 0.7);
  border: 1px solid rgba(184, 115, 51, 0.3);
  color: var(--copper);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(184, 115, 51, 0.2);
  border-color: var(--copper);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(184, 115, 51, 0.3);
  border: 2px solid rgba(184, 115, 51, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-active {
  background: var(--copper);
  border-color: var(--copper);
  transform: scale(1.2);
}

/* ============================================
   LUXURY HERO SECTIONS - CONTACT PAGE
   ============================================ */

.hero-contact {
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

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

.wave {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.1), transparent);
  border-radius: 50%;
  animation: waveFloat 20s ease-in-out infinite;
}

.wave-1 {
  top: -50%;
  left: -50%;
  animation-delay: 0s;
}

.wave-2 {
  top: -30%;
  right: -50%;
  animation-delay: 5s;
}

.wave-3 {
  bottom: -50%;
  left: 20%;
  animation-delay: 10s;
}

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

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

.contact-shape {
  position: absolute;
  border: 1px solid rgba(184, 115, 51, 0.2);
  border-radius: 50%;
  animation: shapeRotate 30s linear infinite;
}

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

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 15%;
  animation-duration: 20s;
  animation-direction: reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 30%;
  animation-duration: 15s;
}

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

.hero-content-contact {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 70rem;
  padding: var(--space-xl) var(--space-md);
}

.hero-icon-wrapper {
  margin-bottom: var(--space-md);
  animation: iconReveal 1s ease-out;
}

@keyframes iconReveal {
  from {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.hero-icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(184, 115, 51, 0.1);
  border: 2px solid rgba(184, 115, 51, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  position: relative;
}

.hero-icon-circle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--copper);
  border-top-color: transparent;
  animation: iconRotate 2s linear infinite;
}

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

.hero-icon-circle i {
  font-size: 2.5rem;
  color: var(--copper);
  position: relative;
  z-index: 1;
}

.hero-title-reveal {
  margin-bottom: var(--space-md);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  overflow: hidden;
}

.reveal-text {
  display: inline-block;
  background: linear-gradient(135deg, var(--titanium), var(--copper));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(100%);
  animation: textReveal 1.2s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

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

.hero-subtitle-reveal {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
  color: var(--titanium);
  opacity: 0;
  animation: subtitleReveal 1s ease-out 0.5s forwards;
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
}

@keyframes subtitleReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

.hero-contact-cards {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.contact-card {
  background: rgba(28, 28, 30, 0.6);
  border: 1px solid rgba(184, 115, 51, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  min-width: 200px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-color: var(--copper);
  box-shadow: var(--shadow-lg);
  background: rgba(28, 28, 30, 0.8);
}

.card-reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  animation: cardReveal 0.8s ease-out forwards;
}

.card-reveal:nth-child(1) { animation-delay: 0.8s; }
.card-reveal:nth-child(2) { animation-delay: 1s; }
.card-reveal:nth-child(3) { animation-delay: 1.2s; }

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

.contact-card i {
  font-size: 2rem;
  color: var(--copper);
  margin-bottom: var(--space-sm);
  display: block;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  color: var(--titanium);
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--titanium);
  opacity: 0.8;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--copper);
  color: var(--obsidian);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
  border: 0.125rem solid var(--copper);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.btn:hover {
  background: transparent;
  color: var(--copper);
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--copper);
  border: 0.125rem solid var(--copper);
}

.btn-outline:hover {
  background: var(--copper);
  color: var(--obsidian);
}

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

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  animation: fadeIn 1s var(--transition-smooth);
}

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

.section-title h2 {
  margin-bottom: var(--space-sm);
  color: var(--copper);
}

.section-title p {
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 40rem;
  margin: 0 auto;
}

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

.card {
  background: var(--carbon);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition-smooth);
  border: 0.0625rem solid rgba(184, 115, 51, 0.1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 115, 51, 0.1), transparent);
  transition: left var(--transition-luxury);
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
  border-color: var(--copper);
}

.card img {
  width: 100%;
  height: 12.5rem;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

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

.card p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: var(--space-sm);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--copper);
  font-family: 'Cormorant Garamond', serif;
}

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

.asymmetric-content {
  position: relative;
  z-index: 2;
}

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

.asymmetric-image:hover {
  transform: rotate(0deg) scale(1.02);
}

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

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

.overlap-bg {
  position: absolute;
  top: 3rem;
  right: 0;
  width: 50%;
  height: 80%;
  background: var(--carbon);
  border-radius: var(--radius-lg);
  transform: rotate(3deg);
  z-index: 1;
}

.overlap-content {
  position: relative;
  z-index: 2;
  background: rgba(28, 28, 30, 0.9);
  backdrop-filter: blur(1.25rem);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  max-width: 60%;
  box-shadow: var(--shadow-lg);
}

.contact-section {
  background: var(--carbon);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.1), transparent);
  animation: contactPulse 8s ease-in-out infinite;
}

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

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

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

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: rgba(11, 11, 12, 0.5);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.contact-item:hover {
  background: rgba(184, 115, 51, 0.1);
  transform: translateX(0.5rem);
}

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

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--copper);
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  background: rgba(11, 11, 12, 0.5);
  border: 0.0625rem solid rgba(184, 115, 51, 0.2);
  border-radius: var(--radius-sm);
  color: var(--titanium);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 0.1875rem rgba(184, 115, 51, 0.1);
}

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

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

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

.checkbox-group label {
  font-size: 0.75rem;
  cursor: pointer;
}

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

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

.footer {
  padding: var(--space-md);
  text-align: center;
  background: var(--carbon);
  border-top: 0.0625rem solid rgba(184, 115, 51, 0.1);
}

.footer p {
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer a {
  color: var(--copper);
  margin: 0 var(--space-xs);
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  max-width: 31.25rem;
  background: var(--carbon);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transform: translateY(150%);
  transition: transform var(--transition-luxury);
  border: 0.0625rem solid var(--copper);
}

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

.cookie-popup p {
  font-size: 0.8rem;
  margin-bottom: var(--space-sm);
}

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

.cookie-buttons .btn {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
  margin-top: 80px;
}

.error-content h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--copper);
  margin-bottom: var(--space-sm);
}

.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
  margin-top: 80px;
}

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

.thankyou-content i {
  font-size: 4rem;
  color: var(--copper);
  margin-bottom: var(--space-md);
  animation: checkmark 0.8s var(--transition-luxury);
}

@keyframes checkmark {
  0% { transform: scale(0) rotate(-45deg); }
  50% { transform: scale(1.2) rotate(10deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.policy-content {
  max-width: 50rem;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  margin-top: 80px;
}

.policy-content h1 {
  margin-bottom: var(--space-md);
  color: var(--copper);
}

.policy-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.policy-content p {
  margin-bottom: var(--space-sm);
  line-height: 1.8;
  font-size: 0.9rem;
}

.policy-content ul {
  margin-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

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

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

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-3rem);
  transition: all var(--transition-luxury);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(3rem);
  transition: all var(--transition-luxury);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-luxury);
}

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

@media (min-width: 48rem) {
  .nav {
    display: flex;
  }
  
  .asymmetric-section {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  }
}

@media (max-width: 48rem) {
  .nav {
    position: fixed;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    flex-direction: column;
    background: var(--carbon);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-smooth);
  }
  
  .nav.active {
    opacity: 1;
    pointer-events: all;
  }
  
  .burger {
    display: flex;
  }
  
  .overlap-content {
    max-width: 100%;
  }
  
  .overlap-bg {
    width: 80%;
  }
}

@media (max-width: 30rem) {
  :root {
    --space-lg: 2.5rem;
    --space-xl: 3.5rem;
  }
  
  body {
    font-size: 0.85rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  .header {
    width: 95%;
    padding: 0.75rem 1rem;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .hero {
    padding: var(--space-lg) 1rem;
    min-height: 80vh;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  /* Responsive hero sections */
  .hero-home {
    min-height: 90vh;
  }
  
  .hero-decor {
    min-height: 70vh;
  }
  
  .hero-inspirations {
    min-height: 70vh;
  }
  
  .hero-contact {
    min-height: 60vh;
  }
  
  .hero-content-home,
  .hero-content-decor,
  .hero-content-inspirations,
  .hero-content-contact {
    padding: var(--space-md) 1rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .feature-item {
    width: 100%;
    min-width: auto;
  }
  
  .hero-contact-cards {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .contact-card {
    width: 100%;
    min-width: auto;
  }
  
  .hero-icon-circle {
    width: 80px;
    height: 80px;
  }
  
  .hero-icon-circle i {
    font-size: 2rem;
  }
  
  .hero-scroll-indicator {
    bottom: 1rem;
  }
  
  .hero-panel-left,
  .hero-panel-right {
    width: 100%;
  }
  
  .hero-panel-left {
    animation: none;
    transform: translateX(0);
    opacity: 0.3;
  }
  
  .hero-panel-right {
    animation: none;
    transform: translateX(0);
    opacity: 0.3;
  }
  
  .section {
    padding: var(--space-lg) 1rem;
  }
  
  .card {
    padding: 1rem;
  }
  
  .card img {
    height: 10rem;
  }
  
  .contact-section {
    padding: 1.5rem 1rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.65rem;
    font-size: 0.8rem;
  }
  
  .cookie-popup {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 1rem;
  }
  
  .policy-content {
    padding: var(--space-lg) 1rem;
  }
  
  .policy-content h1 {
    font-size: 1.75rem;
  }
  
  .policy-content h2 {
    font-size: 1.3rem;
  }
  
  .policy-content p,
  .policy-content li {
    font-size: 0.85rem;
  }
  
  .error-content h1 {
    font-size: 4rem;
  }
  
  .thankyou-content i {
    font-size: 3rem;
  }
}
