@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 {
  --raw-ecru: #F5F2ED;
  --saddle-leather: #8B4513;
  --burnished-gold: #C5A021;
  --morning-mist: #E7E5E4;
  --deep-ochre: #B08968;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', 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(139, 69, 19, 0.08);
  --shadow-md: 0 4px 16px rgba(139, 69, 19, 0.12);
  --shadow-lg: 0 8px 32px rgba(139, 69, 19, 0.16);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--saddle-leather);
  background: var(--raw-ecru);
  overflow-x: hidden;
}

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: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

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

h4 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

p {
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
}

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

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

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

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--transition-base);
}

.header.scrolled {
  position: fixed;
  background: rgba(245, 242, 237, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
  transform: translateY(0);
}

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

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.logo:hover {
  color: var(--burnished-gold);
  transform: scale(1.02);
}

.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: 2px;
  background: var(--burnished-gold);
  transition: width var(--transition-base);
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.burger span {
  width: 25px;
  height: 2px;
  background: var(--saddle-leather);
  transition: all var(--transition-base);
}

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

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

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--raw-ecru) 0%, rgba(245, 242, 237, 0.95) 50%, var(--raw-ecru) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 160, 33, 0.08) 0%, transparent 70%);
  animation: rotateGradient 20s linear infinite;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(197, 160, 33, 0.03) 2px,
      rgba(197, 160, 33, 0.03) 4px
    );
  z-index: 0;
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-top: 60px;
  animation: fadeInUp var(--transition-luxury) ease-out;
}

/* Home Page Hero - Split Text Animation */
.hero-home .hero-title {
  display: inline-block;
  overflow: hidden;
}

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

.hero-home .hero-title span:nth-child(1) { animation-delay: 0.2s; }
.hero-home .hero-title span:nth-child(2) { animation-delay: 0.4s; }
.hero-home .hero-title span:nth-child(3) { animation-delay: 0.6s; }

.hero-home .hero-subtitle {
  position: relative;
  display: inline-block;
  padding-left: 3rem;
  animation: slideInLeft 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.3s both;
}

.hero-home .hero-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2.5rem;
  height: 1px;
  background: var(--burnished-gold);
  animation: expandLine 1s cubic-bezier(0.19, 1, 0.22, 1) 0.3s both;
  transform-origin: left;
}

.hero-home .hero-description {
  animation: fadeInScale 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.8s both;
}

.hero-home .btn {
  animation: fadeInUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) 1s both;
  position: relative;
  overflow: hidden;
}

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

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

/* Custom Accessories Hero - Floating Elements */
.hero-accessories {
  background: linear-gradient(135deg, rgba(245, 242, 237, 0.98) 0%, rgba(245, 242, 237, 0.95) 100%);
}

.hero-accessories .hero-content {
  position: relative;
}

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

.hero-accessories .shape {
  position: absolute;
  border: 1px solid rgba(197, 160, 33, 0.15);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-accessories .shape:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero-accessories .shape:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 20%;
  animation-delay: 2s;
}

.hero-accessories .shape:nth-child(3) {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 5%;
  animation-delay: 4s;
}

.hero-accessories .hero-subtitle {
  animation: revealFromTop 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s both;
  position: relative;
}

.hero-accessories .hero-title {
  animation: revealFromBottom 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.4s both;
  background: linear-gradient(135deg, var(--saddle-leather) 0%, var(--deep-ochre) 50%, var(--burnished-gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: revealFromBottom 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.4s both, shimmer 3s ease-in-out infinite 1.6s;
}

.hero-accessories .hero-description {
  animation: fadeInBlur 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.8s both;
}

/* Jewelry Hero - Glitter Effect */
.hero-jewelry {
  background: linear-gradient(135deg, var(--raw-ecru) 0%, rgba(197, 160, 33, 0.05) 50%, var(--raw-ecru) 100%);
  position: relative;
}

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

.hero-jewelry .glitter {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--burnished-gold);
  border-radius: 50%;
  animation: glitter 4s ease-in-out infinite;
}

.hero-jewelry .hero-subtitle {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--burnished-gold);
  width: 0;
}

.hero-jewelry .hero-subtitle.animate {
  animation: typewriter 1.5s steps(20) 0.3s both, blinkCursor 0.75s step-end infinite 1.8s;
}

.hero-jewelry .hero-title {
  animation: scaleInRotate 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.8s both;
  background: linear-gradient(135deg, var(--saddle-leather), var(--burnished-gold), var(--deep-ochre));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-jewelry .hero-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(197, 160, 33, 0.1), transparent);
  animation: shimmer 3s ease-in-out infinite;
  z-index: -1;
}

.hero-jewelry .hero-description {
  animation: fadeInUpStagger 1.8s cubic-bezier(0.19, 1, 0.22, 1) 1.2s both;
}

/* Contact Hero - Elegant Reveal */
.hero-contact {
  background: linear-gradient(135deg, var(--raw-ecru) 0%, rgba(139, 69, 19, 0.03) 50%, var(--raw-ecru) 100%);
  position: relative;
}

.hero-contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(197, 160, 33, 0.1);
  border-radius: 50%;
  animation: pulseRing 3s ease-out infinite;
  z-index: 0;
}

.hero-contact::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border: 1px solid rgba(197, 160, 33, 0.15);
  border-radius: 50%;
  animation: pulseRing 3s ease-out infinite 1s;
  z-index: 0;
}

.hero-contact .hero-content {
  position: relative;
  z-index: 1;
}

.hero-contact .hero-subtitle {
  animation: slideDownFade 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s both;
  position: relative;
  display: inline-block;
}

.hero-contact .hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burnished-gold);
  animation: expandWidth 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.5s both;
}

.hero-contact .hero-title {
  animation: splitReveal 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s both;
  background: linear-gradient(135deg, var(--saddle-leather), var(--deep-ochre));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  overflow: hidden;
}

.hero-contact .hero-title::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--saddle-leather), var(--deep-ochre));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  animation: revealClip 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s both;
}

.hero-contact .hero-description {
  animation: fadeInScale 1.5s cubic-bezier(0.19, 1, 0.22, 1) 1.2s both;
}

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

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

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

@keyframes expandLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 2.5rem;
    opacity: 1;
  }
}

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) translateX(20px) rotate(180deg);
    opacity: 0.6;
  }
}

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

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

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes fadeInBlur {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes glitter {
  0%, 100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1) rotate(180deg);
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blinkCursor {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--burnished-gold);
  }
}

@keyframes scaleInRotate {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

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

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

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

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes splitReveal {
  from {
    opacity: 0;
    transform: translateX(-20px);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

@keyframes revealClip {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burnished-gold);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.hero-title {
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--saddle-leather), var(--deep-ochre));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  color: var(--deep-ochre);
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--deep-ochre);
  color: var(--raw-ecru);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: transparent;
  color: var(--saddle-leather);
  border: 2px solid var(--saddle-leather);
}

.btn-secondary:hover {
  background: var(--saddle-leather);
  color: var(--raw-ecru);
}

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burnished-gold);
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

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

.section-description {
  color: var(--deep-ochre);
  font-size: 1rem;
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

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

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

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

.card-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
  font-family: var(--font-display);
}

.card-description {
  font-size: 0.85rem;
  color: var(--deep-ochre);
  margin-bottom: var(--space-sm);
}

.card-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--burnished-gold);
  font-family: var(--font-display);
}

.asymmetric-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  position: relative;
}

.asymmetric-item {
  position: relative;
  transition: all var(--transition-slow);
}

.asymmetric-item:nth-child(odd) {
  transform: translateX(-20px);
}

.asymmetric-item:nth-child(even) {
  transform: translateX(20px);
  margin-top: var(--space-lg);
}

.asymmetric-item:hover {
  transform: translateX(0) scale(1.02);
}

.overlap-section {
  position: relative;
  margin-top: calc(var(--space-xl) * -1);
  z-index: 10;
}

.angled-section {
  position: relative;
  padding: var(--space-xl) 0;
  background: white;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin: var(--space-xl) 0;
}

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

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

.feature-item:hover {
  transform: translateY(-5px);
}

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

.feature-title {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  font-family: var(--font-display);
}

.feature-description {
  font-size: 0.85rem;
  color: var(--deep-ochre);
}

.contact-section {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.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: flex-start;
  gap: var(--space-sm);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--burnished-gold);
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-details p {
  font-size: 0.85rem;
  color: var(--deep-ochre);
  margin: 0;
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.8rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border: 2px solid var(--morning-mist);
  border-radius: var(--radius-sm);
  background: var(--raw-ecru);
  color: var(--saddle-leather);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--burnished-gold);
  background: white;
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

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

.form-checkbox label {
  font-size: 0.8rem;
  color: var(--deep-ochre);
  cursor: pointer;
}

.map-container {
  width: 100%;
  height: 400px;
  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 {
  background: var(--saddle-leather);
  color: var(--raw-ecru);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.8rem;
}

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

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

.footer-links a {
  color: var(--raw-ecru);
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

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

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

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

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

.cookie-text {
  flex: 1;
  font-size: 0.85rem;
  color: var(--deep-ochre);
}

.cookie-text a {
  color: var(--burnished-gold);
  text-decoration: underline;
}

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

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

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

.thank-you-icon {
  font-size: 5rem;
  color: var(--burnished-gold);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.parallax-content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  width: 100%;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-slow);
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all var(--transition-slow);
}

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

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all var(--transition-slow);
}

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

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

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

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
  
  .asymmetric-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav {
    display: flex;
  }
  
  .burger {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--raw-ecru);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-base);
    z-index: 999;
  }
  
  .nav.active {
    right: 0;
  }
  
  .burger {
    display: flex;
  }
  
  .hero {
    min-height: 80vh;
    padding: var(--space-lg) 0;
  }
  
  .asymmetric-item:nth-child(odd),
  .asymmetric-item:nth-child(even) {
    transform: translateX(0);
    margin-top: 0;
  }
  
  .angled-section {
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.8rem;
  }
  
  .card-image {
    height: 220px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  :root {
    --space-sm: 0.8rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 3.5rem;
  }
  
  body {
    font-size: 0.85rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .nav a {
    font-size: 0.8rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.75rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .section-subtitle {
    font-size: 0.75rem;
  }
  
  .card-content {
    padding: 1.2rem;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .card-description {
    font-size: 0.8rem;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
  
  .feature-title {
    font-size: 1rem;
  }
  
  .feature-description {
    font-size: 0.8rem;
  }
  
  .contact-icon {
    font-size: 1.2rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.7rem;
    font-size: 0.85rem;
  }
  
  .footer {
    font-size: 0.75rem;
  }
  
  .footer-links a {
    font-size: 0.75rem;
  }
  
  .cookie-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 320px) {
  :root {
    --space-xs: 0.4rem;
    --space-sm: 0.7rem;
    --space-md: 1.2rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
  }
  
  html {
    font-size: 14px;
  }
  
  body {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  
  h1 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 0.7rem;
  }
  
  h2 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 0.7rem;
  }
  
  h3 {
    font-size: 1.1rem;
    line-height: 1.2;
  }
  
  h4 {
    font-size: 1rem;
  }
  
  p {
    font-size: 0.8rem;
    margin-bottom: 0.7rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .header {
    padding: var(--space-sm) 0;
  }
  
  .header-content {
    padding: 0 var(--space-sm);
  }
  
  .logo {
    font-size: 1.2rem;
    letter-spacing: 0.03em;
  }
  
  .nav {
    width: 85%;
    gap: var(--space-md);
  }
  
  .nav a {
    font-size: 0.75rem;
    padding: var(--space-xs) 0;
  }
  
  .hero {
    min-height: 70vh;
    padding: var(--space-md) 0;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.7rem;
    padding-left: 2rem;
  }
  
  .hero-subtitle::before {
    width: 1.8rem;
  }
  
  .hero-title {
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
  }
  
  .hero-home .hero-title span {
    display: block;
    margin-bottom: 0.2rem;
  }
  
  .hero-description {
    font-size: 0.85rem;
    margin-bottom: var(--space-sm);
    line-height: 1.5;
  }
  
  .btn {
    padding: 0.65rem 1.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .section-header {
    margin-bottom: var(--space-md);
    padding: 0 var(--space-xs);
  }
  
  .section-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
  }
  
  .section-title {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
  }
  
  .section-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .grid {
    gap: var(--space-sm);
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .card {
    border-radius: var(--radius-sm);
    overflow: hidden;
  }
  
  .card-image {
    height: 200px;
  }
  
  .card-content {
    padding: var(--space-sm);
  }
  
  .card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .card-description {
    font-size: 0.75rem;
    margin-bottom: var(--space-xs);
    line-height: 1.5;
  }
  
  .card-price {
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
  }
  
  .asymmetric-layout {
    gap: var(--space-sm);
  }
  
  .asymmetric-item {
    transform: none !important;
    margin-top: 0 !important;
  }
  
  .asymmetric-item:hover {
    transform: translateY(-4px) scale(1.01) !important;
  }
  
  .angled-section {
    padding: var(--space-lg) 0;
    clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
    margin: var(--space-lg) 0;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .feature-item {
    padding: var(--space-sm);
  }
  
  .feature-icon {
    font-size: 1.8rem;
    margin-bottom: var(--space-xs);
  }
  
  .feature-title {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }
  
  .feature-description {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  .contact-section {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .contact-item {
    gap: var(--space-xs);
    padding: var(--space-xs) 0;
  }
  
  .contact-icon {
    font-size: 1.1rem;
  }
  
  .contact-details h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }
  
  .contact-details p {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  .form-group {
    margin-bottom: var(--space-sm);
  }
  
  .form-label {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.65rem;
    font-size: 0.8rem;
    min-height: 44px;
  }
  
  .form-textarea {
    min-height: 100px;
  }
  
  .form-checkbox {
    gap: 0.5rem;
    margin-bottom: var(--space-sm);
  }
  
  .form-checkbox label {
    font-size: 0.7rem;
    line-height: 1.4;
  }
  
  .map-container {
    height: 300px;
    border-radius: var(--radius-sm);
    margin-top: var(--space-sm);
  }
  
  .footer {
    padding: var(--space-sm) 0;
    font-size: 0.7rem;
  }
  
  .footer-content {
    padding: 0 var(--space-sm);
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-xs);
    width: 100%;
  }
  
  .footer-links a {
    font-size: 0.7rem;
    padding: 0.3rem 0;
  }
  
  .cookie-popup {
    padding: var(--space-sm);
  }
  
  .cookie-content {
    padding: 0 var(--space-sm);
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .cookie-text {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
    gap: var(--space-xs);
  }
  
  .cookie-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .parallax-section {
    min-height: 50vh;
    padding: var(--space-md) 0;
  }
  
  .parallax-content {
    padding: var(--space-sm);
  }
  
  .parallax-content .section-title {
    font-size: 1.3rem;
  }
  
  .parallax-content .section-description {
    font-size: 0.85rem;
  }
  
  /* Hero specific optimizations for 320px */
  .hero-home .hero-subtitle::before {
    width: 1.5rem;
  }
  
  .hero-accessories .shape {
    display: none;
  }
  
  .hero-jewelry .glitter {
    display: none;
  }
  
  .hero-contact::before,
  .hero-contact::after {
    width: 300px;
    height: 300px;
  }
  
  .hero-contact::after {
    width: 200px;
    height: 200px;
  }
  
  /* Performance optimizations */
  .card:hover {
    transform: translateY(-4px);
  }
  
  .card:hover .card-image {
    transform: scale(1.02);
  }
  
  /* Reduce animation complexity on small devices */
  @media (prefers-reduced-motion: no-preference) {
    .hero::before {
      animation-duration: 30s;
    }
  }
  
  /* Touch target optimizations */
  a, button, .btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Text overflow handling */
  .hero-title,
  .section-title,
  .card-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  /* Grid optimizations */
  .grid-2 > *,
  .grid-3 > * {
    min-width: 0;
  }
}
